Handle absence of socket constants
[mono/afaerber.git] / mono / metadata / ChangeLog
blobb61f60a83555ec22a605390821a799f4fa7b0dd1
1 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
3         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
4         SOCK_RDM.
5         
6         Code is contributed under MIT/X11 license.
8 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
10         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
11         nursery.
13         Code is contributed under MIT/X11 license.
15 2010-03-19  Martin Baulig  <martin@ximian.com>
17         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
18         dummy field, containing an empty string.
19         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
22 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
24         * class.c: setup_interface_offsets() refactor to not call
25         mono_class_get_implemented_interfaces () more times than needed and
26         to reduce the runtime memory requirements to be O(num_interfaces)
27         instead of O(max_interface_id).
29 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
31         * mono-mlist.[ch]: add mono_mlist_set_next ().
33 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
35         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
36         associated changes to support holes in the protected range of a
37         try block.
39         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
40         retrieves the holes table from a given MonoJitInfo.
42 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
44         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
45         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
46         hide the contents of the MonoString and MonoArray structs from the
47         public API. Change the accessor macros to accessors functions where
48         needed. Adjusted the array API to allow for pointer-sized lengths and
49         starting positions, so 64 bit arrays can be optionally provided in an
50         API compatible way if needed on 64 bit systems.
52 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
54         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
55         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
57 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
59         * class-internals.h: remove the method header from MonoMethod since
60         from now on it will be transient. We have a header pointer for method
61         wrappers, since in that case we need to keep track of it. For this
62         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
63         structs now. The same happens with MonoMethodInflated.
64         * class.c: reset the sre_method flag for inflated method structures:
65         this makes the code that cares look at the header in the MonoMethodInflated
66         structure.
67         * loader.c: lookup the method header in the appropriate field now that
68         it is removed from MonoMethod.
69         * metadata-internals.h: add a flag to the method header to know if it
70         can be freed inside mono_metadata_free_mh ().
71         * method-builder.c: updates after moving the header field from
72         MonoMethod to MonoMethodWrapper.
73         * reflection.c: MonoMethods generated from Reflection.Emit use
74         MonoMethodWrapper structs if they need a method header now (later take
75         advantage of this and remove all the current unsafe uses of method_aux_hash).
76         * metadata.c: make method header parsing not leak when verification
77         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
78         These changes save a few hundred KB of runtime memory in a mcs
79         bootstrap or a monodevelop startup.
81 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
83         * verify.c: Improve error message.
85 2010-03-12  Jb Evain  <jbevain@novell.com>
87         * reflection.c (add_exported_type): populate the exported
88         table with the type's nested type.
90 2010-03-10  Mark Probst  <mark.probst@gmail.com>
92         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
93         can't read parentheses.
95 2010-03-10  Mark Probst  <mark.probst@gmail.com>
97         * threads.c (thread_cleanup): Add a guard to dereferencing
98         "thread" to avoid an unlikely race condition.
100 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
102         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
103         instead of an empty string.
105 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
107         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
108         convert to a boolean, recent gcc versions compile this differently.
110 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
112        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
113        inlined.
115 2010-03-09  Mark Probst  <mark.probst@gmail.com>
117         * sgen-gc.c (STRING_SIZE): Off by one.
119 2010-03-09  Mark Probst  <mark.probst@gmail.com>
121         * sgen-archdep.h: Fix the signal context register access for
122         AMD64.
124 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
126         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
128 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
130         * verify.c: Store the initial basic block returned by mono_basic_block_split
131         so we can release the whole list and not just the first one.
133 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
135         * verify.c, debug-helpers.c, profiler.c, loader.c,
136         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
137         MonoMethodHeader a transient entity.
139 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
141         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
142         uncontrolled growth of the gray stack.
144         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
145         added items are removed first, improving cache locality. Avoid freeing queue
146         segments in the fast path, use the list of segments as the free list, truncate
147         it to its max size at the start of collection.
149 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
151         * metadata-internals.h: more memory savings, both with small config and without.
154 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
156         * appdomain.c, domain-internals.h, domain.c, object.c:
157         make class_vtable_hash into an array to reduce memory usage.
159 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
161         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
162         object-internals.h, object.c, reflection.c, threadpool.c:
163         reduce resource usage when the small config is selected.
164         In particular, up to 64K of methods/fields/properties/events
165         are allowed and "other" methods in events are ignored.
167 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
169         * threads.c: reduce resource usage when compiled for a small config.
171 2010-03-05  Mark Probst  <mark.probst@gmail.com>
173         * sgen-gc.c: Also collect number of degraded-alloced objects with
174         heavy statistics.
176 2010-03-04  Geoff Norton  <gnorton@novell.com>
178         * assembly.c: Only support OSX bundling if the bundle is 
179         actually detectable.
181 2010-03-04  Geoff Norton  <gnorton@novell.com>
183         * loader.c: The marshal specs are freed at the end of the call
184         but it explicitly frees the strings as well as the container,
185         so we need to dup them too to avoid referencing free'd memory.
187 2010-03-04  Geoff Norton  <gnorton@novell.com>
189         * icall-def.h:
190         * icall.c: Add a new private internal icall to construct
191         an object from its type without running the ctor.
193 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
195         * profiler.c: allow multiple profiler engines to be loaded
196         at the same time.
198 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
200         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
201         profiler event to track object moves.
203 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
205         * object.c, profiler.c, profiler.h, string-icalls.c:
206         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
208 2010-03-03  Miguel de Icaza  <miguel@novell.com>
210         * decimal.c (mono_double2decimal): Add support for reducing the
211         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
212         expected.
214 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
216         * icall-def.h:
217         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
219 2010-03-03  Marek Habersack  <mhabersack@novell.com>
221         * mono-config.c (mono_config_parse_assembly_bindings): added -
222         parses assembly binding redirections from appdomain's config
223         file.
225         * metadata-internals.h: added definition of a new function -
226         mono_config_parse_assembly_bindings - to support parsing assembly
227         binding redirections defined in appdomain's config file.
229         * domain-internals.h: added two new fields to _MonoDomain - a list
230         of assembly bindings and a flag to parse the config file only
231         once.
233         * assembly.c (assembly_binding_maps_name): empty culture name and
234         NULL culture name are considered equal.
235         (mono_assembly_apply_binding): added support for domain specific
236         assembly binding redirections, read from the appdomain's
237         configuration file. Fixes bug #580185
239 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
241         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
242         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
243         support.
245 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
247         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
248         from this function. The new function receive the parent token instead of a type.
250         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
251         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
252         typebuilders. This make it possible to properly encode generic type builders since
253         their unmanaged type don't have generics data while unfinished.
255         Fixes #583655.
257 2010-03-02  Mark Probst  <mark.probst@gmail.com>
259         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
260         writing binary log files (can be enabled by #define'ing
261         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
262         bugs in longer running programs.
264 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
266         * metadata.c: added some API documentation.
268 2010-03-01  Robert Jordan  <robertj@gmx.net>
270         * filewatcher.h: Include glib.h to fix the MSVC build.
272 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
274         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
275         a GC handle instead. This is a bit slower to access, but avoids burdening the
276         GC with 100s of individual roots.
278         * reflection.c (mono_class_get_ref_info):
279         (mono_class_set_ref_info):
280         (mono_class_free_ref_info): New internal helper fuctions.
282         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
283         of accessing klass->reflection_info directly.
285         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
286         words.
288         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
289         the previous array.
291 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
293         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
294         needs an indirection.
296 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
298         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
299         so all generic sharing code is in one place.
301         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
302         we don't call setup_interface_offsets () for unfinished types.
304 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
306         * class.c (mono_class_generic_sharing_enabled): Move this to
307         generic-sharing.c.
309         * image.c: Add an unload hook which is called before an image is unloaded.
311         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
312         metadata.c having to depend on generic sharing.
314 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
316         * class.c: reduce size of ridiculously large cache.
318 2010-02-26  Martin Baulig  <martin@ximian.com>
320         * mono-debug.h
321         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
323         * threads.c (mono_thread_internal_reset_abort): New method; resets
324         the abort, but doesn't throw any exception if no abort was requested.
326 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
328         * class.c (get_implicit_generic_array_interfaces): Call
329         mono_class_setup_interface_offsets () before accessing
330         eclass->interface_offsets_count. This only shows up on platforms without IMT for
331         some reason.
333 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
335         * environment.c, environment.h, icall.c: make the GetOSVersionString()
336         icall internal.
338 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
340         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
341         direct access to the MonoType fields.
343 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
345         * threads.h: Move some internal functions which were added to this header by
346         mistake to threads-types.h.
348         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
350 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
352         * class-internals.h, class.h, object.h: make MonoRemoteClass
353         and mono_remote_class() internal.
355 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
357         * metadata-internals.h, class-internals.h, metadata.h: make the
358         MonoType guts internal as well.
360 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
362         * reflection.h: the MonoTypeNameParse guts are internal now.
363         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
364         are internal now, provide accessors as needed.
365         * metadata.h, metadata-internals.h: the MonoMethodSignature
366         guts are internal now.
367         * Makefile.am: mempool.h is an internal header now.
368         * *.h, *.c: remove glib.h usage from the public headers.
370 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
372         * culture-info-table.h : regenerated.
374 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
376         * metadata.c: Add mono_method_get_header_summary which returns minimal
377         information about the header of a method. This is the information used
378         by the inline oracle to reject methods.
380         This method doesn't decode local variables and doesn't cache it's result,
381         so it should cause a minimal reduction in memory usage.
383         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
384         mono_method_get_header_summary.
386 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
388         * threads.c (mono_thread_exit): Make sure that the main thread is
389         non-null before dereferencing it.
391 2010-02-21  Geoff Norton  <gnorton@novell.com>
393         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
394         locale.
395         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
396         before falling back to the posix lookup.
398 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
400         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
401         the DONT_MANAGE flag set.
403 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
405         * domain.c: Remove old v1 version strings. Let the runtime
406         default to 2.0 instead of failing because it can't find a
407         working 1.0 instalation.
409 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
411         * domain.c: Add v4 RC version string.
413 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
415         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
416         of overflow checking function.
418 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
420         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
421         generic methods.
423         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
424         cases for ParameterInfo.
426         Fixes #579493.
428 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
430         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
431         have has_cctor set. Fixes #575946.
433 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
435         * appdomain.c: display a warning if the parsing the config file
436         produces any error.
437         Skip the BOM in UTF-8 files.
438         Copy the AppDomainSetup before setting the privateBinPath so that the
439         correct configuration file is read.
441 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
443         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
444         vtable trampoline per vtable slot index. Not used yet.
446 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
448         * icall-def.h:
449         * icall.c: add internal call that returns the system page size.
451 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
453         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
454         'int' for system classes.
456 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
458         * icall.c, icall-def.h: new icall to check for sufficient
459         stack space.
461 2010-02-12  Mark Probst  <mark.probst@gmail.com>
463         * reflection.c (ensure_complete_type): Check that reflection_info
464         is set, too.  Fixes crash of corlib testsuite with -O=-all.
466 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
468         * attrdefs.h:
469         * tabledefs.h: Add NoOptimization flag.
471 2010-02-10  Mark Probst  <mark.probst@gmail.com>
473         * sgen-gc.c: Don't consider it a missing remset if the target
474         object is pinned - we might have done the store but not added the
475         remset yet.
477 2010-02-10  Mark Probst  <mark.probst@gmail.com>
479         * sgen-gc.c: When checking for missing remsets, don't assert on
480         the first one, but print them all and then assert.
482 2010-02-10  Mark Probst  <mark.probst@gmail.com>
484         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
486 2010-02-09  Miguel de Icaza  <miguel@novell.com>
488         * console-unix.c: On OSX Control-Y is assigned to
489         VDSUSP (non-Posix), the
490         suspend-program-next-time-it-tries-to-read-input command (this is
491         different than C-z, which suspends immediately).
493         Do the same thing that bash does and ignore this setting,
494         making our repl/getline support pasting.
496 2010-02-10  Mark Probst  <mark.probst@gmail.com>
498         * sgen-gc.c: Simple plausibility check for scan_starts.
500 2010-02-10  Mark Probst  <mark.probst@gmail.com>
502         * sgen-gc.c: Round up when calculating the number of scan starts.
504 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
506         * reflection.c: Export mono_get_object_from_blob.
508         * object-internals.h: Ditto.
510         * icall.c: New icall property_info_get_default_value to get the default
511         value of a property. Since using this is not common, no caching is done.
513         * icall-def.h: Add new icall.
515 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
517         * class.c: Add mono_class_get_property_default_value.
519         * class-internal.h: Export mono_class_get_property_default_value.
521 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
523         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
525 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
527         * sgen-gc.c: introduced critical regions to allow some lockless
528         operations and increase scalability.
530 2010-02-10  Geoff Norton  <gnorton@novell.com>
532         * reflection.c: Support building with DISABLE_REFLECTION
534 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
536         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
537         Closes bug #566057.
539         * exception.c: fix typo in comment.
541 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
543         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
544         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
546         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
548         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
549         the internal API.
551         Fixes #574434.
553 2010-02-09  Mark Probst  <mark.probst@gmail.com>
555         * threads.c: Removed two assertions that were too strict.  Added a
556         clarifying comment.  Fixes #577090.
558 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
560         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
561         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
563         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
565         * verify.c (mono_type_get_stack_name): Fix a warning.
567 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
569         * marshal.c (mono_marshal_get_wrapper_info): Rename from
570         mono_marshal_wrapper_info_from_wrapper.
572         * marshal.c (mono_marshal_set_wrapper_info): Rename from
573         mono_marshal_method_set_wrapper_data, and export.
575         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
576         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
577         by calling mono_marshal_get_wrapper_info ().
579         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
580         small objects which does no size checks.
582 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
584         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
586 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
588         * verify.c (mono_method_verify): Use the new basic block formation pass
589         to avoid verifying dead basic blocks. This is the same behavior as the
590         runtime MS verifier.
592 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
594         * mono-basic-block.c:
595         * mono-basic-block.h: New implementation of a basic block formation pass.
596         The formation pass does static liveness analysis as well to detect dead
597         basic blocks.
599 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
601         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
602         'this' argument in icalls.
604 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
606         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
608 2010-02-01  Mark Probst  <mark.probst@gmail.com>
610         * object.c, domain.c: When using SGen, we must register
611         vtable->type as a root if it's not a MonoType, because then it
612         wasn't pin-alloced.
614 2010-02-01  Mark Probst  <mark.probst@gmail.com>
616         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
617         at the start of nursery collections, because we might have had
618         degraded allocations which changed next_data.
620 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
622         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
623         custom attr so this function works in cross-compiling mode.
625 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
627         * class.c (make_generic_param_class): Initialize interface offsets since we
628         set klass->inited. Fixes #574819.
630 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
632         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
633         calling the JIT domain cleanup hook.
635 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
637         * pedump.c (main): Properly set the verifier mode when running the metadata
638         verifier.
640 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
642         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
643         overlapping fields now that we're called before has_references is set.
645         * pedump.c (dump_verify_info): Clear any loader error before verifying another
646         method. Otherwise all sort of weird stuff happens.
648 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
650         * object.c (mono_field_get_value_object): Handle nullable types correctly.
651         Fixes #572874.
653 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
655         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
656         Fixes #573322.
658 2010-01-23  Mark Probst  <mark.probst@gmail.com>
660         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
661         pin_staging_area_index is greater than 0.
663 2010-01-22 Miguel de Icaza (miguel@novell.com)
665         * loader.c: Since we do nothing with the error returned, pass NULL
666         to ignore the error.
668 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
670         * reflection.c (typebuilder_setup_fields): Pretend field setup already
671         happened before starting to encode the actual fields. This avoid ciclic
672         dependencies and eventual crashes.
674         Fixes #572660.
676 2010-01-21  Mark Probst  <mark.probst@gmail.com>
678         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
679         atomic and remove the half-constructed hack in SGen.
681 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
683         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
684         has a recursive reference to itself.
686         Fixes #571863.
688 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
690         * loader.c (mono_method_signature): Fix error message.
692 2010-01-21  Mark Probst  <mark.probst@gmail.com>
694         * sgen-gc.c: Reuse to-space sections between nursery collections.
696 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
698         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
699         from the current assembly or mscorlib. Fixes bug #322957.
701 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
703         * marshal.c: Calculate the target class of the delegete invoke wrappers using
704         get_wrapper_target_class.
706 2010-01-19  Mark Probst  <mark.probst@gmail.com>
708         * sgen-gc.c: Fix warnings.
710 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
712         * verify.c (store_local): Better error message.
714 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
716         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
717         arguments.
719 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
721         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
722         function is generics variance aware.
724 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
726         * security-core-clr.c (mono_security_core_clr_can_access_internals):
727         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
729 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
731         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
732           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
734         Code is contributed under MIT/X11 license.
736 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
738         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
739         on a GTD.
741 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
743         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
744         return a point to a wrapper specific info structure describing the wrapper.
745         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
747 2010-01-18  Mark Probst  <mark.probst@gmail.com>
749         * sgen-gc.c: Make minor collection section allowance adaptive,
750         depending on the amount of memory reclaimed in the last major
751         collection.  If more memory was reclaimed (i.e. more garbage
752         produced), do the next collection earlier.
754 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
756         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
757         to itself.
759         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
760         the token as parameter.
762         * verify-internals.h: Ditto.
764         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
766         Fixes #571460.
768 2010-01-18  Mark Probst  <mark.probst@gmail.com>
770         * sgen-gc.c: Make store_remset_buffer_index long.
772 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
774         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
776         Fixes #569579.
778 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
780         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
781         off precise marking if it is available.
782         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
784 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
786         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
788         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
789         pinned objects.
791         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
792         to the array allocator.
794 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
796         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
797         result of mono_compile_method (), it already includes an ftnptr.
799 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
801         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
803 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
805         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
806         hash value which doesn't depend on glib/eglib versions.
807         (mono_metadata_type_hash): Use it.
809         * object.c (mono_method_get_imt_slot): Ditto.
811 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
813         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
814         independently of the GTD.
816         * class.c (mono_class_setup_fields): Fail if field has negative offset.
818         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
819         to the upper limit since instance_size includes this amount.
821         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
823         Fixes #569544.
825 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
827         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
828         with static methods.
830         * object.c (build_imt_slots): Avoid asserting when static methods are
831         encountered in an interface.
833 2010-01-13  Mark Probst  <mark.probst@gmail.com>
835         * sgen-gc.c (to_space_expand): Fix assertion.
837 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
839         * string-icalls.c: missing declaration fixes.
840         * sgen-gc.c: portability fixes.
842 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
844         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
846         * class.c:
847         * cominterop.c:
848         * icall.c:
849         * object.c: 
850         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
852 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
854         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
855         it can fail loading the type.
857         * class.c: Add mono_class_inflate_generic_class_checked.
859         * class.c:
860         * verify.c:
861         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
863 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
865         * loader.c (mono_method_signature_checked): New internal function taking an
866         MonoError argument.
868         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
869         Fixes build on rh 7.3.
871 2010-01-10  Aaron Bockover  <abockover@novell.com>
873         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
874         at runtime in the same way as on Windows, which yields a relocatable
875         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
876         of the running mono process.
878         On TARGET_ARM, fallback () will always be executed.
880 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
882         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
884 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
886         * class.c (mono_class_is_assignable_from_slow): Support variant
887         generic delegates.
889         * class.c (mono_class_implement_interface_slow): Support types with
890         variant generic arguments.
892 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
894         * verify.c: Remove some code duplication.
896 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
898         * object.c: Update docs.
900 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
902         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
904         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
905         fallback trampoline as well.
907         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
908         out argument that is set to TRUE if the match was direct. 
910         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
912         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
914 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
916         * class.c: Add mono_class_interface_offset_with_variance function that does same
917         as mono_class_interface_offset but takes variance into account.
919         * class-internal.h: Export mono_class_interface_offset_with_variance.
921         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
923 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
925         * object.c:
926         * icall.c:
927         * class.c: Add some FIXME for due to variant generic arguments.
929         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
930         can't use the simple bitfield check, so call mono_class_is_assignable_from if
931         the bitfield check fails.
933 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
935         * class.c (mono_class_is_assignable_from): Rework the generics variance code
936         to be easier to read and fix bugs in the case a non generic type implements a variant
937         interface.
939         * class.c (mono_class_has_variant_generic_params): Make non static.
941         * class-internals.h: Export mono_class_has_variant_generic_params as part of
942         the private API.
944 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
946         * assembly.c: fix MONO_PATH debug output.
948 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
950         * culture-info-table.h : regenerated.
952 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
954         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
955         types that are meant to not have a parent.
957 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
959         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
960         from the image mempool, so it is not leaked.
962 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
964         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
966 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
968         * verify.c (verify_valuetype_layout_with_target): Fix case
969         that can lead to infinite recursion. Fix bug #567861
971 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
973         * pedump.c: Run code verifier even if image verification fails
974         due to a failed type we. This allows more errors to be shown.
976 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
978         * class.c (count_virtual_methods): Remove the assert and now
979         fail properly.
980         
981         * class.c (setup_interface_offsets): This can fail now.
983         * class.c (mono_class_setup_vtable_general): Check for parent vtable
984         errors. Check setup_interface_offsets errors.
986         * class.c (setup_interface_offsets): Simplify the return error logic
987         and remove class_init_ok.
989         Fixes #560327.
991 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
993         * class.c (mono_class_init): Do class verification at the beginning. Add
994         some asserts to avoid tripping into invalid memory.
996         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
997         g_error and a decent message.
999         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
1001         Fixes #567548.
1003 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1005         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
1006         as inline functions instead of defining them in mempool.c.
1008         * metadata-internals.h (MonoImageSet): New structure representing a set of
1009         MonoImages, which own a collection of generic instances.
1011         * metadata.c: Get rid of the global generic caches, instead assign each generic
1012         instance to the image set which consists of all the images referenced by the
1013         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
1014         the memory used by generic instances to be allocated from a per image-set mempool
1015         later.
1017 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1019         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
1021 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
1023         * appdomain.c (zero_static_data): Fix a warning.
1025         * locales.c (construct_culture_from_specific_name): Applied patch from
1026         JosĂ© Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
1027         not found. Fixes #567900.
1029 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
1031         * loader.c (mono_method_get_signature_full): Remove two asserts.
1032         Return NULL instead so that the verifier can handle both cases 
1033         gracefully.
1035 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1037         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
1038         so we can properly fail types instead of crashing.
1040         Fixes #567676.
1042 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1044         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
1045         generic method.
1047 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
1049         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
1051 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1053         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
1054         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
1055         we can't remove it from it since we don't hold the lock.
1056         (mon_new): Free the orphaned events here when a mon structure is added to the
1057         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
1058         this down.
1060 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1062         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
1063         as max stack might be zero.
1065         Fixes #562320.
1067 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1069         Rework all uses of mono_class_setup_methods to accept that it can fail now.
1071         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
1072         instances if the GTD did.
1074         * class.c (mono_class_setup_properties): Ditto.
1076         * class.c (mono_class_setup_events): Ditto.
1078         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
1080         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
1081         error setting.
1083         * class.c (mono_class_init): Fail if GTD did.
1085         * cominterop.c:
1086         * generic-sharing.c:
1087         * icall.c:
1088         * loader.c:
1089         * object.c:
1090         * verify.c: Properly handle failure of mono_class_setup_methods.
1092 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
1094         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
1095         mono_class_inflate_generic_method_full internal.
1097         * class.c (inflate_generic_context): Now takes a MonoError argument.
1099         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
1100         errors.
1102 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
1104         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
1105         they cannot be patched. Partly fixes #564408.
1107 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1109         * metadata-internals.h, reflection.c: Use the
1110         MonoDynamicImage.handleref hash table only with unmanaged keys,
1111         and add a managed hash table handleref_managed for managed keys.
1113 2009-12-24  Mark Probst  <mark.probst@gmail.com>
1115         * sgen-gc.c: Unset to-space bumper between collections.  It might
1116         become invalid due to degraded allocations.
1118 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1120         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
1121         with the one from the original method.
1123         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
1124         compatibility.
1126         * verify-internals.h: Add new function to the internal API.
1128 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
1130         * culture-info-tables.h: regenerated it to include the Georgian culture.
1132 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1134         * sgen-gc.c: Include mono/utils/memcheck.h.
1136         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
1137         instead of the current domain, since the two might not match if this is called
1138         from the debugger.
1140         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
1141         domain which created this assembly.
1143 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
1145         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
1147 2009-12-17  Mark Probst  <mark.probst@gmail.com>
1149         * sgen-gc.c: Managed implementation of the specialized generic
1150         store write barrier.
1152 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
1154         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
1155         A private virtual newslot method is used to implement an interface method without exposing
1156         it to users. When querying for public instance methods, such method would hide a public one
1157         on a parent type.
1159         Fixes #564379.
1161 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
1163         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
1164         conventions.
1166 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1168         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
1170 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1172         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
1173         as they are no longer used.
1174         
1175          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
1177         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
1179 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
1181         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
1182         if the owner class has not been finished before returning reflection_info.      
1184         Fixes #565127.
1186 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
1188         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
1189         param doesn't have custom attributes. Fixes #565117.
1191         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
1192         #565120.
1194 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1196         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
1198 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
1200         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
1201         same amount done by a core-clr enabled runtime.
1203 2009-12-15  Marek Habersack  <mhabersack@novell.com>
1205         * appdomain.c (mono_make_shadow_copy): make sure access mode of
1206         the target files is reset to writable by owner and readable by
1207         everyone else to prevent problems when updating shadow copies of
1208         files whose source is read-only. Fixes bug #556884
1210 2009-12-15  Mark Probst  <mark.probst@gmail.com>
1212         * class.c (mono_generic_class_get_class): Allocate the generic
1213         class via malloc again, so that it can be freed when any one of
1214         the images of its constituent types is closed.
1216         * metadata.c: When closing an image, don't free generic insts and
1217         generic classes right away, but put them into a list for later
1218         freeing.
1220         * image.c, metadata-internals.h: Store the free list and in the
1221         second pass of closing an image, free it.
1223 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1225         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
1227         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
1228         types in type_hash.
1230         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
1232 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1234         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
1235         user type.
1237         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
1238         is used.
1240 2009-12-14  Miguel de Icaza  <miguel@novell.com>
1242         * verify.c (mono_method_verify): The Unused opcodes produce an
1243         InvalidProgramException on .NET
1245 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
1247         * loader.c (mono_method_get_header): Move assert after the verifier
1248         has been called on the method header.
1250 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1252         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
1254         * appdomain.c: Bump corlib version.
1256 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1258         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
1259         types as well since otherwise generic instances would not return UT as arguments but
1260         their undelying system type.
1262         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
1263         to reflect the fact that they can have now multiple different types.
1265         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
1267         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
1269         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
1271         * reflection.c (mono_reflection_register_with_runtime): Init super types
1272         if the image is not dynamic.
1274         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
1275         check if the generic type definition is a TypeBuilder.
1277         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
1278         doesn't belong to a dynamic image, skip initialization.
1280         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
1281         base definition is not a dynamic type.
1283 2009-12-11  Marek Habersack  <mhabersack@novell.com>
1285         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
1286         mono_profiler_string_allocation
1288         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
1289         if string profiling is enabled, call
1290         mono_profiler_string_allocation
1292         * profiler.h: added two MonoProfileFlags -
1293         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
1294         installation functions for the hooks below.
1296         * profiler-private.h, profiler.c: added two hooks:
1297         mono_profiler_string_allocation called whenever a string is
1298         allocated by InternalAllocateStr and mono_profiler_iomap called
1299         whenever IOMAP code performs an adjustement on a file path.
1301 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
1303         * boehm-gc.c: fixed race condition while getting the target of a
1304         disappearing link (bug #522233).
1306 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1308         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
1309         the error.
1311 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
1313         * reflection.c: Add mono_reflection_register_with_runtime icall to
1314         allow a MonoGenericClass to register itself as the managed mirror of
1315         a given generic instance.
1316         This is a temporary workaround until all MGC instantiation happens in
1317         managed code.
1319         * object-internals.h: Ditto.
1321         * icall-def.h: Ditto.
1323 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1325         * sgen-gc.c (find_in_remsets): Also search the generic store
1326         remsets.
1328 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1330         * sgen-gc.c: Don't access class names in debugging code when
1331         unloading a domain, because they might not be valid anymore.
1333 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1335         * domain.c, domain-internals.h: New function mono_domain_unset().
1337         * appdomain.c (unload_thread_main): Detach the thread again at the
1338         end.
1340         * threads.c: When a thread exists or is detached, unset its domain
1341         so that it's NULL when, for example, a pthread destructor runs.
1343         * sgen-gc.c: Assert that there is no domain set after a thread is
1344         done.
1346 2009-12-10  Mark Probst  <mark.probst@gmail.com>
1348         * class.c (mono_generic_class_get_class),
1349         metadata.c (free_generic_class): Allocate generic MonoClass's from
1350         the image mempool, not via malloc.  The problem with malloc is
1351         that when unloading a domain those classes are freed before
1352         clearing the heap and SGen needs the classes.  Rewriting the
1353         unloading code to do the free later would be more work and there's
1354         no point in using malloc anyway.
1356 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
1358         * loader.c (mono_method_signature): Always call mono_loader_unlock 
1359         before returning.
1361 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1363         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
1364         user string blobs.
1366         * verify-internals.h: Add new function to the internal API.
1368         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
1369         check if it's a valid string.
1371         * object.c (mono_ldstr): Ditto.
1373         Fixes #561943.
1375 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
1377         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
1378         from a method before returning it. This is the expected behavior.
1380 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
1382         * reflection.c (inflate_method): Handle the case of a regular system type.
1384 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1386         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
1387         gathering code.
1389         * mempool.c, mempool-internals.h: New function
1390         mono_mempool_get_bytes_allocated().
1392         * Makefile.am: sgen-pinning-stats.c added.
1394 2009-12-08  Mark Probst  <mark.probst@gmail.com>
1396         * sgen-gc.c (create_allocator): Only use the fast path if the
1397         object size is within the small object size limit.
1399 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1401         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
1402         possibly adding padding to sizeof (GCMemSection).
1404 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1406         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
1407         reference is not in the nursery.
1409 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
1411         * class.c (mono_class_from_typeref): Bounds check idx against the 
1412         assemblyref table.
1414 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1416         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
1417         through the potential roots, then sort the results and find the
1418         pinned objects from there.
1420         * Makefile.am: sgen-pinning.c added.
1422 2009-12-07  Mark Probst  <mark.probst@gmail.com>
1424         * sgen-gc.c: Record generic stores in specialized remset buffers.
1426 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1428         * sgen-gc.c: Make pinned chunks the same size as major heap
1429         sections, and align them as well, so that we can check whether an
1430         object is in a pinned chunk or a major section in constant time.
1432 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1434         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
1436 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1438         * sgen-gc.c: Make all major heap sections the same size (currently
1439         128k) and allocate them on aligned addresses.  Small heap sections
1440         give us better granularity with pinned objects - we can free up
1441         much more memory.
1443 2009-12-06  Mark Probst  <mark.probst@gmail.com>
1445         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
1446         output removed.
1448 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1450         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
1452         * mono/metadata/assembly.c: When opening an assembly image, pass the real
1453         names in addition to the runtime generated one.
1455         * mono/metadata/image.h: Add a function to take the real name of the assembly
1456         image.
1458         * mono/metadata/image.c: If a real name has been passed to load an assembly,
1459         use it instead of the runtime generated one.
1461         Code is contributed under MIT/X11 license.
1463 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1465         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
1466         before the other checks to prevent problems if the DateTime class is blittable.
1467         Hopefully fixes #559600.
1469 2009-12-05  Mark Probst  <mark.probst@gmail.com>
1471         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
1472         returns the largest string length that will not be put into the
1473         LOS.
1475         * sgen-gc.c, gc-internal.h: New function that returns the largest
1476         object size that will not be put into the LOS.
1478         * appdomain.c: Bump corlib version.
1480 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
1482         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1484         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
1486 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1488         * reflection.c (inflate_method): Fix signature.
1490         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
1491         in managed code.
1493 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
1495         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
1497 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1499         * sgen-gc.c: Abstract to-space handling.
1501 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
1503         * loader.c (find_method_in_class): Ignore methods with broken signatures.
1505         Fixes #559906.
1507 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1509         * sgen-gc.c: Only add references from outside the nursery to
1510         within the nursery to the global remset list.
1512 2009-12-03  Mark Probst  <mark.probst@gmail.com>
1514         * appdomain.c (create_exceptions): Set the domain temporarily if
1515         necessary to avoid cross-domain references.
1517 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1519         * verify.c (get_stack_type): Return that the type is invalid instead of
1520         asserting.
1522         * verify.c (mono_method_verify): Verify that all locals and arguments
1523         have valid stack types.
1525         Fixes #559913.
1527 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1529         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
1530         bounds checking overflow aware.
1532         Fixes #559910.
1534 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1536         * verify.c (do_invoke_method): Check for invalid method signatures.
1538         Fixes #553450.
1540 2009-12-02  Jb Evain  <jbevain@novell.com>
1542         * appdomain.c (MONO_CORLIB_VERSION): bump.
1543         * icall-def.h (get_base_definition): renamed to get_base_method
1544         and add a boolean argument indicating we want the original
1545         method definition, or the immediate base method.
1546         * icall.c: apply the get_base_definition to get_base_method change.
1548 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1550         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
1552         Fixes #558042.
1554 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
1556         * class.c: remove asserts for invalid type token in
1557         mono_class_name_from_token(), mono_assembly_name_from_token() and
1558         mono_class_create_from_typedef () (fixes bug #553318).
1560 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
1562         * metadata.c, class.c, loader.c: remove assert after bsearch() for
1563         incorrect assemblies (bug #553322).
1565 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1567         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
1569         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
1571         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
1573         * class.c (inflate_generic_context): Ditto.
1575         * loader.c (method_from_methodspec): Ditto.
1577         Fixes #558230.
1579 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1581         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
1583         * class.c (mono_class_create_from_typespec): Ditto.
1585         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
1587         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
1589         Fixes #558184.
1591 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
1593         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
1595         * verify.c (verify_delegate_compatibility): Ditto.
1597         * verify.c (do_newobj): Ditto.
1599         Fixes #558046.
1601 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1603         * sgen-gc.c: Use a gray queue instead of requiring that gray
1604         objects are in a contiguous region.
1606         * sgen-gray.c: The gray queue implementation.
1608         * Makefile.am: sgen-gray.c added.
1610 2009-12-02  Mark Probst  <mark.probst@gmail.com>
1612         * appdomain.c: When unloading a domain, zero its static data and
1613         perform a minor collection when using SGen.  That will get rid of
1614         all the remsets pointing into that domain's static data.
1616         * sgen-gc.c: Allow remsets into static data.  By doing this we
1617         need less checks so we're more efficient.
1619 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1621         * verify.c (mono_method_verify): Check for catch clauses with broken
1622         types.
1624         Fixes #558465.
1626 2009-12-01  Jb Evain  <jbevain@novell.com>
1628         * class.c (make_generic_param_class): set the namespace of
1629         the generic parameter class from its owner, if available.
1631 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1633         * verify.c (code_bounds_check): Do proper overflow checking.
1635         * verify.c (mono_method_verify): The number of switch entries is
1636         an unsigned int. Properly bounds check it.
1638         Fixes #558594.
1640 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1642         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
1643         mono_metadata_method_has_param_attrs which only checks if a given param
1644         list has a non zero flags entry.
1646         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
1647         to inform how many params should we expect to decode.
1649         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
1650         as it's faster than mono_metadata_get_param_attrs.
1652         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
1653         add mono_metadata_method_has_param_attrs.
1655 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1657         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
1658         failures.
1660         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
1661         is -1 but its class is broken.
1663         Fixes #558522.
1665 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1667         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
1668         for parameter overflow.
1670         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
1671         of mono_metadata_get_param_attrs.
1673         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
1674         API.
1676         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
1678 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
1680         * class.c (mono_class_setup_fields): Check for fields with broken types.
1682         Fixes #558741.
1684 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
1686         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
1687         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
1688         its TypeBuilder::CreateType ().
1690         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
1691         if not needed.
1693         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
1694         to make setup_interface_offsets happy.
1696         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
1697         compilation now works.
1699 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
1701         * appdomain.c (create_exceptions): New helper function extracted from
1702         mono_runtime_init () to precreate objects used during exception handling.
1703         (mono_runtime_init): Call it.
1704         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
1706 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
1708         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
1709         compilation until the proper one is found.
1711 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
1713         * class.c (mono_class_setup_vtable_general): Cache the result of
1714         get_virtual_methods () since it can be slow because of the metadata
1715         optimization.
1717         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
1718         from a MonoValueHashTable for now, since the later is based on an earlier
1719         version of hpj's internal probing code and seems to have serious collision
1720         issues.
1722         * loader.c (mono_get_method_full): Update after the change above.
1724 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1726         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
1728 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1730         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
1731         the GTD instead of the DGC instead of crashing.
1733         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
1734         required. Inflate fields if needed.
1736         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
1737         finished. Renamed.
1739 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
1741         * class.c (check_interface_method_override): Check for NULL signatures and fail
1742         the type.
1744         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
1746         Fixes #553428.
1748 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
1750         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
1751         the MONO_METHOD_FLAGS column instead of decoding the whole row.
1753 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1755         * loader.c (field_from_memberref): Resolve the class first then the field
1756         signature. Remove a lot of duplicated code and make sure we don't pass valid
1757         values to mono_loader_set_error_field_load.
1759         Fixes #553306.
1761 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
1763         * class.c (inflate_generic_type): Change code to use new signature of
1764         mono_error_set_bad_image.
1766         Fixes #558124.
1768 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
1770         * verify.c (mono_method_verify): Don't free ctx.params items if 
1771         we aborted while inflating the ctx.locals. Complete previous fix
1773 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
1775         * verify.c (mono_method_verify): Use the uninflated type name, 
1776         when the inflated is null, to report errors. Also take care when
1777         freeing, not to free everything since, in case of an error, some
1778         stuff would be copies (i.e. not allocated by the function itself)
1779         Fix bug #558145
1781 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1783         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
1784         or overflow. The caller must have done this check explicitly. This guard us
1785         from accessing invalid memory.
1787         * verify.c (do_push_static_field): Check for stack overflow.
1789         Fixes #553333.
1791 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
1793         * loader.c (find_method_in_class): Don't crash if the signature cannot
1794         be resolved.
1796         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
1797         of asserting for the case of invalid params.
1799         Fixes #553304.
1801 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
1803         * image.c (mono_image_load_module): Fix crash when a bad assembly
1804         has no module at all (fix bug #553412) and also replace the 
1805         g_assert with a return NULL (documented return value for failure)
1807 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
1809         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
1811 2009-11-23  Miguel de Icaza  <miguel@novell.com>
1813         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
1814         file attribute to managed code and avoid doing the mask/attribute
1815         checks here. 
1817 2009-11-22  Miguel de Icaza  <miguel@novell.com>
1819         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
1820         the managed world.
1822         * icall-def.h: New entry points.
1823         
1824 2009-11-19  Mark Probst  <mark.probst@gmail.com>
1826         * process.c: Don't put references to managed objects into a
1827         g_ptr_array.
1829 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
1831         * class.c (can_access_internals): Allow CoreCLR to participate in
1832         allowing (or not) [InternalsVisibleTo] between assemblies.
1833         * security-core-clr.c|h: Make sure that only trusted code (a 
1834         superset of platform code) can access the internals of platform
1835         code.
1837 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
1839         * reflection.c: use the correct base class to get the virtual method
1840         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
1842 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
1844         * security-core-clr.c (get_caller_no_reflection_related): 
1845         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
1846         it's still reflection and must be filtered correctly.
1848 2009-11-16  Mark Probst  <mark.probst@gmail.com>
1850         * object.c (compute_class_bitmap): Fix for large bitmaps.
1852 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
1854         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
1856         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
1857         koush@koushikdutta.com). Disable GC_no_dls on android.
1859 2009-11-12  Mark Probst  <mark.probst@gmail.com>
1861         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
1862         tlab_next points outside the TLAB because the allocator was
1863         interrupted.
1865 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1867         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
1869 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1871         * object-internals.h: Change signature for mono_string_to_utf8_image.
1873         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
1874         argument.
1876         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
1877         exceptions due to mono_string_to_utf8.
1879 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1881         * object-internals.h: Change signature for mono_string_to_utf8_mp.
1883         * object.c (mono_remote_class): Make sure all resources are released before
1884         raising an exception.
1886         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
1888 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1890         * mono-perfcounters.c (network_get_impl): Change variable initialization
1891         ordering to fix potential memory leak in case of exceptions.
1893         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
1894         encoded strings.
1895         
1896 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
1898         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
1899         variable initialization ordering to fix potential memory leak in case
1900         of exceptions.
1902 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
1904         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
1905         needed.
1907 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1909         * appdomain.c: Fix shadow path code to better deal with exceptions.
1911 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1913         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
1914         exception in the middle of the runtime code.
1916 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
1918         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
1919         leak memory with broken envvar value.
1921 2009-11-06  Mark Probst  <mark.probst@gmail.com>
1923         * reflection.c (mono_reflection_setup_internal_class): Because
1924         nested classes are not added to the name cache, we must put them
1925         in the reflection_info_unregister_classes list.
1927 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
1929         * class.c: When CoreCLR is enabled don't call mono_init_com_types
1930         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
1931         platform (trusted) code. Instead we return a TypeLoadException to
1932         be thrown later. This is the exception thrown by Silverlight 2 if
1933         a type, inside application (user) code is marked with [ComImport]
1935 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
1937         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
1938         mono_is_debugger_attached () too.
1940         * mono-debug.c (mono_is_debugger_attached): New helper function.
1941         (mono_set_is_debugger_attached): Ditto.
1943 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1945         * object-internals.h: Add mono_string_to_utf8_checked.
1947         * object.c: Implement mono_string_to_utf8_checked.
1949 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1951         * class.c: Add missing check for load errors after every
1952         call to mono_class_setup_fields
1954         Fixes #552282.
1956 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1958         metadata-verify.c (verify_tables_schema): Fix the error message.
1960 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1962         * metadata.c: Change event table schema to use TDOR for event type
1963         as this is what it's meant to be.
1965         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
1966         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
1967         entry.
1969         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
1970         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
1971         rows in MONO_TABLE_GENERICPARAM.
1973         Fixes #552289.
1975 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
1977         * class.c (mono_image_add_to_name_cache): Assert on duplicate
1978         insertion.
1980         * reflection.c (mono_reflection_setup_internal_class): Avoid
1981         registering a gc root the same MonoClass multiple times.
1982         Don't register nested types on the global scope as they should
1983         not be available there.
1985 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1987         * culture-info-tables.h: regenerated.
1989 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
1991         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
1993 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
1995         * string-icalls.c|h: Remove string internal calls that are not 
1996         used anymore by the class libraries.
1997         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
1998         which is not used in the class librairies.
1999         * icall-def.h: Update tables.
2001 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2003         * class.h: Move mono_class_inflate_generic_type_checked...
2005         * class-internals.h: to here and make it internal. We don't want to
2006         further expose MonoGenericContext. 
2008 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2010         * verify.c (mono_method_verify): Improve error message.
2012 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
2014         * reflection.c (fieldref_encode_signature): If field_image is NULL then
2015         the token is already properly encoded. Fixs 4.0 build.
2017 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2019         * locales.c (construct_number_format): Check if the number index is
2020         valid before trying to use it, if not, just return.
2021         
2022 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
2024         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
2025         since that loses the abort state. Fixes #539394.
2027 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
2029         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
2030         explicit this argument to the call signature.
2031         (mono_marshal_get_icall_wrapper): Ditto.
2033 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2035         * reflection.c (fieldref_encode_signature): Add new field_image parameter
2036         to indicate which assembly to use when resolving a custom-mod.
2038         Fixes handling of volatile fields used across assemblies as reported in #551513.
2040 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2042         * loader.c: Improve error messages.
2044 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2046         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
2047         of interfaces. Fixes IKVM.
2049         * class.c (mono_class_setup_vtable_general): Improve debug spew.
2051 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
2053         * verify.c (verifier_inflate_type): Return the inflated type on success.
2055 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
2057         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
2059         * threads.c (mono_thread_attach): Call the profiler thread start callback.
2061         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
2063         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
2064         flag set.
2066         * profiler.c: Add new profiler callbacks for runtime invoke.
2068         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
2070 2009-11-01  Mark Probst  <mark.probst@gmail.com>
2072         * sgen-gc.c: Keep track of the reason for a major collection and
2073         write it to the heap-dump file.
2075 2009-10-31  Miguel de Icaza  <miguel@novell.com>
2077         * threads.c: refactor the code that initializes the
2078         thread_start_args into a reusable function and use this in the two
2079         methods that start up threads.
2081 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
2083         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
2084         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
2086 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2088         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
2089         Until now, we only had the per-cpu(core) counters.
2091 2009-10-28  Mark Probst  <mark.probst@gmail.com>
2093         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
2094         mono_gc_get_suspend_signal(), which returns the suspend signal
2095         number used by the GC.
2097 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
2099         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
2101         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
2102         signalling start_notify.
2104 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2106         * appdomain.c: do not test the st_mode field for shadow-copies.
2107         Fixes bug #545276.
2109 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
2111         * threadpool.[ch]: added hooks for thread start/finish and item
2112         processing begin/end. For monotouch use only.
2114 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
2116         * threads.c (mono_thread_get_name): New helper function.
2118         * reflection.c (resolve_object): Set handle_class for strings too.
2119         (mono_reflection_create_custom_attr_data_args): New helper function to decode
2120         a cattr blob into a set of arrays and structures without creating the custom
2121         attributes themselves.
2122         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
2124         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
2126         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
2127         function.
2129 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2131         * verify.c: Replace calls to mono_class_inflate_generic_type with
2132         mono_class_inflate_generic_type_checked. Fixes #480005.
2134 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
2136         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
2137         object since not all paths lead to callees initing it.
2139 2009-10-23  Alp Toker  <alp@nuanti.com>
2141         Fix embedding API breakage from r144688. mono-compiler.h is an internal
2142         header and should not be shipped:
2144         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
2145         which is specific to the mono build. Not going to work.
2147 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
2149         * security-manager.c: Report if core-clr is active from
2150         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
2151         to allow Moonlight BCL to behave appropriately (both in browser
2152         and outside, e.g. smcs)
2154 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2156         * mono-config.c: ignore UTF-8 BOM and report parser errors.
2157         Fixes bug #549108.
2159 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2161         * class.c: fix typo.
2163 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
2165         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
2166         a MonoError parameter.
2168         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
2169         version that can does proper error handling.
2171         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
2173         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
2175         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
2177 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2179         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
2180         NO_UNALIGNED_ACCESS is defined.
2182 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
2184         * marshal.c (mono_string_builder_to_utf16): Applied patch from
2185         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
2186         Fixes #549173.
2188 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2190         * sgen-gc.c: Shorten sections whenever possible.
2192 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2194         * sgen-gc.c: Use our portable semaphore #defines.
2196 2009-10-22  Mark Probst  <mark.probst@gmail.com>
2198         * sgen-gc.c: A debug option for dumping the heap layout to a file
2199         after each collection.
2201 2009-10-21  Mark Probst  <mark.probst@gmail.com>
2203         * sgen-gc.c: Make managed write barriers atomic via
2204         thread-restarts.
2206 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
2208         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
2209         methods. Fixes #543021.
2211 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2213         * socket-io.[ch]: fix VS build.
2215 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
2217         * icall-def.h:
2218         * socket-io.[ch]: implemented SendFile.
2220 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
2222         * class.c (mono_class_create_from_typedef): Initialize class->element_class
2223         before the interfaces to avoid crashes later if class initialization fails.
2224         Fixes #548417.
2226         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
2227         Fixes #548276.
2229 2009-10-20  Marek Safar  <marek.safar@gmail.com>
2231         * domain.c: Bump 4.0 version.
2233 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
2235         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
2236         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
2237         check since 'pubkey' can't be NULL at this stage
2238         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
2239         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
2240         initialization of 'iter'
2242 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
2244         * cominterop.c : Search the interface parts of vtable to find 
2245           method matches.  Fixes 547030.
2247         Code is contributed under MIT/X11 license.
2249 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
2251         * marshal.c: BeginInvoke cannot be called on multicast delegates with
2252         multiple targets. Fixes bug #574426.
2254 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2256         * profiler.h: Put here the definition of
2257         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
2258         (and fix the build...).
2260 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
2262         * profiler.c, profiler.h, profiler-private.h:
2263         Added support for different ways of getting call chains in stat mode.
2265 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2267         * object.c, object-internals.h: New function for computing the
2268         size of an array, factored out of mono_array_new_full().  Use
2269         SGen's functions for allocating arrays and vectors.
2271         * sgen-gc.c, gc-internal.h: Special functions for allocating
2272         arrays and vectors without race conditions.  A managed array
2273         allocator method.
2275         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
2277 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2279         * object.c, object.h, icall.c: Write barriers do the copying now,
2280         as well, so no need for an additional memcpy.
2282         * sgen-gc.c: Lock when storing remsets.  Do the memory
2283         copying/moving in the write barriers.
2285         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
2287         * reflection.c: Added an assert.
2289 2009-10-12  Mark Probst  <mark.probst@gmail.com>
2291         * threads.c, process.c: A few missing write barriers.
2293 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
2295         * mono-perfcounters.c, mono-perfcounters-def.h: Add
2296         network performance counters for bytes sent per second, bytes
2297         received per second, and bytes total per second.
2299         Code is contributed under MIT/X11 license.
2301 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2303         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
2304         Fix warning.
2306 2009-10-09  Mark Probst  <mark.probst@gmail.com>
2308         * threads.c, object-internals.h, object.c: Move code for
2309         transferring an object to a different domain (via
2310         serialization/remoting) to object.c.
2312         * object.c (call_unhandled_exception_delegate): If the exception
2313         is in a different domain than the delegate, transfer the exception
2314         to that domain.
2316 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
2318         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
2319         Fixes #322934.
2321 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
2323         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
2325 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2327         * object.c (mono_method_return_message_restore): Handle the case
2328         where the argument is an instance of a generic type.  Fixes
2329         #544446.
2331 2009-10-06  Mark Probst  <mark.probst@gmail.com>
2333         * object.c (set_value): Write barrier fix - we must pass the
2334         count, not the size.
2336 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
2338         * domain.c (mono_init_internal): Print a useful error message when encountering
2339         an old mscorlib, instead of crashing. Fixes #544307.
2341 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
2343         * appdomain.c (copy_app_domain_setup): Fix a warning.
2345         * debug-helpers.c (dis_one): Ditto.
2347 2009-10-04  Mark Probst  <mark.probst@gmail.com>
2349         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
2350         into the new domain, instead of referencing the original one.
2352         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
2353         non-static.
2355         * appdomain.c: Corlib version bump.
2357 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2359         * threadpool.c: one more...
2361 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2363         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
2364         threads to die because we're shutting down. delgate5.exe works again.
2366 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
2368         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
2369           ccw_interface_hash table when a ccw is finalized.
2371         Code is contributed under MIT/X11 license.
2373 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2375         * assembly.c, domain.c, image.c, metadata-internals.h: Split
2376         domain and image unloading into two steps.  We must do this
2377         because clearing the domain in SGen requires the class metadata to
2378         be intact, but we need to free the mono_g_hash_tables in case a
2379         collection occurs during domain unloading and the roots would trip
2380         up the GC.
2382 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2384         * object-internals.h: Remove serialized culture fields from
2385         MonoInternalThread.
2387         * icall-def.h, thread-types.h, threads.c: Remove serialized
2388         culture icalls.
2390         * appdomain.c: Corlib version bump.
2392 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
2394         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
2395         Fixes #543133.
2397 2009-09-30  Mark Probst  <mark.probst@gmail.com>
2399         * sgen-gc.c: Try to shorten the new section after a major
2400         allocation to avoid ever-growing sections.
2402 2009-10-13  Martin Baulig  <martin@ximian.com>
2404         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
2405         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
2406         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
2407         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2409         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
2411 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
2413         * threadpool.c: fixed the order in which 'completed' and the wait
2414         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
2415         No need to use the wait_handle field of ASyncCall. Make sure the
2416         threadpool is active when adding a job or queueing an idle thread.
2418 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
2420         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
2422         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
2423         when using --compile-all.
2425 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2427         * metadata.c (free_generic_class): Unregister the field_objects
2428         roots if we're using SGen.
2430 2009-09-27  Mark Probst  <mark.probst@gmail.com>
2432         * reflection.c (mono_dynamic_image_free): Deregister the GC root
2433         for GenericParamTableEntry.gparam.
2435 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2437         * marshal.c: don't create the handle when calling. It is created later
2438         if needed.
2440 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2442         * sgen-gc.c: Warning fixes.
2444 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2446         * sgen-gc.c: New debug option "xdomain-checks", which scans the
2447         whole heap for cross-domain references before each collection.
2449         * sgen-scan-object.h: The scan action can now use SCAN to scan the
2450         object.
2452         * threadpool-internals.h, threadpool.c: New function
2453         mono_thread_pool_is_queue_array() for checking whether a given
2454         array is used as a (cross-domain) queue by the thread pool code.
2456 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2458         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
2459         searches the whole heap for objects containing a specific
2460         reference.  Only for debugging.
2462 2009-09-26  Mark Probst  <mark.probst@gmail.com>
2464         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
2466         * icall-def.h, threads.c, threads-types.h: New icalls for copying
2467         byte arrays between domains.
2469 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
2471         * threadpool.c:
2472         * class-internals.h:
2473         * mono-perfcounters-def.h:
2474         * mono-perfcounters.c:
2475         -There is a list of idle threads
2476         -Each of those idle threads wait on their own WaitHandle instead
2477         of all of them using the same semaphore. When a new work item is
2478         added, the job is assigned directly to an idle thread or a newly
2479         created one if possible and then the handle for that thread is
2480         signaled. Compare that to the current approach where all the
2481         threads in the pool compete to dequeue a job from the same
2482         queue.
2483         -New struct ThreadPool that brings together the bunch of static
2484         variable for each threadpool (IO and regular).
2485         -New performance counters: # of items added and its rate per
2486         threadpool. The rate will be used later, perhaps together with
2487         other perf. counters, to decide when idle threads should exit.
2489 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
2491         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
2492         Fix typo on Windows build.      
2493         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
2494         
2495         Code is contributed under MIT/X11 license.
2497 2009-09-25  Mark Probst  <mark.probst@gmail.com>
2499         * object-internals.h: The Thread class is split up into Thread and
2500         InternalThread now.  We have exactly one InternalThread per
2501         thread, and at most one Thread per appdomain per thread.  Most
2502         data is stored in InternalThread.  All InternalThread objects live
2503         in the root domain.
2505         * class-internals.h: Add internal_thread_class to MonoDefaults.
2507         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
2508         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
2509         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
2510         resulting from the split of the Thread class.
2512         * gc-internal.h: Prototype for new function for checking whether a
2513         thread is the finalizer thread.
2515         * appdomain.c: Corlib version bump.
2517 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2519         * appdomain.c|h: Add a mono_domain_try_unload method which is
2520         equivalent to mono_domain_unload, except that it returns an exception
2521         instead of throwing it. Make mono_domain_unload use the
2522         mono_domain_try_unload method to avoid code-duplication.
2524 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
2526         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
2527         a problem.
2529 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
2531         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
2532         aborting when a conversion is not implemented.
2534 2009-09-23  Miguel de Icaza  <miguel@novell.com>
2536         * verify.c: when comparing culture strings, use g_ascii_strcmp
2538         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
2539         when comparing public key tokens to use memcmp on 16 bytes.   I do
2540         not believe this ever worked as advertised in the past.
2542         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
2543         which would have always failed earlier.
2545 2009-06-25  Miguel de Icaza  <miguel@novell.com>
2547         * gc.c: Raise a NullArgumentException if the object passed is
2548         null.
2550 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
2552         * image.c (mono_image_close): Atomically decrement the reference count and
2553         remove the image from the hash tables, to prevent another thread from seeing a
2554         dying MonoImage. Fixes #541194.
2556 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2558         * threadpool.c: actually use the minimum number of 'completion ports'
2559         (for us is just a potential worker thread).
2561 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2563         * threadpool.c: remove ares_htable. It does not make sense any more
2564         since the same objects are now stored in GC-tracked arrays while they are
2565         in the queue.
2567 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2569         * threadpool.c: increase the minimum length of the queues to 128.
2570         Remove warning.
2572 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
2574         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
2575         return the modified signature used by string ctors.
2577 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
2579         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
2580         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
2581         method, to be used by full-aot.
2583 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
2585         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
2586         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
2587         be known to be good.
2589         * class.c (mono_class_init): Fail array types if their element type fails initialization
2590         as well.
2592         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
2593         initialization, additionally we request the element_type vtable to be initialized as well.
2595         This is fine and should not increase the working set in any meaningful way since it's reasonable
2596         to assume       that most code will create an array and eventually populate it, which will require the
2597         type's vtable to be initialized.
2599         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
2601 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
2603         * normalization-tables.h : regenerated.
2605 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
2607         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
2608         a leb128 encoding can take up to 5 bytes.
2610 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2612         * class.c (verify_class_overrides): Remove useless argument.
2614         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
2615         before interface enumeration as this is no longer required.
2617 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
2619         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
2620         used under mono_class_init context. This functions avoid any code path that
2621         calls mono_class_init, which leads it to be slow as some things like the interface
2622         bitmap are not available.
2624         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
2625         of it's own broken version. Fixes the verifier part of #538588.
2627         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
2628         API.
2630 2009-09-15  Mark Probst  <mark.probst@gmail.com>
2632         * class.c (mono_class_init): Always set an exception in a class if
2633         vtable setup fails.  Fixes #538577.
2635         * generic-sharing.c: Raise an exception if mono_class_vtable()
2636         returns NULL.
2638 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
2640         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
2641         methods of vtypes, as they could be incorrectly shared with static methods
2642         taking an IntPtr argument.
2644 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
2646         * domain.c:
2647         * object.c:
2648         * class-internals.h: renamed waithandle_class to
2649         manualresetevent_class.
2650         * marshal.c: propagate the exception if a remoting BeginInvoke call
2651         fails.
2653 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2655         * object.c: Properly handle vtable failures.
2657 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2659         * socket-io.c: Assert on vtable failure.
2661         * mono-mlist.c: Assert on vtable failure.
2663 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2665         * marshal.c: Assert on vtable failure.
2667 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2669         * icall.c: Properly handle vtable failures.
2671 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2673         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
2675 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2677         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
2679         * console-unix.c (do_console_cancel_event): Same.
2681 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2683         * class-internals.h: Add mono_class_vtable_full function that allows control
2684         if an exception should be raised or not.
2686         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
2687         to do what its documentation say, that is to return NULL and set exception_type on
2688         failure.
2690         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
2691         and change the code to honor it.
2693 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
2695         * verify.c: Fix typo in error message.
2697 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
2699         * security-core-clr.c: Fix default_platform_check so it can run
2700         the runtime coreclr tests (without an infinite recursion when
2701         throwing an exception).
2703 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2705         object.c (mono_delegate_ctor_with_method): Guard against null method.
2707 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2709         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
2710         that should be replaced with error handling later.
2712 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2714         * marshal.c (mono_delegate_end_invoke): Fix warning.
2716 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2718         * loader.c (mono_field_from_token): Properly handle invalid
2719         dynamic tokens.
2721 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2723         * pedump.c (verify_image_file): Skip types that can't be
2724         decoded.
2726 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2728         * verify.c: Look for recursive valuetypes only against the
2729         type been initialized as this is a lot simpler and works.
2731 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
2733         * verify.c: Ensure that fields are properly loaded before
2734         checking them.
2736 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
2738         * object.c (mono_object_get_virtual_method) : Call 
2739           mono_cominterop_get_invoke if the object is a COM object.
2741         Code is contributed under MIT/X11 license.
2743 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
2745         * verify.c: Check for recursive valuetype definitions.
2747 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
2749         Use inheritance-aware interface offsets. Inherited types use the same offsets
2750         of their parents. This reduce offset duplication in case more than one type in
2751         the inheritance tree explicitly implements the same interface.
2753         This also removes a source of vtable bubbles found in #532409. An abstract type
2754         isn't required to provide abstract methods to all interfaces it implements, which
2755         resulted in a bubble with the previous scheme as the child would get a non-full
2756         vtable from its parent. We fail all concrete types with vtable bubbles, so this
2757         should be fixed.
2759         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
2760         it's expected to not cause any significant increase beyond that.
2762         * class.c (setup_interface_offsets): Compute super class iface offsets
2763         first to force sharing.
2765         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
2766         dumping only the relevant ones.
2768         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
2769         methods a new slot regardless if they belong to an interface or not. This allows
2770         an inherited type to override the iface method separately from the class one.
2772 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
2774         * threadpool.c: make the Sleep() alertable to prevent delays exiting
2775         applications that take less than 2s to execute.
2776         Bug #524984 fixed.
2778 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
2780         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
2782         * object.c (mono_get_runtime_callbacks): New helper function to return
2783         the runtime callbacks.
2785         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
2786         mono_get_runtime_build_info () as the display name.
2787         
2788 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
2790         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
2791         argument, since NEWARR expects a native int. Fixes #481559.
2793 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2795         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
2796         against broken SRE methods.
2798 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2800         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
2801         a NULL variable. Abort early on failure.
2803 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
2805         * class.c (can_access_type): Fail visibility test for non nested
2806         types with nested visibility.
2808 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
2810         * assembly.c (parse_public_key): Avoid allocating (and not 
2811         freeing) the public key array when it's not requested by the 
2812         caller.
2813         * threads.c (mono_thread_manage, mono_thread_create_internal, 
2814         ves_icall_System_Threading_Thread_Thread_internal): Free 
2815         allocated memory on error.
2817 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2819         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
2821 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2823         * class.c (mono_class_setup_fields): Remove duplicated local variable
2824         named gklass.
2825         Rename gklass to gtd to reflect the fact that it points to the generic
2826         type definition.
2827         Remove the duplicated call to mono_class_setup_fields on gtd and move
2828         the error check to the beginning.
2830 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
2832         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
2833         Remove cruft of the previous patch.
2835 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2837         * metadata-verify.c (verify_method_table): Check for abstract + final.
2838         Fixes #534175.
2840 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2842         * verify.c (verify_class_fields): Check for duplicate fields.
2844 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2846         * metadata-verify.c: Verify the typeref table for duplicates.
2848 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
2850         This reverts r140936 and properly handles interfaces with static methods. The
2851         right fix is to ensure vtables without bubles which is an easier to verify
2852         constraint. We should avoid such special cases as of the reverted patch as those
2853         only make the runtime more brittle.
2855         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
2856         static methods on interfaces.
2858         * class.c (setup_interface_offsets): Use the number of virtual methods when
2859         calculating interface offsets instead of the number of methods. This way we
2860         avoid bubles on the layout.
2862 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
2864         * metadata-verify.c (verify_metadata_header): Some very smart
2865         obfuscators like to add extra stream headers. Ignore them.
2867 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
2869         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
2870         methods correctly.
2872 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
2874         * metadata-verify.c: Verify for duplicated types.
2876 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
2878         * metadata-verify.c (verify_typedef_table): Verify for nested types
2879         without an entry on the nested class table.
2881 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
2883         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
2884         <tom_hindle@sil.org>. Add locking around hash table accesses.
2886 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2888         * verify.c (mono_verifier_verify_class): Verify all interface if
2889         really are interfaces. Fixes #534184.
2891 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
2893         * pedump.c: Initialize all types during metadata validation so we report
2894         errors only detected as part of class initialization.
2896 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
2898         * metadata-verify.c (verify_method_table): PInvoke requires method to
2899         be static. Fixes #534189
2901 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
2903         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
2904         being NULL.
2906 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2908         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
2909         for holes or bad methods. Fixes #525314.
2911 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2913         * class.c (setup_interface_offsets): Don't allocate slot
2914         for the same interface multiple times. This creates bubbles
2915         that waster space and make vtable verification harder.
2917         The same interface get a slot multiple times since we need
2918         to get the closure of all implemented interfaces, which means
2919         the same interface is reported multiple times.
2921 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2923         * verify.c (mono_verifier_verify_class): Don't check the fields
2924         of generic instances since the context on which they got expanded
2925         might lead to false positives.
2927         Such thing happens when a generic type is inflated in the context
2928         of a generic method and the inflated type of a field turns into a
2929         generic method argument, which causes the checking code to think
2930         it's an invalid class when it's not.
2932 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
2934         * verify.c (mono_type_is_valid_in_context): Verify if type
2935         is NULL and remove duplicate test.
2937 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2939         * verify.c (mono_verifier_verify_class): Check fields for
2940         invalid generic arguments.
2942 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2944         * class.c (verify_class_overrides): Verify if for static
2945         and non virtual methods.
2947 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2949         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
2950         Check for errors after retrieving the vtable.
2952 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2954         * class.c (mono_class_setup_vtable_general): Verify
2955         if method overrides are valid before processing them.
2957 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
2959         * marshal.c (mono_array_to_lparray): Fix minimal build with
2960         cominterop disabled.
2962         * marshal.c (mono_free_lparray): Same.
2964 2009-08-21  Mark Probst  <mark.probst@gmail.com>
2966         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
2967         the hash function for the ares_htable.
2969 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
2971         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
2972         bit for assembly flags. MS is ok with it but there is no spec anywhere
2973         on its mean
2975 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2977         * class.c (mono_class_create_from_typedef): Emit profiler events
2978         in all cases.
2980 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2982         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
2983         Release memory on failure.
2985 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
2987         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
2988         to the internal API.
2990         * metadata.c (get_constraints): Use a single-linked table as we don't
2991         traverse it backward. Fail and return FALSE if only of the contraint types
2992         is not found.
2994         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
2995         to mono_metadata_load_generic_param_constraints except for having a return value.
2996         This has to be done since the later is part of the public API.
2998         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
2999         and fail the type.
3001         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
3002         and fail the method.
3004 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3006         * metadata-verify.c (is_valid_method_header): Add work-around to deal
3007         with MS broken behavior of emmitting EH section sizes without the
3008         header size added.
3010 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3012         * metadata.c (mono_type_create_from_typespec): Don't allocate image
3013         memory until we're sure that we'll need it. This avoids leaking for
3014         broken types or duplicated instantiation.
3016 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3018         * metadata-verify.c (is_valid_method_header): Fix stupid formating
3019         mistake.
3021 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
3023         * metadata-verify.c (is_valid_method_header): Fix number of clauses
3024         and expected size calculation.
3026 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3028         * class.c (mono_class_get_field_idx): Add fixme for broken
3029         behavior for types with multiple fields with the same name.
3030         I would rather fix it, but have no idea on how to generate
3031         such artifact for testing.
3033 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3035         * verify.c (verifier_load_field): We should allow references to
3036         fields to be made using the generic type definition. It's up to
3037         the loader system to fail invalid ops.
3039         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
3040         are invalid.
3042 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3044         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
3046         * metadata-internals.h: Fix declaration of 
3047         mono_metadata_interfaces_from_typedef_full.
3049         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
3050         heap_alloc_result parameter that controls if the result should be
3051         g_malloc'd.
3053         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
3054         array be g_malloc'd and properly document this public API function.
3056 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3058         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
3059         remove METHOD_HEADER_TINY_FORMAT1.
3061         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
3063         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
3065         Both spec and MS uses only 2 bits to enumerate the kind of header.
3066         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
3067         is superfluous, only used for tiny headers with odd code lengths.
3069         This change also make sure that mono doesn't wronly interpret bit 2
3070         of fat header flags, which is currently reserved.
3072 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3074         * metadata.c (do_mono_metadata_parse_type): Do error
3075         checking for element types. Don't abort if presented
3076         with a broken type kind.
3078 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
3080         * metadata.c (mono_metadata_parse_method_signature_full):
3081         Gracefully fail bad vararg signatures.
3083 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3085         * profiler.c:
3086         * class.c: Fix warnings for uninitialized variables.
3088 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3090         * icall.c: Fix _NSGetEnviron method declaration warning.
3092 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3094         * icall.c:
3095         * reflection.c: Make bitwise checks explicit.
3097 2009-08-18  Christian Hergert  <chris@dronelabs.com>
3099         * debug-helpers.c:
3100         * marshal.c: Fix printf warnings.
3102 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
3104         * reflection.c (encode_cattr_value): Fix a warning.
3106 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3108         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
3109         of array bounds.
3111 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3113         * loader.c (mono_method_signature): Don't assert on broken
3114         signature. Print a more useful error message.
3116 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3118         * loader.c (mono_method_get_marshal_info): Assert if
3119         signature is invalid. Bounds check stores to the
3120         mspecs array;
3122 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3124         * loader.c (field_from_memberref): Fix warning.
3126 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3128         * loader.c (mono_method_get_param_names): Check if signature
3129         is null. Don't store beyond the size of the name array.
3131 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3133         * loader.c (mono_get_method_constrained): Check if signature
3134         is null.
3136 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3138         * loader.c (mono_loader_set_error_bad_image): Improve
3139         error messages.
3141 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3143         * loader.c (mono_get_method_full): Convert an assertion
3144         into a loader error.
3146 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
3148         * class-internals.h, class.c: Better naming and documentation.
3150 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
3152         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
3153         obj is NULL.
3155 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3157         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
3158         parsing fails.
3160 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3162         * loader.c (mono_loader_error_prepare_exception): Handle missing field
3163         errors with no class set.
3165         * loader.c (field_from_memberref): If the field signature is of the wrong
3166         type fail with a MissingFieldException instead of a BadImageException as
3167         this is the behavior observed on MS. 
3169 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3171         * loader.c (field_from_memberref): Don't crash if either the field
3172         signature or the typespec class are invalid.
3174 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3176         * verify.c (verifier_load_field): Don't allow field related
3177         ops to reference fields on generic type definition.
3179 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3181         * metadata-verify.c: Add new warning level for errors specified
3182         by ECMA 335 but that MS ignores.
3184         * metadata-verify.c (verify_method_table): Make compiler controled
3185         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
3186         this check is safe because the end result will only be some visibility
3187         exceptions been thrown.
3189 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
3191         * verify.c (get_boxable_mono_type): Don't allow the
3192         use of the generic type definition on boxed type positions.
3194         Fixes #531237.
3196 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3198         * threadpool.c: Make sure no cross-domain references remain in
3199         ares_htable or the arrays that are thrown away when resizing.
3201 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3203         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
3204         list of classes for which we have to unregister reflection_info
3205         with the GC and which are not in the namespace cache.
3207         * reflection.c (mono_reflection_initialize_generic_parameter): Add
3208         the class to the list.
3210 2009-08-14  Mark Probst  <mark.probst@gmail.com>
3212         * domain.c (mono_domain_free): Unregister the GC roots in
3213         MonoDomain.
3215 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3217         * reflection.c (mono_reflection_type_get_handle): Fix typo.
3219 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
3221         * class.c: Add mono_class_get_field_from_name_full which does
3222         the same as mono_class_get_field_from_name but does check field
3223         signature as well.
3225         * class-internals.h: Export mono_class_get_field_from_name_full as
3226         part of the internal API.
3228         * loader.c (field_from_memberref): Search fields by name and signature
3229         as it's valid to have two fields with same name but different types.
3231         Fixes #528055.
3233 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
3235         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
3237         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
3239         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
3240         System.Type.
3242 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
3244         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
3246         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
3248 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3250         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
3251         to sgen-scan-object.h, which can be included and parameterized via
3252         macros.
3254         * Makefile.am: sgen-scan-object.h added.
3256 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3258         * gc.c: #define GC_dont_gc if we're compiling with SGen.
3260 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3262         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
3263         before clearing a domain in the GC.
3265 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3267         * exception.c (mono_exception_from_name_domain): Actually create
3268         the exception in the specified domain.
3270         * appdomain.c (mono_domain_create_appdomain_internal): Create the
3271         OutOfMemoryException a bit later so that the domain is inialized
3272         "enough" that it works.
3274 2009-08-12  Mark Probst  <mark.probst@gmail.com>
3276         * threads.c (thread_cleanup): Clean up the cached_culture_info
3277         array to prevent cross-domain references.
3279 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
3281         * metadata.c: more documentation for MonoType accessors.
3283 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
3285         Fix incorrect size definitions where the tail array isn't a list
3286         of pointers
3287         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
3288         define size.
3289         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
3290         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
3291         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
3293 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3295         * reflection.h:
3296         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
3298 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3300         * metadata.c:
3301         * loader.c:
3302         * metadata-internals.h:
3303         * method-builder.c:
3304         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
3306 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3308         * cominterop.c:
3309         * metadata.c:
3310         * metadata.h:
3311         * loader.c:
3312         * marshal.c:
3313         * reflection.c: #define for sizeof in MonoType and
3314         MonoMethodSignature.
3316 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3318         * domain.c:
3319         * domain-internals.h: add and use #define's instead of sizeof()
3320         for MonoJitInfo and MonoJitInfoTable.
3322 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
3324         * object.c:
3325         * class.h: use #define instead of sizeof() for MonoRemoteClass.
3327 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
3329         * metadata.c:
3330         * metadata.h:
3331         * object.c:
3332         * class-internals.h:
3333         * generic-sharing.c:
3334         * marshal.c: use a #define instead of sizeof() for a few
3335         structures that use a zero-length array.
3337 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3339         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
3340         to handle inflated generic methods.
3342         * appdomain.c: Bump corlib version.
3344         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
3345         instances.
3347         * reflection.c (fixup_method): Same
3349         * reflection.c (resolve_object): Same.
3351         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
3352         g_error and a decent message.
3354 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
3356         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
3357         from the object because it could not yet be available globally
3358         (it happens if the profiler tries to create a gchandle on the
3359         MonoThread object of a thread that is still registering itself
3360         with the runtime).
3362 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
3364         * reflection.c (mono_generic_class_get_object): Initialized the
3365         managed type arguments array.
3367         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
3369         * appdomain.c: Bump corlib version.
3371 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
3373         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
3374         #527902.
3376 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
3378         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3379         Avoid a crash if synch_cs is not set.
3380         
3381         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
3382         Handle the case when the handle is 0.
3384         * appdomain.c: Bump corlib version.
3386 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
3388         * reflection.c (mono_type_get_object): Fix a warning.
3390 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3392         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
3393         descriptor here.  We assume it's already been computed.
3395         * generic-sharing.c (instantiate_other_info): Compute the GC
3396         descriptor for info type MONO_RGCTX_INFO_KLASS.
3398 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3400         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
3401         type, so don't use MONO_OBJECT_SETREF to set a field.
3403 2009-08-01  Mark Probst  <mark.probst@gmail.com>
3405         * gc.c: We were missing one case where invoking a finalizer would
3406         not reset the domain.  Also, in the finalizer thread loop, assert
3407         that we're in the root domain.
3409 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3411         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
3412         if the type is not an array.
3414 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3416         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
3417         method bound to the declaring type of the method. Raise an exception
3418         if the type is not a generic param.
3420 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
3422         * class.c (print_unimplemented_interface_method_info): Print the
3423         full type name.
3425         * class.c (mono_class_setup_vtable_general): When dealing with a
3426         generic instance first check if the generic type definition is
3427         not broken.
3429 2009-02-11 Tom Hindke <tom_hindle@sil.org>
3431         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
3433         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
3435         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
3437         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
3439         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
3441         Code is contributed under MIT/X11 license
3443 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
3445         * verify.c: Fix naming of stelem and ldelem.
3447 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3449         * generic-sharing.c: Replace the templates lock with the loader
3450         lock because of very hard to resolve deadlock issues.
3452 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
3454         * icall.c (ves_icall_Type_GetMethodsByName): Use 
3455         mono_class_get_vtable_size () instead of accessing klass->vtable_size
3456         directly. Fixes #525338.
3458         * class.c (mono_class_get_vtable_size): New helper function.
3460         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
3461         the field belongs to the type. Fixes #525733.
3463 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3465         * sgen-gc.c: When we stop a thread and its stack top is not within
3466         its allocated stack (because it's in an altstack signal handler),
3467         restart it and stop it again, until it is.
3469 2009-07-30  Mark Probst  <mark.probst@gmail.com>
3471         * sgen-gc.c: Take a thread's stack top and registers from the
3472         sigcontext in the suspend signal handler.
3474         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
3475         stuff to sgen-archdep.h.
3477         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
3478         caller, because have code in sgen-archdep.h to acquire that data.
3480 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
3482         * profiler.c, profiler.h, profiler-private.h:
3483         Added support for keeping track of code chunks and buffers.
3485 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
3487         * metadata-verify.c: Fix endianness problems on decoding functions.
3488         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
3490 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3492         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
3493         schema for vectors and one dimension SZARRAY.
3495 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
3497         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
3498         schema for vectors and one dimension SZARRAY.
3500 2009-07-27  Mark Probst  <mark.probst@gmail.com>
3502         * icall-def.h, thread-types.h, threads.c: New separate icalls for
3503         Interlocked.(Compare)Exchange with object arguments, which invoke
3504         write barriers.
3506 2009-07-26  Miguel de Icaza  <miguel@novell.com>
3508         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
3509         passed invalid arguments.   Fixes another crasher in the
3510         Silverlight test suite.
3512         * class.c (mono_class_array_element_size): Return 0 for the size
3513         of the class;  This fixes the crasher exposed by :
3515         typeof (void).MakeArrayType ();
3517         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
3518         if there is no method to dereference.    Put all the code that
3519         depends on this inside the if (method) block.
3521         This fixes the crasher exposed by Microsoft's Silvelright CLR test
3522         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
3524         With this change, we pass the test.
3525         
3526         * reflection.c (mono_reflection_sighelper_get_signature_local):
3527         Only dereference the assembly if it has been set.    Fixes a
3528         crasher exposed by #525328
3530 2009-07-25  Mark Probst  <mark.probst@gmail.com>
3532         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
3533         don't perform the store in mono_gc_wbarrier_generic_nostore().
3534         Remove the second argument (value), which is not needed.
3536 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
3538         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
3539         the build.
3541         * boehm-gc.c: Ditto.
3542         
3543 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3545         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
3546         not perform the store itself.  Introduce
3547         mono_gc_wbarrier_generic_nostore(), which is the same as
3548         mono_gc_wbarrier_generic_store(), except it doesn't perform the
3549         store.
3551 2009-07-24  Mark Probst  <mark.probst@gmail.com>
3553         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
3554         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
3555         we still need the memcpy().
3557 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3559         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
3560         so that big arrays are handled correctly.  Always use
3561         safe_object_get_size() to calculate array object sizes, which
3562         takes bounds into account.
3564 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3566         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
3567         GC descriptor is computed before we use it.
3569 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3571         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
3572         write barrier if necessary.
3574 2009-07-22  Mark Probst  <mark.probst@gmail.com>
3576         * icall-def.h, icall.c, thread-types.h: New separate icall for
3577         VolatileWrite(object&,object) that uses a write barrier.
3579         * console-unix.c, file-io.c, icall.c, threads.c: Use write
3580         barriers in icalls which write to "ref" or "out" arguments.
3582 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
3584         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
3585         handler in a separate icall, to reduce the size of the wrappers.
3587 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3589         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
3591 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3593         * metadata-verify.c (parse_field): Allow byref field.
3595         * metadata-verify.c (parse_locals_signature): Allow byref locals.
3597         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
3599 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
3601         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
3602         Fixes #522784.
3604 2009-07-20  Robert Jordan  <robertj@gmx.net>
3606         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
3607         Fix invalid IL in valuetype handling (STOBJ must push the
3608         corresponding class). Fixes bug #523149.
3610         Code is contributed under MIT/X11 license.
3612 2009-07-20  Geoff Norton  <gnorton@novell.com>
3614         * gc.c: Use proper semaphores where available on posix and darwin.
3616 2009-07-19  Geoff Norton  <gnorton@novell.com>
3618         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
3620 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
3622         * refletion.c (is_sre_usertype): Change name to is_usertype and
3623         invert it's result so it returns true if the type is an user type
3624         and not the opposite.
3626         * reflection.c (is_*_type): Change all of those to use new macro
3627         check_corlib_type_cached that cached the type lookup so we don't
3628         need to do string comparisons all the type. Changed the signature
3629         to take a MonoClass instead.
3631         * reflection.c: Change mono_image_create_token and resolve_object
3632         to use is_sre_* functions.
3634 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3636         * sgen-gc.c: Check for writes to the stack in the managed
3637         wbarrier as well.
3639 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3641         * sgen-gc.c: When a thread is unregistered, don't free its remsets
3642         but put them on a list which is processed with the other thread's
3643         remsets.
3645 2009-07-18  Mark Probst  <mark.probst@gmail.com>
3647         * sgen-gc.c: Fix and enable the internal allocator instead of
3648         using malloc/free (which causes deadlocks).
3650 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
3652         * refletion.c: Fix builds with SRE disabled by adding a minimal
3653         implementation of mono_reflection_type_get_handle.
3655 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3657         * refletion.c: Make mono_reflection_type_get_handle non static.
3659         * object-internals.h: Export mono_reflection_type_get_handle.
3661         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
3662         unmanaged handle using mono_reflection_type_get_handle.
3664 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
3666         * refletion.c: Replace all reads of MonoReflectionType::type with
3667         calls to mono_reflection_type_get_handle. Only the functions that
3668         deal with constructing TypeBuilder::type have not been changed
3669         because they have to deal with NULL values.
3671         This is a first step into supporting reflection types that don't
3672         map directly into their unmanaged counterpart.
3674 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3676         * metadata-verify.c (parse_locals_signature): Don't complain
3677         on signature with zero locals since MS generates it and doesn't
3678         bother with.
3680 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
3682         * reflection.c (mono_image_get_array_token): Resolve return
3683         type using mono_reflection_type_get_handle.
3685         * reflection.c (mono_image_get_array_token): Resolve array method
3686         parent type using mono_reflection_type_get_handle.
3688 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
3690         * reflection.c (mono_image_basic_init): Applied patch from
3691         <Dax@daxxfiles.net>. Set the public key token from the assembly
3692         builder. Fixes #518909.
3694         * appdomain.c: Bump corlib version.
3696 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
3698         * class.c (mono_class_needs_cctor_run): Make this return false if
3699         the class has no cctor.
3701 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3703         * sgen-gc.c: When the minor GC needs to allocate a new section,
3704         invoke the major GC afterwards.
3706 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
3708         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
3709           Applying the window_style field to the SHELLEXECUTEINFO struct.
3711         Code is contributed under MIT/X11 license.
3713 2009-07-13  Mark Probst  <mark.probst@gmail.com>
3715         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
3716         locking earlier.  Fix it in the managed allocator by making sure
3717         that no thread is stopped there before the GC runs.  If we do stop
3718         a thread there, we restart it and let it run a but, until it stops
3719         somewhere else.
3721         * gc-internal.h, gc.c: Function for getting the IP from a signal
3722         context via a function registered by mini.
3724 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
3726         * object-internals.h (MonoIntPtr): New structure describing a boxed
3727         IntPtr.
3729         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
3730         returns. Fixes #519953.
3732         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
3734 2009-07-09  Mark Probst  <mark.probst@gmail.com>
3736         * class-internals.h, generic-sharing.c: New RGCTX info type for
3737         getting a remoting invoke with check wrapper.
3739 2009-07-07  Geoff Norton  <gnorton@novell.com>
3741         * icall-def.h: Fix the enable-minimal build.
3743 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3745         * object-internals.h: Add MonoReflectionDerivedType.
3747         * reflection.c: Implement support for PointerType.
3748         Fixed tons of warnings.
3750 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3752         * object-internals.h: Add MonoReflectionByRefType.
3754         * reflection.c: Implement support for ByRefType.
3756 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3758         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
3760         * object-internals.h: Add MonoReflectionArrayType and
3761         mono_reflection_create_unmanaged_type.
3763         * reflection.c: Implement support for ArrayType.
3765 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
3767         * metadata-verify.c (is_valid_method_header): Parse EH block
3768         flags correctly.
3770 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3772         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
3773         processing the disappearing links, and process disappearing links
3774         in a loop until no new objects are copied.
3776 2009-07-03  Mark Probst  <mark.probst@gmail.com>
3778         * object.c (handle_enum): Invoke the write barrier when copying
3779         value type instances.
3781         * sgen-gc.c: Register remsets for unmanaged write barriers only
3782         when the address written to is actually on the heap.  This makes
3783         set_value() in object.c work without requiring that the result be
3784         on the heap.
3786 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3788         The runtime wrappers are all bound to a given type that must
3789         exist in the same image. For regular images we use the <Module>
3790         type, which is required to exist for all images.
3792         The <Module> type can't be used for dynamic images because it
3793         might not exist at the time the wrapper is required, so we create
3794         a synthetic type to use instead.
3796         The current code works because of the 2 stage setup of MonoClass,
3797         but once this is gone it will no longer work.
3799         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
3801         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
3803         * object-internals.h: Export mono_image_set_wrappers_type icall
3804         as part of the internal API.
3806         * marshal.c (get_wrapper_target_class): If the image is dynamic,
3807         use MonoDynamicImage::wrappers_type instead of the <Module> type.
3809         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
3810         image wrappers_type to the provided value.
3812 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
3814         * appdomain.c (deregister_reflection_info_roots): No need
3815         to use the image lock here.
3817 2009-07-02  Mark Probst  <mark.probst@gmail.com>
3819         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
3821 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
3823         * threads.c: Store the thread start argument in a hash table instead of
3824         registering it as a root, as libgc doesn't support unregistering roots
3825         under windows, leading to 'too many root sets' errors when many threads
3826         are created.
3828         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
3829         shutdown, they can still be referenced by the other dying objects.
3830         Fixes #514506.
3832 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3834         * socket-io.c: DontLinger does not allow LingerOptions.
3836 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3838         * metadata-verify.c: The spec doesn't mention that it's possible to add
3839         custom attribute to a generic parameter. Fixed.
3841 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3843         * class.c (inflate_generic_type): Don't crash while trying to output a message
3844         on why we're aborting.
3846 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
3848         * socket-io.c: DontLinger can take an int or a boolean too.
3850 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
3852         * gc.c: check for a null argument to SuppressFinalize () and
3853         ReRegisterForFinalize ().
3855 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
3857         * loader.c (method_from_methodspec): Call into the verifier to check
3858         the signature.
3860         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
3862         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
3863         part of the internal API.
3865 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3867         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
3868         the signature.
3870         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
3872         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
3873         part of the internal API.
3875 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3877         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
3878         the signature.
3880         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
3881         blob verification.
3883         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3884         part of the internal API.
3886 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3888         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
3889         when doing basic verification. 
3891         This check must be done since the runtime peeks into signatures in much
3892         more places than it does decoding so it makes sense to ensure that all
3893         pointers to blob objects are well formed.
3895 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3897         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
3898         Use proper overflow dectection. Fix usage of it.
3900 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
3902         * loader.c (field_from_memberref): Call into the verifier to check
3903         the signature.
3905         * loader.c (mono_method_get_signature_full): Same.
3907         * loader.c (method_from_memberref): Same.
3909         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
3911         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
3912         part of the internal API.
3914 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3916         * threadpool.c (mono_thread_pool_add): If the domain is unloading
3917         or unloaded, still return an AsyncResult, but don't add it to the
3918         threadpool.
3920 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3922         * threads.c: fix missing colon when DEBUG is defined.
3924 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3926         * threadpool.c: Don't add new calls to a threadpool if the domain
3927         of the call is unloading or unloaded.  When dequeuing a job, null
3928         the reference in the queue.
3930 2009-06-25  Mark Probst  <mark.probst@gmail.com>
3932         * sgen-gc.c (null_link_in_range): Add the dislink for the old
3933         generation if an object was moved.
3935 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
3937         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
3938           parameters of type SAFEARRAY[VARIANT].
3940         * reflection.c (encode_marshal_blob): Properly generate element type
3941           (SafeArraySubType marshal attribute option).
3943         Code is contributed under MIT/X11 license.
3945 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
3947         * reflection.c: in mono_method_clear_object () really ensure all the
3948         objects are removed.
3950 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3952         * loader.c (mono_method_signature): Call into the verifier to check
3953         the method signature.
3955         * metadata-verify.c (verify_method_table): Move signature verification
3956         to verify_method_table_full.
3958         * metadata-verify.c: Add mono_verifier_verify_method_signature.
3960         * verify-internals.h: Export mono_verifier_verify_method_signature as
3961         part of the internal API.
3963 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3965         * loader.c (mono_method_get_header): Call into the verifier to
3966         check the method header.
3968         * metadata-verify.c: Add mono_verifier_verify_method_header.
3970         * verify-internals.h: Export mono_verifier_verify_method_header as
3971         part of the internal API.
3973 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3975         * class.c (mono_class_find_enum_basetype): Call into the verifier to
3976         check the field signature. Replace an assert with an explicit check.
3978         * class.c (mono_class_setup_fields): Call into the verifier to check
3979         the field signature.
3981         * metadata-verify.c: Add mono_verifier_verify_field_signature.
3983         * verify-internals.h: Export mono_verifier_verify_field_signature as
3984         part of the internal API.
3986 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3988         * class.c (mono_class_find_enum_basetype): Simplify this function
3989         by moving code outside of the loop and not decoding static fields.
3991 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
3993         * metadata-verify.c (verify_typedef_table): Check the extends
3994         token here. Move to here a flags check from verify_typedef_table_full.
3996 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
3998         * metadata-verify.c (is_valid_method_header): Fix a warning.
4000         * metadata-internals.h (MonoImage): Remove the unused 
4001         static_rgctx_invoke_wrapper_cache.
4003         * image.c marshal.c: Ditto.
4005 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4007         * image.c (do_mono_image_load): Enable table data verification.
4009 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4011         * metadata-verify.c (is_valid_constant): Fix nullref check.
4013 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
4015         * metadata-verify.c (is_valid_constant): Fix string bounds check.
4017 2009-06-22  Mark Probst  <mark.probst@gmail.com>
4019         * sgen-gc.c: Managed allocation with pthreads TLS.
4021         * threads.c, threads-types.h: Functions for the JIT to tell the
4022         runtime whether it supports the MONO_TLS opcode.
4024 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4026         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
4027         without methods.
4029 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4031         * metadata-verify.c (is_valid_constant): Fix the string length check.
4032         Use safe overflow checking. Add decent error messages.
4034 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4036         * metadata-verify.c: Move remaininh blob checks to the offline
4037         verification path.
4039 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
4041         * metadata-verify.c: Move more blob checks to the offline verification
4042         path.
4044 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
4046         * object-internals.h : Adding interrupt_on_stop field.
4048         * threads.c (mono_thread_request_interruption) : On Windows exit the
4049           thread if interrupt_on_stop is set.
4051         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
4052          Removing old interrupt logic and setting the interrupt_on_stop for the
4053          thread when calling accept.
4055         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
4056          setting the interrupt_on_stop for the thread when calling accept.
4058         Contributed under MIT/X11 license.
4060 2009-06-20  Martin Baulig  <martin@ximian.com>
4062         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
4064 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
4066         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
4067         running in no-exec mode.
4069 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4071         * metadata-verify.c (verify_method_table): Move header
4072         checking to verify_method_table_full.
4074         * metata-verify.c (mono_verifier_verify_full_table_data):
4075         Call verify_method_table_full.
4077 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4079         * metadata-verify.c (verify_field_table): Move signature
4080         checking to verify_field_table_full.
4082         * metata-verify.c (mono_verifier_verify_full_table_data):
4083         Call verify_field_table_full.
4085 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4087         * metadata-verify.c (verify_typedef_table): Move remaining
4088         stuff to verify_typedef_table_full.
4090 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4092         * metadata-verify.c: Kill is_corlib from VerifyContext.
4093         It is only used by the offline mode.
4094         So we better remove it from the runtime path.
4096 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4098         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
4099         function that perform the offline metadata verification steps.
4101         * metadata-verify.c (verify_typedef_table): Move some checks to
4102         verify_typedef_table_full and make it been called by new function
4103         mono_verifier_verify_full_table_data.
4105         * pedump.c: Call mono_verifier_verify_full_table_data.
4107         * verify-internals.h: Export mono_verifier_verify_full_table_data as
4108         part of the internal API.
4110 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4112         * metadata-verify.c (typedef_is_system_object): Fix System.Object
4113         check.
4115         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
4116         flags bits. SupportLastError was confused as bit 7 instead of 6.
4118         * metadata-verify.c (verify_implmap_table): Fix import scope verification
4119         to check against the module ref table instead of module.
4121         * metadata-verify.c (verify_implmap_table): Fix corlib check.
4123         * pedump.c: Call mono_image_load_names.
4125 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
4127         * image.c: Extract mono_image_load_names from do_mono_image_load.
4129         * metadata-internals.h: Export mono_image_load_names as part of
4130         the internal API.
4131         
4132 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
4134         * metadata.c (mono_metadata_cleanup): Free the generic method cache
4135         first, as it could reference data in the other caches.
4137 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4139         * metadata-verify.c: Finished with method header verification.
4141 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
4143         * metadata-verify.c: Added more header verification code.
4144         Now only EH clauses are missing.
4146 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
4148         * marshal.c (get_runtime_invoke_type): Don't share primitive types
4149         for return values.
4151 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4153         * metadata-verify.c: Initial method header verification.
4155 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
4157         * metadata-verify.c (verify_import_table): The IAT contents
4158         might end been patched by the windows DL when running with
4159         coree enabled.
4161 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
4163         * class.c (mono_class_from_typeref): If the enclosing type is not
4164         found return null instead of crashing. Fixes #508487.
4166 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
4168         * normalization-tables.h : updated to the latest unicode charcter
4169           data.
4170         * appdomain.c : bump corlib version.
4172 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
4174         * class.c (mono_class_from_name): Fix support for assembly references
4175         in the EXPORTEDTYPE table. Fixes #511704.
4177 2009-06-13  Geoff Norton  <gnorton@novell.com>
4179         * domain.c: Ensure that mono_domain_assembly_open actually opens the
4180         assembly in the target domain.
4182 2009-06-12  Robert Jordan  <robertj@gmx.net>
4184         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
4185         because "this" of the managed signature has become an
4186         ordinary parameter in the unmanaged signature.
4188 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
4190         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
4191         field for owner-less generic containers.
4193         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
4194         image field of the owner-less generic containers created here.
4196         * metadata.c (mono_metadata_load_generic_params): Ditto, the
4197         contain is ownerless until the caller sets its owner.
4199         * metadata.c (type_in_image): Handle owner-less generic containers
4200         correctly.
4201         
4202 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4204         * image.c (mono_image_close): Support debug_assembly_unload for
4205         dynamic images too.
4207 2009-06-11 AndrĂ©s G. Aragoneses  <aaragoneses@novell.com>
4209         * class.c: Fix some typos in comments.
4211 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
4213         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
4215         * threads.c (mono_thread_execute_interruption): Avoid creating the
4216         abort exception object while holding the synch_cs lock.
4218 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
4220         * metadata-verify.c: Verify basic cattr content.
4222 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
4224         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
4225         nested types.
4226         
4227         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
4228         support for nested types. Fixes #511704.
4230 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4232         * metadata-verify.c: Verify methodspec signatures.
4234 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
4236         * metadata-verify.c: Verify typespec signatures.
4238 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
4240         * metadata.c (free_inflated_method): Call 
4241         mono_marshal_free_inflated_wrappers (), which was missed earlier.
4243 2009-06-08  Miguel de Icaza  <miguel@novell.com>
4245         * mono-config.c: Small change to report the PPC64/ILP32 model.
4247 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4249         * metadata-verify.c (parse_type): Check szarray.
4251 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4253         * metadata-verify.c (parse_type): Check fnptr.
4255 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4257         * metadata-verify.c (parse_type): Check generic instances.
4259 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
4261         * metadata-verify.c (parse_type): Check array shape.
4263 2009-06-05  Robert Jordan  <robertj@gmx.net>
4265         * class.c (mono_class_create_from_typedef): Check only for
4266         mscorlib's System.Array.
4268 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4270         * metadata-verify.c (parse_type): Check pointer, class/valuetype
4271         and generic params. 
4273         * metadata-verify.c (parse_field): Check the signature.
4275 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
4277         * metadata-verify.c: Implement locals signature check.
4279 2009-06-04  Marek Safar  <marek.safar@gmail.com>
4281         * domain.c: Add .NET 4.0 Beta 1 version.
4283 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
4285         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
4286           For QueryInterface on CCWs consider the base class
4287           interfaces as well.
4289         Code is contributed under MIT/X11 license.
4291 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4293         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
4295         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
4296         used.
4298         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
4299         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
4301         * generic-sharing.c (inflate_other_data): Ditto.
4302         
4303 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
4305         * metadata-verify.c: Implement property signature check.
4307 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4309         * sgen-gc.h: Register saving support for PPC.
4311 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4313         * sgen-gc.c: Fixed a pthread TLS screwup.
4315 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4317         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
4318         supported.
4320 2009-06-04  Mark Probst  <mark.probst@gmail.com>
4322         * sgen-gc.c: Disable TLA and managed allocation if the __thread
4323         keyword is not supported.
4325 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
4327         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
4328         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
4329         the inflated method is freed. Fixes #508389.
4331         The code is contributed under the MIT/X11 license.
4332         
4333 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
4335         * marshal.c (get_wrapper_target_class): New helper function.
4336         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
4337         the <Module> class of the image. Fixes #509049.
4339 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4341         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
4342         Check if the thread was interrupted and proccess it straight away.
4343         Makes abortion much more responsive.
4345 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4347         * threads.c (mono_thread_execute_interruption): Use atomic cas with
4348         MonoThread::interruption_requested to match it's counterpart.
4350         Fixes a hang in abort-stress-1 on a 2 core x86.
4352         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
4353         Fix warning.
4355 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4357         Change MonoImage::name_cache to be protected by the image lock
4358         instead of the loader lock.
4360         * appdomain.c (deregister_reflection_info_roots): Protect access
4361         to name_cache.
4363         * class.c (mono_image_init_name_cache): Change from the loader lock
4364         to the image lock. Check if the cache wasn't already created.
4366         * class.c: Change from the loader to the image lock.
4368         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
4369         the code to hold the image lock while iterating over name_cache and
4370         not go into mono_array_new holding it.
4372         * metadata-internals.h: Add a comment about this change.
4374 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4376         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
4377         Under the 2.0 profile raise the loader error.
4379         Fixes #508532.
4381 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
4383         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
4384         of ldind opcode for generic instances so we don't fail for direct wrappers.
4385         This only affect direct calls.
4387 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
4389         * reflection.c (create_dynamic_mono_image): Fix warnings.
4391         * generic-sharing.c (other_info_equal): Ditto.
4392         
4393 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4395         * metadata-verify.c: Implement field signature check.
4397 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
4399         * metadata-verify.c: Implement standalone signature check.
4401 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
4403         * metadata-verify.c: Implement methodref signature check.
4405 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
4407         * object-internals.h (MonoRuntimeCallbacks): New structure containing
4408         callbacks supplied by the runtime.
4410         * object.c (mono_install_callbacks): New internal function to install
4411         the callbacks.
4413         * object.c (mono_create_ftnptr): Move the implementation of this to
4414         mini/.
4416         * object.c (mono_get_addr_from_ftnptr): Ditto.  
4418 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4420         * metadata-verify.c (parse_return_type): Proper byref check.
4421         * metadata-verify.c (is_valid_method_signature): Check for zero arity
4422         generic signatures and method params.
4424 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
4426         * metadata-verify.c (decode_signature_header): Fix bounds check.
4428         * metadata-verify.c (parse_custom_mods): Check custom mods.
4430         * metadata-verify.c (parse_type): Do initial basic verification
4431         of valid values.
4432         
4433         * metadata-verify.c (is_valid_method_signature): Parse the generic
4434         param count.
4436 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
4438         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
4439         discarded based on their most specific definition so we set the method_slots
4440         array before checking if the method is acceptable or not.
4442         Fixes #506757.
4444 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4446         * icall.c: Free the old array when resizing a mono_ptr_array.
4448 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4450         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
4451         for the hashes whose keys are managed objects.
4453 2009-05-26  Mark Probst  <mark.probst@gmail.com>
4455         * object-internals.h, threads.c: Set the execution context on
4456         thread start here, not in corlib.
4458         * appdomain.c: Bump corlib version.
4460 2009-05-27  Martin Baulig  <martin@ximian.com>
4462         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
4463         if `_mono_debug_using_mono_debugger' is set to make things work
4464         properly when embedding Mono.
4466 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4468         * class.c (mono_class_setup_fields): Don't mark simd types as having
4469         16 bytes alignment as the whole runtime doesn't support.
4471 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
4473         * metadata-verify.c (safe_read): Use endian safe read macros.
4475 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
4477         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
4478         it is read-only when using full aot.
4480 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4482         * metadata-verify.c (is_valid_method_signature): Verify parts
4483         of the return type. Provide an error message in case of failure.
4485 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4487         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
4489 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
4491         * metadata-verify.c: Include the size prefix in the bounds check.
4493 2009-05-22  Miguel de Icaza  <miguel@novell.com>
4495         * icall.c: Remove warnings.
4497         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
4498         prevent auto-detection based on GCC defines.
4500         Add PS3
4502         * metadata-verify.c: Do not include signal.h
4504         * generic-sharing.c, marshal.c: Add returns to avoid some warning
4505         messages.  Not sure why the g_assert_not_reached is not enough to
4506         quiet the compiler.
4507         
4509         * appdomain.c: Remove code that is not used when
4510         DISABLE_SHADOW_COPY is set.
4512         * image.c: use g_getenv
4514 2009-05-21  Miguel de Icaza  <miguel@novell.com>
4516         * reflection.c: Remove code that it not used with
4517         DISABLE_REFLECTION_EMIT is defined.
4519 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
4521         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
4522         invoke wrappers.
4524 2009-05-20  Miguel de Icaza  <miguel@novell.com>
4526         * socket-io.c
4527         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
4528         the ifdef here and instead put that on io-layer
4530 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4532         * metadata-verify.c: Verify the generic param constraint table.
4534 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4536         * metadata-verify.c (verify_generic_param_table): Fix
4537         thinko on the valid flags bits for generic params.
4539 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4541         * metadata-verify.c: Verify the methodspec table.
4543 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
4545         * metadata-verify.c: Verify the generic param table.
4547 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4549         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
4551 2009-05-19  Mark Probst  <mark.probst@gmail.com>
4553         * sgen-gc.c: Use generation enum more consistently and use the
4554         correct generation in mono_gc_register_for_finalization().
4556 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4558         * metadata-verify.c: Verify the nested class table.
4560 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
4562         * metadata-verify.c: Verify the manifest resource table.
4564 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
4566         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
4568 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
4570         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
4571         wrappers, this is now done in the JIT.
4572         
4573         * class.c (mono_set_generic_sharing_supported): New internal function.
4574         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
4576 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4578         * metadata-verify.c: Verify the exported type table.
4580 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4582         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
4584 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4586         * metadata-verify.c: Verify the file table.
4588 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4590         * metadata-verify.c (verify_assembly_table): Fix an error message.
4592         * metadata-verify.c: Verify the assemblyref table.
4594 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
4596         * metadata-verify.c (verify_assembly_table): Fix the valid
4597         bits mask for flags.
4599 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
4601         * debug-helpers.c (mono_method_full_name): Print generic parameters of
4602         generic methods as well.
4604 2009-05-15  Geoff Norton  <gnorton@novell.com>
4606         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
4607         use-case and is significantly more performant than the wapi layer.
4609 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4611         * metadata-verify.c: Verify the assembly table.
4613 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4615         * metadata-verify.c: Fix rows limit check.
4617 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
4619         * metadata-verify.c: Verify the fieldrva table.
4621 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4623         * sgen.c: Speed up weak links and finalizers by grouping them by
4624         generation.
4626 2009-05-13  Mark Probst  <mark.probst@gmail.com>
4628         * marshal.c (delegate_hash_table_add): When overwriting an entry,
4629         free the old GCHandle (only applies to SGen).
4631 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
4633         * loader.c (mono_get_method_from_token): Avoid the expensive call to
4634         mono_metadata_load_generic_params () for non-generic methods.
4636 2009-05-12  Mark Probst  <mark.probst@gmail.com>
4638         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
4639         New function for returning a monitor's weak link if it has one.
4641         * sgen-gc.c: Remove an object's monitor's weak link (if it has
4642         one) when clearing a domain.  These can still be around because
4643         the object might not have been collected.
4645 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
4647         * gc.c: Fix a warning.
4649 2009-05-12  KornĂ©l Pál  <kornelpal@gmail.com>
4651         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
4652         prevous wait that resulted in a deadlock on Windows when initializing
4653         the runtime form DllMain. Also results in improved startup time.
4654         (finalizer_thread): Get rid of thread_started_event.
4655         * threads.c, threads-types.h (mono_thread_create_internal): Return the
4656         resulting MonoThread.
4658         Contributed under MIT/X11 license.
4660 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
4662         * metadata-verify.c: Verify the implmap table.
4663         Don't require that #US and #Strings be present.
4665 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
4667         * security-core-clr.c: Delegate checks are done at creation time,
4668         not a invocation time. Fix exception for Telerik Silverlight demo
4670 2009-05-11  Mark Probst  <mark.probst@gmail.com>
4672         * sgen-gc.c (need_remove_object_for_domain): Remove the special
4673         case for the Thread class.
4675         * threads.c: Do clean-up of abort exception/state in
4676         thread_cleanup() instead of Thread.free_internal().  Also clean up
4677         current_appcontext.  The reason we have to do that is because
4678         those references might point into another domain and if that
4679         domain is unloaded before the thread is finalized, they point to
4680         invalid data.
4682 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
4684         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
4685         stub signatures.
4686         
4687         Contributed unter MIT/X11 license.
4689 2009-05-09  Miguel de Icaza  <miguel@novell.com>
4691         * verify.c, metadata-verifier.c: Add support for disabling the
4692         verifier in some builds.
4694         [ Sorry, my previous commit accidentally commited some work in
4695         progress ]
4697 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
4699         * class.c (mono_class_setup_fields): Set class->field.first for
4700         generic instances.
4702 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4704         * metadata-verify.c: Verify the typespec table.
4706 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
4708         * metadata-verify.c: Verify the module table.
4710 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4712         * metadata-verify.c: Verify the methodimpl table.
4714 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
4716         * metadata-verify.c: Verify the property table.
4718 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
4720         * debug-helpers.c (mono_method_desc_match): Add support for generic
4721         glob patterns.
4723 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
4725         * metadata-verify.c: Verify the propertymap table.
4727 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
4729         * metadata-verify.c: Verify the event table.
4731         * metadata-verify.c (search_sorted_table): Fix offset
4732         calculation.
4734 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
4736         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
4738 2009-05-01  Mark Probst  <mark.probst@gmail.com>
4740         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
4741         because mono_delegate_free_ftnptr() needs it.
4743 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4745         * metadata-verify.c: Verify the eventmap table.
4747 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4749         * metadata-verify.c: Verify the standalonesig table.
4751 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4753         * metadata-verify.c: Verify the field layout table.
4755 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4757         * class.c (mono_type_get_name_recurse): Don't crash
4758         for ownerless generic params.
4760         * debug-helpers.c (mono_type_get_desc): Correct the format
4761         for ownerless generic params.
4763 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4765         * metadata-verify.c: Verify the class layout table.
4767 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
4769         * metadata-verify.c: Verify the decl security table.
4771 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4773         * domain.c (mono_domain_set_internal_with_options): Don't do
4774         anything if the old domain is the same as the old one.  Fixes
4775         #499326.
4777 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4779         * appdomain.c: Deregister the reflection_info roots when unloading
4780         a domain.
4782         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
4783         memory allocated by a domain and frees its disappearing links.
4785         * boehm-gc.c, null-gc.c: Empty implementation of
4786         mono_gc_clear_domain().
4788 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4790         * appdomain.c (clear_cached_vtable): Free the static fields memory
4791         block.
4793 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4795         * gc.c: Set the correct domain when invoking finalizers.
4797         * appdomain.c: Set the correct domain when creating threads.
4799 2009-04-30  Mark Probst  <mark.probst@gmail.com>
4801         * sgen-gc.c: Fix skip size for vectors.
4803 2009-05-03  Martin Baulig  <martin@ximian.com>
4805         * mono-debug-debugger.c
4806         (mono_debugger_check_breakpoints): Check class init handlers even
4807         if we don't have any method load handers.
4809 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
4811         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
4812         returning refonly assemblies if refonly is FALSE. Fixes #499013.
4814 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4816         * metadata-verify.c: Verify the field marshal table.
4818 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
4820         * metadata-verify.c: Verify the custom attribute table.
4822 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4824         * metadata-verify.c: Verify the constant table.
4826 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4828         * metadata-verify.c: Verify the memberef table.
4830 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4832         * metadata-verify.c (get_coded_index_token): Remove
4833         dead argument.
4835 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4837         * metadata-verify.c: Verify the interfaceimpl table.
4839 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
4841         * verify.c: Improve error message.
4843         * debug-helpers.c (mono_type_get_desc): Harden the code that
4844         deals with VAR and MVAR.
4846 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
4848         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
4849         part of #498692.
4851 2009-04-23 Tom Hindle <tom_hindle@sil.org>
4853         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
4854         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
4856 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
4858         * security-core-clr.c: Avoid redundant checks for platform code, 
4859         e.g. check for method and for class (very common) and check
4860         for class and outer class (less common)...
4862 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
4864         * reflection.c: Avoid returning random cattrs for synthetic methods.
4865         Fixes #498545.
4867 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
4869         * assembly.c: assemblies in the GAC should never be shadow-copied.
4871 2009-04-26  Mark Probst  <mark.probst@gmail.com>
4873         * domain.c, domain-internals.h: Disable
4874         track_resurrection_{objects,handles}_hash in MonoDomain if using
4875         SGen.
4877 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4879         * metadata-verify.c: Verify the param table.
4881 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4883         * metadata-verify.c (verify_typedef_table): Range check FieldList and
4884         MethodList.
4886         * metadata-verify.c (verify_method_table): Proper check the ParamList
4887         field.
4889 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4891         * metadata-verify.c (verify_method_table): Check for runtime
4892         implemented functions such as delegate .ctors. Remove spurious
4893         printf.
4894         
4895 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
4897         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
4899 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4901         Don't allocate MonoGenericInfo for ownerless generic params.
4902         * class-internals.h (MonoGenericParam::info): Move field to ...
4903         (MonoGenericParamFull): ... this.  New struct.
4904         (MonoGenericContainer::type_params): Change type to
4905         MonoGenericParamFull.
4906         (MonoGenericParam, MonoGenericContainer): Update accessors.
4907         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
4908         'info' field for ownerless generic param.
4909         (mono_metadata_load_generic_params): Update to changes.
4910         * reflection.c (mono_reflection_create_generic_class): Likewise.
4911         (reflection_methodbuilder_to_mono_method): Likewise.
4912         (mono_reflection_initialize_generic_parameter): Likewise.
4914 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4916         Don't use MonoGenericParamInfo for ownerless generic params.
4917         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
4918         use ParamInfo class at all.
4919         (mono_class_from_generic_parameter): Use them.
4920         (make_generic_param_class): Fix a couple of instances where 'pinfo
4921         == NULL' wasn't handle.
4923 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4925         * class.c (make_generic_param_class): Carve out of ...
4926         (mono_class_from_generic_parameter): ... here.
4928 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
4930         Simplify mono_class_from_generic_parameter
4931         * class-internals.h (MonoGenericParamInfo::token): New field.
4932         * metadata.c (mono_metadata_load_generic_params): Initialize it
4933         from metadata.
4934         * class.c (mono_class_from_generic_parameter): Use it instead of
4935         searching through metadata.
4937 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4939         * metadata-verify.c: Add verification of the method table.
4941 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4943         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
4944         Delegate::Invoke optimization.
4946 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4948         * appdomain.c (mono_domain_create_appdomain_internal): Free the
4949         string returned by get_shadow_assembly_location_base.
4951         * appdomain.c (get_shadow_assembly_location_base): Add a comment
4952         about caller's ownership.
4954 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
4956         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
4957         reflection memory on domain unload.
4959         * domain.c (mono_domain_free): Don't free refobject_hash, let the
4960         reflection cleanup code do it.
4962         * domain-internals.h: Add mono_reflection_cleanup_domain.
4964         This fixes a memory leak for managed mirrors of reflection objects
4965         on domain unload. 
4967 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4969         * metadata-verify.c: Implement more verification of the field table.
4971 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
4973         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
4974         doesn't try to parse the input assembly, which can be broken.
4976 2009-04-23  Mark Probst  <mark.probst@gmail.com>
4978         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
4979         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
4980         by using the lowest bit in the link to store whether the link is
4981         tracked.  Move the track_resurrection hashes into boehm-gc.c.
4983 2009-04-22  Miguel de Icaza  <miguel@novell.com>
4985         * Makefile.am: Split the console support in platform specific code
4986         and put together a framework for making this easy in the future so
4987         that we can start splitting code instead of having a mess of PLATFORM_WIN32
4989 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4991         * pedump.c: Fix a warning.
4993 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
4995         * verify.c (mono_delegate_type_equal): Compare valuetypes using
4996         mono_class_from_mono_type to avoid bad interactions with the dual representation
4997         of the generic type definition.
4999 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
5001         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
5002         get the MonoClass for the call context type as it might be a generic
5003         instance.
5005         Fixes #491483.
5007 2009-04-21  Mark Probst  <mark.probst@gmail.com>
5009         * object-internals.h: The Thread object has no execution_context
5010         member anymore.
5012         * threads.c, threadpool.c, threads-types.h: Accessor functions for
5013         the execution context.
5015         * appdomain.c: Bump corlib version.
5017 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5019         * verify.c (do_newobj): Improve error message.
5021 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5023         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
5024         is nested in the filter block.
5026         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
5027         block is not fully nested.
5029         Fixes #495656.
5031 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5033         * verify.c (verify_type_compatibility_full): Compare MonoClass and
5034         not MonoType to check for equality of valuetypes as the generic type
5035         definition allows for two different encodings: the generic type definition
5036         class or a generic instance over the GTD arguments.
5038         Fixes #496175.
5040 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5042         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
5044         * verify.c (do_initobj): Improve error message.
5046 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
5048         * metadata-verify.c: Enable pe verification as the issue with #496453
5049         is that the authenticode data directory have a different unspecified
5050         format. Ignore it for now.
5052         * pedump.c: Run the metadata verifier together with the IL verifier.
5054         Fixes ##496453.
5056 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5058         * metadata-verify.c: Temporarily disable pe verification due to #496453.
5060 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5062         * class.c (can_access_type): Check visibility against
5063         the element type for pointers and arrays.
5065         Fixes #496150.
5067 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5069         * metadata-verify.c: Fix cli and table verification to use information
5070         from the MonoImage. A lot of duplicated code got killed.
5072 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
5075         This patch starts to integrate the metadata verifier with the runtime code.
5077         This patch causes major regression in functionality for the metadata verifier
5078         as cli and table verification are disabled since they require to be ported to
5079         use MonoImage information.
5081         * image.c (do_mono_image_load): Split the code in this function
5082         into mono_image_load_pe_data and mono_image_load_cli_data.
5083         Add     care_about_pecoff parameter to not load pecoff data.
5084         Call into the metadata verifier for pecoff and cli verification.
5086         * image.c (mono_image_open_raw): New function that doesn't perform
5087         any parsing of the image contents.
5088         
5089         The reason for the 3 new functions is to give pedump better control
5090         into the interaction with the verifier.
5092         * metadata-internals.h: Add new functions from image.c as part of the
5093         internal mono API.
5095         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
5096         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
5097         to make those functions work together with the runtime.
5099         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
5100         true if the image needs to be verified.
5102         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
5104         * pedump.c: Use new metadata verifier API.
5106 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
5108         * object.c (mono_install_vtable_trampoline): Make this receive a
5109         trampoline creation function instead of trampoline, allowing the JIT
5110         to use a different trampoline for each vtable.
5112 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5114         * object.c (mono_raise_exception): Don't reset the thread abort
5115         exception state here.
5117 2009-04-18  Mark Probst  <mark.probst@gmail.com>
5119         * icall-def.h: New icall for getting the thread abort exception
5120         state for a thread.
5122         * object.c, thread.c, object-internals.h: A thread's abort
5123         exception state is now a GC handle.  To get the object it stands
5124         for, we must move it into the current app domain, if it's
5125         different than the one where it originated from.
5127         * appdomain.c: Bump corlib version.
5129         * domain.c, domain-internals.h: New function for setting the
5130         domain and migrate the thread abort exception or not.
5132 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5134         * metadata-verify.c: Add initial verification of the
5135         field table.
5137 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5139         * metadata-verify.c: Add a macro to conditionally enable
5140         dumping of verification information. Add  make_coded_token
5141         and search_sorted_table to enable search sorted tables
5142         by a given coded token.
5144 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5146         * metadata-verify.c: Add array mapping from table index
5147         to description offset. Add get_col_offset and get_col_size
5148         functions.
5150 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5152         * metadata-verify.c: Add remaining table descriptions offsets.
5153         Add remaining coded index descriptions.
5155 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5157         * metadata-verify.c: Fixed constant table description.
5158         Fixed calculation of HasCustomAttribute coded index size.
5159         Fixed calculation of size for many table indexes. 
5161 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5163         * pedump.c (dump_metadata): Dump table offset instead
5164         of useless pointer in memory.
5166 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
5168         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
5170 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5172         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
5173         a missing of for interface types.
5175 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5177         * metadata-verify.c (verify_pe_optional_header): Add comment of why
5178         the code is commented.
5180         * metadata-verify.c (verify_resources_table): Remove spurious printf
5181         and don't fail if there are unmanaged resources. Gmcs generates a useless
5182         one     for all assemblies - I bet it's some MS compatibility junk.
5184 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5186         * metadata-verify.c (verify_typedef_table): Verify the extends field.
5188         * metadata-verify.c (mono_image_verify): Add a is_corlib.
5190         * verify-internals.h: Same.
5192         * pedump.c: Fix for mono_image_verify new signature.
5194 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5196         * metadata-verify.c (verify_typedef_table): Verify for some invalid
5197         flags combinations.
5199 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
5201         * metadata-verify.c (verify_module_table): Ignore the generation field.
5203 2009-04-15  Martin Baulig  <martin@ximian.com>
5205         * debug-mono-symfile.c
5206         (mono_debug_symfile_lookup_location): Don't print a warning for
5207         unknown extended opcodes if they're within 0x40 and 0x7f.
5209 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
5211         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
5212         invoke signatures returning an enum. Fixes #494847.
5214 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5216         * metadata-verify.c: Initial code to verify the typedef table.
5218 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5220         * verify.c (mono_method_verify): Don't fail if an unconditional branch
5221         with non empty stack happens before the beginning of a try block.
5223         Fixes #494812.
5225 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
5227         * metadata-verify.c: Verify typename and typenamespace fields of
5228         the typeref table.
5230 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5232         * metadata-verify.c: Initial code to verify the typeref table.
5234 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
5236         * verify.c (verify_delegate_compatibility): Fix error message.
5238 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
5240         * security-core-clr.c: Fix typo
5242 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5244         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
5245         a MonoGHashTable to keep its values alive.
5246         (emit_marshal_boolean): Fix a warning.
5248 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5250         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
5251         not have any interface configured for IPv4/IPv6.
5253 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
5255         * assembly.c: fix typo in error message.
5257 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
5259         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
5260         allocating the location holding the this argument to prevent
5261         'too many root sets' errors.
5263         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
5264         to mark fields as special static.
5265         (mono_field_static_get_value): Handle special static fields.
5266         (mono_field_static_set_value): Ditto.
5268         * class-internals.h (struct _MonoClassField): Document this.
5270 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5272         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
5273           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
5274           case.  This will handle when managed code returns null to native code.
5276         Code is contributed under MIT/X11 license.
5278 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5280         * object.c (build_imt_slots): Changing a free to a g_free to match
5281           the g_malloc0 in add_imt_builder_entry that allocated this memory.
5283         Code is contributed under MIT/X11 license.
5285 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
5287         * marshal.c (emit_marshal_boolean): Adding code to ensure that
5288           the correct TRUE value is passed through the marshaling layer.
5290         Code is contributed under MIT/X11 license.
5292 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
5294         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
5295         correctly. Fixes #492330.
5296         
5297         * marshal.c: Fix the embedding of object pointers into JITted code in
5298         the native-to-managed wrappers by allocating some GC tracked memory, and
5299         embedding the address of that.
5301 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
5303         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
5304         pointers into the vtable.
5306 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
5308         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
5310         * verify.c (verify_ldftn_delegate): Improve error message.
5312 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5314         * reflection.c (my_mono_class_from_mono_type): Remove.
5316 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
5318         Prepare to reduce memory usage of owner-less generic parameters (1/n)
5319         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
5320         and constraints fields into ...
5321         (MonoGenericParamInfo): ... this.
5322         (mono_generic_param_info, mono_generic_container_get_param_info):
5323         New accessors.
5324         * class.c, debug-helpers.c, icall.c: Update to changes.
5325         * metadata.c, reflection.c, verify.c: Likewise.
5327 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
5329         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
5331         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
5332         
5333         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
5334         booleans with sbytes.
5336 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5338         * class.c (can_access_instantiation): Verify accesibility of element types
5339         for arrays and pointers.
5341         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
5343         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
5345         Fixes #493068.
5347 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
5349         * verify.c (do_invoke_method): Improve error messages.
5351 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
5353         * verify.c:  Fixing the MSVC build.
5355         Code is contributed under MIT/X11 license.
5357 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
5359         * security-core-clr.c: Simplify get_reflection_caller not to call
5360         mono_method_get_last_managed (another stack walk) and adjust the
5361         callers to handle a (should not happen) NULL return value.
5363 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5365         Add accessors to some MonoGenericParam fields
5366         * class-internals.h (mono_generic_param_owner): New accessor.
5367         (mono_generic_param_num): Likewise.
5368         (mono_type_get_generic_param_owner): New helper.
5369         (mono_type_get_generic_param_num): New helper.
5370         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
5372 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5374         * class-internals.h (mono_generic_container_get_param): New wrapper.
5375         * class.c, icall.c, metadata.c, verify.c: Use it.
5377 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
5379         Fix gtest-252.cs
5380         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
5381         the standard case/loop.  In particular, don't complain about
5382         references to generic type definitions.
5384 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
5386         * debug-helpers.c (dis_one): Decode string arguments.
5388 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5390         * pedump.c (dump_verify_info): Dump type name correctly.
5392 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
5394         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
5395         are larger than code size.
5397         This can happen in valid code if the try/catch block is not followed by any instruction
5398         and do a backward branch on the leave instruction.
5400         Fixes #492494.
5402 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
5404         * security-core-clr.c: Fix typo while comparing second method names
5405         in can_avoid_corlib_reflection_delegate_optimization
5407 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5409         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
5411         Fixes #487738.
5413 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
5415         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
5416         a MVAR using a class context.
5418         Fixes #490335.
5420 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
5422         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
5424         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
5426         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
5427         functions supplied by the JIT for the SGEN GC.
5429         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
5430         
5431 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5433         monitor.c (mono_monitor_try_enter_internal):
5434         Added calls to profile monitor contentions.
5435         Also duplicated a small piece of code (the "get the monitor" logic)
5436         from the fast path to the slow path, and changed the relevant goto
5437         statements, so that monitor acquisition events can be emitted from the
5438         slow path (this is by Paolo Molaro).
5440 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
5442         * profiler.c, profiler.h, profiler-private.h:
5443         Added support for profiling monitor contentions.
5445 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
5447         * metadata-verify.c: Verify the modules table.
5449 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
5451         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
5452         using the context of the method been verifier and not of the method been called.
5454         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
5455         safely inflate generic types. 
5457 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5459         * security-core-clr.c: Change the strategy for checking the 
5460         "reflection using delegates optimization" to avoid unneeded 
5461         attributes in multiple class libraries.
5463 2009-04-02  Mark Probst  <mark.probst@gmail.com>
5465         * sgen-gc.c: Remove object element in the disappearing link struct
5466         by storing the object pointer in the link.
5468 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5470         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
5472 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5474         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
5476         * verify.c (mono_method_verify): Do proper bounds checking of exception
5477         clause ranges.
5479 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
5481         * loader.c (mono_field_from_token): Don't crash if the field parent could
5482         not be decoded.
5484 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5486         * sgen-gc.c: Execute critical finalizers after ordinary
5487         finalizers.
5489         * class-internals.h, domain.c: Add CriticalFinalizerObject to
5490         mono_defaults.
5492 2009-03-31 Jb Evain <jbevain@novell.com>
5494         * verify.c (do_ldstr): don't check if a string is in the user strings
5495         heap if the current image is dynamic.
5497 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5499         * sgen-gc.c: Wait until the last finalizer has executed when
5500         returning from WaitForPendingFinalizers.
5502 2009-03-31  Martin Baulig  <martin@ximian.com>
5504         * mono-debug-debugger.h (MonoDebuggerEvent): Add
5505         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
5506         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
5507         (mono_debugger_event_create_appdomain): New function.
5508         (mono_debugger_event_unload_appdomain): New function.
5510         * appdomain.c (mono_domain_create_appdomain_internal): Call
5511         mono_debugger_event_create_appdomain().
5513 2009-03-31  Martin Baulig  <martin@ximian.com>
5515         * mono-debug-debugger.c
5516         (mono_debugger_register_class_init_callback): Also register the
5517         class init callback if the class is already initialized to make
5518         things work with shadow copied assemblies.
5520 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
5522         * security-core-clr.c
5523         (mono_security_core_clr_ensure_reflection_access_field): Let 
5524         critical code access the field (just like we do for methods). Use
5525         check_field_access helper.
5526         (mono_security_core_clr_ensure_reflection_access_method): Use 
5527         check_field_access helper.
5529 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5531         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
5532         call the run-finalize function directly.
5534         * gc.c, gc-internal.h: Make run_finalize() non-static.
5536 2009-03-31  Mark Probst  <mark.probst@gmail.com>
5538         * sgen-gc.c: Use a separate struct for disappearing links.
5540 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
5542         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
5543         * MaxIOVectorLength enabled, just ignore them.
5544         Fixes bug #349688.
5546 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
5548         * metadata-verify.c: Fix eglib build.
5550 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
5552         * threads-types.h: Fix the win32 build.
5554 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
5556         * class.c: move coreclr inheritance/override checks to 
5557         security-core.clr.c
5558         * security-core.clr.c|h: add code from class.c with additional
5559         documentation. Fix override check when the method is not critical.
5561 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
5563         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
5564         (match_class): Ditto.
5566 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5568         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
5570         * metadata-verify.c: Implement table layout row size calculation. Verify
5571         the total size of the tables.
5573 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
5575         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
5577 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5579         * appdomain.c:
5580         * console-io.[ch]: added new mono_console_init() to make sure that
5581         file descriptors 0, 1 and 2 are opened.
5582         Bug #489019 fixed.
5584 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
5586         * appdomain.h: Export a new callback type and a new function to
5587         set this callback. This allow a mono host to provide it's own
5588         definition for "platform code".
5589         * metadata-internals.h: Add a core_clr_platform_code flag on 
5590         _MonoImage to (cache and) know if it is representing platform 
5591         code.
5592         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
5593         on platform code images.
5594         * security-core-clr.c|h 
5595         (mono_security_set_core_clr_platform_callback): Allow the host
5596         to provide it's own platform check definition.
5597         (mono_security_core_clr_determine_platform_image): Detect if an 
5598         image is platform code (using the specified callback).
5599         (mono_security_core_clr_is_platform_image): Return cached value 
5600         for platform code.
5602 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
5604         * threads.c (mono_create_thread): New helper function to wrap CreateThread
5605         which has different parameter types for the 'tid' argument in windows and
5606         the io-layer.
5608         * appdomain.c attach.c threads.c: Use the new helper.
5610 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5612         * metadata-verify.c: Verify valid table bits.
5614 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
5616         * metadata-verify.c (verify_metadata_header): Store size in the size field.
5618         * metadata-verify.c: Add initial table schema verification.
5620 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5622         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
5623         obtain the refclass argument needed by mono_param_get_objects (). Fixes
5624         #488383.
5626         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
5628         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
5630 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
5632         * security-core-clr.c: Add/update documentation
5634 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
5636         * marshal.c (emit_marshal_object): Generate code to throw an exception
5637         instead of throwing it. Fixes #488670.
5639 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
5641         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
5642         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
5643         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
5644         and add a call to mono_security_core_clr_ensure_delegate_creation
5645         to do the extra checks required by CoreCLR.
5646         * security-core-clr.c|h: Add function to check delegate creation,
5647         both in the binding and accessibility, under CoreCLR.
5649 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
5651         * reflection.c (mono_reflection_create_dynamic_method): when 
5652         coreclr is enabled make sure that every resolved object are
5653         checked (e.g. field and method access).
5654         * security-core-clr.c|h: Add function to check objects resolved
5655         when a dynamic method is created.
5657 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5659         * metadata-verify.c: Cache directory rva translations.
5661         * metadata-verify.c: Add cli-header and streams verification.
5663 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
5665         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
5666         the wrong offset (8 instead of 6).
5668 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
5670         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
5671         methods, return the native function address itself. Fixes
5672         #487758.
5674 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
5676         * console-io.c: some of the values for control characters might not be
5677         present.
5679 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
5681         * exception.c|h: Add helpers to create [Field|Method]AccessException
5682         * icall.c: Add required coreclr check calls for field reflection.
5683         Move the existing (method) check logic into security-core-clr.c
5684         * security-core-clr.c: Add functions to check if the access of a
5685         field or method is allowed when reflecting under coreclr. This is
5686         mostly done using a stack walk to find the "real" caller: i.e. the
5687         code that is calling the reflection
5689 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
5691         * gc-internal.h: Change location of gc_wrapper.h
5693 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
5695         * class.c: Simplification to coreclr checks for overrides that
5696         makes it easier to set breakpoints.
5698 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
5700         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
5701         mono_security_core_clr_method_level): Avoid potential 
5702         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
5703         user/application code) and make it easier to set breakpoints
5705 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5707         * metadata-verify.c: Reject cli header tables that mono don't handle.
5709 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5711         * pedump.c: Fix CLI header dumping.
5713 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
5715         * metadata-verify.c: More CLI header verification.
5717 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
5719         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
5721 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5723         * metadata-verify.c: Initial verification of the CLI header.
5725 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
5727         * metadata-verify.c (verify_resources_table): Fix verification of zero
5728         sized resource section and id entries count.
5730 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
5732         * icall.c: Handle user types in many Type icalls. Fixes #486303.
5734 2009-03-17  Jb Evain  <jbevain@novell.com>
5736         * profiler.c: call mono_gc_base_init from mono_profiler_load.
5738 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
5740         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
5741         (mono_gc_make_descr_for_array): Ditto.
5743 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
5745         * verify.c (mono_verifier_is_class_full_trust): Add support for
5746         CoreCLR security mode where trusted assemblies are defined as
5747         "platform code".
5749 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5751         * metadata-verify.c: Add minimal PECOFF resource verification.
5753 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5755         * metadata-verify.c: Be less restrictive with some coff fields.
5757 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
5759         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
5760         params as boxed values on stack. Fixes #485706.
5762 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5764         * console-io.c: the termios values may vary in different flavors of unix.
5766 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
5768         * console-io.[ch]: return the entire set of control characters when
5769         initializing the terminal.
5770         * appdomain.c: bump corlib version.
5772 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
5774         * mono-perfcounters.c: added support for in-process custom
5775         performance counters.
5777 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5779         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
5781 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5783         * metadata-verify.c: Verify the data pointed by the import table. 
5785 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
5787         * metadata-verify.c (load_data_directories): Store data
5788         directory contents.
5790         * metadata-verify.c: Verify the import table. 
5792 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5794         * metadata-verify.c: Verify data directories.
5796 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
5798         * metadata-verify.c: Check section header flags.
5800 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
5802         * appdomain.c: if the assembly name is a shadow-copied file, return
5803         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
5804         in mono_make_shadow_copy.
5805         * icall.c: if the assembly name is a shadow-copied file, replace it
5806         with the original assembly path.
5808         Bug #484244 fixed. NUnit tests for corlib can be run without
5809         --noshadow now.
5811 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
5813         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
5814         entries when the table is reallocated.
5816         * icall.c: Allocate the memory used by the mono_ptr_array macros using
5817         mono_gc_alloc_fixed () since it contains GC refs.
5819 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
5821         * reflection.c (ensure_complete_type): New helper function to call
5822         type resolve handlers for unfinished dynamic types.
5823         (resolve_object): Call it for MonoClassFields. Fixes #483852.
5825 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
5827         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
5828         #483247.
5830 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
5832         * appdomain.c (get_shadow_assembly_location): Fix memleak.
5834 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
5836         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
5837         between GCHandles of type WeakTrackResurrection and the objects they
5838         point to.
5840         * gc.c: Partly implement the sematics of GCHandles of type 
5841         WeakTrackResurrection: these handles should only be cleared after the
5842         finalizer of the object they are pointing to has ran.
5844 2009-03-06  Mark Probst  <mark.probst@gmail.com>
5846         * icall.c: Partially revert r126631 because using the jump
5847         trampolines for generic shared methods makes it superfluous.
5849 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
5851         * threads.c (handle_store): Create the 'threads' hash table with the proper
5852         MONO_HASH_VALUE_GC type.
5854 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
5856         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
5857         FIRST_GC_TRACKED.
5859         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
5860         and LAST_GC_TRACKED as a GC root.
5862         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
5864         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
5865         the static data even if it consists of 1 reference.
5867         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
5868         if there is a GC descriptor.
5870         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
5871         instead of through the GC since they contain no object references.
5873 2009-03-05  Mark Probst  <mark.probst@gmail.com>
5875         * generic-sharing.c (instantiate_other_info): Always return a jump
5876         trampoline for method code.
5878 2009-03-05  Marek Habersack  <mhabersack@novell.com>
5880         * culture-info-tables.h: generated to include the en-tt culture.
5882 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5884         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
5885         capture the thread context.
5887         * object.c (mono_async_result_new): Cache the invoke wrappers to
5888         ExecutionContext::Capture.
5890 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
5892         * marshal.h: Add a prototype for what mono_compile_method returns
5893         for invoke wrappers.
5895         * gc.c: Use the new prototype declaration.
5897 2009-03-04  Geoff Norton  <gnorton@novell.com>
5899         * boehm-gc.c: Add some MONO_LOG tracing for the GC
5900         * gc-internal.h:
5901         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
5903 2009-03-04  Martin Baulig  <martin@ximian.com>
5905         * mono-debug.h
5906         (mono_debugger_runtime_invoke): Removed.
5908         * mono-debug-debugger.c
5909         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
5911 2009-03-02  Martin Baulig  <martin@ximian.com>
5913         * mono-debug.h
5914         (mono_debugger_unhandled_exception): Removed.
5915         (mono_debugger_handle_exception): Removed.
5916         (mono_debugger_throw_exception): Removed.
5918         * mono-debug.c
5919         (mono_debug_debugger_version): Bump to 5.
5921         * mono-debug-debugger.c: Moved the exception handling code to
5922         ../mini/debug-mini.c
5924 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5926         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
5927         finalize_objects_hash.
5929         * gc.c: Use the separate lock to access the finalize_objects_hash field.
5930         
5931         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
5932         field.
5934         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
5935         cache.
5937         * image.c (mono_image_close): Free it.
5938         
5939         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
5940         allowing a creation of a wrapper which invokes its method using a CALLVIRT
5941         on the this argument.
5943         * gc.c (run_finalize): Optimize the calling of the finalizers.
5945 2009-03-03  Martin Baulig  <martin@ximian.com>
5947         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
5948         of the `MonoGenericInst' changes.
5950 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
5952         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
5953         mono_array_class_get_cached to reduce locking contention. Extract
5954         a domain var.
5956         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
5957         intermediary managed arrays. Use caching version of mono_array_new
5958         to allocate the result array.
5960         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
5962         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
5964         * locales.c (create_names_array_idx):  Use mono_array_new_cached
5965         to reduce locking contention.
5967 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
5968                 
5969         * object.c (mono_method_add_generic_virtual_invocation): Put back the
5970         thunk builder code for the non-interface case.
5972 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
5974         * object.c (get_generic_virtual_entries): New helper function to collect
5975         the virtual generic method instances which need to be added to an IMT
5976         thunk.
5977         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
5978         Instead of creating a new IMT thunk, reset the vtable slot to the
5979         trampoline, the thunk will be created the next time the trampoline is called.
5980         (build_imt_slots): Add support for virtual generic methods in interfaces by
5981         adding to the IMT thunk all the methods registered using 
5982         mono_method_add_generic_virtual_invocation ().
5984         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
5985         (struct _MonoIMTCheckItem): Ditto.
5987         * object.c (mono_method_add_generic_virtual_invocation): Take a
5988         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
5989         the IMT thunk to include all items.
5990         
5991         * object.c (mono_class_create_runtime_vtable): Add a missing
5992         mono_loader_unlock ().
5994 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
5996         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5998         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
6000 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6002         * object-internals.h: Rename _MonoReflectionEvent to
6003         MonoReflectionMonoEvent so it reflects the right managed type.
6004         Add a MonoReflectionEvent that correctly represents System.EventInfo.
6006         * icall.c:
6007         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
6008         type.
6010 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
6012         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
6013         intermediary managed arrays. Use caching version of mono_array_new
6014         to allocate the result array.
6016 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6018         * reflection.c: Use cached version of mono_array_new alongside
6019         the mono_reflection_get_custom_attrs_by_type call path.
6021 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6023         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
6024         intermediary managed arrays. Use caching version of mono_array_new
6025         to allocate the result array.
6027         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
6029 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
6031         * icall.c: Add small implementation of a growable stack bound array.
6033         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
6035         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
6036         intermediary managed arrays. Use caching version of mono_array_new
6037         to allocate the result array.
6039 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
6041         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
6042         helps Enum::CompareTo to be implemented without reboxing all enums
6043         to their underlying type.
6044 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
6046         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
6047         since it acquires a global lock leading to scalability problems.
6049         * profiler.c: Make the stat profiler work with multiple appdomains, this
6050         currently only works when no appdomains are unloaded.
6052 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
6054         * appdomain.c: make the check to avoid copying when the assembly is
6055         already shadow copied actually work.
6057 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
6059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6061         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
6062         changes to the managed side.
6064 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
6066         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
6067         classes + a separate lock for it, as it is used frequently at runtime, not
6068         just during metadata loading/JIT compilation.
6070         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
6071         for szarrays.
6072         
6073         * object-internals.h (mono_class_from_name_cached): New macro to cache
6074         the results of the lookup locally without having to declare a static
6075         variable to hold it.
6076         (mono_class_get_field_from_name_cached): Ditto.
6077         (mono_array_class_get_cached): Ditto.
6079         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
6080         the new macros.
6081         
6082         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
6083         slower search in metadata.
6085         * pedump.c: Fix a warning.
6087 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
6089         * reflection.c (encode_locals): Add checks for user types.
6090         (method_encode_clauses): Ditto.
6091         (method_encode_code): Ditto.
6092         (mono_image_create_token): Ditto.
6094         * object-internals.h: Change the type of more fields from MonoReflectionType*
6095         to MonoObject*.
6097 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
6099         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
6100         the a thread does not suspend within 100ms.
6102         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
6103         in addition to StopRequested as well.
6105         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
6107         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
6108         search the method_hash before inserting a new entry, to avoid crashes when
6109         the same method is inserted multiple times, causing the old 
6110         MonoDebugMethodInfo structure to be freed by the value dtor function.
6112 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
6114         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
6115         SO_EXLUSIVEADDRUSE where available.
6117 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
6119         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
6120         runtime invoke wrappers, this time it is string ctor wrappers, which
6121         pass a dummy string as 'this' instead of their obj argument. Fixes
6122         #478473.
6124 2009-02-21  Jb Evain  <jbevain@novell.com>
6126         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
6127         only get create_culture once.
6129 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
6131         * reflection.c (mono_reflection_setup_internal_class): Move the user type
6132         check before the locking.
6133         
6134         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
6135         (mono_reflection_create_runtime_class): Ditto.
6136         (mono_reflection_sighelper_get_signature_local): Ditto.
6137         (mono_reflection_sighelper_get_signature_field): Ditto.
6139         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
6140         is a System.MonoType object or similar.
6141         (monotype_cast): New helper function to cast a MonoObject to a 
6142         MonoReflectionType object.
6144         * object-internals.h: Change MonoReflectionType* members in structures to
6145         MonoObject* members to force the usage of the monotype_cast () function.
6147         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
6148         structures/arrays. This causes us to assert instead of crashing when 
6149         instances of user defined subclasses of System.Type are encountered.
6151 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6153         * cil-coff.h:
6154         * icall-def.h:
6155         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
6156         win32 resource loaded from a PE file.
6158         * image.c: fix mono_image_lookup_resource.
6160 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
6162         * icall-def.h:
6163         * threads-types.h:
6164         * threads.c: added internal call for WaitHandle.SignalAndWait.
6166 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
6168         * cominterop.c : Adding cominterop_type_from_handle and 
6169           registering it as an icall.  Replacing all references
6170           to type_from_handle.
6172         Code is contributed under MIT/X11 license.
6174 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6176         * Makefile.am: Add lock-tracer.h and lock-trace.c.
6178         * appdomain.c: Call the tracer init function.
6180         * domain-internals.h: Enable the tracer for the domain locks.
6182         * image.c: Enable the tracer for image locks.
6184         * loader.c: Enable the trace for the loader lock.
6186         * lock-tracer.h:
6187         * lock-tracer.c: Initial implementation of the lock trace utility.
6188         The tracer requires a compile time define to be enabled and a env var
6189         to be enabled at runtime.
6191 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6193         * domain.c (mono_domain_code_foreach): Improve documentation.
6195 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
6197         * appdomain.c:
6198         * generic-sharing.c:
6199         * object.c:
6200         * reflection.c:  Adjust locking order to the new semantics where the loader lock
6201         comes first.
6203 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
6205         * domain.c: Add mono_domain_code_* functions that perform locking
6206         around the domain codeman.
6208         * domain-internals.h: Export those functions.
6210         * object.c: Use new functions instead of acquiring the domain lock.
6212 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
6214         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
6215         delegate. Fixes #477396.
6217 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6219         * reflection.c (create_custom_attr): Get rid of alloca.
6221 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
6223         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
6224           Adding exception handling for all CCW calls.
6226         Code is contributed under MIT/X11 license.
6228 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
6230         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
6232         * marshal.c (emit_marshal_boolean): Add null checks to the new 
6233         native->managed marshalling code. Fixes #476247.
6235 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6237         * class.c (mono_class_get_vtable_entry): Move the addition of
6238         static rgctx invoke wrappers for vtable methods here, this simplifies
6239         a lot of code and causes fewer rgctx wrappers to be created.
6241         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
6242         name of the statistics to begin with an uppercase.
6244 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6246         * reflection.c: Revert previous change as it breaks the build.
6247         
6248 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6250         * verify.c: Properly handle SZARRAY element type.
6252         Fixes #474271.
6254 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
6256         * reflection.c (mono_image_create_method_token): Correctly encode
6257         MethodDef MemberRefParent token.
6259         Fixes #472845.
6261 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
6263         * image.c (mono_image_close): Delete the critical section before
6264         freeing the memory holding it.
6266 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6268         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
6269         Fixes #476257.
6271 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6273         * pedump.c (main): Call mono_marshal_init so pedump
6274         doesn't crash.
6276 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6278         * loader.c (method_from_memberref): Properly fix #474271 and
6279         don't break the runtime bad.
6281 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6283         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
6284         (mono_domain_alloc0): Ditto.
6286 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6288         * loader.c (method_from_memberref): Don't abort if the array
6289         method is not found. A regular loader failure is more informative
6290         and correct.
6292         Fixes #474271.
6294 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
6296         *loader.c: Guard MonoImage::method_cache/methodref_cache
6297         using the image lock instead of the loader lock.
6299         * metadata.h: Add comments about which fields are protected by
6300         the image lock.
6302 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
6304         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
6306         * generic-sharing.c (mono_method_construct_object_context): Remove the
6307         wrapper_type == NONE assert, it is not needed.
6309 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
6311         * reflection.c (clear_cached_object): New helper function.
6312         (mono_method_clear_object): New function to clear the cached reflection
6313         objects for a dynamic method.
6315         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
6316         Partly fixes # 463323.
6317         
6318 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6320         * class.c:
6321         * loader.c:
6322         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
6324 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
6326         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
6327         take the image lock instead of the loader lock.
6329         * metadata-internals.h: Export new functions.
6331 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6333         * domain.c (app_config_parse): Remove another use of stat that is
6334         not necessary as g_file_get_contents already does the presence
6335         check. 
6337 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6339         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
6341         * marshal.c: Move the bstr handling code to cominterop.c.
6343         * marshal.c: Remove some COM interop code missed previously.
6345 2009-02-12  Miguel de Icaza  <miguel@novell.com>
6347         More Paolo patches from the Wii port:
6348         
6349         * security.c: Remove ves_icall_System_Environment_get_UserName
6350         from here.
6352         * icall.c: And put ves_icall_System_Environment_get_UserName
6353         here. 
6355         * appdomain.c (mono_set_private_bin_path_from_config): Remove
6356         redundant call to stat that was only used to test for the file
6357         existence.   Patch from Paolo.
6359         * gc.c (run_finalize): If COM is disabled, do not link in
6360         mono_marshal_free_ccw.
6362         * generic-sharing.c: Use alloca.h here as well.
6364 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
6366         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
6368 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
6370         * cominterop.c cominterop.h: New files.
6372         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
6373         function/typedefs which are needed by cominterop.c global.
6375 2009-02-12  Mark Probst  <mark.probst@gmail.com>
6377         * generic-sharing.c: Don't take the loader lock to guard image
6378         mempool allocs.
6380 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6382         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
6383         called without the loader lock which is required to guard MonoImage:tokens.
6385 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6387         * class.c:
6388         * metadata.c:
6389         * method-builder.c:
6390         * marshal.c:
6391         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
6393 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6395         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6396         Rework the code to use regular mono_image_alloc/0.
6398         * loader.c: Rework the code to use regular mono_image_alloc/0.
6400         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
6402 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
6404         * object-internals.h : Fixing a typo in the 
6405           MonoReflectionComVisibleAttribute struct.
6407         * marshal.c (cominterop_com_visible): Check the implemented 
6408           interfaces for ComImport.
6410         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
6411           assume that bools should be treated as VARIANTBOOLs.
6413         * marshal.c (emit_marshal_boolean): Adding cases for 
6414           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
6416         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
6417           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
6419         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
6420           should be treated as VARIANTBOOLs.    
6422         Code is contributed under MIT/X11 license.
6424 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6426         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
6427         allocation with the image lock.
6429 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6431         This patch is the last of a series to remove explicit reference of MonoImage::mempool
6432         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
6434         * object.c: Add mono_string_to_utf8_image.
6436         * object-internals.h: Export mono_string_to_utf8_image.
6438         * reflection.c: Rework all explicit references to the the image mempool to go thought
6439         the mono_image_alloc set of functions.
6441 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6443         This patch is the third of a series to remove explicit reference of MonoImage::mempool
6444         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
6445         and generics-sharing.c.
6447         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
6448         as first argument. Note that this function remains broken as it doesn't perform locking around the
6449         mempool allocation.
6451         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
6453         * image.c: Add g_slist_append_image.
6455         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
6456         the supplied image for allocation. Move code into mono_metadata_field_info_full.
6458         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
6459         Fix all related code to do the same.
6461         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
6463         * metadata-internals.h: Fix the signatures.
6465 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
6467         This patch is the second of a series to remove explicit reference of MonoImage::mempool
6468         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
6469         and similar to work using MonoImage.
6471         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
6472         MonoMemPool.
6474         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
6476         * class.c (mono_metadata_signature_deep_dup): Same.
6478         * class.c (inflate_generic_type): Same.
6480         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
6482         * metadata.c (mono_metadata_signature_dup_full): Same.
6484         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
6485         mono_metadata_signature_dup_full.
6487         * metadata.c (mono_metadata_type_dup): Same.
6489         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
6491         * reflection.c: Same.
6493         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
6495         * metadata-internals.h: Fix the signatures.
6497         * class-internals.h: Same.
6499 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6501         This patch is the first of a series to remove explicit reference of MonoImage::mempool
6502         and use mono_image_alloc set of functions instead. 
6504         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
6505         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
6506         of a MonoMemPool.
6508         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
6510         * class.c (g_list_prepend_mempool): Removed.
6512         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
6514         * image.c: Add g_list_prepend_image.
6516         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
6518         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
6521 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6523         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
6524         mono_image_unlock.
6526         * image.c (mono_image_init): Init the lock field.
6528         * image.c (mono_image_init): Cleanup the lock field.
6530         * image.c: Add mono_image_(un)lock functions.
6532 2009-02-11  Mark Probst  <mark.probst@gmail.com>
6534         * class.c, class-internals.h: mono_method_get_context_general()
6535         combines the functionality of mono_method_get_context() and
6536         mini_method_get_context().
6538         * generic-sharing.c, domain-internals.h:
6539         mono_method_construct_object_context() and
6540         mono_domain_lookup_shared_generic() moved from mini.
6542         * icall.c (ves_icall_InternalInvoke): Handle the case where the
6543         method doesn't have the correct instantiation because it's shared
6544         generic code.  Fixes #473999.
6546 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
6548         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
6550         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
6551         
6552 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
6554         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
6556         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
6558         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
6559         and recheck the cache for dups after it.
6561         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
6563         Fixes one of the deadlocks found in #473150.
6565 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
6567         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
6568           For Win32, add additional break conditions for accept.
6570         Code is contributed under MIT/X11 license.
6572 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
6574         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
6575         lazily initialize the native wrapper cache.
6576         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
6577         cache, since they are different from the normal wrappers.
6579         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
6581         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
6582         AOT compiled native wrappers.
6584 2009-02-09  Geoff Norton  <gnorton@novell.com>
6586         * appdomain.h:
6587         * security-core-clr.c: Allow enabling core-clr from the embedding
6588         API.
6590 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6592         * socket-io.c: when requesting all the local ips, if there are no
6593         interfaces up and running, MS returns 127.0.0.1.
6595 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6597         * mono-perfcounters-def.h: processor time is an inverse time.
6598         Fixes bug #468625.
6600 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
6602         * socket-io.c: an empty host name returns the list of local IPs.
6603         Fixes bug #386637 part 1/2.
6605 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
6607         * verify.c (mono_class_interface_implements_interface): Call
6608         mono_class_setup_interfaces ().
6609         (merge_stacks): Ditto.
6611 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6613         * class.c (mono_class_setup_interfaces): New function to lazily initalize
6614         klass->interfaces.
6615         (mono_generic_class_get_class): Don't initalize klass->interfaces.
6616         (mono_generic_class_get_class): Ditto.
6618 2009-02-06  U-QUACK\miguel  <miguel@quack>
6620         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
6621         they live in security.c
6623         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
6624         another bit from Paolo's code.
6626 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
6628         * object.c (build_imt_slots): Add a small optimization to avoid inflating
6629         methods which will be discarded by add_imt_builder_entry ().
6631         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
6632         need to be boxed.
6634         * loader.c: Add a statistics for the size of the memberref signature cache.
6635         
6636         * loader.c (find_cached_memberref_sig): New helper function.
6637         (cache_memberref_sig): Ditto.
6639         * loader.c: Cache the result of parsing memberref signatures, since otherwise
6640         they will be parsed again for every generic instantiation, leading to unbounded
6641         memory growth.
6643 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6645         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
6646         parameters of generic methods.
6648         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
6649         after the original method is copied to the inflated method.
6650         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
6652         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
6653         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
6655         * class.c metadata.c: Update after the changes above.
6657 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6659         * metadata-verify.c: Simplified error handling and added
6660         section table validation.
6662 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6664         * class-internals.h (MonoClassExt): New structure containing rarely used
6665         fields of MonoClass.
6666         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
6667         through a new 'ext' field.
6669         * class.c (mono_class_alloc_ext): New helper function to allocate 
6670         class->ext.
6672         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
6674 2009-02-05  Mark Probst  <mark.probst@gmail.com>
6676         * object.c (mono_object_get_virtual_method): Properly inflate
6677         generic methods.  Fixes #472692.
6679 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
6681         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
6682         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
6683         for the parent type, the created type must be ready to be used on a generic
6684         instantiation.
6685         We fill this_arg/byval_arg if the parent is a generic instance to make sure
6686         we won't have duplicated entries in generic_inst_cache.
6688         Fixes #469553.
6690 2009-02-05  Miguel De Icaza  <miguel@novell.com>
6692         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
6693         replace with plain BSD per the comments on the bug MONO77637.
6695 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
6697         * class.c (mono_class_get_generic_class): New accessor function.
6698         (mono_class_get_generic_container): Ditto.
6700         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
6701         fields, similar to the ones in MonoMethod.
6703         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
6704         (mono_class_create_from_typedef): Set klass->is_generic if needed.
6706         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
6707         
6708         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
6709         the same information as element_class->byval_arg.
6711         * class.c reflection.c: Remove references to class->byval_arg.
6713         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
6714         klass->enum_basetype directly.
6716         * verify.c metadata.c object.c icall.c reflection.c: Use 
6717         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
6718         directly.
6720 2009-02-04  Miguel de Icaza  <miguel@novell.com>
6722         * icall-def.h: Remove internal calls for sockets when
6723         DISABLE_SOCKET is defined, file system writing features when the
6724         OS only support reading and not writing data and Policy support if
6725         the Policy is disabled.
6726         
6727         * image.c (do_mono_image_open): Apply Paolo's patches for using
6728         mono_file_map_ APIs here.
6730         * assembly.c: Add support for platforms to avoid prefix
6731         auto-detection. 
6733 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
6735         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
6736         warning.
6738         * class.c (mono_class_inflate_generic_class): New helper function.
6740         * class.c: Use mono_class_inflate_generic_class in a few places. Add
6741         statistics for inflated methods/classes.
6743         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
6745         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
6746         the call is made from Delegate.CreateDelegate () for the invoke method of
6747         a delegate.
6749         * loader.c: Add a statistics for the memory occupied by inflated signatures.
6751         * metadata.c (mono_metadata_signature_size): New helper function.
6753         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
6754         generic instances.
6756         * metadata.c (inflated_method_in_image): Avoid calling 
6757         mono_method_signature () if the method does not already have a signature.
6759 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6761         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
6762         valuetype is compatible with target type, check by inheritance as a
6763         VT is not really compatible with System.ValueType, for example.
6765         * verify.c (do_invoke_method): Improve error message.
6767         * verify.c (do_box_value): If boxing a nullable, use the type argument
6768         on stack instead.
6770         * verify.c (do_newobj): Improve error message.  
6772         Fixes #469549.
6774 2009-02-03  Miguel de Icaza  <miguel@novell.com>
6776         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
6778 2009-02-03  Mark Probst  <mark.probst@gmail.com>
6780         * generic-sharing.c: Don't hold domain lock when calling
6781         instantiate_other_info().  Fixes #471958.
6783         * domain-internals.h, loader.c: Describe locking policy of domain
6784         lock vs loader lock.
6786 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6788         * verify.c (mono_delegate_signature_equal): Make it possible to check
6789         first-arg-bound delegates to static method.
6791         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
6792         static methods with the first arg bound.
6794         Fixes #469529.
6796 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6798         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
6799         errors.
6801         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
6802         under strict mode. Any type, when boxed can be seen as a reference type.
6804         Fixes #469528.
6806 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
6808         * object.h: The lower bound of an array is a signed integer value.
6809         Introduce mono_array_lower_bound_t typedef. It should be used instead of
6810         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
6812         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
6813         calculate the upper bound.
6814         
6815         Fixes #471252.
6817 2009-02-02  Miguel de Icaza  <miguel@novell.com>
6819         From Paolo's work, refactored, cleared up:
6820         
6821         * threadpool.c, icall.c: ifdef code that requires a working socket
6822         stack.
6824         * metadata.c (mono_metadata_field_info): Do not attempt to return
6825         a value from a function declared as void.
6827         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
6828         from the console stack.
6830         * assembly.c: use strrchr instead of rindex.
6832         * class.c, object.c, marshal.c, icall.c, reflection.c: include
6833         alloca.h on systems that have it.
6835         * environment.c: Avoid code that uses stuff from
6836         HAVE_SYS_UTSNAME_H
6837         
6838         * appdomain.c: Include sys/time.h.
6840         * console-io.c: include sys/ioctl.h if it is available.
6842 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
6844         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
6846         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
6847         the method builder.
6849         * marshal.c: Set mb->skip_visibility instead of setting it on the method
6850         after it was created and cached, as the later is not thread safe.
6851         
6852 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6854         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
6855         called while the debugging module is not initialized. Fixes #471669.
6857 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
6859         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
6861         Fixes #471255.
6863 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6865         * generic-sharing.c (lookup_or_register_other_info): Make sure the
6866         loader lock is not taken while the templates lock is held.  Fixes
6867         #471089.
6869 2009-02-02  Mark Probst  <mark.probst@gmail.com>
6871         * metadata.c (type_in_image): Added a check to fix a monodis
6872         crash.
6874 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
6876         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
6877         nullable arguments.
6879         * object.c (mono_runtime_invoke_array): Ditto.
6880         
6881         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
6882         freeing wrappers of dynamic methods.
6884         * loader.c (mono_free_method): Call it. Fixes #463323.
6885         
6886         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
6887         methods taking vtype/byref arguments, to fix yet another bug caused by
6888         the sharing of runtime invoke wrappers. Partly fixes #471259.
6890 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
6892         * debug-mono-symfile.c (check_line): Return NULL instead of returning
6893         <first file in file table>:1 when the IL offset does not have an associated
6894         line number.
6896 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
6898         * mono-debug.c (mono_debug_lookup_locals): New function to return local
6899         variable info for a method.
6901         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
6902         
6903 2009-01-30  Jb Evain  <jbevain@novell.com>
6905         * pedump.c: reuse code from monodis to make sure pedump honors
6906         MONO_PATH, which is needed to verify net_2_1 assemblies.
6908 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
6910         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
6911         there is no line number info.
6913 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
6915         Avoid some MonoType allocations
6916         * reflection.c (mono_reflection_initialize_generic_parameter):
6917         Reuse MonoType from param->pklass rather than allocating one.
6918         (mono_dynamic_image_free): Update to changes.
6920 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6922         Rearrange some code to improve consistency
6923         * reflection.c (mono_reflection_setup_generic_class): Move body ...
6924         (mono_reflection_initialize_generic_parameter): ... here.
6926 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
6928         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
6929         with type constraints as an experiment.
6931         * boehm-gc.c (on_gc_notification): Update mono_stats.
6933 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
6935         Avoid some allocations
6936         * class-internals.h (_MonoGenericInst::type_argv): Convert from
6937         pointer to tail array to avoid extra allocation.
6938         * metadata.c (free_generic_inst): Update to changes.
6939         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
6940         on-stack struct.
6942 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
6944         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
6945         return TRUE if the two type objects are the same.
6947 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6949         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
6950         (mono_class_native_size): Use klass->marshal_info->min_align instead of
6951         klass->min_align, since klass->min_align contains the managed alignment,
6952         while the native alignment can be different, like for longs on x86.
6953         Fixes #469135.
6955         * class-internals.h (MonoMarshalType): Add a min_align field.
6957 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
6959         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
6960         the 1.0 format.
6962 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
6964         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
6965         some comments about the usage of the used_regs field.
6967         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
6968         Fixes #469217.
6970 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
6972         * appdomain.c: return NULL instead of throwing FileNotFoundException
6973         when LoadAssembly() fails.
6975 2009-01-23  Mark Probst  <mark.probst@gmail.com>
6977         * metadata.c (mono_metadata_generic_param_equal): Only compare the
6978         image if the owner is NULL.  Fixes the AOT failures.
6980 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
6982         * metadata.c (mono_metadata_load_generic_params): Initialize the 
6983         MonoGenericParam structure using memset so the image field is initialized
6984         as well.
6986 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6988         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
6989         a plain store.
6991 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
6993         * class.c (mono_class_setup_vtable_general): In the generic instance
6994         optimization, set method->slot for abstract virtual methods. Fixes part of
6995         #467834.
6997 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
6999         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
7000         which signals that the unloading has started but all appdomain services must
7001         remain operational.
7003         * appdomain.c (mono_domain_unload): The initial state for unloading now
7004         is unloading_start and we switch to unloading after the managed call to
7005         AppDomain::DomainUnload has finished.
7007         The new unloading state has to be created because managed code in the
7008         DomainUnload event can depend on things like the threadpool still working.
7009         The domain must remain fully functional while the event executes.
7011         This shown as an issue due to Process::WaitForExit, which waits for
7012         async reads of stdout and stderr to complete. Since those are processed
7013         in the threadpool the code deadlocks because the DomainUnload callback 
7014         waits for the async read finished event, which should have been set by a
7015         threadpool job but has been discarded due to the domain been in unload
7016         state.
7018 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7020         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
7021         image must match.
7023 2009-01-21  Mark Probst  <mark.probst@gmail.com>
7025         * reflection.c (resolve_object): For fields, inflate the class and
7026         then get the field in the inflated class.
7028 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7030         * object-internals.h (struct _MonoException): Added a comment
7031         explaining the new use of trace_ips.
7033 2009-01-20  Mark Probst  <mark.probst@gmail.com>
7035         * generic-sharing.c (inflate_other_data): Inflate array methods
7036         correctly.
7038         * loader.c, class-internals.h: Rename search_in_array_class() to
7039         mono_method_search_in_array_class() and make it non-static.
7041 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7043         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
7044         Hopefully fixes #458168.
7046 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7048         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
7049         as it is performed elsewhere.
7051         Code is contributed under MIT/X11 license
7053 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
7055         * mono-perfcounters-def.h: Add counters for asp.net requests total and
7056         requests queued.
7057         * object.c (mono_raise_exception): Increment the exceptions total
7058         counter when an exception is thrown.
7059         * class-internals.h: Add a location for storing the total number of
7060         asp.net requests served.
7061         * mono-perfcounters.c: Implement update support for asp.net counters
7062         from the class libraries. Implement read support for asp.net counters
7063         and exceptions total counter.
7065 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
7067         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
7068         accessing klass->methods. Fixes #467385.
7070 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7072         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
7073         for byval arguments without an [Out] attribute. Fixes #467212.
7075         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
7076         Fix compilation under android.
7077         
7078         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
7079         processed, scan them directly after they are copied, to achieve better locality
7080         and cache usage.
7082         * socket-io.c: Applied patch from Koushik Dutta
7083         (koush@koushikdutta.com). Disable IPV6 when running under android.
7085 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
7087         * icall.c (ves_icall_InternalExecute): Add write barriers.
7089         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
7090         the GC code.
7092         * sgen-gc.c: Implement write barriers in IL code.
7094 2009-01-17  Geoff Norton  <gnorton@novell.com>
7096         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
7098 2009-01-17  Geoff Norton  <gnorton@novell.com>
7100         * image.c: When unloading the image->references table, there can be gaps
7101         in it.  Ensure that we iterate every entry to avoid leaking assembly references
7102         when unloading an appdomain.
7104 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
7106         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
7107         speed up ptr-in-nursery checks.
7109         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
7110         threads_lock () to prevent deadlocks.
7112         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
7113         does not need to be scanned during minor collections, since writes to it
7114         must use write barriers.
7116 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
7118         * metadata-verify.c: Add pe nt header verification.
7119         
7120 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7122         * gc.c: Fix a few warnings when using SGEN.
7124 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
7126         * metadata-verify.c: Add pe optional header verification.
7128 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
7130         * sgen-gc.c: Add support for user defined marker functions, used by
7131         MonoGHashTable to avoid registering a GC root for every hash node.
7133 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7135         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
7136         non-pinned roots into separate hashes to avoid having to traverse them
7137         in functions which are only interested in one kind.
7139 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7141         * metadata-verify.c: Add pe header machine field verification.
7142         
7143 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
7145         * metadata-verify.c: Add pe header size verification.
7147 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
7149         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
7150         using the GC, they don't contain references.
7152         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
7154 2009-01-13  Geoff Norton  <gnorton@novell.com>
7156         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
7157         AppDomains created on the native side can be cleaned up on the native side.
7159 2009-01-13  Geoff Norton  <gnorton@novell.com>
7161         * appdomain.c: Ensure that we call mono_context_init for the embedding api
7162         as well as the managed api.
7164 2009-01-13  Geoff Norton  <gnorton@novell.com>
7166         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
7167         with a MonoAppDomain initialized against it.
7169 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7171         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
7172         
7173         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
7175         * marshal.c: Avoid setting the exception clauses after a method has been entered 
7176         into the wrapper caches. Fixes #465700.
7178         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
7179         method builder.
7180         (mono_mb_create_method): Set the clauses from the method builder.
7182 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
7184         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
7185         Patch from Makoto Kishimoto.
7187 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
7189         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
7190         encoding them as ROOT_DESC_COMPLEX.
7191         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
7193 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
7195         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
7196         no longer point to the nursery.
7198         * sgen-gc.c: Add a few comments/FIXMEs.
7199         
7200         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
7202         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
7203         initialization of the various _method variables thread safe. Fixes
7204         #465377.
7206 2009-01-12  Mark Probst  <mark.probst@gmail.com>
7208         * domain.c, domain-internals.h: Remove the shared_generics_hash
7209         and its lookup functions.
7211 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
7213         * socket-io.c:  Fixing the MSVC build. 
7215         Code is contributed under MIT/X11 license.
7217 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
7219         * metadata-verify.c: Add pe header watermark verification.
7221 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7223         * metadata-verify.c: Add lfanew verification.
7225 2009-01-12  Jb Evain  <jbevain@novell.com>
7227         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
7228         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
7230 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
7232         * socket-io.c: Fix the build.
7234         * environment.c: Fix an #ifdef.
7236 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7238         * threadpool.c (async_invoke_thread): Handle the wait function returning
7239         WAIT_IO_COMPLETION as well.
7240         (async_invoke_io_thread): Ditto.
7242 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
7244         * threads.c: Fixing the Windows build.
7246         Code is contributed under MIT/X11 license.
7248 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7250         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
7251         interrupt a wait.
7252         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
7253         the thread to wait again.
7255 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7257         * metadata-verify.c: Initial skeleton of the metadata verifier.
7259         * pedump.c: Add support for the metadata verifier.
7261         * verify-internal.h: Export the whole assembly metadata verifier function.
7263 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
7265         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
7267 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
7269         * Makefile.am: Upgrade dtrace-prelink.sh location.
7271 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7273         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
7274         well. Otherwise the shutdown deadlock that happens on unix will can happen
7275         as well.
7276         If the main thread code finishes too fast it's possible that the finalizer
7277         thread won't have executed yet, won't record itself as the finalizer thread
7278         and the shutdown sequence will wait on it forever.
7280 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
7282         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
7283         with MSVC.
7285 2009-01-08  Miguel de Icaza  <miguel@novell.com>
7287         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
7288         Robert Jordan for pointing this out.
7290 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
7292         * icall.c
7293         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
7294         ves_icall_System_IO_DriveInfo_GetDriveType.
7296 2009-01-07  Miguel de Icaza  <miguel@novell.com>
7298         * icall.c: Wrap calls to mono_strtod in CriticalSection
7299         invocations when using eglib, to work around #464316.
7301 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7303         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
7304         return value of GetCurrentDirectory to never access unitialized memory.
7306 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
7308         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
7309         return value of GetCurrentDirectory and expand the buffer if needed.
7311         Fixes #459094.
7313 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
7315         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
7316           Adding a call to mono_init_com_types.
7318         Code is contributed under MIT/X11 license.
7320 2009-01-07  Geoff Norton  <gnorton@novell.com>
7322         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
7323         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
7324         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
7325         be the value of the ip buffer.
7327 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7329         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
7330         interfaces_packed here.
7332         Fixes part of #463294.
7334 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7336         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
7338         Fixes part of #463294.
7340 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7342         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
7343         is a boxed complex as well.
7345         Fixes part of #463294.
7347 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
7349         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
7350         control if a methodspec should be created for the generic method definition from external assemblies.
7351         Caching of methodspec is done using the handleref hash table.
7353         Fixes #462592.
7355 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
7357         * loader.c (find_method): When searching the interfaces of a class
7358         check the transitive closure of implemented interfaces.
7360         Fixes #463303.
7362 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7364         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
7365         
7366 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
7368         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
7369         interfaces calculation to fill_valuetype_array_derived_types.
7371         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
7372         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
7373         for example.
7375         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
7376         interfaces for valuetypes if needed.    
7378         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
7379         for their basetype as well. Types are array expanded if rank is > 0.
7381         Fixes #400716.
7383 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
7385         * socket-io.h : Changing the signature of
7386           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
7387           the blocking state.
7389         * icall-def.h :  Changing the signature of
7390           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
7392         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
7393           For Windows only.  Avoid blocking when calling accept by
7394           querying for a connection via select.  The loop also queries
7395           the thread state every 1000 micro seconds for the thread
7396           stop state.  This will avoid the process hanging on shutdown
7397           when using a TcpChannel that is never connected to.
7399         Code is contributed under MIT/X11 license.
7401 2008-12-30  Marek Safar  <marek.safar@gmail.com>
7403         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
7405 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7407         * class.c (get_implicit_generic_array_interfaces): Extract common
7408         code to a helper function making it a lot easier on the eyes.
7410 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
7412         * class.c (get_implicit_generic_array_interfaces): If the internal
7413         enumerator is an interface inflate System.Object instead of itself.
7415         Fixes #461261.
7417 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
7419         * object.c (mono_runtime_invoke_array): Don't assert with
7420         byref nullable types.
7422         * marshal.c (mono_marshal_get_runtime_invoke): To handle
7423         byref nullables we unbox the object and store it on the
7424         stack. 
7425         We can't use the boxed object since it is the T of Nullable<T>
7426         and the boxed representation of a nullable it's underlying type
7427         or null.
7428         We could cheat and create a boxed nullable and use the same
7429         machinery of other byref VTs but this feels like a hack and
7430         using the stack has the bonus of reducing heap pressure.
7432         Fixes #461941.
7434 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
7436         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
7437         return value.
7439         Fixes #461867.
7441 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
7443         * icall-def.h : Adding an internal call definition for 
7444           System.Environment.internalBroadcastSettingChange.
7446         * icall.c : Adding a Windows only implementation to broadcast a 
7447           WM_SETTINGCHANGE when an environment variable has changed.
7449         Code is contributed under MIT/X11 license.
7451 2008-12-19  Mark Probst  <mark.probst@gmail.com>
7453         * class.c, class-internals.h: Made
7454         mono_class_has_parent_and_ignore_generics() non-static.
7456 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
7458         * image.c: deal with the mmap failing when loading an image.
7460 2008-12-17  Geoff Norton  <gnorton@novell.com>
7462         * threadpool.c: Ensure that the io_queue_lock is initialized
7463         in all circumstances, as we always attempt to cleanup against it.
7465 2008-12-17  Miguel de Icaza  <miguel@novell.com>
7467         * icall.c (ves_icall_System_Environment_get_Platform): For
7468         compatibility reasons for existing client code we will keep
7469         returning 4 for a while.   
7471         For how long will depend on the documentation being updated, and
7472         for us to give client code a chance to be updated.
7474         This reverts the original decison on #433108 since we did not
7475         catch roughly 33 instances of the broken code in our own source
7476         code base, we did not catch failures on the buildbots, and QA did
7477         not bring this as a problem.
7479         Only today I found some customer's code breaking due to our own
7480         class libraries not being fully updated and tracked it down to
7481         this change.  I am reverting it because if we could not even get
7482         our story straight in our own code base, how can we hope that our
7483         end user code be fixed?
7485         As of this morning, our Wiki page that documents how to detect
7486         Unix had not been fixed.    
7488 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
7490         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
7492         * class.c (mono_class_get_fields): Handle loading errors.
7494 2008-12-12 Mark Mason <mmason@upwardaccess.com>
7496         * 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.
7497         
7498 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7500         * mono-perfcounters.c: avoid warning.
7502 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7504         * reflection.c (ensure_runtime_vtable): Work on generic instances and
7505         make sure all interfaces have MonoClass::interface_id set.
7507         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
7508         method table is property set.
7510 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7512         * class.c: New function mono_class_setup_interface_id that setup
7513         MonoClass::interface_id if needed.
7515         * class-internals.h: Export new function.
7517 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
7519         * class.c: Add code to sanity check the vtable after setup_vtable_general
7520         has done it's work.
7522 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
7524         * icall.c: make Assembly.GetExecutingAssembly work properly when
7525         reflection is used to invoke the method.
7526         Bug #321781 fixed.
7528 2008-12-11  Mark Probst  <mark.probst@gmail.com>
7530         * metadata/generic-sharing.c: Look for constraints in all type
7531         arguments, not just the first one.
7533 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
7535         * appdomain.c: return the correct CodeBase for an Assembly instance
7536         that was loaded from the shadow-copy directories.
7537         Bug #458190 fixed.
7539 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
7541         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
7543         * sgen-gc.c (check_object): New debugging helper function.
7545         * object.c: Fix calls to mono_value_copy_array ().
7547 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7549         * class.c (mono_class_setup_fields): If working on an inflated class
7550         first check if the generic definition did init with success.
7552         Fixes #445361.
7554 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7556         pedump.c (main): Fix a warning.
7558 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
7560         * object-internals.h : Adding a definition for 
7561           MonoReflectionComVisibleAttribute.
7563         * marshal.c (cominterop_com_visible) :  Method added to check the 
7564           ComVisible attribute of a class.
7566         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
7567           cominterop_raise_hr_exception added to consolidate common code 
7568           to raise hr exceptions.
7570         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
7571           if a managed class should support IDispatch.
7573         * marshal.c 
7574           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
7575           Added additional checks for managed object when getting 
7576           an IDispatch interface.
7578         Code is contributed under MIT/X11 license.
7580 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
7582         pedump.c (main): Handle mono_get_method () returning NULL. 
7584 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7586         * marshal.h: Fix a warning.
7588 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
7590         * marshal.c : Adding cominterop_release_all_rcws to release all
7591           runtime callable wrappers held by the runtime.
7593         * marshal.h : Adding declaration for cominterop_release_all_rcws.
7594           
7595         Code is contributed under MIT/X11 license.
7597 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
7599         * metadata.c (mono_image_alloc_lock): New helper function.
7600         (mono_image_alloc0_lock): Ditto.
7602         * metadata.c: Use the alloc_lock () helper functions for allocating
7603         memory from the image mempool.
7605 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
7607         * class.c (mono_class_from_generic_parameter): Document it's
7608         locking behavior. Fix double checked locking here, we stored in
7609         param->pklass a partially initialized MonoClass and no membar was used.
7611 2008-12-05  Marek Habersack  <mhabersack@novell.com>
7613         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
7614         (3) functions are present in the C library use them to do the
7615         job. If they are absent, make sure that the sum of int_part and
7616         dec_part is rounded before returning. This is necessary due to the
7617         division of dec_part by the power of 10 before the final addition
7618         is performed - if the result is not rounded in some cases it will
7619         yield invalid results.
7621 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
7623         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
7624         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
7625         instruction instead of a pointer constant.
7627 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
7629         * loader.c (mono_method_get_header): Do most of the work outside the
7630         loader lock, to avoid assembly load hook deadlocks.
7632         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
7633         (mono_metadata_parse_type_full): Ditto.
7635 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
7637         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
7638         Make the stack depth fixed. Ensure proper argument passing to the backtrace
7639         funtions. Finally, use a lock to produce well ordered output.
7641         The lock looks silly, as all calls to the corlib mempool should be guarded
7642         with the loader lock, but for some reason this fact doesn't help. 
7644         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
7646 2008-12-02  Mark Probst  <mark.probst@gmail.com>
7648         * socket-io.c: 64 bit big-endian fixes.
7650 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
7652         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
7653         targets that require strict compatibility between the types.
7655         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
7656         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
7657         Kill the strict argument and create a new one valuetype_must_be_boxed.
7659         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
7660         state that all valuetypes must be boxed.
7662         Fixes #448560.
7664 2008-11-29  KornĂ©l Pál  <kornelpal@gmail.com>
7666         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
7667         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
7669         Contributed under MIT/X11 license.
7671 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
7673         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
7674         the inflate_generic_type machinery should handle it.
7676         This avoids a crash when the field's flags is zero and it's type is
7677         a primitive.
7678         What happens is that mono_metadata_parse_type_full will see that opt_attrs
7679         is zero and will return one of the cached built-in primitive types. Since
7680         those types live in read-only memory, the code that copies it crashes.  
7682 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7684         * object.c: Don't put function descriptors into generalized IMT
7685         thunks.
7687 2008-11-28  Mark Probst  <mark.probst@gmail.com>
7689         * class.c: Enable generic code sharing on PPC64.
7691 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7693         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
7694         from mini/mini.c.
7696         * generic-sharing.c: Allocate the method template slists from the
7697         image mempool so it doesn't leak.
7699 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
7701         * class.c (generic_array_methods): Release the linked list.
7703 2008-11-27  Mark Probst  <mark.probst@gmail.com>
7705         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
7706         invocation to g_utf16_to_utf8().
7708 2008-11-26  Mark Probst  <mark.probst@gmail.com>
7710         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
7711         arguments on big endian archs.
7713 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7715         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
7716         the type name (test added in corlib).
7718 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
7720         * pedump.c: initialize perf. counters. Fixes a segv.
7722 2008-11-25  Martin Baulig  <martin@ximian.com>
7724         * mono-debug-debugger.c
7725         (mono_debugger_runtime_invoke): Return the exception object if an
7726         exception was thrown.  Visual Studio displays the exception object
7727         in the locals window.
7729 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7731         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
7732         ftnptr.
7734 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7736         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
7737         MONO_TYPE_U are sizeof (gpointer), too.
7739 2008-11-24  Mark Probst  <mark.probst@gmail.com>
7741         * marshal.c (mono_type_native_stack_size): Fixed size and
7742         alignment for reference types.
7744 2008-11-23  Mark Probst  <mark.probst@gmail.com>
7746         * class.c (mono_class_generic_sharing_enabled): Disable generic
7747         code sharing for PPC64.
7749 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
7751         * icall.c (mono_method_get_equivalent_method): Make sure
7752         method->klass->methods is inited before looping over it.
7754 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7756         * object.c: when calling ExecuteAssembly in a newly created domain,
7757         the configuration file and application base are already set up.
7758         Bug #446353 take 2 fixed.
7760 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
7762         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
7763         Fixes #444715. Fix a warning.
7765 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
7767         * appdomain.c: write the full path of the assembly to the .ini file
7768         created when "shadow-copying"
7769         Bug #446353 fixed.
7771 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
7773         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
7774         if signature==FALSE.
7776 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7778         * marshal.h : Fix the cygwin build.
7779            marshal.c:12442: undefined reference to `_IID_IMarshal'
7780           
7781         Code is contributed under MIT/X11 license.
7783 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
7785         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
7786           free threaded marshaler when QueryInterface is called on a COM callable
7787           wrapper requesting the IMarshal interface.
7788           
7789         Code is contributed under MIT/X11 license.
7791 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
7793         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
7795         * reflection.c (mono_type_get_object): Special case the very common
7796         void type.
7798         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
7799         hold typeof(void).
7801 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
7803         * process.h : Adding method declaration for
7804           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7805           
7806         * process.c : Adding implementation for
7807           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7808           
7809         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
7810           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
7812         Code is contributed under MIT/X11 license.
7814 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
7816         * appdomain.c (unload_thread_main): Clean up threadpool by
7817         calling mono_thread_pool_remove_domain_jobs.
7819         * domain-internals.h (struct _MonoDomain): Add new fields to
7820         help coordinate the cleanup of the threadpool.
7822         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
7823         that cleans up the threadpool of all jobs associated with an appdomain.
7824         It does that by cleaning up the queues and making sure all active
7825         threads are accounted.
7827         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
7828         unloaded or in the process of. Take this is such way that there is
7829         no race condition between another thread starting the unload and the
7830         current thread acknowledging it.
7832         * threadpool.c (async_invoke_thread): Same.
7834         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
7835         firing the new thread.
7837         * threadpool.c (start_tpthread): Same.
7839         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
7841         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
7843 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
7845         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7846         Add support for DuplicateHandle.
7847         
7848         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7849         Add support for DuplicateHandle.
7850         
7851         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
7852         Add support for DuplicateHandle.
7854         Code is contributed under MIT/X11 license.
7856 2008-11-06  Mark Probst  <mark.probst@gmail.com>
7858         * class-internals.h: Make min_align into a whole byte.
7860         * class.c: Set min_align for SIMD types to 16.
7862 2008-11-05  Geoff Norton  <gnorton@novell.com>
7864         * attach.c: Default the attacher to enabled for all cases including
7865         embedded.
7867 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
7869         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
7870         change r117650.
7872 2008-11-04  Mark Probst  <mark.probst@gmail.com>
7874         * monitor.c, monitor.h: New function for querying offsets of
7875         members of MonoThreadsSync.
7877 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
7879         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
7880         to speed up this function and to avoid the boundless memory growth caused by
7881         the signature_dup () calls.
7883 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
7885         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
7886         wrapper.
7888         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
7889         by 1 bit.
7891         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
7893 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7895         * appdomain.c:
7896         * domain-internals.h: made mono_set_private_bin_path_from_config()
7897         "internal".
7898         * object.c: call the above function after setting the configuration
7899         file path for the root domain.
7900         Fixes bug #314478.
7902 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
7904         * assembly.c: when the assembly is loaded from an absolute path, end
7905         basedir with a directory separator.
7906         Bug #440781 fixed.
7908 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7910         * monitor.c (mono_monitor_get_fast_enter_method): If
7911         CompareExchange is not available, don't create the fastpath
7912         instead of asserting.  (The method is missing in the 1.1 profile.)
7914 2008-10-30  Mark Probst  <mark.probst@gmail.com>
7916         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
7918         * monitor.c, monitor.h: Code for generating Monitor.Enter and
7919         Monitor.Exit IL fastpaths.
7921 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7923         * class.c (mono_class_create_from_typedef): Added Vector2ul.
7925 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
7927         * class.c (mono_class_create_from_typedef): Added Vector2l.
7929 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
7931         * class.c (mono_class_create_from_typedef): Added Vector2d.
7933 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
7935         * appdomain.c: translate \ into / for cache_path.
7936         * domain-internals.h: new mono_is_shadow_copy_enabled().
7937         * icall.c: (fill_reflection_assembly_name) do the same path
7938         manipulations that get_code_base does.
7939         (get_code_base) use mono_is_shadow_copy_enabled.
7941 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7943         * appdomain.c: shadow-copied assemblies go to CachePath +
7944         ApplicationName when both are set. DynamicBase has nothing to do with
7945         shadow copies.
7946         Bug #406877 fixed.
7948 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
7950         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
7951         STANDALONESIG table.
7953         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
7954         standalone signatures.
7956         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
7957         comparison code: instead of comparing the signatures using a custom
7958         equals function, transform them to a common signature and compare that. This
7959         works better with AOT.
7961 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
7963         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
7965         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
7966         call for generic instances.
7967         (mono_class_setup_properties): Call setup_properties () before accessing
7968         gklass->properties.
7970         * class.c (mono_class_get_virtual_methods): New helper function to iterate
7971         over the virtual methods of a class using metadata if possible, avoiding the
7972         creation of MonoMethod's for non-virtual methods.
7973         
7974         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
7975         get_virtual_methods () to iterate over the virtual methods of classes.
7977 2008-10-25  Martin Baulig  <martin@ximian.com>
7979         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
7981 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7983         * class.c (mono_class_create_from_typedef): Added Vector4i.
7985 2008-10-24  Mark Probst  <mark.probst@gmail.com>
7987         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
7988         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
7989         special-casing applies to eliminate the call completely.
7991 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
7993         * class.c (mono_class_create_from_typedef): Added Vector8s.
7995 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
7997         * class.c (mono_class_create_from_typedef): Added Vector16sb.
7999 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8001         * icall.c: get rid of annoying warning.
8003 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
8005         * threadpool.c: in 1.x, if you change the background status of the
8006         threadpool thread, it's not reset.
8007         Remove unnecessary calls to SetState.
8009 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8011         * threadpool.c: asynchronously create a set of idle threads upon first
8012         use of the threadpool. SetMinThreads will now start the appropriate
8013         number of idle threads if they are not already running. The default is
8014         1 threadpool thread per CPU. Increased the maximum number of threads
8015         per CPU to 10.
8017 2008-10-22  Martin Baulig  <martin@ximian.com>
8019         Revert r116521 from Zoltan, it breaks the debugger:
8021         * class.c (mono_class_get_virtual_methods): New helper function to iterate
8022         over the virtual methods of a class using metadata if possible, avoiding the
8023         creation of MonoMethod's for non-virtual methods.
8024         
8025         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
8026         get_virtual_methods () to iterate over the virtual methods of classes.
8028 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8030         * threads.c: when creating a threadpool thread, set its state to
8031         'background'.
8032         * threadpool.c: reset the background state of a threadpool thread
8033         after finishing each work item
8034         Bug #437888 fixed.
8036 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8038         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
8039         
8040         * class.c (mono_class_setup_vtable_general): Add an optimized version for
8041         generic instances which works by inflating the methods in the container
8042         class's vtable.
8044         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
8045         variant which doesn't make a copy if no inflation was done.
8046         (mono_class_setup_fields): Use it.
8048         * metadata.c (mono_metadata_get_shared_type): New helper function to
8049         return a shared instance of a given MonoType.
8051         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
8052         a copy of most non-generic types.
8054 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
8056         * threadpool.c: remove one more GetSystemInfo () call.
8058 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8060         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
8061         use the code in mono-proclib.h to get processor information.
8063 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
8065         * appdomain.c: fixed the logic that determines whether assemblies in a
8066         directory are "shadow-copied" or not. Bug #433483 fixed.
8068 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
8070         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
8071         warning.
8073 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8075         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
8076         returning a vtype.
8078         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
8079         reflection.c: Use mono_field_get_name () for accessing a field's name.
8081         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
8082         class.c
8084         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
8085         field.
8087         * loader.c (find_method_in_class): Reenable the metadata optimization by
8088         not using it for generic instances.
8090         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
8091         data/def_type fields from MonoClassField into a separate structure.
8092         (struct MonoClassField): Remove data/def_type fields.
8093         (struct _MonoClass): Add a 'field_def_values' array to store the default
8094         values/RVA for fields.
8096         * class.c reflection.c: Update after the changes.
8097         
8098         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
8099         for accessing field->data.
8101         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
8103         * loader.c (find_method_in_class): Revert the last change for now as
8104         it breaks Mono.C5 unit tests.
8106         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
8107         'field_generic_types' and 'field_objects' which contain the information
8108         previously stored in MonoInflatedField.
8109         (MonoInflatedField): Delete.
8110         (struct _MonoClassField): Delete 'generic_info' field.
8112         * reflection.c: Store the information which was previously in 
8113         field->generic_info in MonoDynamicGenericClass instead.
8115         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
8116         MonoClassField changes.
8118 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
8120         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
8121         store the value inside the data array of the MonoMethodWrapper.
8122         This saves memory, is faster and fixes the lifetime issues (methods
8123         were never removed from the hash previously). May also fix bug#436996.
8125 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
8127         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
8128         generic instances, compute the type from the generic definition instead of
8129         looking in field->generic_info.
8131         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
8132         for inflated fields, the only user was get_fieldref_token () which no
8133         longer needs it.
8135         * class.c (mono_class_init): Revert the last change as it seems to cause
8136         crashes.
8138         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
8139         bytes on 64 bit platforms.
8141         * object.c (mono_class_create_runtime_vtable): Fix a warning.
8142         
8143         * object.c (mono_class_create_runtime_vtable): Don't initalize
8144         field->data/field->def_type here, it is done lazily by 
8145         mono_class_get_field_default_value ().
8147         * icall.c (ves_icall_get_enum_info): Call 
8148         mono_class_get_field_default_value () instead of directly accessing
8149         field->data and field->def_type.
8151         * object.c (get_default_field_value): Ditto.
8153         * class.c (mono_field_get_data): Ditto.
8154         
8155         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
8156         call for generic instances.
8158         * loader.c (find_method_in_class): If klass != from_class, then inflate
8159         the method with the context of from_class, since the caller assumes this.
8161 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
8163         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
8164         for accessing method->slot.
8166 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
8168         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
8170 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
8172         * class.c (mono_method_get_vtable_index): Use
8173         mono_method_get_vtable_slot () for accessing method->slot.
8175         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
8176         accessing klass->methods.
8178         * class.c (mono_method_get_vtable_slot): New helper function.
8179         (mono_class_get_vtable_entry): Ditto.
8180         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
8181         accessing method->slot.
8183         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
8184         method to get_inflated_method ().
8186         * class.c (mono_class_get_inflated_method): New helper method to obtain
8187         a method of an inflated class without calling setup_methods ().
8188         (mono_class_get_cctor): Use get_inflated_method.
8190         * generic-sharing.c (mono_class_get_method_generic): Ditto.
8191         
8192         * marshal.c image.c: Lazily create all the marshal caches.
8194         * image.c (mono_image_init): Move initialization of runtime_invoke
8195         caches to marshal.c.
8197         * marshal.c (get_cache): New helper function to lazily initialize a 
8198         wrapper cache.
8199         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
8201         * debug-helpers.c (mono_method_full_name): Include generic arguments.
8203 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
8205         * loader.c: fixed check for interface type.
8207 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
8209         * appdomain.c: check for NULL setup before it's referenced.
8212 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
8214         * class.c: remove the unused old vtable setup code.
8216 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
8218         * class.c: don't depend on interface order in
8219         setup_interface_offsets (bug #435777).
8220         * reflection.c: sort the InterfaceImpl table (patch from
8221         Jb Evain  <jbevain@novell.com>).
8223 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
8225         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
8226         the low level assemblies lock.
8228 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
8230         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
8231         object.c, reflection.c, socket-io.c, threads.c: introduced
8232         mono_framework_version () to return the major framewrok version,
8233         changed the code that was using more complex patterns to use it.
8234         Return the correct value for PlatformID for OSX.
8236 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
8238         * icall-def.h, process.h, process.c: added an icall to get info about
8239         processes using mono-proclib.
8241 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
8243         * mono-perfcounters.c: use the mono-proclib functions to
8244         access process information.
8246 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
8248         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
8249         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
8250         reflection.c: remove rawbuffer usage: mmap support is more sanely
8251         provided by utils/mono-mmap.
8253 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
8255         * gc.c: use posix semaphores when possible so that
8256         mono_gc_finalize_notify() is signal safe.
8258 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
8260         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
8261         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
8262         be #ifdef-ed out, the linker will remove the rest.
8264         * marshal.c: Implement DISABLE_COM.
8266         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
8268 2008-10-11  Miguel de Icaza  <miguel@novell.com>
8270         * locales.c (string_invariant_compare_char): Optimization: do not
8271         call g_unichar_type unless we actually need the information.
8273 2008-10-10  Mark Probst  <mark.probst@gmail.com>
8275         * object.c, class-internals.h: Also create remoting trampolines
8276         for generic methods.  Pass the domain to the remoting trampoline
8277         creation function, too.
8279 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
8281         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
8283 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8285         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
8286         Vector4ui.
8288 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8290         * assembly.c:
8291         * locales.c: remove the use of g_strdown. Fixes bug #322313.
8293 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
8295         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
8296         for the least possible amount of time (extending the fix in r113458).
8298 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
8300         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
8302 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
8304         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
8305         as possible simd intrinsic types.
8306         Optimized the test to check for the common prefix first.
8308 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
8310         * class.c: back out part of a broken optimization committed on
8311         May 23th (bug #433908).
8313 2008-10-09  Mark Probst  <mark.probst@gmail.com>
8315         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
8316         Win32.  Should fix #432388 for most cases until we have the new
8317         profiler on Win32.
8319 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
8321         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
8322         instead of using inst->id so the hash is stable for AOT.
8324 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
8326         * appdomain.c:
8327         * icall.c: create a .ini file for shadow-copied assemblies that
8328         contains the location of the original assembly. Use this to return the
8329         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
8330         Also fix the number of '/' for windows when returning the CodeBase.
8331         Fixes bug #430920.
8333 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8335         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
8337         Code is contributed under MIT/X11 license.
8339 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8341         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
8342           if if the class vtable needs initialized.
8344         Code is contributed under MIT/X11 license.
8346 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
8348         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
8349           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
8350           STRING->BSTR, and CLASS->INTERFACE.
8352         Code is contributed under MIT/X11 license.
8354 2008-10-07  Marek Habersack  <mhabersack@novell.com>
8356         * sysmath.h: changed the declaration of the
8357         ves_icall_System_Math_Round2 icall by adding an extra
8358         away_from_zero parameter.
8360         * sysmath.c (ves_icall_System_Math_Round2): added support for
8361         away from zero rounding. The icall now takes an extra boolean
8362         parameter to signal that away from zero operation is requested.
8364 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
8366         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
8367         the delegate klass so it can work with full-aot.
8368         (mono_marshal_get_delegate_end_invoke): Ditto.
8369         (mono_marshal_get_delegate_invoke): Ditto.
8371 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
8373         * gc.c, attach.h, attach.c: remove a bad pattern:
8374         add_finalizer_callback () is not implemented correctly, it can't
8375         without adding more overhead to the finalizer loop and it's not
8376         even needed, since we know exactly what we need to call, so there is
8377         no need to do so through an expensive function pointer.
8379 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
8381         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
8382         for the no-gc case.
8383         * attach.c (mono_attach_init): Remove the #ifdef.
8385 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
8387         * attach.c (mono_attach_init): Don't use
8388         mono_gc_add_finalizer_thread_callback when compiling without GC.
8389         Fixes #432306.
8390         
8391         Code is contributed under MIT/X11 license.
8393 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
8395         * class.c (mono_class_create_from_typedef): Remove the 
8396         #ifndef DISABLE_SIMD stuff.
8398 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
8400         * class-internals.h (MonoClass): Added simd_type bit field.
8402         * class.c (mono_class_create_from_typedef): Check if type is a simd
8403         intrinsic.
8405 2008-10-03  Mark Probst  <mark.probst@gmail.com>
8407         * object.c (mono_method_add_generic_virtual_invocation): Only add
8408         instantiations to the thunk whose count is at least as large as
8409         the threshold.
8411 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
8413         * icall.c: changed the Type of the exception thrown when trying to
8414         invoke a constructor on an abstract class. Part of the fix for bug
8415         #324185.
8417 2008-10-02  Mark Probst  <mark.probst@gmail.com>
8419         * class.c, class-internals.h (mono_method_get_vtable_index): New
8420         function which returns the index into the vtable and properly
8421         handles inflated virtual generic methods.
8423 2008-10-01  Mark Probst  <mark.probst@gmail.com>
8425         * object.c, domain.c, object-internals.h, domain-internals.h:
8426         Generalize IMT thunk machinery to also handle thunks for virtual
8427         generic method invokes.  When a virtual generic method is invoked
8428         more than a number of times we insert it into the thunk so that it
8429         can be called without lookup in unmanaged code.
8431         * generic-sharing.c, class-internals.h: Fetching a
8432         MonoGenericInst* for a method from an (M)RGCTX.
8434 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
8436         * marshal.c (emit_marshal_string): Applied a variant of a patch by
8437         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
8438         marshalling. Fixes #431304.
8440 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
8442         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8443           handle when ref is specified without In or Out.
8445         Code is contributed under MIT/X11 license.
8447 2008-09-30  Mark Probst  <mark.probst@gmail.com>
8449         * loader.c (mono_get_method_constrained): Don't expand method with
8450         the class's context, because it's already a method of that class.
8452 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
8454         * attach.c : should be correct build fix.
8456 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
8458         * attach.c: Fix the previous change.
8460 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
8462         * attach.c : quick w32 build fix.
8464 2008-09-27  Miguel de Icaza  <miguel@novell.com>
8466         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
8467         crashes MonoDevelop: #430455.
8469 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
8471         * domain-internals.h (struct _MonoDomain): Move most fields used only by
8472         the JIT do MonoJitDomainInfo in ../mini/mini.h.
8474         * domain.c: Remove initialization/cleanup of the removed fields.
8476 2008-09-27  Mark Probst  <mark.probst@gmail.com>
8478         * class.c (mono_class_generic_sharing_enabled): Enable generic
8479         code sharing for PPC.
8481 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
8483         * attach.c : Fixing the Windows builds.
8485         Code is contributed under MIT/X11 license.
8487 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8489         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
8490         the default generic sharing mode to 'all'.
8492 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8494         * generic-sharing.c, class-internals.h: New function for checking
8495         whether a method needs a static RGCTX invoke wrapper.  A few
8496         funtions moved from mini/generic-sharing.c.
8498         * icall.c: New function used.
8500 2008-09-25  Mark Probst  <mark.probst@gmail.com>
8502         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
8503         Static RGCTX invoke wrapping applies to value type methods, too.
8505         * class.c (mono_class_setup_vtable_general): In generic-shared
8506         value types, wrap methods with a static RGCTX invoke wrapper.
8508 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
8510         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
8511         osx build.
8513 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
8515         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
8516         register a callback which is called when the finalizer thread is woken
8517         up.
8518         (finalizer_thread): Call the callback if it exists.
8520         * attach.h attach.c: New files, implementing the attach mechanism.
8522         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
8523         
8524         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
8525         by the previous change.
8527 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
8529         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
8530         loader.c, marshal.c, metadata-internals.h, metadata.c,
8531         method-builder.c, object.c, reflection.c: introduced specific functions
8532         to allocate from the domain and image mempools and cleaned up most of
8533         the code to use them (still missing a few in reflection.c).
8534         Keep the loader bytes counter updated.
8536 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
8538         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
8539         loader-related counters.
8541 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
8543         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
8544         added more MS-compatible counters.
8546 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
8548         * class.c (mono_class_setup_fields): Call setup_fields before accessing
8549         class->blittable. Fixes #428217.
8551 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
8553         * reflection.c (mono_image_get_field_on_inst_token): Call 
8554         field_encode_signature () since that handles custom modifiers too.
8555         Fixes #424663.
8557 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
8559         * reflection.c (add_custom_modifiers): New helper function to merge custom
8560         modifiers stored in objects to a MonoType.
8561         (fieldref_encode_signature): Encode custom modifiers.
8562         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
8563         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
8565 2008-09-19  KornĂ©l Pál  <kornelpal@gmail.com>
8567         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
8568         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
8569         64-bit IL only images because imports are not resolved for IL only images.
8570         Special thanks to Bill Holmes for finding this bug and testing the patch.
8571         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
8573         Contributed under MIT/X11 license.
8575 2008-09-19  Miguel de Icaza  <miguel@novell.com>
8577         * mono-config.c (dllmap_start): Add support for the bits keyword
8578         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
8580 2008-09-19  Mark Probst  <mark.probst@gmail.com>
8582         * reflection.c (inflate_mono_method): When the class the method is
8583         to be inflated for is itself not inflated, just return the method.
8585 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
8587         * mono-perfcounters.c: use more user friendly process instance names.
8589 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
8591         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
8592           handle "[in] ref" and "[in][out] ref" cases.
8594         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
8595           to mono_mb_create_method.  This was causing problems calling native to
8596           managed passing Variants by value.
8598         Code is contributed under MIT/X11 license.
8600 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
8602         * class.c (can_access_internals): Call mono_assembly_load_friends ()
8603         before accessing the friend_assembly_names field.
8605         * assembly.c (mono_assembly_load_friends): Make this callable multiple
8606         times.
8607         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
8608         called lazily when it is needed.
8610         * metadata-internals.h (struct _MonoAssembly): Add 
8611         'friend_assembly_names_inited' flag.
8613 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
8615         * mono-perfcounters-def.h: fix the types of a few counters.
8616         * mono-perfcounters.c: implemented the instance names getter
8617         and a few bugfixes.
8619 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
8621         * culture-info-table.h : regenerated.
8623 2008-09-17  Robert Jordan  <robertj@gmx.net>
8625         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
8626         context bound objects. Fixes #415577.
8628         Code is contributed under MIT/X11 license.
8630 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
8632         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
8633         implementation (bug #423582).
8635 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
8637         * object.c (mono_object_get_virtual_method): Handle the case method->slot
8638         is not set. Fixes #426309.
8640 2008-09-16  Jb Evain  <jbevain@novell.com>
8642         * class.c (mono_class_from_name): fix the exported type look up
8643         when the type is defined in a referenced assembly.
8645 2008-09-16  Jb Evain  <jbevain@novell.com>
8647         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
8648         increment the next index counter on each iteration to make that work
8649         for more than one type forwarder. Unmanaged part to fix #422929.
8651 2008-09-15  Mark Probst  <mark.probst@gmail.com>
8653         * object-internals.h: enum ComInterfaceType in
8654         MonoInterfaceTypeAttribute is guint32, not guint16.
8656 2008-09-12  Mark Probst  <mark.probst@gmail.com>
8658         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
8659         writing code.
8661 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8663         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
8664         not gboolean.
8666 2008-09-11  Mark Probst  <mark.probst@gmail.com>
8668         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
8669         Endianness fixes for MonoSymbolFileOffsetTable.
8671 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8673         * process.c (complete_path) : Removing quotes from the 
8674           input path.  The glib file routines do not handle file paths
8675           that have quotes around them.
8677         Code is contributed under MIT/X11 license.
8679 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
8681         * socket-io.h : Adding a comment to provide locations where 
8682           changes to MonoSocketAsyncResult need to be synced.
8684         Code is contributed under MIT/X11 license.
8686 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
8688         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
8689         parameters as well. Fixes #425001.
8691 2008-09-08  Miguel de Icaza  <miguel@novell.com>
8693         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
8694         windows build.
8696 2008-09-07  Miguel de Icaza  <miguel@novell.com>
8698         * console-io.c: Add support for tracking the window size if it
8699         changes.
8701         The setup is very simple: the TtySetup function will now return a
8702         pointer to a location in memory that tracks the current console
8703         size.  The managed code checks its current value every time its
8704         queried against the last value set, and updates accordingly.
8706         With this setup we can work with multiple consoles, and we do not
8707         require to poke into managed code from a signal handler.
8709         Additionally, the environment for COLUMNS and LINES is now handled
8710         in unmanaged code.
8712         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
8714 2008-09-07  Mark Probst  <mark.probst@gmail.com>
8716         * marshal.c (mono_type_native_stack_size): Treat
8717         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
8719 2008-09-04  Jb Evain  <jbevain@novell.com>
8721         * class.c (mono_class_is_assignable_from): fix assignability of nullables
8722         to nullables.
8724 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
8726         * verify.c (verify_type_compatibility_full): Revert change
8727         to allow converting a native int to unmanaged pointer be verifiable
8728         under non-strict mode.
8729         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
8731         * verify.c: Added some TODOs.
8733 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
8735         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
8736           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
8737           Changed to use GlobalAlloc for the memory returned on Windows platforms.
8739         Code is contributed under MIT/X11 license.
8741 2008-09-02  Jb Evain  <jbevain@novell.com>
8743         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
8745 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
8747         reflection.c (typebuilder_setup_fields): Handle classes with
8748         explicit size.
8750 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
8752         class.c (mono_class_setup_events): Add memory barrier due to
8753         double checked locking.
8754         
8755         class.c (mono_class_setup_properties): Same.
8757 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
8759         * class.c (mono_class_is_assignable_from): Fix the build.
8760         
8761         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
8762         before accessing klass->interface_bitmap. Fixes #421744.
8764 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
8766         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
8767         the runtime into no-exec mode, useful when running the AOT compiler.
8769         * appdomain.c gc.c object.c: Avoid executing managed code when running
8770         in no-exec mode.
8771         
8772         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
8774         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
8775         special case when the mono_assembly_loaded () returns NULL because the 
8776         search hook is not installed.
8778 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
8780         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
8781         crashes in bstr marshalling on linux.
8783 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8785         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
8786         with more than one parameter.
8788 2008-08-24  Miguel de Icaza  <miguel@novell.com>
8790         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
8791         start/stop flow control as well when turning off ICANON (allows
8792         C-s and C-q to be read by Console.ReadKey).
8794 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
8796         * class.c (mono_class_init): Move the initialization of nested classes
8797         into mono_class_get_nested_types (). Fixes #418433.
8799         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
8800         flag.
8802         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
8803         iterating tough the nested classes of a class.
8805 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
8807         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
8808         on arm.
8810 2008-08-22  Miguel de Icaza  <miguel@novell.com>
8812         * console-io.c (sigcont_handler): Support signal chaining for
8813         SIGCONT.
8815         (console_set_signal_handlers): Use best practices with sigaction,
8816         clear the structure before using it. 
8818 2008-08-22  Robert Jordan  <robertj@gmx.net>
8820         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
8821         Fix the Windows build.
8823 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
8825         * class.c (mono_class_generic_sharing_enabled): Make the default
8826         sharing mode 'corlib'.
8828 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
8830         * console-io.c (console_set_signal_handlers): Fix a warning.
8832         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
8833         method normally, the JIT will take care of avoiding recursion.
8835 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
8837         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
8839         Code is contributed under MIT/X11 license.
8841 2008-08-20  Miguel de Icaza  <miguel@novell.com>
8843         * console-io.c (sigcont_handler): We need to restore the entire
8844         termios state, not only the original settings, as things like echo
8845         can be controlled after this (Booish exposes this issue with its
8846         own ReadLine implementation).
8848         Additionally, we need to set the terminal back into keypad_xmit
8849         mode.
8850         
8851         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
8852         string as a paramter as well.   Otherwise we get different
8853         keyboard sequences.
8855 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
8857         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
8858         delegates with byref out parameter passing. Fixes #351520.
8860         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
8861         a generic context.
8862         (mono_type_get_desc): Add the type arguments for GENERICINST.
8863         (mono_method_full_name): Stringify the class name using mono_type_full_name
8864         so it picks up generic arguments.
8866 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
8868         * console-io.c: Removed debug output.
8870 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
8872         reflection.c (mono_reflection_create_runtime_class): Alloc
8873         the nested classes linked list using the dynamic image mempool.
8874         Fixes leak in corlib compilation.
8876 2008-08-19  Miguel de Icaza  <miguel@novell.com>
8878         * console-io.c: Fix incredibly annoying behavior on the console
8879         after resuming execution after control-z.   This affected every
8880         console application.
8882 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
8884         * mempool-internals.h: Header for mono private mempool functions. The first
8885         two function are for allocating glib linked lists using pools.
8887         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
8889         * Makefile.am: Added mempool-internals.h.
8891 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
8893         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
8894         (mono_domain_free): Ditto.
8896         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
8897         be used by the JIT to store its domain-specific information, instead of putting
8898         it directly into MonoDomain.
8900         * domain.c (mono_install_create_domain_hook): New helper function to install
8901         a hook which initializes domain->runtime_info.
8903         * domain.c (mono_install_free_domain_hook): Ditto.
8904         
8905 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
8907         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
8908         asserting if the ares parameter is null.
8910         * mono-perfcounters.c: Fix warnings.
8912         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
8913         is not needed, don't check for interruptions either.
8914         (mono_marshal_get_delegate_end_invoke): Ditto.
8916 2008-08-15  Marek Habersack  <mhabersack@novell.com>
8918         * mono-perfcounters.c (predef_readonly_counter): added support for
8919         reading the ASP.NET Requests Queued counter from another process.
8921 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
8923         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
8924         MonoImage to simplify the AOT code.
8926 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
8928         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
8929         marshalling. Fixes #416078.
8931 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8932         
8933         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
8934         it is set, looking up the icall address is deferred to the JIT, since 
8935         in embedded scenarios, the icall might not be registered in the runtime
8936         doing the AOT compilation. Backported from the 2.0 branch.
8938 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
8940         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
8941         Fixes #415621.
8943 2008-08-05  Marek Habersack  <mhabersack@novell.com>
8945         * Makefile.am: added support for cross-compilation.
8947 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
8949         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
8951 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
8953         * mono-perfcounters.c: jitted methods and jitted bytes counters.
8955 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
8957         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
8958         mono-perfcounters.c: performance counters implementation.
8960 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
8962         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
8963         to gpointer, letting the AOT code decide what to store in it.
8965 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
8967         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
8968           mono_class_setup_methods if the methods are not initialized.
8970         Code is contributed under MIT/X11 license.
8972 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8974         * verify.c: Remove some debug code I commited by accident.
8976         * verify.c (mono_method_is_valid_in_context): Change the return value
8977         to make possible to distinguish between invalid and unverifiable.
8979         * verify.c (verifier_load_method): Don't return NULL for unverifiable
8980         methods.
8982 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8984         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
8985         constraints. Fixes regression in gtest-253.
8987 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
8989         * verify.c (mono_verifier_verify_class): Don't allow generic types
8990         with explicit layout.
8992         * verify.c (mono_method_verify): Check locals and argument types.
8994 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
8996         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
8997         wait if the thread is in StopRequested state.
8999         * class.c (mono_class_from_name): Refactor the module searching code into
9000         a separate function so it can be reused in the AOT case too.
9002 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
9004         * verify.c (mono_type_is_valid_in_context): Improve the error message.
9005         Check both the type and it's generic type definition for loader errors.
9006         
9007         * verify.c (mono_method_is_valid_in_context): Don't generate another
9008         error when a type errors occur, this leads to the wrong exception been
9009         thrown.
9011 2008-07-28  Dick Porter  <dick@ximian.com>
9013         * icall-def.h
9014         * process.c
9015         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
9016         New internal calls to duplicate and close a process handle.
9018 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
9020         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
9022 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
9024         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
9026 2008-07-27  Robert Jordan  <robertj@gmx.net>
9028         * class.c (mono_class_init): Don't compute class.has_finalize for
9029         valuetypes. Fixes #412477.
9031 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
9033         * verify.c: Implement constraint equivalence checking.
9034         This is required when a generic parameter is used as
9035         argument to a constrained one.
9037         Fixes #410637.
9039 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
9041         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9043         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
9045         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
9046         synch with managed object layout.
9048 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9050         * verify.c (do_branch_op): Handle valuetypes and generic
9051         arguments properly.
9053         * verify.c (do_cmp_op): Same.
9055         Fixes #410383.
9057 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9059         * generic-sharing.c: Fix memory leaks.
9061         * class.c, class-internals.h: Make
9062         mono_class_inflate_generic_type_with_mempool() non-static.
9064 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
9066         * pedump.c (dump_verify_info): Dump full class name.
9068 2008-07-24  Mark Probst  <mark.probst@gmail.com>
9070         * generic-sharing.c: Removed some old code that didn't do anything.
9072 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
9073         * profiler.c: Added runtime_initialized_event,
9074         mono_profiler_install_runtime_initialized and
9075         mono_profiler_runtime_initialized. This new hook tells the profiler
9076         when the runtime is sufficiently initialized to be able to call
9077         mono_thread_attach on the root appdomain.
9078         * profiler.h, profiler-private.h: Likewise.
9080 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9082         * verify.c (do_cast): Do boxing for generic arguments as well.
9084         * class.c (is_nesting_type): Drop generic instantiations before
9085         checking for nesting.
9087         * class.c (can_access_instantiation): Allow access to generic
9088         arguments.
9090 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
9092         * verify.c (verify_class_for_overlapping_reference_fields):
9093         On some cases, the field size might be zero, guard against that.
9094         Fix the explicit layout check to work as expected.
9096 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
9098         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
9099         mono_thread_resume () during shutdown, since the thread we want to abort
9100         might be suspended.
9102 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
9104         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
9105         warning.
9107         * debug-mono-symfile.c: Fix a warning.
9109         * mono-perfcounters.c (get_cpu_times): Fix a warning.
9111         * object.c (mono_class_vtable): Check if exception_type is set, and return
9112         NULL as defined by the function comments.
9114 2008-07-22  Mark Probst  <mark.probst@gmail.com>
9116         * mempool.c: Use malloc for every single mempool allocation if the
9117         configure option is set.  This makes it easier to track mempool
9118         allocations with tools like Valgrind.
9120 2008-07-22  Jb Evain  <jbevain@novell.com>
9122         * reflection.c (create_dynamic_mono_image): emit the same
9123         metadata version that SL2 does when creating a SL2 image.
9125 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
9127         * icall-def.h:
9128         * icall.c: New icall System.Enum:get_hashcode. This function
9129         avoids the overhead of boxing the enum to the underlying type.
9131 2008-07-21  Mark Probst  <mark.probst@gmail.com>
9133         * reflection.c (mono_method_get_object): Don't let static RGCTX
9134         invoke wrappers get into MonoReflectionMethods.
9136 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
9138         * object-internals.h:
9139         * object.c: New mono_runtime_class_init_full function
9140         that makes throwing the exception optinal.
9142         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
9143         for the case where the exception object is supplied.
9145 2008-07-16  KornĂ©l Pál  <kornelpal@gmail.com>
9147         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
9148         old ld versions.
9150         Contributed under MIT/X11 license.
9152 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9154         * string-icalls.c (ves_icall_System_String_InternalSplit):
9155         Optimize array allocation by caching the MonoClass of the
9156         array type.
9158         * icall.c (ves_icall_Type_GetMethodsByName): Same.
9160         * reflection.c (mono_param_get_objects): Same.
9162 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
9164         * icall-def.h:
9165         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
9166         It inflates the given type using the class context.
9168 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
9170         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
9171         the vtable if it already exists.
9173         * object-internals.h: Add mono_class_try_get_vtable as part of the
9174         internal API.
9176         * reflection.c (mono_type_get_object): Use the MonoObject from the
9177         vtable when possible. Reduces locking contention on reflection heavy
9178         code.
9180 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
9182         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
9183         g_bit_nth_msf () since that macro is not implemented in eglib.
9185 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
9187         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
9188         on platforms which do not support it.
9190 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
9192         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
9194 2008-07-11  Martin Baulig  <martin@ximian.com>
9196         * mono-debug-debugger.h
9197         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
9199         * mono-debug-debugger.c
9200         (_mono_debugger_interruption_request): New global volatile variable.
9201         (mono_debugger_check_interruption): New public function.
9203         * threads.c
9204         (mono_thread_current_check_pending_interrupt): Call
9205         mono_debugger_check_interruption().
9206         (mono_thread_interruption_checkpoint_request): Likewise.
9208 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9210         * verify.c: Add more type checks for loaded types. Verify the result
9211         handle from ldtoken.
9213 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9215         * loader.c (field_from_memberref): Don't crash if the field
9216         wasn't found.
9218 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9220         * verify.c: Verify if type and method instantiations
9221         don't have invalid VAR or MVAR arguments.
9223 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9225         * verify.c: Fix double free of function pointer list.
9227 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
9229         * object.c (mono_string_to_utf8): Comment the new code as it
9230         breaks under eglib.
9232 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
9234         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
9236 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
9238         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
9239           is not throw too many times.
9241         Code is contributed under MIT/X11 license.
9243 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
9245         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
9246         debugging is turned off.
9248 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
9250         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
9252 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9254         * class-internals.h, class.c: Added new generic sharing option:
9255         Share only stuff in System.Collections.Generic, which is now the
9256         default.
9258 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9260         * generic-sharing.c, class-internals.h: New function for getting a
9261         generic method in a generic class given the corresponding method
9262         for a different instantiation of the class.  Partly refactored
9263         from mini-trampolines.c.
9265         * class.c: Make sure generic methods have a class_inst if they are
9266         part of a generic class.
9268         * metadata.c (mono_type_stack_size_internal): Handle type
9269         variables.
9271 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9273         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
9274         Signifies whether information on the this/vtable/mrgctx variable
9275         is available.
9277 2008-07-04  Mark Probst  <mark.probst@gmail.com>
9279         * object.c, object-internals.h, icall.c: New function
9280         mono_delegate_ctor_with_method(), which does the same as
9281         mono_delegate_ctor(), but takes an explicit method argument
9282         instead of taking the method from the jit info.
9284         * marshal.c: When creating a delegate with an inflated method take
9285         the "this" argument as the target class for the castclass.
9287 2008-07-03  Mark Probst  <mark.probst@gmail.com>
9289         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
9290         mono_jit_info_table_find() to perform very badly in some cases.
9292 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
9294         * icall.c (type_from_typename): Handle 'string'.
9296         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
9297         wrappers into the wrapper_hash, since the key is not a MonoMethod.
9299 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
9301         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
9303         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
9304         number of available managed allocator types.
9306         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
9307         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
9309 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
9311         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
9312         which is a low level lock protecting just the 'jit_code_hash' hash table.
9314         * domain.c: Initialize+cleanup jit_code_hash_lock.
9315         
9316 2008-06-30  KornĂ©l Pál  <kornelpal@gmail.com>
9318         * coree.c (mono_load_coree): Set coree_module_handle global variable only
9319         after initialization.
9321         * coree.h: Make MonoFixupExe internal.
9323         Contributed under MIT/X11 license.
9325 2008-06-30  KornĂ©l Pál  <kornelpal@gmail.com>
9327         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
9328         because that is platform independent. Check NumberOfRvaAndSizes in PE32
9329         as well.
9330         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
9331         image being loaded is a CLI image and _CorValidateImage gets called.
9333         * coree.h: Add MonoLoadImage.
9335         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
9336         instead of LoadLibrary.
9338         Contributed under MIT/X11 license.
9340 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
9342         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
9343         for any primitive type.
9345 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
9347         * object.c (mono_array_new_specific): Optimize this and the other allocation
9348         functions a bit.
9349         
9350         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
9351         domains too if mono_dont_free_domains is set.
9353         * domain-internals.h (mono_dont_free_domains): New internal option controlling
9354         whenever to free appdomain data after it has been unloaded.
9356         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
9357         
9358 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
9360         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
9361         (mono_method_get_equivalent_method): Fix a warning.
9363         * object.c (mono_message_init): Avoid looking up array types for each call.
9365 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
9367         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
9368         call.
9370         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
9371         even more.
9373         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
9374         each iteration.
9376         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
9377         fields of an enum.
9379 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
9381         * object.c (mono_value_box): Fix boxing of nullables.
9383 2008-06-26  KornĂ©l Pál  <kornelpal@gmail.com>
9385         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
9386         mono_module_handle that is defined by the linker; no initialization required.
9387         * coree.h: Remove mono_module_handle, add __ImageBase, update
9388         mono_image_open_from_module_handle.
9389         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
9390         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
9391         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
9392         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
9393         to 4 GB away from image base address. IA64 version is not tested but was very
9394         easy to implement and should work if we ever need it.
9395         * domain.c (mono_init_internal): Avoid system error message boxes.
9396         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
9397         with has_entry_point. Handle do_mono_image_load fauilre correctly.
9398         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
9399         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
9400         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
9402         Contributed under MIT/X11 license.
9404 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9406         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
9407         as part of the private mono API.
9408         
9409         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
9410         Do proper argument checking for methods that belong to generic classes.
9411         Do proper type resolution for GMFH/2.
9412         Fixes #377324.
9413         
9414 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9416         * verify.c (do_switch): Fix a memory corruption bug with
9417         the jump index is out of bound.
9419 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9421         * verify.c: Disable debug code.
9423 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
9425         * reflection.c (mono_image_get_methodbuilder_token): Use
9426         mono_image_get_methodspec_token_for_generic_method_definition
9427         instead of mono_image_get_memberref_token. We cache more memberef
9428         entries now.
9430 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9432         * verify.c: Inflate exception clause types.
9433         Fixes #402606.
9434         
9435 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9437         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
9438         name.
9440         * reflection.c (mono_image_get_ctorbuilder_token): Same.
9442         * reflection.c (mono_image_create_method_token): Same.
9444 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
9446         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
9447         It does the same as mono_image_get_methodref_token but works on
9448         MethodBuilder.
9450         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
9451         and always generate a methodspec. This follows the old behavior and fixes
9452         the regressions in System.Core. 
9454 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
9456         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
9457         don't event mono_class_get () succeeds. Fixes #402182.
9459 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9461         * metadata-internals.h: Added MonoDynamicImage::methodspec
9462         hashtable to store methodspec tokens created for MethodBuilders.
9464         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
9465         MethodBuilders as open instantiations if a methodspec was requested.
9467         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
9469         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
9471         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
9473         Fixes bug #349190.
9475 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
9477         * loader.c (method_from_methodspec): Avoid crashing if the
9478         method lookup fails.
9480 2008-06-20  Dick Porter  <dick@ximian.com>
9482         * socket-io.c (get_socket_assembly): Cope with Moonlight network
9483         classes being in a different assembly.  Fixes bug 399184.
9485 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
9487         * loader.c (mono_loader_init): Make this callable multiple times.
9488         (mono_dllmap_insert): Call mono_loader_init () so this works even before
9489         the runtime is initialized. Fixes #401755.
9491 2008-06-19  Dick Porter  <dick@ximian.com>
9493         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
9494         Fixes bug 349688.
9496 2008-06-19  Dick Porter  <dick@ximian.com>
9498         * socket-io.c:
9499         * icall-def.h: Implement Socket generic Send() and Receive()
9500         methods.  Fixes bug 395168.
9502 2008-06-19  KornĂ©l Pál  <kornelpal@gmail.com>
9504         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
9506         Contributed under MIT/X11 license.
9508 2008-06-18  Martin Baulig  <martin@ximian.com>
9510         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
9511         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
9512         set to 80.0.  The debugger <-> runtime interface is now frozen as
9513         well.   
9515         * mono-debug.c
9516         (mono_debug_debugger_version): Bump to 4.
9518 2008-06-18  Martin Baulig  <martin@ximian.com>
9520         * debug-mono-symfile.c
9521         (load_symfile): Don't check the minor version.
9523         * debug-mono-symfile.h: Bump the version number to 50.0.
9525 2008-06-18  Martin Baulig  <martin@ximian.com>
9527         * debug-mono-symfile.c
9528         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
9529         minimum required version.
9531 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9533         * reflection.c (mono_custom_attrs_from_property): Fix support for
9534         retriveving cattrs of dynamic inflated generic types.
9536         * reflection.c (mono_custom_attrs_from_event): Same.
9538         * reflection.c (mono_custom_attrs_from_field): Same;
9540         * reflection.c (typebuilder_setup_events): Same cattrs of events.
9542         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
9543         Moved to metadata.c.
9545         * metadata.c: New functions to retrive the equivalent field, event
9546         of property from the generic type definition.
9548         * metadata-internals.h: Added new functions from metadata.c.
9550 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
9552         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
9553         to cached in a mempool is used.
9555         * metadata.c (free_generic_class): In some situations field generic_info type
9556         is not properly dup'ed and leads to double free'ing.
9558         Fixes #400643.
9560 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9562         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
9563         this arguments (will be needed later for generic methods).
9564         Collect stats.
9566 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9568         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9569         Create a static RGCTX invoke wrapper for methods which require it.
9571 2008-06-17  Mark Probst  <mark.probst@gmail.com>
9573         * object.c, class-internals.h: New function for checking whether
9574         an individual field is special static.
9576 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
9578         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
9579         linear search since the table is sorted.
9581         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
9582         Fixes #324180.
9584 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
9586         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
9587         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
9589         * gc.c (mono_domain_finalize): Allow an infinite timeout.
9591         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
9592         
9593         * threads.c (mono_thread_request_interruption): Get rid of locking, use
9594         InterlockedCompareExchange to query and modify 
9595         thread->interruption_requested.
9597         * object-internals.h (struct _MonoThread): Change interruption_requested
9598         to a gint32 so it can be modified by atomic operations. Add 
9599         'critical_region_level' from the managed side, change small_id to a guint32,
9600         add new set of 'unused' fields.
9602         * appdomain.c: Bump corlib version.
9604 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
9606         * class.c (mono_class_from_name): Search modules as well. Fixes
9607         #322332.
9609 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9611         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
9612         templates.  Templates are generalized with an additional type_argc
9613         argument.  RGCTX templates have type_argc==0, MRGCTX templates
9614         have type_argc>0.
9616         * domain-internals.h, domain.c: New hash table for looking up
9617         MRGCTXs.
9619         * metadata.c, metadata-internals.h: Rename hash and equal
9620         functions for MonoGenericInst's and make them public.
9622         * class-internals.h: New data structures for the MRGCTX.  Macros
9623         for distinguishing slots in the RGCTX and the MRGCTX.
9625 2008-06-13  Mark Probst  <mark.probst@gmail.com>
9627         * object.c (mono_method_get_imt_slot): Put the same methods of
9628         different instantiations of the same generic interface in the same
9629         IMT slots, to make generic sharing simpler.
9631 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9633         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
9635         * metadata.c (mono_metadata_field_info_with_mempool): Added.
9636         This function works just like mono_metadata_field_info, but
9637         accept a mempool as argument to be used allocating memory.
9639         * marshal.c (mono_marshal_load_type_info): Use new function
9640         to load marshal data into image mempool.
9642 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9644         * class.c (mono_class_inflate_generic_type_with_mempool):
9645         This function allows to inflate a generic type using
9646         a mempool.
9648         * class.c (inflate_generic_type): Take a mempool as argument
9649         and use it to do type dup'ing.
9651         * class.c (mono_class_setup_fields): Field type for generic
9652         generic classes are allocated from the image mempool.
9654         * metadata.c (free_generic_class): Inflated field type is
9655         now allocated in the image mempool.
9657 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
9659         * threads.c (thread_cleanup): Free MonoThread::name.
9661 2008-06-12  Marek Habersack  <mhabersack@novell.com>
9663         * appdomain.c (ensure_directory_exists): avoid unnecessary
9664         mkdir(2) calls when the shadow directory already exists.
9665         (mono_make_shadow_copy): copy also satellite assemblies from the
9666         private bin directories.
9668 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9670         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
9671         
9672         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
9673         a page boundary. Fixes #396219.
9675 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9677         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
9678         due to double-checked locking.
9680 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9682         * assembly.c (build_assembly_name): Release memory on failure.
9684         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
9686 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9688         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
9689         memory on failure.
9691 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9693         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
9694         memory on failure.
9696 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9698         * loader.c (field_from_memberref): Check if field signature type is equal
9699         to the non-inflated type of the field. Fixes #398980.
9701 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
9703         * assembly.c (mono_assembly_load_from_full): Call 
9704         mono_assembly_load_friends () outside the assemblies lock, since it can
9705         acquire the loader lock. Fixes #323696.
9707         * reflection.c (resolve_object): Inflate the inst with the context for
9708         FieldOnTypeBuilderInst. Fixes #399010.
9710 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9712         * reflection.c (mono_image_get_field_on_inst_token): Don't
9713         inflate the field to encode it's signature. If it's a
9714         VAR or MVAR it should stay that way in the signature.
9715         Fixes #399047.
9717 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9719         * reflection.c (resolve_object): Release memory of inflated types.
9721 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9723         * loader.c (mono_method_get_signature_full): Remove assert about
9724         loading a methodspec to a generic method. We have such methods, such as
9725         System.Threading.Interlocked::CompareExchange<T>.
9726         This assert was removed since it crashes the verifier when it checks
9727         methods calling CompareExchange<T>.
9729 2008-06-10  Marek Safar  <marek.safar@gmail.com>
9731         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
9732         of Type array and not MonoType.
9734 2008-06-10  Marek Habersack  <mhabersack@novell.com>
9736         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
9737         <lupus@ximian.com>
9739 2008-06-10  Martin Baulig  <martin@ximian.com>
9741         * debug-mono-symfile.h
9742         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
9743         changes to the file format, but we were generating incorrect
9744         source file indices in the line number table due to a bug, which
9745         made backtraces report an incorrect source file.
9747 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
9749         * mono-debug.c: Moved mono_debug_free_method_jit_info from
9750         mini/debug-mini.c to here.
9752         * mono-debug.c (il_offset_from_address): Free memory from find_method.
9754         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
9755         use it to release structs returned by mono_debug_find_method.
9757 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
9759         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
9760         since it needs to set method->slot for all interface methods.
9762 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9764         * class-internals.h: Forgot to add.
9766 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9768         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
9770         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
9771         Lookup the custom attributes from property_hash.
9773         * reflection.c (mono_save_custom_attrs): Save the custom attributes
9774         in property_hash. Allocate all data using the image mempool.
9776         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
9777         for dynamic_custom_attrs to checks if the image is dynamic.
9779 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9781         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
9782         assemblies array.
9783         
9784         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
9785         runtime functions while holding the domain assemblies lock.
9787 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9789         * verify.c: Reapplied the last bit of the reverted changes.
9791 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
9793         * verify.c: Reapplied more of the reverted changes.
9795 2008-06-09  Martin Baulig  <martin@ximian.com>
9797         * debug-mono-symfile.c (load_symfile): Check the major version
9798         first; if it's wrong, don't print the minor version in the error message.
9800 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
9802         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
9803         lock instead of the domain lock to avoid deadlocks, since the thread might
9804         already hold the loader lock.
9806         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
9807         (mono_thread_attach): Ditto.
9809         * monitor.c: Use a TLS variable for holding the current thread id instead
9810         of calling pthread_self ().
9811         (mono_monitor_init_tls): New internal function to initialize the TLS
9812         variable.
9813         (mono_monitor_try_enter_internal): Put the owner == id check after the
9814         owner == 0 check.
9816         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
9817         missed optimizations when using gcc-4.3.
9819 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
9821         * reflection.c (mono_dynamic_image_free): Free the memory
9822         used by MonoGenericParam in MonoDynamicImage::gen_param.
9824         * reflection.c (mono_reflection_setup_generic_class): Allocate
9825         container from mempool.
9827         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
9828         container from mempool.
9830 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9832         * threads.c (mono_set_pending_exception): New internal function to set the
9833         pending exception of the current thread.
9834         (mono_thread_get_and_clear_pending_exception): Check for 
9835         thread->pending_exception as well.
9837         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
9839         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
9840         it can trigger a collection.
9842 2008-06-06  Martin Baulig  <martin@ximian.com>
9844         Merged the `debugger-kahalo' branch.
9846         * mono-debug.h
9847         (MONO_DEBUGGER_VERSION): Bumped to 72.
9849         * debug-mono-symfile.h
9850         (MonoSymbolFileMethodIndexEntry): Removed.
9851         (MonoSymbolFileMethodEntry): New public typedef.
9852         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
9853         (MonoSymbolFileSourceEntry): Remove everything except `index' and
9854         `data_offset'.
9855         (MonoSymbolFileMethodEntry): Removed.
9856         (MonoSymbolFileLexicalBlockEntry): Removed.
9857         (MonoSymbolFileLineNumberEntry): Removed.
9858         (MonoDebugLexicalBlockEntry): Removed.
9859         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
9860         removed `num_il_offsets' and `il_offsets'.
9861         (MonoSymbolFile): Replace `version' with `major_version' and
9862         `minor_version'.
9863         (MONO_SYMBOL_FILE_VERSION): Replace with
9864         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
9865         `MONO_SYMBOL_FILE_MINOR_VERSION'.
9867         * debug-mono-symfile.c
9868         (mono_debug_symfile_lookup_location): Add support for the new line
9869         number table format.
9871 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9873         * metadata.c (free_generic_class): Release the inflated
9874         MonoClass of dynamic generic classes if it's not a generic
9875         type definition.
9877 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9879         * verify.c: Reapplied more of the reverted changes.
9881 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9883         * reflection.c (lookup_custom_attr): Clean the cached flag or
9884         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
9885         for SRE types.
9887 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
9889         * verify.c: Reapplied a small part of the reverted changes.
9891 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
9893         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9895         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
9896         previously in managed code.
9897         (mono_monitor_exit): Ditto.
9898         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
9900         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
9901         the managed definition.
9903 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9905         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
9907 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9909         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
9910         
9911         * monitor.c: Add some micro optimizations.
9913         * icall.c (type_from_typename): Handle 'bool'.
9915 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
9917         * verify.c: Implement constructor verification per P III 1.8.1.4.
9918         Fixes #396716.
9920 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
9922         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
9923         holding the assemblies lock here too.
9925 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9927         * verify.c: Kill stack_top function.
9929 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9931         * verify.c: Kill stack_get function.
9933 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9935         * verify.c (mono_method_verify): Last change broke the build. Fixed.
9937 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
9939         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
9940         more reliable.
9942         * verify.c (mono_method_verify): Inflate params and locals to avoid
9943         mismatch when checking for compatibility.
9945 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
9947         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
9948         Length prefix should be size in bytes. Fix bug #339530.
9949         
9950         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
9951         Length prefix should be size in bytes. Fix bug #339530.
9953         Code is contributed under MIT/X11 license.
9955 2008-06-05  Bill Holmes <billholmes54@gmail.com>
9957         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
9959         Contributed under MIT/X11 license.
9961 2008-06-05  Martin Baulig  <martin@ximian.com>
9963         * mono-debug-debugger.c
9964         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
9966 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
9968         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
9969         while holding the assemblies lock to prevent deadlocks. Handle the case
9970         where the search hook returns NULL but the assembly was still loaded.
9971         Fixes #323696.
9973         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
9974         modify domain state.
9976 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
9978         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
9979         * Makefile.am (pedump_LDADD): Post-process object files and
9980         add dtrace-generated object file, if necessary.
9982         Code is contributed under MIT/X11 license.
9984 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9986         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
9988 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
9990         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
9992 2008-06-04  Mark Probst  <mark.probst@gmail.com>
9994         * threads.c: Try to free everything from the delayed free table
9995         when shutting down threads, and set the variable to NULL after the
9996         table is freed so that calling
9997         mono_thread_hazardous_try_free_all() when shutting down the root
9998         domain doesn't crash.
10000 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
10002         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
10003         the caller if resulting type was inflated.
10005         * class.c (mono_class_create_from_typespec): Free the MonoType if it
10006         was inflated.
10008         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
10011 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
10013         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
10014         class library tests.
10016         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
10017         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
10018         #396989.
10020 2008-06-04  Mark Probst  <mark.probst@gmail.com>
10022         * domain.c, domain-internals.h: The JIT infos are now freed by the
10023         JIT info table code.  They are freed immediately if there only a
10024         single JIT info table in circulation.  If there is more, the free
10025         is delayed via a queue.
10027         * threads.c, threads-types.h: New hazard pointer function for
10028         freeing all freeable delayed items in one sitting.
10030 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10032         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
10034         * reflection.c (typebuilder_setup_properties): Same.
10036         * reflection.c (typebuilder_setup_events): Same.
10038 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10040         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
10041         and use it for allocating memory.
10043         * reflection.c (mono_marshal_spec_from_builder): Same.
10045         * reflection.c: Change code to use new signatures.
10047         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
10049 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10051         * decimal.c (rescale128): Put back one line which was accidently commented
10052         out.
10053         
10054         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
10055         to cause crashes.
10057 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10059         * reflection.c (mono_reflection_generic_class_initialize): Name must
10060         be always malloc'ed so we can free it later on. Do this for field, property
10061         and event.
10063         * metadata.c (free_generic_class): Free field, property and event names.
10065 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10067         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
10068         instead of g_memdup.
10070         * reflection.c (typebuilder_setup_fields): Same.
10072 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10074         * decimal.c (rescale128): Optimize this function a bit more.
10076 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10078         * metadata.c (free_generic_class): Release some memory from
10079         SRE generic classes.
10081 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
10083         * reflection.c (mono_image_get_generic_field_token): No reference
10084         to name is kept, free it.
10086         * reflection.c (mono_reflection_generic_class_initialize): Free
10087         more memory of the inflated field.
10089 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
10091         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
10092         code.
10094 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10096         * reflection.c (mono_dynamic_image_free): Release memory used by
10097         MonoDynamicImage::array_methods elements.
10099         * reflection.c (assembly_add_win32_resources): Release memory after
10100         encoding.
10102 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10104         * decimal.c (log2_32): Use an optimized version for this function too.
10105         
10106         * decimal.c (log2_64): Fix this on 32 bit machines.
10108 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
10110         * class.c (mono_dup_array_type): Implement allocation using a mempool.
10112         * class.c (mono_metadata_signature_deep_dup): Same.
10114         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
10115         a mempool.
10117         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
10119         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
10121         * metadata-internals.h: Added mono_metadata_signature_dup_full.
10123         * class-internals.h: Update signatures to take a MonoMemPool.
10125 2008-06-02  Dick Porter  <dick@ximian.com>
10127         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
10128         * icall-def.h: Add
10129         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
10130         FormatMessage API to get the error text.  Fixes bug 321827.
10132 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
10134         * decimal.c: Add some micro optimizations to make decimal operations faster.
10136 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
10138         * reflection.c (method_encode_clauses): Take a mempool
10139         as parameter and use it to allocate the clause array.
10141         * reflection.c (mono_image_get_field_on_inst_token): Free
10142         the inflated type after encoding it.
10144         * reflection.c (mono_dynamic_image_free): Free each element
10145         of MonoDynamicImage::gen_params.
10147         * reflection.c (reflection_methodbuilder_to_mono_method):
10148         Allocate the generic param array from the mempool.
10149         Allocate signature params from the mempool.
10151         * reflection.c (mono_reflection_generic_class_initialize):
10152         Free inflated fields after been used.
10154 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10156         * icall.c: Reapply the memory leak fixes as they no
10157         longer make mono crash.
10159 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
10161         * reflection.c (mono_type_get_object): Don't store the suplied
10162         MonoType with type_hash. A caller which pass a type that
10163         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
10164         might end with a pointer to freed memory.
10165         The solution is to use byval_arg or this_arg from the associated
10166         MonoClass of the supplied type.
10168 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
10170         * icall.c: Revert the rest of the last change as it breaks the build too.
10172 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10174         * icall.c: Revert a leak fix as it's breaking the build.
10176 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10178         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
10180 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10182         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
10184 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
10186         * icall.c: Fix some memory leaks.
10188 2008-05-29  Dick Porter  <dick@ximian.com>
10190         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
10191         async socket operations from the pending list when a socket
10192         closes.  Leaving it until the threadpool services the event
10193         exposes a race condition when a socket descriptor is reused.
10194         Fixes bug 377589.
10196 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10198         * object.c: Fix negative index check for array alocation.
10200 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10202         * icall.c, marshal.c: Delegate wrappers should skip visibility.
10203         This check is performed by the verifier for IL created delegates
10204         and by Delegate::CreateDelegate for programatically created ones.
10205         Fixes #372406.
10207 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10209         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
10210         Fix code to use mono_array_size_t instead of int.
10212         Based on patch by Luis F. Ortiz.
10213         Contributed under X11 license.
10214         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10216 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10218         * icall.c: Added ves_icall_System_Array_GetLongLength and
10219         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
10220         arrays.
10222         * icall.h: Export both new functions.
10224         Based on patch by Luis F. Ortiz.
10225         Contributed under X11 license.
10226         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10228 2008-05-28  Martin Baulig  <martin@ximian.com>
10230         The debugger now requires exactly r103463.
10232         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
10233         This version is not supported by the debugger, wait for 72.
10235 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10237         * object.h: Changed array related functions to use
10238         mono_array_size_t instead of guint32. Forgot to commit this file.
10240         Patch by Luis F. Ortiz.
10241         Contributed under X11 license.
10242         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10245 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
10247         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
10248         don't define it. Use the number literal instead.
10250 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10252         * icall.c: Changed array related functions to use
10253         mono_array_size_t instead of guint32.
10255         * icall.c (ves_icall_System_Array_GetLength): Check for length
10256         overflow under MONO_BIG_ARRAYS.
10258         Based on patch by Luis F. Ortiz.
10259         Contributed under X11 license.
10260         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10262 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10264         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
10266         Based on patch by Luis F. Ortiz.
10267         Contributed under X11 license.
10268         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10270 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10272         * object.c, object.h: Changed array related functions to use
10273         mono_array_size_t instead of guint32.
10275         Patch by Luis F. Ortiz.
10276         Contributed under X11 license.
10277         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10279 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
10281         * object.h: Introduced mono_array_size_t typedef. This must be used
10282         in all places an array length is expected. This is 64bits wide if
10283         MONO_BIG_ARRAYS is enabled.
10285         Patch by Luis F. Ortiz.
10286         Contributed under X11 license.
10287         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
10289 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
10291         * security-manager.c class.c: Set the class exception info by calling
10292         mono_class_set_failure ().
10294         * class.c (mono_class_get_exception_data): New accessor function.
10295         (mono_class_set_failure): Store exception_data in the property hash.
10297         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
10298         the struct as a property.
10300         * loader.c (mono_get_method_full): Store the lookup result for method
10301         tokens in method_cache, the others in methodref_cache to decrease the memory
10302         usage of hash tables.
10304         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
10305         (mono_image_init): method_cache is lazy inited now.
10307         * metadata-internals.h (struct _MonoImage): Change method_cache to
10308         a MonoValueHashTable, add a separate methodref_cache.
10310 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
10312         * number-formatter.h: Fix tables to avoid arithemtic overflow in
10313           Double.ToString as exposed by Bug #383531.
10315 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
10317         * number-formatter.h: Make some tables static.
10319         * class.c (mono_method_set_generic_container): New accessor function.
10320         (mono_method_get_generic_container): Ditto.
10322         * class-internals.h (struct _MonoMethod): Remove rarely used 
10323         'generic_container' field, store it in the property hash instead. Add 
10324         'is_generic' boolean field instead.
10326         * image.c (mono_image_init): Initialize property_hash.
10327         (mono_image_close): Destroy property_hash.
10329         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
10330         hold rarely used fields of runtime structures belonging to this image.
10332         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
10333         to get/set method->generic_container.
10335         * loader.c (mono_get_method_from_token): Avoid loading the method header for
10336         generic methods.
10338 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
10340         * class.c (mono_class_inflate_generic_method_full): Don't increase
10341         mono_stats.inflated_method_count for methods found in the cache.
10343         * threads.c (mono_thread_request_interruption): Add a comment about 
10344         QueueUserAPC ().
10346 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
10348         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
10349         interface_offsets_packed table.
10350         
10351         * class.c (mono_class_init): Remove some dead code.
10353         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
10354         mono_class_setup_vtable () when CAS is active to detect security problems.
10356 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
10358         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
10360         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
10361         parameters as it's irrelevant for delegate checking.
10363 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
10365         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
10367         * class.c (mono_class_init): Control the creation of a generic vtable using
10368         a global which is true by default, but set to false by the runtime startup code.
10369         
10370         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
10371         Disabled for now since it breaks the embedding API.
10372         Move the setup of class->methods for arrays to mono_class_setup_methods ().
10373         (mono_class_setup_methods): Add a memory barrier.
10375         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
10376         when mono_class_init () doesn't compute the generic vtable.
10377         
10378 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
10379         * profiler.c: Added mono_profiler_install_statistical_call_chain,
10380         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
10381         to support call chains (backtrace) in the stat profiler.
10382         * profiler.c, profiler-private.h: Likewise.
10384 2008-05-22  Mark Probst  <mark.probst@gmail.com>
10386         * generic-sharing.c: Init generic class when a method of it is
10387         requested via a runtime generic context.
10389 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
10391         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
10393         * reflection.c (mono_type_get_object): Add a FIXME.
10395         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
10397         * class.c (mono_class_get_method_by_index): New helper function, returning an
10398         entry in the class->methods array.
10400 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10402         * class.c (mono_class_init): Only do the array optimization for szarrays. 
10403         Avoid creating a generic vtable for generic instances as well.
10404         (mono_class_get_method_from_name_flags): Don't search in the metadata for
10405         generic instances.
10407 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
10409         * loader.c (mono_get_method_constrained): Inflate the signature
10410         with class context. Fix #325283.
10412 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
10414         * object.c (mono_class_create_runtime_vtable): Add a comment.
10416         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
10417         where needed.
10418         (setup_interface_offsets): Handle the case when this is called twice for arrays.
10419         (mono_class_setup_vtable_general): Add an assert.
10420         (mono_class_init): Avoid creating a generic vtable for arrays.
10422         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
10423         here, let mono_class_init () do that.
10425         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
10426         interfaces in mscorlib.
10428         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
10429         interfaces. Add some comments.
10430         (mono_class_init): Call mono_class_setup_methods () here since it is no
10431         longer called by mono_class_setup_vtable ().
10433         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
10434         not set in class->vtable.
10435         (mono_class_create_runtime_vtable): Reenable the disabled code.
10437         * object.c (mono_class_create_runtime_vtable): Disable the last change for
10438         now as it causes some test failures.
10440         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
10441         if using the vtable trampoline. Also remove some strange code which put the
10442         generic methods themselves into the vtable slots. Remove the AOT init_vtable
10443         stuff as it is no longer needed.
10445 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
10447         * pedump.c: Give make --verify all option check code as well.
10448         Using --verify code won't check for metadata now.
10450 2008-05-19  Martin Baulig  <martin@ximian.com>
10452         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
10454         * mono-debug.c
10455         (_mono_debug_using_mono_debugger): New global variable; it's set
10456         directly by the debugger, so mono_debug_using_mono_debugger() also
10457         works after attaching.
10459 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
10461         * object.c (mono_class_create_runtime_vtable): Use memory barriers
10462         as we do double checked locking on MonoClass::runtime_info and
10463         MonoClassRuntimeInfo::domain_vtables.
10465 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
10467         * debug-helpers.c (print_field_value): Fix a warning.
10469 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
10471         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
10472         set in the AOT case.
10474 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10476         * class.c (mono_class_setup_vtable_general): Use memory barriers
10477         as we do double checked locking on MonoClass::vtable.
10479 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
10481         * reflection.c (resolve_object): Inflate only if the generic context
10482         is not null. Fixes #389886.
10484 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
10486         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
10487         instead of g_free.
10489         Code is contributed under MIT/X11 license.
10491 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10493         * class.c: Revert unrelated change.
10495 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10497         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
10498         a generic instantiation, use mono_class_from_mono_type instead of playing
10499         with MonoType directly.
10501 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
10503         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
10504         checks must ignore generic instantiations, so mono_class_has_parent is not
10505         suitable. Fixes #390128.
10507 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
10509         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
10510         it to avoid registering tokens during metadata generation. Fixes #390023.
10512 2008-05-14  KornĂ©l Pál  <kornelpal@gmail.com>
10514         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
10515         consistent.
10517         Contributed under MIT/X11 license.
10519 2008-05-14  KornĂ©l Pál  <kornelpal@gmail.com>
10521         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
10522         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
10523         to fixup the EXE image.
10524         (mono_cleanup): Use mono_close_exe_image.
10525         (mono_close_exe_image): New function.
10526         * image.c: Include "marshal.h".
10527         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
10528         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
10529         counting when the image is loaded outside of mono_image_open_full. Set status
10530         based on GetLastError.
10531         * coree.c: Include required headers. Add init_from_coree.
10532         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
10533         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
10534         (_CorExeMain): Set init_from_coree.
10535         (CorExitProcess): Only call ExitProcess for now.
10536         (CorBindToRuntimeEx): New stub implementation.
10537         (CorBindToRuntime): New function.
10538         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
10539         (MonoFixupExe): ILONLY executables require no fixups.
10540         (mono_set_act_ctx): New function to set activation context.
10541         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
10542         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
10543         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
10544         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
10545         as MONO_INTERNAL.
10546         * domain-internals.h: Add mono_close_exe_image.
10548         Contributed under MIT/X11 license.
10550 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
10552         * metadata.c (mono_metadata_compute_size): Correctly calculate field
10553         size for generic param and event tables. Fixes #388977.
10555 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
10557         * loader.c (mono_method_signature): Use memory barriers because of the double
10558         checked locking pattern.
10560         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
10561         aborting or aborted as well. Fixes #376391.
10562         
10563         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
10564         existing runtime state in the Suspend handler during shutdown.
10566 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
10568         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
10570         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
10571         which are starting up or shutting down.
10573         * threads.c (mono_threads_set_shutting_down): Don't return a value since
10574         this function never returns if the runtime is already shutting down.
10576         * icall.c (ves_icall_System_Environment_Exit): Update after 
10577         mono_threads_set_shutting_down () signature change.
10578         
10579 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
10581         * class.c: Added can_access_instantiation to verify if the instantiation
10582         is visible. Fix access check for nested types as they returned TRUE
10583         before doing type and generic instantiation visibility checks.
10585 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10587         * reflection.c (mono_reflection_create_generic_class): The created type
10588         must have a different container from its TypeBuilder. Otherwise they
10589         will end sharing generic arguments, which is wrong.
10591         Due to the sharing, making a generic instance of the created type using
10592         the TypeBuider generic arguments resulted in the generic type definition
10593         been returned, which is wrong as well.
10595         As a bonus the code was leaking the type_params array. This memory should
10596         be allocated from the image mempool.
10598         This fixes bug #354047.
10600 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
10602         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
10603         to here         as they are now used in assembly.c new code.
10604         Added a skipverification flag to MonoAssembly.
10605         New internal function mono_assembly_has_skip_verification.
10607         * assembly.c: New function mono_assembly_has_skip_verification. It checks
10608         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
10609         part of #387274.
10611 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10613         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
10614         needed. Fixes #387034.
10616         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
10618 2008-05-06  Miguel de Icaza  <miguel@novell.com>
10620         * assembly.c (mono_assembly_load_reference): Prevent crash while
10621         disassembling Silverlight 2.0 executables while we still do not
10622         have GACed libraries.
10624 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
10626         * reflection.c: Special case generic type definitions as well. Fixes #383444.
10628 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
10630         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
10631         of the dynamic case. Fixes #387404.
10633 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10635         *verify.c (mono_verifier_is_class_full_trust): If under
10636         verify_all and the verifier mode was not set, only
10637         gac and corlib types are fulltrust. This makes --verify-all
10638         usable to detect unverifiable code, which is the expected
10639         use case.
10641 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10643         * verify.h: Ops, commited the header with debug
10644         enabled.
10646 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
10648         * verify.c (merge_stack): Use the new value on unverifiable
10649         stack merges.
10651         * verify.c (verify_type_compatibility_full): Comparison
10652         of nullable types can't use mono_class_is_assignable_from.
10654         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
10655         that makes all verification errors be reported.
10657         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
10658         mono_method_verify.
10660 2008-05-05  Robert Jordan  <robertj@gmx.net>
10662         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
10663         support for value types. See #386415.
10665         * object.c: comments.
10667         Code is contributed under MIT/X11 license.
10669 2008-05-05  Martin Baulig  <martin@ximian.com>
10671         * debug-mono-symfile.h
10672         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
10673         for old pre-terrania symbol files.
10675 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10677         * mono-config.c: Add ppc64 architecture.
10679         Code is contributed under MIT/X11 license.
10681 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
10683         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
10684           PPC64 uses function descriptors as well.
10686         Code is contributed under MIT/X11 license.
10688 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
10690         * object.c (compute_class_bitmap): Ignore literal static fields.
10692         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
10693         var has an invalid format.
10694         (describe_ptr): Add some sanity checks for the vtable.
10695         (add_nursery_frag): Clear unused nursery fragments.
10696         (major_collection): Clear all remaining nursery fragments.
10698 2008-05-03  Robert Jordan  <robertj@gmx.net>
10700         * image.c, metadata-internals.h: add thunk_invoke_cache.
10702         * marshal.c, marshal.h: implement
10703         mono_marshal_get_thunk_invoke_wrapper ().
10705         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
10707         Code is contributed under MIT/X11 license.
10709 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10711         * verify.c (do_leave): Empty the stack.
10713 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
10715         * class.c (mono_class_is_assignable_from): Variance
10716         doesn't work between reference and value types. For example,
10717         given type C<T+>, C<int32> is not assignable to C<object>.
10718         Break the argument checking loop on first error. 
10720 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
10722         * icall.c : base64_to_byte_array() needs some more strict
10723           check for sequence of '=' characters. Patch by Santa
10724           Marta (http://deee.g.hatena.ne.jp/santamarta).
10726           Contributed under MIT/X11 license.
10727           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
10729 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
10731         * domain.c: Disable LoadLibrary support to fix Win32 build.
10733         Code is contributed under MIT/X11 license.
10735 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
10737         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
10738         to help with cache behaviour.
10740 2008-05-01  Miguel de Icaza  <miguel@novell.com>
10742         * appdomain.c (mono_domain_from_appdomain): Add new accessor
10743         method. 
10745 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
10747         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
10749 2008-05-01  Dick Porter  <dick@ximian.com>
10751         * process.c (process_get_fileversion): Only pass 16 bits of
10752         language ID to VerLanguageName.  Fixes bug 381204.
10754 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10756         * verify.c (mono_method_verify): Fix the comparison
10757         operator for code bounds check.
10759 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
10761         * verify.c (mono_method_verify): Check the bounds of
10762         all access of the code array.
10764 2008-04-29  KornĂ©l Pál  <kornelpal@gmail.com>
10766         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
10768 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
10770         * image.c (mono_image_strong_name_position): Fix return value when the rva is
10771         not valid.
10773 2008-04-28  KornĂ©l Pál  <kornelpal@gmail.com>
10775         * loader.c (mono_get_method_from_token, mono_method_signature): Add
10776         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
10777         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
10778         fixup main EXE images when using mono.exe for mixed-mode assembly support.
10779         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
10780         mono_runtime_load.
10781         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
10782         runtime initialization from metadata.
10783         * assembly.c: Remove obsolete ceGetModuleFileNameA.
10784         (mono_set_rootdir): Use mono_get_module_file_name.
10785         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
10786         handles.
10787         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
10788         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
10789         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
10790         MonoCLIImageInfo. Add support for module handles.
10791         (load_cli_header): Update mono_cli_rva_image_map signature.
10792         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
10793         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
10794         (mono_image_rva_map): Add support for module handles.
10795         (mono_image_ensure_section_idx): Add support for module handles.
10796         (mono_image_close): Add support for module handles.
10797         (do_load_header): Add support for module handles.
10798         (mono_image_open_from_module_handle): New function for internal use.
10799         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
10800         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
10801         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
10802         handles.
10803         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
10804         * image.h: Add mono_image_fixup_vtable.
10805         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
10806         support.
10807         * coree.h: New file.
10808         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
10809         unsupported native code.
10810         (mono_marshal_set_callconv_from_modopt): New function splitted from
10811         mono_marshal_get_managed_wrapper.
10812         (mono_marshal_get_managed_wrapper): Use
10813         mono_marshal_set_callconv_from_modopt.
10814         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
10815         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
10816         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
10817         that results in a deadlock when the runtime is loaded in _CorDllMain.
10818         * Makefile.am: Add coree.c and coree.h.
10820         Contributed under MIT/X11 license.
10822 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10824         * generic-sharing.c: Search for type arguments in array element
10825         types as well.
10827 2008-04-28  Mark Probst  <mark.probst@gmail.com>
10829         * class-internals.h, generic-sharing.c: New, small runtime generic context.
10831         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
10833         * object.c: Don't setup the RGCTX when the vtable is created,
10834         because we're setting it up lazily now.
10836 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
10838         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
10839         64 bit support.
10841 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10843         * verify.c (verify_class_for_overlapping_reference_fields): 
10844         If class is under fulltrust allow reference types to overllap
10845         if they have the same RVA.
10847 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
10849         * pedump.c: Added new flag valid-only, that makes the verifier
10850         behaves just like --security=validil. It won't fail type load
10851         due to unverifiable restrictions.
10853 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10855         * class-internals.h (struct MonoMethod): Added a verification_success
10856         field to cache verifier executions. Reduced MonoMethod:slot size by
10857         one bit.
10859 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
10861         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
10862         instead of a 'vt' argument to save an indirection and to allow these to be used
10863         for valuetypes.
10864         (scan_vtype): New helper function to scan an area using a gc descriptor.
10865         (mono_gc_wbarrier_value_copy): Implement this.
10866         (handle_remset): Add support for REMSET_VTYPE.
10867         (find_in_remset_loc): Ditto.
10868         (mono_gc_base_init): Allow some debugging options to be controlled through the
10869         use of the MONO_GC_DEBUG env variable.
10870         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
10871         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
10873 2008-04-23  Martin Baulig  <martin@ximian.com>
10875         * domain.c (mono_domain_create): Move the call to
10876         mono_debug_domain_create() down, after allocating the domain id.
10878 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
10880         verify.c (verify_class_for_overlapping_reference_fields): Skip
10881         static fields while verifying for overlapping fields as they
10882         don't matter at all.
10884 2008-04-23  Marek Habersack  <mhabersack@novell.com>
10886         * domain-internals.h: added a declaration of
10887         mono_make_shadow_copy.
10889         * assembly.c (mono_assembly_open_full): shadow copying of
10890         assemblies moved to here, so that all the assemblies within the
10891         application domain's private binary directories can be
10892         processed. Fixes bug #380546
10894         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
10895         mono_make_shadow_copy and made non-static. The decision whether
10896         to shadow-copy an assembly is made based on its location - it's
10897         copied if it's in one of the private application domain binary
10898         directories and its different to the target file in the shadow
10899         directory. Fixes bug #380546
10901 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
10903         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
10905         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
10906         types.
10908         * reflection.c (mono_image_create_token): Handle 
10909         Method/ConstructorOnTypeBuilderInst.
10910         (resolve_object): Ditto.
10911         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
10912         so it can be called from resolve_object. Also handle the case when the inflated
10913         class already has its methods setup.
10915 2008-04-21  Martin Baulig  <martin@ximian.com>
10917         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
10919 2008-04-20  Geoff Norton  <gnorton@novell.com>
10921         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
10922         pointer dereference.
10924 2008-04-15  Marek Habersack  <mhabersack@novell.com>
10926         * appdomain.c (try_load_from): if IOMAP is in effect, call the
10927         portability API to look up the assembly file. Fixes behavior in
10928         situations when the application has a bin/ directory, but the
10929         assembly search patch refers to Bin/ (and thus the requested file
10930         name is Bin/SomeLibrary.dll). Fixes bug #379888
10932 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
10934         verify.c (mono_type_is_generic_argument): Extracted this check
10935         from a dozen places to here.
10937         verify.c: Fixed all issues related to boxing generic arguments
10938         and their constraints.
10940 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
10942         verify.c (mono_class_interface_implements_interface): Fix win32 build.
10944 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
10946         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
10947         isn't finished yet. Fixes #363447.
10949 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
10951         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
10952         Fixes #346419.
10954 2008-04-13  Jb Evain  <jbevain@novell.com>
10956         * domain.c: update the 2.1 profile versions.
10957         Merged from the Moonlight 2 branch.
10959 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
10961         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
10962         mscorlibs for the non-refonly case as well.
10964         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
10965         in mono_assembly_load_from_full (). Fixes #378924.
10967 2008-04-11  Geoff Norton  <gnorton@novell.com>
10969         * icall.c: The global extern environ doesn't exist on Mac.  We
10970         need to call NSGetEnviron instead.
10972 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10974         verify.c: Add generic method constraint verification.
10976 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10978         class.c (mono_class_inflate_generic_method_full): Add a long
10979         explanation to the is_mb_open hack. Remove the FIXME.
10981 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10983         * verify.c (mono_method_verify): Mark all unknown opcodes
10984         as invalid. Mark jmp as unverifiable.
10986 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10988         * verify.c: Add code to do type constraint verification on class instances.
10990         * verify.c (mono_verifier_verify_class): Use the type constraint 
10991         verification code.
10993 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
10995         * class.c (mono_class_get_field_default_value): Don't pass cindex
10996         as hint to mono_metadata_get_constant_index. The local is not initialized
10997         and should contain garbage most of the time. This could only work
10998         with a lot of luck.
11000 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11002         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
11004 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
11006         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
11008         * class.c (mono_class_from_generic_parameter): Save the token of the
11009         generic param in MonoClass::sizes.generic_param_token.
11011         * reflection.c (mono_custom_attrs_from_class): If the class type is
11012         VAR or MVAR retrieve the attributes of the generic param.
11014 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11016         * class.c (mono_class_init): Do class verification if the verifier
11017         is enabled.
11019 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11021         * verify-internal.h: Added mono_verifier_verify_class.
11023         * verify.c: Added mono_verifier_verify_class. It checks for
11024         classes with explicit layout that have overlapping reference fields.
11026         * pedump.c: Init the verifier state prior to verification. Fixed
11027         command line arguments.
11029 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
11031         * Makefile.am: Added verify-internals.h, hopefully fix the build.
11033 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
11035         * verify-internals.h: Fix a warning.
11037 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11039         * verify-internals.h: New header with the verifier configuration
11040         extracted from mini.c.
11042         * verify.c: Implemented the new functions exported by verify-internals.h.
11044 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
11046         * verify.c: Add proper verification of ckfinite.
11048 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11050         * verify.c (do_conversion): Improved error message to something
11051         more meanfull.
11053         * verify.c (check_is_valid_type_for_field_ops): Fix to work
11054         with primitive types.
11056 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11058         * verify.c: Added tail prefix checking. Marked icall
11059         as unverifible.
11061 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
11063         * verify.c: Fix the detection of branches to the middle
11064         of an instruction.
11066 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
11068         * verify.c: Implemented verification of volatile. and
11069         unaligned. prefix. Check if a type is valid after retrieving it.
11071 2008-04-01  Dick Porter  <dick@ximian.com>
11073         * process.c (process_get_fileversion): If there's no string block,
11074         set the file language to en_US.  Fixes the other new part of bug
11075         374600.
11077 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
11079         * class.c: New functions mono_method_can_access_field_full and
11080         mono_method_can_access_method_full. They perform type visibility
11081         and type site check.
11083         * class-internal.h: Added exported functions.
11085         * verify.c: Use new functions to implement proper visibility checks.
11087 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
11089         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
11091 2008-03-28  Dick Porter  <dick@ximian.com>
11093         * process.c (process_get_fileversion): Use the first language ID
11094         we see, rather than insisting on an invariant language.  Fixes bug
11095         374600.
11097 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
11099         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
11100         the streams to fix reading of invalid memory later.
11102         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
11103         to ease debugging.
11105 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
11107         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
11108         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
11110 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
11111         * threads.h: Added MonoThreadManageCallback type and
11112         mono_thread_set_manage_callback prototype
11113         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
11114         (used to store the mono_thread_manage callback).
11115         * threads.c: Added mono_thread_set_manage_callback, and handle
11116         "MonoThread->manage_callback" in build_wait_tids.
11118 2008-03-26  Dick Porter  <dick@ximian.com>
11120         * process.c (process_get_fileversion): Set FileVersionInfo strings
11121         to Empty when the resource doesn't have the particular info.
11122         Fixes bug 355717.
11124 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
11126         * verify.c (mono_method_verify): Proper prefix validation.
11128 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
11130         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
11131         itself in a separate argument instead of throwing them. Fixes #373448.
11133         * appdomain.c: Bump corlib version.
11135 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
11137         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
11139 2008-03-20  KornĂ©l Pál  <kornelpal@gmail.com>
11141         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
11142         version macros.
11144 2008-03-20  Mark Probst  <mark.probst@gmail.com>
11146         * generic-sharing.c, class-internals.h: Code for putting
11147         reflection types into the runtime generic context.
11149 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
11151         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
11152         Fixes #340662. 
11155 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
11157         * verify.c (VerifyContext): Added instruction prefix data to the struct.
11159         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
11161         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
11163         * verify.c (do_cast): Let the result value keep the boxed status.
11165         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
11167 2008-03-17  Jb Evain  <jbevain@novell.com>
11169         * reflection.c: when running on a 2.0 runtime, emit
11170         unconditionally the #~ header version as 2.0, and the
11171         CLI header version as 2.5, for symmetry's sake with csc.
11173 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11175         * class.c: Remove the unused cache_interface_offsets stuff.
11177         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
11178         profiler.c: Fix warnings.
11180 2008-03-16  Mark Probst  <mark.probst@gmail.com>
11182         * generic-sharing.c, class-internals.h: Support for putting
11183         methods into the runtime generic context.
11185 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
11187         * class.c (mono_class_setup_fields): Ignore calls made to this function for
11188         classes which are generic instances of not-yet finished typebuilders. Fixes
11189         #351172.
11191         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
11193 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
11195         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
11197         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
11198         field, replace it with a hash table in MonoDynamicImage.
11200         * reflection.c (inflate_mono_method): Access the generic definition object from
11201         image->generic_def_objects instead of imethod->reflection_info.
11203         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
11205         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
11206         
11207         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
11208         function in reflection.c so it is easier to keep in sync with the dynamic image
11209         creation code.
11211         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
11212         mono_image_close ().
11214 2008-03-15  Mark Probst  <mark.probst@gmail.com>
11216         * class.c (mono_class_generic_sharing_enabled): Disable generic
11217         sharing for all architectures except AMD64 and x86 to fix build.
11219 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11221         * verify.c: Use the generic definition MonoGenericContext when available.
11222         Remove code for checking generics instance compatibility in favor of
11223         mono_class_is_assignable_from.
11225 2008-03-14  Mark Probst  <mark.probst@gmail.com>
11227         * marshal.c, marshal.h, metadata-internals.h, image.c,
11228         wrapper-types.h: New wrapper for invoking a shared static method
11229         without having to pass the runtime generic context argument.
11231 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
11233         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
11235 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
11237         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
11238         
11239         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
11240         create a token from a FieldOnTypeBuilderInst.
11241         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
11242         (resolve_object): Ditto.
11244         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
11245         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
11247 2008-03-14  Martin Baulig  <martin@ximian.com>
11249         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
11251         * debug-mono-symfile.h
11252         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
11253         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
11255 2008-03-10  Martin Baulig  <martin@ximian.com>
11257         * debug-mono-symfile.h
11258         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
11259         `lexical_block_table_offset'.
11260         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
11261         `lexical_blocks'.
11262         (MonoSymbolFile): Added `version'.
11264         * mono-debug.h
11265         (MonoDebugLexicalBlockEntry): Removed.
11266         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
11267         `lexical_blocks'.
11269         * mono-debug.c (mono_debug_add_method): Don't compute lexical
11270         blocks here; the debugger now does this internally.
11272 2008-02-27  Martin Baulig  <martin@ximian.com>
11274         * object.c (mono_runtime_exec_main): Call
11275         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
11276         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
11278 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11280         * verify.c (verify_type_compatibility_full): Allow native int to be converted
11281         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
11283 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
11285         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
11286         ldftn with a virtual method.
11288 2008-03-13  Geoff Norton  <gnorton@novell.com>
11290         * decimal.c:  Only include memory.h if the platform has it.
11292 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
11294         * assembly.c, class.c, metadata-internals.h: make sure public key
11295         tokesns are compared in a case-insensitive way. Also, all
11296         the lookups in the GAC use a lowercase public key token
11297         (gaacutil already does the lowercasing on install). Fixes
11298         bug #369541.
11300 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
11302         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
11303         and return value.
11305 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
11307         * image.c: when someone loads a mscorlib from a file, return the
11308         currently loaded mscorlib (fixes bug #369253).
11310 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11312         * class.c: handle types with no parents by forcing them to have
11313         System.Object as a parent and marking them as broken (this currently
11314         allows the first part of bug #369173 to work as well, likely because
11315         we don't check for typeload exceptions everywhere yet).
11317 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
11319         * class.c: more complete check that types belong to corlib
11320         (fixes second part of bug #369173).
11322 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
11324         * generic-sharing.c:  Including glib.h for the MSVC builds to define
11325           "inline" to "__inline" before including mono-membar.h.
11326           
11327         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
11328           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
11329           MSVC builds.
11331         Contributed under MIT/X11 license.
11333 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11335         * verify.c (do_invoke_method): Remove return type validation.
11337         * verify.c (do_ret): Do return type validation at return site instead of
11338         call site.
11340 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
11342         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
11344         * verify.c: Some todos cleaned and improved a few error messages.
11346 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
11348         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
11350 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
11352         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
11353         system types correctly.
11355         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
11356         function.
11358 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11360         * assembly.c (build_assembly_name): Fix a warning.
11362 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
11364         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
11365         the called function takes an object type argument. Fixes storing or
11366         valuetypes across remoting as well as reducing memory usage.
11367         * image.c, metadata-internals.h: remove now unused ldfld_remote and
11368         stfld_remote wrapper caches.
11370 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
11372         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
11373         is not found.
11375         * reflection.c (mono_image_register_token): New helper function to save
11376         a token->object mapping.        
11378         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
11379         managed code.
11381         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
11382         one dimension arrays. Fixes #367670.
11383         (mono_reflection_get_type_internal): Ditto.
11385 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
11387         * marshal.c: mono_load_remote_field_new() always returns object.
11388         so use the proper signature (fixes bug #366445).
11390 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11391         
11392         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
11393         add an 'inline_failure' flag instead.
11395 2008-03-04  Mark Probst  <mark.probst@gmail.com>
11397         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
11398         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
11399         contains the location of "this", used for exception handling.
11401 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
11403         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
11404         their size on all platforms for perf reasons.
11406 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11408         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
11409         object-internal.h
11411         * object-internal.h: Same.
11413 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11415         * reflection.h: Fix the build I just broke.
11417 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11419         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
11420         Test if a token is valid, this remove explicit usage of 
11421         MonoDynamicImage::tokens from the verifier code.
11423         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
11425         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
11426         instead of direct access to MonoDynamicImage::tokens.
11428 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11430         * verify.c (token_bounds_check): Fix the build I just broke.
11432 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
11434         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
11436         * verify.c (verifier_load_method): Fixed the errors message.
11438         * verify.c (mono_method_verify): Fixed a debug message.
11440 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
11442         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
11443         mono-perfcounters.h, class-internals.h: support for predefined
11444         writable counters, query of categories and counters, bugfixes.
11446 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11448         * verify.c (do_refanytype): Verify the refanytype opcode.
11450         * verify.c (mono_method_verify): Use do_refanytype.
11452 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
11454         * verify.c (do_mkrefany): Verify the mkrefany opcode.
11456         * verify.c (mono_method_verify): Use do_mkrefany.
11458 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
11460         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
11461         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
11462         implementation.
11464 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11466         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
11467         the type load exception.
11469 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
11471         * verify.c: Added a few FIXME for method signatures
11473         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
11474         of mono_method_get_signature and get vararg call working. Removed unused
11475         checks for return value.
11477         * verify.c (do_refanyval): Verify the refanyval opcode.
11479         * verify.c (mono_method_verify): Implemented verification of arglist and
11480         use do_refanyval.
11482 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
11484         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
11485         vtypes to marshal.c.
11487         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
11488         it works for AOT as well.
11490 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
11492         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
11493         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
11494         the system time is adjusted.
11496 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
11498         * icall.c, icall-def.h: use the new time functions (fixes the
11499         non-monotonic behaviour of TickCount).
11501 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
11503         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
11504         it breaks the build.
11505         
11506         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
11507         cattr is not finished yet.
11509 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11511         * verify.c: Proper token validation for field, method and type.
11513 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
11515         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
11517         * loader.c (method_from_memberref): Generate type load error instead of method missing
11518         if the type is not found.
11520 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
11522         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
11523         some of the conversions caused the generation of a marshal directive exception.
11525 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11527         verify.c: Report which exception should be thrown by the JIT.
11528         Added a lot of FIXME notes.
11530 2008-02-22  Mark Probst  <mark.probst@gmail.com>
11532         * generic-sharing.c: Runtime generic context slots are not
11533         instantiated on init anymore.  Instead, provide function to do the
11534         instantiating on demand.
11536         * class-internals.h: Added vtable to runtime generic context.
11537         Macros for encoding direct and indirect slot offsets in one
11538         guint32.
11540 2008-02-21  Mark Probst  <mark.probst@gmail.com>
11542         * object.c, generic-sharing.c: Moved some generic sharing code
11543         from object.c to generic-sharing.c.
11545         * generic-sharing.c: Added support for extensible runtime generic
11546         context.
11548         * metadata-internals.h: Two new hash tables in MonoImage for
11549         extensible runtime generic context support.
11551         * domain.c: Unregister generic vtables upon domain unloading.
11553         * image.c: Destroy new hash tables upon image unloading.
11555         * metadata.c: Unregister generic subclasses upon image unloading.
11557         * class-internals.h: New data structure for runtime generic
11558         context template.  New fields in the runtime generic context for
11559         extensible part.
11561         * Makefile.am: Added generic-sharing.c.
11563 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
11565         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
11566         there is a pending loader exception, raise it.
11568         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
11569         same.
11571         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
11572         same.
11574         Fixes #363450.
11576 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
11578         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
11580         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
11581         
11582         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
11583         ref-only requests for compatibility with MS.
11585 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11587         * reflection.c (mono_custom_attrs_from_method): Don't silently
11588         return an empty list for generic method instances.
11589         (mono_custom_attrs_from_param): Likewise.
11591 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
11592             Raja R Harinath  <harinath@hurrynot.org>
11594         Fix #354757
11595         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
11596         * class.c (mono_class_inflate_generic_method_full): Initialize it
11597         when a fully-open method is instantiated.
11598         * metadata.c (inflated_method_equal, inflated_method_hash): Update
11599         to new field.
11600         * reflection.c (inflate_mono_method): Don't create a temporary context.
11602 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
11604         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
11605         Compute correct value, to prepare for imethod->reflection_info going away.
11607 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
11609         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
11611 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11613         * verify.c: Implement skip visibility flag.
11615 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
11617         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
11618         which contains an extra field to tell the kind of exception that should be thrown.
11620         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
11622 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
11624         * loader.c (mono_method_get_param_names): Initialize 'klass' after
11625         'method' is updated.
11627 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
11629         * class.c (mono_class_layout_fields): Set class->min_align for classes using
11630         explicit layout as well. Fixes #360375.
11632 2008-02-11  Geoff Norton  <gnorton@novell.com>
11634         * loader.c: Guard and dereference against inflated generic methods
11636 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
11638         * class.c: Include Retargetable spec in assembly name.
11639         * assembly.c: Always include PublicKeyToken spec in assembly name
11640         (with value "null" if assembly is not signed), and include
11641         Retargetable spec.
11642         * icall-def.h: Added icall for Assembly.get_fullname.
11643         * icall.c: Added icall returning the fullname of an assembly.
11645 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
11647         * class.c (mono_class_setup_vtable_general): Add a missing call to
11648         mono_class_setup_methods () which is needed in the AOT case.
11650 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
11652         * verify.c (mono_type_get_stack_name): Added. Return the name for the
11653         stack type of the given MonoType.
11655         * verify.c (verify_type_compatibility_full): Handle the void type.
11657         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
11658         way stack merging works.
11660         * verify.c (store_local): Improved verification message.
11662         * verify.c (do_branch_op): If the merging is invalid, the method
11663         is unverifiable and not invalid. Improved error message.
11665         * verify.c (merge_stacks): Properly merge a boxed valuetype and
11666         a reference type diferent than System.Object. Improved error
11667         message.
11669 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
11671         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
11673         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
11674         type of an enum even if the argument is byref.
11676         * verify.c: Replace all explicit uses of enumtype and enum_basetype
11677         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
11679         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
11681         *verify.c (verify_type_compatibility_full): Make enum types
11682         compatible with their base types.
11684         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
11685         types are compatible for the special case of a boxed valuetype and
11686         System.Object.
11688         * verify.c (verify_stack_type_compatibility): The function
11689         is_compatible_boxed_valuetype was extracted from here.
11691         * verify.c (push_arg): Only set ctx->has_this_store if the method
11692         is not static.
11694         * verify.c (do_ldelem): Fixed a typo in an error message and added
11695         strict check for mixing int32 and native int as the array type
11696         and ldelem type.
11698         * verify.c (merge_stacks): Consider boxed valuetypes in the
11699         compatibility checks.
11701 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
11702         * profiler.h: (MonoGCEvent): Added start-stop the world events.
11704 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11705         *class.c: use_new_interface_vtable_code: renamed the env var to have
11706         a "MONO_" prefix, and fix the logic to enable it by default.
11708 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
11709         *class.c:
11710         mono_class_setup_vtable_general: rewrote the way in which interface
11711         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
11712         makes the code more maintainable.
11713         For now the old code is still there, and can be activated setting
11714         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
11716 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
11718         * verify.c: guarded some debug functions around and #ifdef.
11720         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
11722 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
11724         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
11725         changes for now since they seem to break too many things.
11727 2008-02-05  Mark Probst  <mark.probst@gmail.com>
11729         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
11730         mono_marshal_find_nonzero_bit_offset): Added macro and function
11731         for finding the byte- and bit-offset of a bitfield within a
11732         struct.
11734 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
11736         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
11737         (mono_marshal_get_struct_to_ptr): Ditto.
11739         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
11740         cctor_signature.
11742 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
11744         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
11745         between methods for non-corlib types.
11747 2008-02-02  Geoff Norton  <gnorton@novell.com>
11749         * loader.c (mono_method_get_param_names): Populate the parameter name for 
11750         generic parameters as well. (Fixes #342536)
11752 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
11754         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
11756         * verify.c (do_invoke_method): Fix for calling with byref structs.
11758         * verify.c (do_cast): push a boxed value type based on the type token and not
11759         the type of stack.
11761 2008-01-31  William Holmes  <billholmes54@gmail.com>
11763         * process.c (process_module_string_read): Check the size returned form 
11764           VerQueryValue to avoid out of memory exception. 
11766 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
11768         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
11769         Handle properly modules which are not in the moduleref table. Fixes
11770         #356938.
11772 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
11774         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
11775         the dynamic case which is now in managed code.
11776         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
11778         * marshal.c (mono_string_to_bstr): Fix a warning.
11779         (init_com_provider_ms): Ditto.
11781         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
11783         * exception.c (mono_get_exception_out_of_memory): New helper function.
11785 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
11787         * marshal.c: Add support for BSTR marshalling
11788         using other COM systems.
11790         Code is contributed under MIT/X11 license.
11792 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11794         * object.c (mono_runtime_invoke_array): reverted previous
11795         commit as it breaks the build.
11797 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11799         * object.c (mono_runtime_invoke_array): Verify arguments for
11800         invalid types. Fixes #348522.
11802 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
11804         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
11805         non-final virtual calls using call. 
11807         * verify.c (do_invoke): fixed some TODOs.
11809         * verify.c (push_arg): set has_this_store for "ldarga 0".
11811 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
11813         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
11814         which belong to an inflated class. Fixes #356531.
11816 2008-01-26  Robert Jordan  <robertj@gmx.net>
11818         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
11819         which resort to FindFirstFile when a certain error condition
11820         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
11821         Code is contributed under MIT/X11 license.
11823 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
11825         * marshal.c (emit_marshal_string): Fix out string marshalling
11826         to use specified encoding. Fixes #323900.
11828         Code is contributed under MIT/X11 license.
11830 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
11832         * class.c (mono_class_inflate_generic_method_full): Don't modify
11833         iresult->context after cache check.
11835 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
11837         * class.c (mono_class_inflate_generic_method_full): Change the
11838         struct assignments to memcpy for better visibility and add some comments.
11840 2008-01-23  Dick Porter  <dick@ximian.com>
11842         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
11843         procedure, and make it work on windows.
11845 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
11847         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
11848         a MonoReflectionTypeBuilder since it is always of that type.
11850         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
11852         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
11854         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
11855         
11856         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
11858         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
11860         * reflection.c (mono_reflection_create_runtime_class): Remove already created
11861         instantiations from the type cache.
11863 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11865         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
11867         * verify.c (do_unbox_value): push a controled mutability managed pointer.
11869 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11871         * verify.c (do_ldstr): added, verifies if the #US token is valid.
11873         * verify.c (mono_method_verify): removed old TODO
11875 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11877         * verify.c (do_newobj): add visibility check.
11879 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
11881         * verify.c (do_load_function_ptr): add visibility check.
11883 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
11884         *class.c:
11885         mono_generic_class_get_class: hook profiler events.
11886         mono_field_get_offset: added to support heap-shot in the new profiler.
11887         *class.h: exported mono_field_get_offset.
11888         * reflection.c:
11889         mono_reflection_setup_internal_class: hook profiler events.
11891 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
11893         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
11894         argument here too and use it to avoid checking for pending exceptions if 
11895         possible.
11897 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
11899         * assembly.c (build_assembly_name): add arg for passing the assembly
11900         flags. Do not consider a PublicKey with value "null" valid.
11901         (mono_assembly_name_parse_full): added boolean argument that will be
11902         set if the assembly name contains a PublicKeyToken spec. Added support
11903         for the Retargetable spec for which only Yes or No are allowed as valid
11904         value. Consider assembly name invalid if Retargetable spec is set, but
11905         either version, culture or public key (token) are not specified.
11906         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
11907         with implementation in assembly.c.
11908         * icall.c (fill_reflection_assembly_name): also copy assembly flags
11909         from MonoAssemblyName.
11910         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
11911         introduced argument for mono_assembly_name_parse_full to know if the
11912         assembly name has a PublicKeyToken spec, and if it has instruct
11913         fill_reflection_assembly_name to use default value for keyToken (if
11914         PublicKeyToken is null).
11916 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11918         * verify.c (mono_method_verify): fixed ovf ops with
11919         float values. They are unverifiable now.
11921 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
11923         * class.c (set_failure_from_loader_error): add BadImageException to the
11924         list of exceptions that can cause a type to fail to load.
11926         * class.c (mono_class_get_exception_for_failure): same.
11928 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
11930         * verify.c (in_any_exception_block): added, check if offset
11931         is part of any exception handling clause.
11933         * verify.c (get_stack_type): added VAR and MVAR types.
11935         * verify.c (do_stobj): better error messages.
11937         * verify.c (do_cpobj): added, check cpobj.
11939         * verify.c (do_initobj): added, check initobj.
11941         * verify.c (do_sizeof): added, check sizeof.
11943         * verify.c (do_localloc): added, check localloc.
11945         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
11947 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
11949         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
11950         save_lmf/restore_lmf opcodes.
11952         * threads.c (mono_threads_install_notify_pending_exc): New function to
11953         install a callback notifying the JIT there is a pending exception on a thread.
11954         (mono_thread_request_interruption): Call the new callback.
11955         (mono_thread_get_and_clear_pending_exception): New function to return the
11956         exception pending on a thread.
11958         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
11959         to turn off checking for pending exceptions.
11960         (mono_marshal_get_native_wrapper): Ditto.
11962 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11964         * threads-types.h: Get rid of the unnecessary extern declarations.
11966 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
11968         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
11969         return field from parent class if not private.
11970         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
11971         returns fields from parent class if they are not private.
11972         (method_nonpublic): added function to determine if a given method
11973         should be considered non-public. Returns false for private methods
11974         on parent class, and internal methods from parent on the 1.0 profile.
11975         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
11976         use method_nonpublic function to determine whether method should be
11977         returned.
11978         (property_accessor_public): use newly introduced method_nonpublic
11979         function to determine whether accessor is non-public. 
11980         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
11981         event from parent class if not private. Only return static event if
11982         Static flag is set, and only return static event from parent class if
11983         FlattenHierarchy flag is set.
11984         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
11985         include non-private events from parent class.
11987 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
11989         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
11990         warning.
11992 2008-01-16  Wade Berrier <wberrier@novell.com>
11994         * security.c: Add assembly.h header to appease some warnings
11996 2008-01-16  Dick Porter  <dick@ximian.com>
11998         * process.c (process_module_string_read): Remove trailing null
11999         when saving string.
12001 2008-01-16  Mark Probst  <mark.probst@gmail.com>
12003         * class-internals.h: A new data structure describing the layout of
12004         a runtime generic context (MonoRuntimeGenericContextTemplate).
12006         * metadata-internals.h: Added a hash table to MonoDomain that maps
12007         from open generic classes to their runtime generic context
12008         templates.
12010         * object.c: Building of the runtime generic context, including
12011         proper handling of generic type arguments of superclasses.
12012         Building of the runtime generic context according to the template.
12014 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
12016         * class.c (mono_class_setup_fields): Set field.count for generic instances.
12017         Fixes #350856.
12019         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
12020         mono_portability_find_file (). Fixes #325466.
12021         (mono_image_get_public_key): Fix a warning.
12023 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
12025         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
12026         Fixes #353550.
12027         (mono_class_from_name_case): Ditto.
12029 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
12031         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
12032           common storage for the tables used in the System/NumberFormatter class.
12034 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
12036         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
12038 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
12040         * verify.c (get_boxable_mono_type): check if the token is valid.
12042         * verify.c (set_stack_value): changed to add an error if an
12043         invalid type is set on stack. Changed all callers due to signature change.
12045         * verify.c (do_stobj): implement stobj validation.
12047 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
12049         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
12050         set container->is_method, it was set earlier.
12052         * metadata.c (type_in_image): Handle MVARs which belong to not finished
12053         generic methods.
12055         * reflection.c (mono_reflection_initialize_generic_parameter): Set
12056         is_method of the generic container to TRUE for methods.
12058 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12060         * metadata.c (type_in_image): Handle type parameters properly.
12062         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
12063         memory ownership of this structure.
12065 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
12067         * verify.c (get_boxable_mono_type): make typedref types been just
12068         unverifiable. check for void type.
12070         * verify.c (do_unbox_any): added, verify opcode unbox.any.
12072         * verify.c (do_load_function_ptr): accept method spec tokens.
12074 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
12076         * marshal.c (mono_class_native_size): Always set *align even if this is called
12077         recursively.
12079 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
12081         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
12082         out-of-date.
12084 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
12086         * verify.c: removed some old unused tables. A huge bunch of small fixes
12087         to things found while testing the verifier with mono basic.
12089         * verify.c (dump_stack_value): dump null literal flag to.
12091         * verify.c (verify_type_compatibility_full): fix comparison
12092         for types that have a generic super type.
12094         * verify.c (verify_stack_type_compatibility): fix compatibility
12095         between null literals and reference types. fix compatibility between
12096         boxed valuetypes and object. fix corner case test for enums.
12098         * verify.c (do_cmp_op): proper verification of cgt.un in case
12099         of reference types.
12101         * verify.c (do_invoke_method): fix error message.
12103         * verify.c (do_store_indirect
12105         * verify.c (check_is_valid_type_for_field_ops): proper verification
12106         of managed pointers to valuetypes and boxed valuetypes. proper verification
12107         of null literals.
12109         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
12110         allow token to be a reference type.
12112         * verify.c (do_cast): proper handling of boxes valuetypes.
12114         * verify.c (do_stelem): proper handling of storing a boxed valuetype
12115         in object[].
12117         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
12118         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
12119         fixed the decoding of unbox_any
12121 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
12123         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
12125 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
12127         * verify.c (do_newobj): do delegate verification.
12129         * verify.c (verify_delegate_compatibility): perform delegate
12130         verification.
12132         * verify.c (verify_ldftn_delegate): perform tests related to
12133         ldftn delegates.
12135         * verify.c (mono_delegate_signature_equal): perform the
12136         slightly diferent signature comparison required by delegates.
12138         * metadata.c (mono_metadata_type_equal_full): added and exported
12139         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
12140         allows signature only comparison.
12142         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
12143         as MONO_INTERNAL.
12145 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
12147         * verify.c: added a bunch of stack_slot_* functions to
12148         make access to stack slot type easier. This is required to
12149         allow optional flags, like null literal, boxed value and
12150         this pointer.
12151         All access paths to IlStackDesc::stype have been changed 
12152         to use these new funcions.
12153         Removed a bunch of unused functions and cleared all warnings.
12154         This patch introduces the usage of the this pointer and 
12155         boxed value flags.
12157 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
12159         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
12161 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
12163         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
12164         match managed version.
12166         * appdomain.c: Bump corlib version.
12167         
12168         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
12169         argument.
12171 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
12173         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
12174         Set public key token to zero-length byte array if assembly is not
12175         strongnamed.
12177 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12179         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
12180         writing a vtype array elem.
12182 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
12184         * assembly.c (build_assembly_name): return FALSE if length of token is
12185         not 16 (if not "null").
12186         (mono_assembly_name_parse_full): return FALSE if value of version,
12187         culture, token or key is 0.
12188         * icall.c (fill_reflection_assembly_name): add boolean arguments to
12189         specify whether public key and public key token must be set to default
12190         value (zero-length byte array) if not available. Set versioncompat to
12191         SameMachine. If public key is available or the default is set, then
12192         set PublicKey flag.
12193         (ves_icall_System_Reflection_Assembly_FillName): if no public key
12194         is available, use empty byte array as default value. On the 2.0
12195         profile, use default value for public key token if not set.
12196         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
12197         profile, use default value for public key if not set. On the 2.0
12198         profile, use default value for public key token if not set.
12199         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
12200         default values for public key and public key token.
12202 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
12204         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
12205         field to keep it in synch with the managed object.
12207         * marshal.c (emit_marshal_object): Add support for byref marshalling of
12208         delegates. Fixes #351520.
12210         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
12211         contains defined memory.
12212         
12213         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
12215         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
12216         
12217         * sgen-gc.c (check_consistency): New helper function to do a consistency check
12218         of the GC data structures.
12220         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
12222         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
12223         
12224         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
12225         barrier.
12226         (mono_array_clone_in_domain): Ditto.
12227         (mono_array_clone_in_domain): Ditto.
12229         * threads.c (start_wrapper): Register the thread start argument as a GC root.
12230         (cache_culture): Use a write barrier.
12232         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
12233         (ves_icall_get_property_info): Ditto.
12235         * object.h (MONO_STRUCT_SETREF): New macro.
12237         * class-internals.h (MonoStats): Add some GC statistics.
12239         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
12241 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
12243         * exception.c (mono_exception_from_name_two_strings):
12244         Break from loop after method is found.
12246 2008-01-04  Dick Porter  <dick@ximian.com>
12248         * process.c (process_module_string_read): Rename variable to
12249         reflect correct usage, after fixing bug 345972.
12251 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
12253         * verify.c (mono_type_create_fnptr_from_mono_method): 
12254         created a MonoType function pointer instance to be used during
12255         verification. The verifier releases this memory at end.
12257         * verify.c (mono_method_is_constructor): extracted repeated
12258         checks for constructor into a single class.
12260         * verify.c (do_push_field): use new extracted method
12261         for constructor check.
12263         * verify.c (do_newobj): same.
12265         * verify.c (do_ldftn): renamed to do_load_function_ptr
12266         and make it verify ldvirtftn too.
12268         * verify.c (mono_method_verify: proper verification
12269         of ldvirtftn. release created MonoMethod instances.
12271 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12273         * verify.c (token_bounds_check): added.
12275         * verify.c (do_ldftn): added.
12277         * verify.c (mono_method_verify): proper verificartion of ldftn.
12279 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
12281         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
12282         than the table row count. It's the resposibility of the caller to
12283         make the bounds check and raise the correct error.
12285         * metadata.c (mono_metadata_decode_row_col): Same.
12287         * loader.c (mono_get_method_from_token): perform bounds check
12288         on token for methoddef table.
12290 2007-12-29  Miguel de Icaza  <miguel@novell.com>
12292         * icall.c
12293         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
12294         assert into a negative result, the managed code already coped with
12295         that.
12297         Some folks on Windows reported this error. 
12299 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
12301         * appdomain.c: Bump corlib version.
12302         * icall.c:
12303         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
12304         CultureInfo.CreateCulture to create CultureInfo for name.
12305         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
12306         create CultureInfo for name. Fixes bug #347174.
12308 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12310         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
12311         flags.
12313         * verify.c (is_valid_branch_instruction): allow branching to the
12314         first instruction of the protected block.
12316         * verify.c (is_valid_cmp_branch_instruction): same.
12318         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
12319         avoid double initialization.
12321         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
12322         detect which cases the eval stack should just be copied.
12324         * verify.c (mono_method_verify): check if the eval stack
12325         is empty when entering a protected block.
12327 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
12329         * verify.c: added is_clause_in_range, is_clause_inside_range,
12330         is_clause_nested and verify_clause_relationship. They perform
12331         the verifications stated in P1 12.4.2.7.
12333         * verify.c (mono_method_verify): remove some unused variables,
12334         add the new exception clause checks, add instruction border
12335         checks for protected block start/end, improved some error 
12336         messages and fixed a bug in the way invalid instruction access
12337         is detected.
12339 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
12341         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
12342         from GC 7.0 if available.
12344         * object.c: Remove an unused define.
12345         
12346         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
12348         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
12350         * null-gc.c (mono_gc_make_descr_for_array): Implement.
12352         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
12354         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
12355         to take the same arguments as the other make_descr functions.
12357         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
12359         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
12360         directly.
12362         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
12363         mini.c.
12365         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
12366         call to boehm-gc.c.
12368         * boehm-gc.c (mono_gc_register_root): Fix a warning.
12370         * null-gc.c (mono_gc_register_root): Fix a warning.
12372         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
12374         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
12375         (mono_gc_base_init): Call GC_init ().
12377         * null-gc.c: Define mono_gc_register_root () as a no-op.
12379         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
12381 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
12383         * verify.c: add prototype for merge_stacks at top
12385         * verify.c (do_switch): added.
12387         * verify.c (merge_stacks): on some cases the stack merging
12388         was not happening properly. Unequal stack sizes at merge
12389         points should be invalid.
12391         * verify.c (mono_method_verify): added more debug info on stack state.
12392         verify switch properly.
12394 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
12396         * method-builder.h: New file, moved the mono_mb_ declarations here from 
12397         marshal.h.
12399         * boehm-gc.c marshal.c: Include method-builder.h.
12401         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
12403         * marshal.c: Remove some code which is now in method-builder.c.
12405 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
12407         * method-builder.c: New file, extraction of the method builder functionality 
12408         from marshal.c.
12410         * marshal.c: Move the mb functions into method-builder.c.
12412         * marshal.h marshal.c: Export some mono_mb_... functions.
12414         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
12416         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
12417         the caller.
12419         * class.c (mono_class_get_full): Check the token type in the dynamic case.
12421         * loader.c (mono_field_from_token): Ditto.      
12423         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
12424         type as well.
12425         
12426         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
12427         Fixes #342565.
12429         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
12430         a helper function for setting it.
12432         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
12434         
12435         * assembly.c: Significally simplify code now that referenced assemblies are 
12436         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
12438         * threads.h: Don't include  the internal threads-types.h header file. Fixes
12439         #349952.
12441 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
12443         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
12444         instructions that were target of branches or are at protected block boundaries.
12446         * verify.c (in_same_block): handle filter clauses.
12448         * verify.c (is_valid_branch_instruction): added. checks the target of
12449         instructions br or brtrue/false.
12451         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
12452         binary branch instructions such as beq and bge.
12454         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
12455         and made it pin the instruction as been part of the exception block.
12457         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
12458         of in_same_block.
12460         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
12461         of in_same_block.
12463         * verify.c (do_ret): ret from a protected block is unverifiable and
12464         not invalid.
12466         * verify.c (do_static_branch): verify br and br.s instructions.
12468         * verify.c (merge_stacks): add extra param to support detection
12469         of branches in the middle of instructions.
12470         
12471         * verify.c (mono_method_verify): verify branches and exception blocks
12472         that target the middle of instructions. Proper verification of br and br.s.
12474 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
12476         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
12477         skip_visibility field.
12478         (reflection_methodbuilder_from_dynamic_method): Ditto.
12480         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
12481         registrations. Fixes #348193.
12483         * threads.h: Move the internal mono_thread_get_pending_exception () to
12484         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
12486 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
12488         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
12489         icall registration. Fixes #348193.
12491         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
12492         for corlib classes into object. Fixes #349621.
12494 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
12496         * icall.c (property_accessor_nonpublic): new function to determine
12497         whether an accessor allows a property to be considered non-public.
12498         Returns false for private accessor(s) from parent class, and internal
12499         accessor(s) from parent on 2.0 profile (and higher).
12500         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
12501         to determine whether property should be included if NonPublic flag
12502         is set. Fixes bug #349078.
12504 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
12506         * verify.c (init_stack_with_value): added.
12508         * verify.c (mono_method_verify): extracted common
12509         code for exception initialization into init_stack_with_value.
12511         * verify.c (mono_method_verify): initialize the exception
12512         for handler clauses as well.
12514         * verify.c (mono_method_verify): fix the exception clause
12515         ordering rules, it should use handler end offset and not
12516         start offset.
12518 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
12520         * rawbuffer.c: remove useless warning.
12522 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
12524         * threads.h, threads-types.h: move functions to the correct header
12525         (fixes bug#349952).
12527 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12529         * verify.c (mono_method_verify): proper verification
12530         of exception handling clauses ranges and fallthru in
12531         and out of protected blocks.
12533 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12535         * verify.c (mono_method_verify): fixed compilation issue.
12537 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
12539         * verify.c (mono_method_verify): a printf slipped in, changed
12540         to use verifier debug macro.
12542 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
12544         * verify.c (is_correct_leave): check for filter clauses.
12546         * verify.c (do_filter): added.
12548         * verify.c (mono_method_verify): property verification of leave.
12551 2007-12-18  Mark Probst  <mark.probst@gmail.com>
12553         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
12554         Win32 build, until we figure out how to do the proper thing on
12555         Win32.
12557 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
12559         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
12560         by the previous patch.
12561         
12562         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
12563         the assembly resolve handler for refonly assemblies.
12565 2007-12-17  Mark Probst  <mark.probst@gmail.com>
12567         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
12568         Make sure only one thread is allowed to commence shutdown, and
12569         don't allow new threads to be started once shutdown is in
12570         progress.
12572 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
12574         * verify.c (is_correct_endfilter): added.
12576         * verify.c (is_unverifiable_endfilter): added.
12578         * verify.c (do_endfilter): added.
12580         * verify.c (mono_method_verify): property verification of endfilter
12581         and fixed a corner case or endfinally.
12583 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
12585         * verify.h: new flags to support fail fast of unverifiable code and
12586         do non-strict verification. Non-strict verification is required to
12587         have MS runtime compatibility. There are a huge amount of unverifiable
12588         code that it accepts as verifiable. The strict mode verifies the code
12589         as the specs says.
12590         Non-strict mode will be required in cases where code needs to be
12591         accepted as verifiable but fails under strict mode.
12593         * pedump.c: added support to fail fast and non-strict verification.
12595         * verify.c: added support for both fail fast and non-strict verification.
12597 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
12599         * verify.c (is_correct_endfinally): added.
12601         * verify.c (mono_method_verify): property verification of endfinally.
12603 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12605         * verify.c (in_any_block): check for filter clauses.
12607         * verify.c (is_correct_rethrow): added.
12609         * verify.c (mono_method_verify): property verification of rethrow.
12611         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
12613 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
12615         * verify.c (do_throw): added.
12617         * verify.c (mono_method_verify): property verification of throw
12619 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
12621         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
12622         assemblies. Fixes #346425.
12624 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
12626         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
12627         FieldBuilders.
12629         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
12631         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
12632         prevent asserts when this is called with a token which might not be valid.
12634         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
12635         lookup_dynamic_token_class with valid_token == FALSE.
12637         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
12639         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
12641         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
12642         
12643 2007-12-10  Mark Probst  <mark.probst@gmail.com>
12645         * gc.c: Don't delay threadpool thread finalization unless Mono is
12646         shutting down.
12648 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
12650         * threads.c: turn an assert into a non-fatal warning.
12652 2007-12-09  Robert Jordan  <robertj@gmx.net>
12654         * icall.c (GetVirtualMethod): Add missing argument validation.
12656 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12658         * verify.c (do_cast): added.
12660         * verify.c (mono_method_verify): property verification of castclass and isinst.
12663 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12665         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
12667         * verify.c (do_stelem): added.
12669         * verify.c (mono_method_verify): property verification of stelem.X.
12671 2007-12-07  Mark Probst  <mark.probst@gmail.com>
12673         * class.c, class-internals.h: Introduce an environment variable
12674         (MONO_GENERIC_SHARING) through which the extent of generic code
12675         sharing can be controlled (share all classes, share only corlib
12676         classes, or share nothing).
12678         * object.c: Only create runtime generic context for classes for
12679         which sharing is enabled.
12681 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12683         * verify.c (do_ldelem): refactor it to work with ldelem.any.
12685         * verify.c (mono_method_verify): property verification of ldelem.any.
12687 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
12689         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
12690         added ldelem.X opcodes.
12692         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
12694         * verify.c: proper verification of ldelem.X 
12696 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
12698         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
12700 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12702         * verify.c (mono_method_verify): null literal requires special handling,
12703         the value pushed on stack need to be flagged as so.
12705         * verify.c (do_ldelema): Verify ldelema properly.
12707 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
12709         * verify.c: Verify ldlen properly.
12711 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
12713         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
12714         to the target object's type. Fixes #346160.
12716 2007-12-05  Dick Porter  <dick@ximian.com>
12718         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
12719         Solaris needs the same workaround as BSD-derived systems.  Fixes
12720         bug 323524, patch by Burkhard Linke
12721         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
12723 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
12725         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
12726         handle to use when error dialog is shown; otherwise, update mask
12727         to show no error dialog when an error occurs.
12729 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
12731         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
12733         * class.c (mono_class_get_field_default_value): New helper function to initialize
12734         field->def_type and field->data.
12736 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
12738         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
12739         the general one.
12741         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
12743         * marshal.c: Avoid depending on delegate->method_info being set.
12745         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
12746         
12747         * object.c (mono_delegate_ctor): Set delegate->method.
12749         * object-internals.h (struct _MonoDelegate): Add 'method' field.
12751         * appdomain.c: Bump corlib version.
12753 2007-11-27  Raja R Harinath  <harinath@gmail.com>
12755         * metadata.c (mono_generic_inst_equal_full): Short-circuit
12756         equality check if we're comparing canonicalized MonoGenericInsts.
12758 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
12760         * class.c (generic_array_methods): Call mono_class_setup_methods () before
12761         accessing class->methods.
12763 2007-11-22  Dick Porter  <dick@ximian.com>
12765         * threads.c: Ensure that the synch_cs is set before trying to use
12766         it.
12768 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
12770         * profiler.c: r89126 broke the statistial profiler, unbreak.
12772 2007-11-22  Martin Baulig  <martin@ximian.com>
12774         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
12776         * mono-debug.c
12777         (mono_debug_debugger_version): Bump to 3.
12778         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
12779         -> mono_debugger_class_initialized().
12781         * mono-debug-debugger.c
12782         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
12784         * class.c
12785         (mono_debugger_start_class_init_func): Removed.
12786         (mono_debugger_class_loaded_methods_func): Added.
12787         (mono_class_setup_methods): Call it here.
12789 2007-11-22  Martin Baulig  <martin@ximian.com>
12791         * mono-debug.c
12792         (mono_debug_add_delegate_trampoline): New public method.
12793         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
12795         * mono-debug.h
12796         (MonoSymbolTable): Added `global_data_table'.
12797         (MonoDebuggerTypeKind): Removed.
12799 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
12801         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
12802         these methods.
12804         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12805         
12806 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
12808         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
12810 2007-11-20  Martin Baulig  <martin@ximian.com>
12812         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
12814         * mono-debug-debugger.c
12815         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
12816         (mono_debugger_remove_breakpoint): Likewise.
12817         (mono_debugger_check_breakpoints): Likewise.
12818         (mono_debugger_register_class_init_callback): New public method.
12819         (mono_debugger_remove_class_init_callback): Likewise.
12820         (mono_debugger_add_type): Likewise.
12822         * mono-debug-debugger.h
12823         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
12825 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
12827         * class.c: more interface implementations needed for the
12828         array enumerator (fixes bug #341112).
12830 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
12832         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
12833         fix ParamName of ArgumentNullExceptions.
12835 2007-11-17  Miguel de Icaza  <miguel@novell.com>
12837         * reflection.c (mono_reflection_encode_sighelper): Generate the
12838         modopts and modreqs.   I have a useless test that crashes monodis,
12839         but that shows the code working.
12841 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
12843         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
12844         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
12846 2007-11-15  Dick Porter  <dick@ximian.com>
12848         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
12849         When joining a thread, it's the thread that's calling Join that
12850         gets WaitSleepJoin state not the target.  Fixes the standalone
12851         test case in bug 334740, and hopefully the whole bug too.
12853 2007-11-15  Dick Porter  <dick@ximian.com>
12855         * process.c: Read file version info from the files pointed at by
12856         process modules, not the current process.  Fixes bug 315969.
12858         Use windows typedef names in some places to fix warnings on the
12859         windows build.
12861 2007-11-15  Mark Probst  <mark.probst@gmail.com>
12863         * image.c, metadata-internals.h: Added a generic_class_cache hash
12864         to MonoImage for looking up generic classes when sharing generics.
12866 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
12868         * sgen-gc.c: warning cleanups.
12870 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
12872         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
12873         inherited properties.
12875 2007-11-14  Mark Probst  <mark.probst@gmail.com>
12877         * object.c, class-internals.h: Added more information to the
12878         runtime generic context.
12880 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
12882         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
12883         instead of just the target method. Generalize the abstract method handling to
12884         handle any non-static method.
12886         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12887         mono_marshal_get_delegate_invoke () signature change.
12889 2007-11-13  Mark Probst  <mark.probst@gmail.com>
12891         * class.c, class-internals.h: Made
12892         mono_type_get_basic_type_from_generic () public.  Fixed member
12893         access check for shared generics.
12895         * loader.c: Don't insert field into field cache if it's part of a
12896         non-inflated generic class.
12898         * domain.c, domain-internals.h: The generic sharing context is now
12899         part of the jit info data structure.  Added two accessor
12900         functions.
12902 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
12904         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
12905         the array Get/Set/Address methods, since the JIT inlines them.
12907         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
12909         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
12910         (mono_image_init): Initialize runtime_invoke_direct_cache.      
12912         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
12913         mono_marshal_get_delegate_invoke signature change.
12915         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
12916         an additional argument. Add support for invoking abstract methods.
12918         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
12920         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
12922 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12924         * class.c: Do field layout for open generic classes as well.
12926 2007-11-09  Mark Probst  <mark.probst@gmail.com>
12928         * gc.c, gc-internal.h: Don't finalize threadpool threads with
12929         other objects, because the threadpool is still around.  Put them
12930         in a list instead and after finalizing all other objects in the
12931         root domain shut down the thread pool and then finalize the
12932         threads.  Fixes bug #337383.
12934         * threads.c, thread-types.h: New mono_thread_create_internal()
12935         function for marking a thread with the threadpool flag before it
12936         started.  Set synch_cs to NULL after freeing it.
12938         * threadpool.c: Mark threadpool threads before they start.
12940 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
12942         * reflection.h, reflection.c: don't export random functions
12943         and lazy load dbnull and missing objects.
12945 2007-11-07  Jonathan Chambers <joncham@gmail.com>
12947         * class.c: Initialize COM types if COM interfaces
12948         are present (not just COM classes).
12949         
12950         Code is contributed under MIT/X11 license.
12952 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12953         * reflection.c:
12954         create_dynamic_mono_image: hook module profiler events (dynamic case).
12955         mono_image_basic_init: hook assembly profiler events (dynamic case).
12957 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
12958         * profiler.c:
12959         simple_appdomain_unload: completely terminate the profiler
12960         instead of only processing the statistical samples.
12961         simple_shutdown: make sure this is really called exactly once,
12962         even in multithreaded applications, and always listen to
12963         appdomain events.
12964         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
12965         here, the "[un]load" functions will do it.
12966         Fixes bugs #333791 and #325261.
12968 2007-11-07  Geoff Norton  <gnorton@novell.com>
12970         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
12971         rather than depend on __APPLE__.
12973 2007-11-07  Mark Probst  <mark.probst@gmail.com>
12975         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
12977 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
12979         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
12980         UTF16 MonoString. Fix the crash from bug #335488
12982 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
12984         * marshal.c: Correct (for non-Win32 OS) length != size in 
12985         mono_string_from_bstr. Fix #339530.
12987 2007-11-06  Geoff Norton  <gnorton@novell.com>
12989         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
12990         to succeed
12992 2007-11-05  KornĂ©l Pál  <kornelpal@gmail.com>
12994         * process.c: Added run-time GetProcessId API detection for Windows.
12996 2007-11-04  Miguel de Icaza  <miguel@novell.com>
12998         * reflection.c  (mono_param_get_objects): If a parameter has the
12999         attribute [System.Runtime.InteropServices.Optional] we should
13000         set the DefaultValue of the ParameterInfo to be
13001         System.Reflection.Missing instead of DBNull.
13003         See bug #339013.
13005         (mono_get_reflection_missing_object): New method,
13006         returns the System.Reflection.Missing.Value singleton instance.
13008 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
13010         * culture-info-table.h : regenerated.
13012 2007-11-02  Jonathan Chambers <joncham@gmail.com>
13014         * icall.c: Use GetEnvironmentStrings on windows
13015         so we are using the same environment block as 
13016         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
13017         #333740.
13018         
13019         Code is contributed under MIT/X11 license.
13021 2007-10-31  Martin Baulig  <martin@ximian.com>
13023         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
13025         * mono-debug-debugger.h
13026         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
13028 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
13030         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
13031         classes.
13033 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
13035         * culture-info-table.h : regenerated.
13037 2007-10-30  Robert Jordan  <robertj@gmx.net>
13039         * icall-def.h, icall.c:
13040         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
13042         Code is contributed under MIT/X11 license.
13044 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13046         * class.c (mono_class_setup_vtable): Find the inflated methods in the
13047         inflated class instead of inflating them again.
13048         
13049         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
13050         dynamic case.
13052         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
13053         Call setup_supertypes () after klass->parent is set.
13054         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
13056         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
13057         for inflated instances of not yet created dynamic generic classes.
13058         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
13059         times from inflated_method.
13060         (methodbuilder_to_mono_method): Ditto.
13062 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
13064         * gc.c: code cleanup and removed old untested option of not creating the
13065         finalizer thread.
13067 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
13069         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
13070         creating a jump trampoline for dynamic methods.
13072 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
13074         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
13075         generic TypeBuilders when called from another method of the same type (bug #335131).
13078 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
13080         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
13081         doesn't seem to work perfectly.
13082         
13083         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
13084         called multiple times.
13085         (methodbuilder_to_mono_method): Ditto.
13086         (resolve_object): Inflate FieldBuilder's.
13088 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13090         * string-icalls.c, string-icalls.h, appdomain.c: patch from
13091         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
13092         RemoveEmptyEntries in the string.Split implementation (bug #322375).
13094 2007-10-26  Dick Porter  <dick@ximian.com>
13096         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
13097         Thread initialisation changes
13099 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
13101         * verify.c: fix compatibility check between arrays and System.Array
13103 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
13105         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
13106         too. Fixes #336999.
13108 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
13110         * object.c (mono_value_box): Use typed allocation here.
13112 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
13114         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
13115         trampoline instead of compiling the method right away.
13117         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
13119 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
13121         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
13122         related fields for dynamic classes. Fixes #334493.
13124 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
13126         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
13127         
13128         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
13130         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
13131         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
13133         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
13135         * reflection.c (create_generic_typespec): Initialize klass->generic_container
13136         if needed.
13137         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
13139 2007-10-18  Jonathan Chambers <joncham@gmail.com>
13141         * marshal.c: Use correct key when removing item
13142         from ccw_hash.
13143         
13144         Code is contributed under MIT/X11 license.
13146 2007-10-17  William Holmes  <billholmes54@gmail.com>
13148         *marshal.c: Adding a case to marshal booleans to U1
13150         Code is contributed under MIT/X11 license.
13152 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
13154         * class.c (mono_class_from_name): Search the modules compromising dynamic
13155         assemblies. Fixes #331601.
13157 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
13159         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
13160         exception if the type name contains an assembly component. Fixes #334203.
13162         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
13163         modules inside dynamic assemblies. Fixes #334200.
13164         
13165         * reflection.c: Set image->public_key and image->public_key_length;
13167         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
13168         fields.
13170         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
13171         
13172 2007-10-16  Mark Probst  <mark.probst@gmail.com>
13174         * metadata.c: Implemented correct comparing of generic classes.
13175         An inflated generic class can be equal to a non-inflated one if it
13176         is inflated with generic type variables as type arguments.  Fixes
13177         bug #333798.
13179 2007-10-15  Dick Porter  <dick@ximian.com>
13181         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
13182         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
13183         81646.
13185         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
13186         instead of a monitor lock.  This means that monitor_try_enter and
13187         co can set the thread state safely.
13188         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
13189         thread_interrupt_requested, so interrupt actually works.
13191         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
13192         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
13193         state accessor function
13195 2007-10-15  Martin Baulig  <martin@ximian.com>
13197         * mono-debug.h
13198         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
13199         the debugger with the current runtime.
13201 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
13203         * object.c, object-internals.h: added the ability to set a single
13204         trampoline for all the slots in a vtable.
13206 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13208         * marshal.c: deal with a possible race condition during multicast
13209         delegate invocation.
13211 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13213         * class.c: ensure value type methods don't have the synchronized
13214         flag set.
13216 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
13218         * string-icalls.c, string-icalls.h: reverted unapproved patch that
13219         breaks the build.
13221 2007-10-11  Joel Reed  <joelwreed@comcast.com>
13223         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
13224         to take an options parameter so that empty entries can be removed during
13225         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
13227 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13229         * marshal.c: make sure we don't store the signature from a dynamic
13230         method into the runtime invoke cache (bug #327189).
13232 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13234         * marshal.c: make sure the wrapper methods are properly initialized.
13236 2007-10-11  Mark Probst  <mark.probst@gmail.com>
13238         * metadata.c, metadata-internals.h: Generalized
13239         mono_type_stack_size() to mono_type_stack_size_internal() which
13240         takes an additional argument specifying whether it allows open
13241         types.
13243 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
13245         * verify.c (do_invoke_method): handle typedbyref params
13246         correctly and check for unverifiable return values.
13248         * verify.c (do_newobj): fix a warning.
13250 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13252         * verify.c: don't tread typedbyref as allways unverifable,
13253         so uses, like (ld/st)loc.0 are valid. verify for the cases
13254         that it matters, like boxing related operations.
13256 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
13258         * verify.c: add verification of the newobj opcode. verification
13259         of delegate instantation still missing due ldftn and virldftn not
13260         pushing the function type on stack
13262 2007-10-08  Mark Probst  <mark.probst@gmail.com>
13264         * class-internals.h: Runtime generic context data structure
13265         definition.
13267         * object.c: Initialization of runtime generic context at runtime
13268         vtable creation time.
13270 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
13271         * class.c (mono_class_create_from_typedef,
13272         mono_class_from_generic_parameter, mono_ptr_class_get,
13273         mono_fnptr_class_get, mono_bounded_array_class_get)
13274         * domain.c (mono_domain_create, mono_domain_free)
13275         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
13276         * image.c (do_mono_image_load, mono_image_close):
13277         Hooked up load-unload profiler events.
13279 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
13281         * domain.c: track statistics about the actual amount of native code
13282         allocated.
13284 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
13286         * class.c: the valuetype enumerators don't have the additional
13287         supertypes interfaces.
13289 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13291         * class.c: need more interfaces setup for the IEnumerator<T>
13292         object created for arrays (tests/ienumerator-interfaces.2.cs).
13294 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
13296         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
13298 2007-10-05  Alp Toker  <alp@atoker.com>
13300         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
13301         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
13302         #315863.
13304 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13306         * verify.c (verify_type_compatibility_full): verification of
13307         compatibility improved, validates correctly non-strict checks between
13308         native int and I4 types different than (unsigned)int32.
13310         * verify.c (do_store_indirect): added, do all verification of
13311         ldind.X opcodes. 
13313         * verify.c (get_load_indirect_mono_type): renamed to
13314         get_indirect_op_mono_type, as it now returns the MonoType for 
13315         ldind.X and stind.X opcodes.
13317 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
13319         * reflection.c: Fix the encoding of generic type definition for
13320         TypeBuilders.
13322         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
13323         mono_image_typedef_or_ref but allows to specify if typespec lookups should
13324         be made. Typespec check is done prior to typeref cache lookup.
13326         * reflection.c (mono_image_typedef_or_ref): now just delegate to
13327         mono_image_typedef_or_ref_full.
13329         * reflection.c (encode_generic_class): encode the generic class
13330         directly instead of calling encode_type.
13332         * reflection.c (encode_type): encode the generic type definition
13333         MonoClass as a generic instantiation.
13335         * reflection.c (create_typespec): cache typespec tokens in
13336         the assembly->typespec cache. Don't create typespec for a generic
13337         instance MonoClass. Create typespec for the generic type defintion.
13339         * reflection.c (create_generic_typespec): encode the generic
13340         class directly instead of calling encode_type.
13342         * reflection.c (mono_image_create_token): encode the generic
13343         type definition not using a typespec for MonoType instances.
13346 2007-10-04  Raja R Harinath  <rharinath@novell.com>
13348         Fix #328812
13349         * class.c (mono_image_init_name_cache): Don't return nested
13350         'protected internal' classes.
13351         (mono_class_from_name_case): Likewise.
13353 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
13355         * icall-def.h, icall.c : get_bundled_machine_config() is now the
13356           common function used by both DefaultConfig in System.dll and
13357           InternalConfigurationHost in System.Configuration.dll.
13359 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13361         * class.c: automatically add to vectors only a few essential explicit
13362         generic interfaces. The rest of the interfaces that arrays should
13363         provide are currently implicitly added (but still not lazily, see the
13364         design in the discussion of bug#325495 for the details of what is
13365         needed for that). Additionally, implicit interfaces are assigned the
13366         same vtable slot as the explicit interfaces (as they are compatible):
13367         this enables huge memory savings since we don't need to instantiate
13368         as many memthods and as large vtables anymore. Also, Since
13369         GetEnumerator<T> returns an instance of a type that is required to
13370         support a similarly large set of interfaces as arrays, we add
13371         implicit interfaces and interface offset sharing support to those
13372         types, too. This change adds all the required interfaces so that
13373         the anonarray.cs test case in the bug report works (we don't add
13374         all the interfaces to arrays of arrays 3-level deep and more because
13375         of the memory requirements explained in the bug and since they are much
13376         less common: the lazy-loading support will enabled them to work, too).
13378 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13380         * verify.c (merge_stacks): major clean up, all type compatibility
13381         checks are done by verify_type_compatibility. This fix my earlier lack
13382         of understanding of the CLR type system and merge_stacks no longer looks
13383         scary.
13385         * verify.c: fixed some bad spelling.
13387 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
13389         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
13390         a given stack slock.
13391         
13392         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
13393         verify_type_compatibility_full. This removed a near indentical function and fixed
13394         handling of Int32 and IntPtr across all opcodes.
13396 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13398         * class.c: only vectors have the additional generic interfaces.
13400 2007-10-01  Jonathan Chambers <joncham@gmail.com>
13402         * mono-config.c: Use g_strcasecmp instead of
13403         strcasecmp like everywhere else to fix
13404         compilation with MSVC.
13405         
13406         Code is contributed under MIT/X11 license.
13408 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13410         * object.c, object-internals.h: refactored the IMT code to enable
13411         building a single slot at a time and lazily creating the IMT trampolines
13412         and thunks.
13414 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
13416         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
13418         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
13419         Fixes #328501.
13420         
13421 2007-09-29  Raja R Harinath  <harinath@gmail.com>
13423         * loader.c (method_from_methodspec): Rearrange to avoid
13424         un-necessary exposition.  Don't assert out if the method's
13425         declaring type is a generic type definition.
13427 2007-09-28  Martin Baulig  <martin@ximian.com>
13429         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
13431 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
13433         * class-internals.h: optimize field layout of MonoClass to
13434         requires less cachelines at runtime and save a few bytes on 64 bit
13435         systems.
13437 2007-09-28  Jb Evain  <jbevain@novell.com>
13439         * reflection.c: when encoding type names in custom attributes,
13440         if the type is a closed generic type, its generic arguments
13441         have to be serialized as AssemblyQualifiedName, so that when
13442         they are deserialized, it's possible to re-create them properly.
13443         Fixes #329450.
13446 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13448         * object.c, class-internals.h: added delegate-creation counter.
13450 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
13452         * class.c: cleanup of the code that synthetizes interfaces for
13453         arrays in 2.0: saves quit a bit of corlib mempool memory.
13454         Code to fix bug #325495 ifdeffed out for now until the issues
13455         with memory usage and O(n^2) behaviour are fixed.
13457 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
13459         * marshal.c: when possible, do not duplicate the name of the methods
13460         in the method builder and in the generated MonoMethod.
13462 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13463         * verify.c: added support for type checking ldind_* opcodes.
13465 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
13467         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
13468         which is used to distinguish the fully open instantiation of a TypeBuilder
13469         with the rest. This temporary hack is required to restore the property that
13470         the fully open instantiation is the same type of the generic type definition.
13472         * class-internals.h (mono_generic_class_is_generic_type_definition):
13473         new function as part of the internal API.
13475         * class.c (inflate_generic_type): return NULL when the generic inst is
13476         fully open. The fully open generic type is now the same as the generic type
13477         definition for non TypeBuilder types.
13479         * class.c (mono_generic_class_get_class): removed assert since it is
13480         no longer valid, gklass->cached_class can point to the generic type definition.
13482         * class.c (mono_generic_class_is_generic_type_definition): new.
13484         * metadata.c (mono_generic_class_hash): added is_tb_open field
13485         to the hash calculation.
13487         * metadata.c (free_generic_class): if the generic class is associated
13488         with the generic type definition, its field will come from the mempool and
13489         must not be freed.
13491         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
13492         new, this function identifies the corner case of a TypeBuilder fully open
13493         instantiation.
13495         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
13496         for lookup. Set gclass->cached_class to be the container class in case of
13497         the fully open instantiation of non TypeBuilder types.
13499         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
13500         to compare generic classes.
13502         * reflection.c (method_encode_methodspec): remove assert that
13503         no longer is valid.
13505         * reflection.c (mono_reflection_generic_class_initialize): add
13506         an aditional assert to ensure the proper type is used.
13508 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
13510         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
13511         to enjoy it.
13513 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13515         * verify.c (push_arg): Fixed support for ldarga
13516         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
13517         MonoType used as first arg in case of instance calls.
13519 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
13521         * verify.c: Support for verifying VAR and MVAR types, 
13523 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
13525         * icall.c (ves_icall_get_property_info): Set the reflected type of the
13526         accessors correctly.
13528 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
13530         * threads.c: support OSX and other systems in
13531         mono_thread_get_stack_bounds (bug #328026).
13533 2007-09-25  Martin Baulig  <martin@ximian.com>
13535         * mono-debug.h
13536         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
13538 2007-09-24  Martin Baulig  <martin@ximian.com>
13540         * mono-debug.h
13541         (MonoDebugClassEntry): Moved the definition of this struct into
13542         mono-debug.c to make it private.
13544         * mono-debug.c
13545         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
13546         type table per symbol file, we don't need to store the symfile id
13547         any longer.
13549 2007-09-24  Martin Baulig  <martin@ximian.com>
13551         Create one type table per symbol file, since a `MonoClass *' gets
13552         invalid when its image is unloaded.
13554         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
13555         (MonoDebugHandle): Added `type_table'.
13557 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
13559         * mempool.c, mempool.h: added mono_mempool_new_size () API
13560         to be able to specify a smaller initial size for the pool.
13561         Adjusted the code to slowly increase pool size before using
13562         the previous default size.
13563         * image.c: use a small initial size for image mempools.
13565 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
13567         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
13568         Fixes ##320990.
13570         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
13571         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
13573 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
13575         * metadata.c (mono_type_create_from_typespec): Remove an invalid
13576         free. Fixes #327438.
13578 2007-09-21  Raja R Harinath  <harinath@gmail.com>
13580         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
13581         generic instantiations, etc.
13582         <MONO_TYPE_ARRAY>: Likewise.
13584 2007-09-21  Martin Baulig  <martin@ximian.com>
13586         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
13587         these structs were never defined.
13588         (MonoDebugHandle): Removed the `_priv' field, it was never used.
13590 2007-09-21  Martin Baulig  <martin@ximian.com>
13592         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
13594 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
13596         * image.c: removed the guid hash tables: we can get the same info
13597         without the additional memory usage hit (partially fixes also bug #327052).
13599 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13601         * profiler.h, profiler-private.h, profiler.c: add a new profiler
13602         event to handle unloading methods. After the event is called, the
13603         corresponding MonoMethod* must be considered invalid.
13604         * loader.c (mono_free_method): call the new mono_profiler_method_free
13605         event.
13607 2007-09-20  Mark Probst  <mark.probst@gmail.com>
13609         * domain-internals.h: New flag in MonoJitInfo which marks shared
13610         generic methods.  New hash table (shared_generics_hash) in
13611         MonoDomain to keep track of shared generic methods.  Prototypes
13612         for functions to register and lookup shared generic methods.
13614         * domain.c: Support for registering and looking up shared generic
13615         methods via a hash table (shared_generics_hash) in MonoDomain.
13617         * class-internals.h: New exception to signal failure of shared
13618         compilation of a generic method.  New counters for generics
13619         sharing in MonoStats.
13621 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
13623         * image.c, metadata-internals.h: don't keep a file descriptor open
13624         for loaded assemblies (bug#325988).
13626 2007-09-19  Raja R Harinath  <rharinath@novell.com>
13628         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
13629         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
13630         use the corresponding datatypes.
13631         (type_in_image): Update to changes.
13632         (CleanForImageUserData): Simplify.
13633         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
13634         Avoid quadratic behaviour in handling the "stolen" list by
13635         separating the filter predicate out, and by prepending the stolen
13636         items rather than appending them.
13637         (steal_ginst_in_image): Likewise.
13638         (mono_metadata_clean_for_image): Update to changes.
13640 2007-09-19  Martin Baulig  <martin@ximian.com>
13642         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
13644 2007-09-19  Martin Baulig  <martin@ximian.com>
13646         * mono-debug.c (mono_debug_cleanup): Don't call
13647         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
13649 2007-09-19  Raja R Harinath  <harinath@gmail.com>
13651         Fix crash on 'make run-test' in mcs/errors
13652         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
13653         Avoid more potential allocations in mono_class_from_mono_type.
13654         (ginst_in_image): Update to changes.
13655         (gclass_in_image): Rearrange slightly.
13657 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13659         * class.c (mono_class_init): Move the code that sets up class->methods to 
13660         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
13662         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
13663         canonical instance of an inflated generic signature.
13664         (mono_type_create_from_typespec): Remove an invalid free.
13666         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
13668 2007-09-18  Marek Habersack  <mhabersack@novell.com>
13670         * domain-internals.h: added a declaration of the
13671         mono_assembly_load_full_nosearch internal function.
13673         * assembly.c (mono_assembly_load_with_partial_name): use
13674         mono_try_assembly_resolve return value properly.
13675         (mono_assembly_load_full_nosearch): copied the function body from
13676         mono_assembly_load_full, without the code to invoke assembly
13677         search hooks.
13678         (mono_assembly_load_full): calls the above new function and if the
13679         assembly is not resolved, invokes the search hooks.
13681         * appdomain.c (mono_runtime_init): restore the global postload
13682         assembly search handlers.
13684 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
13686         * class.c (mono_class_init): Make sure class->methods and class->properties
13687         are never NULL in the generics case.
13689         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
13691 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
13693         * metadata.c (free_generic_class): Disable some code to fix the build.
13695         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
13697         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
13698         from the image mempool.
13700         * metadata.c (free_generic_class): Free more data from the inflated class.
13702         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
13704         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
13705         mempool.
13706         (mono_type_create_from_typespec): Ditto.
13708         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
13709         MonoImage to the caller.
13710         (mono_init_internal): Save the opened image in a global variable.
13711         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
13713         * reflection.c (resolve_object): Fix a leak.
13715         * metadata.c: Fix the freeing of data in the generics caches.
13716         
13717         * metadata.c (free_generic_inst): Comment this out to fix the build.
13718         (free_generic_class): Ditto.
13720         * metadata.c: Free cached generic methods, instantinations and classes when
13721         they are removed from the caches.
13722         (mono_metadata_free_type): Free the type itself.
13724         * class.c: Free the result of mono_class_inflate_generic_type () in a few
13725         places.
13727 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13729         * boehm-gc.c: restrict managed allocs to __thread supporting
13730         architectures.
13732 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
13734         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
13735         (mono_generic_class_get_class): Fix a leak.
13737         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
13738         mono_metadata_free_type ().
13739         (mono_metadata_inflate_generic_inst): Fix a leak.
13741 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13743         * mono-debug.c (free_header_data): Fix a leak missed earlier.
13745         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
13746         mempool.
13748         * mono-debug.c (mono_debug_close_image): Fix call to 
13749         g_hash_table_remove ().
13751 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13753         * icall-def.h: redirect all the string ctor to the managed
13754         CreateString () methods.
13755         * string-icalls.c, string-icalls.h: removed dead code for string
13756         ctors and icalls.
13758 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13760         * mono-debug.c: Fix memory leaks.
13762 2007-09-14  Jonathan Chambers <joncham@gmail.com>
13764         * threads-types.h: Implement mono_hazard_pointer_set and 
13765         mono_hazard_pointer_clear macros using do/while(0) to fix
13766         compilation with MSVC.
13767         
13768         Code is contributed under MIT/X11 license.
13770 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
13772         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
13773         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
13775 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13777         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
13778         icalls.
13780 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
13782         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
13783         managed-code allocated as well.
13785 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13787         * class.c (mono_class_is_assignable_from): Add support for generic variance.
13789 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
13791         * boehm-gc.c: fixed the build after the AOT changes.
13793 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
13795         * wrapper-types.h: Add an ALLOC wrapper type.
13797         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
13798         reference managed allocator methods.
13800 2007-09-12  Marek Safar  <marek.safar@gmail.com>
13802         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
13803         of Type array and not MonoType, a fix suggested by Hari.
13804         
13805 2007-09-12  Jonathan Chambers <joncham@gmail.com>
13807         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
13808         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
13809         
13810         Code is contributed under MIT/X11 license.
13812 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13814         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
13816 2007-09-12  Marek Habersack  <mhabersack@novell.com>
13818         * image.c (do_mono_image_open): if assembly file fails to open and
13819         MONO_IOMAP is in effect, try to find the path in a
13820         case-insensitive way.
13822         * appdomain.c (mono_runtime_init): do not install postload hooks -
13823         tests show that MS.NET doesn't use anything of that sort to
13824         trigger the AppDomain.AssemblyResolve event.
13825         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
13826         made non-static.
13827         (mono_runtime_init): init portability helpers here.
13829         * assembly.c (mono_assembly_load_with_partial_name): if other   
13830         attempts fail, trigger the AppDomain.AssemblyResolve event handler
13831         to resolve the assembly.
13833         * domain-internals.h: added mono_try_assembly_resolve and marked
13834         it as internal.
13836 2007-09-11  Jb Evain  <jbevain@novell.com>
13838         * object-internals.h (MonoReflectionDynamicMethod): add
13839         a `MonoReflectionType *owner` field. The owner is used
13840         * reflection.c:
13841         (mono_reflection_create_dynamic_method): use the owner of the dynamic
13842         method as the class declaring the dynamic method.
13843         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
13844         dynamic method to the declaring type of the methodbuilder.
13846 2007-09-11  Mark Probst  <mark.probst@gmail.com>
13848         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
13849         rules for calling methods via reflection.
13851 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
13853         * reflection.c (resolve_object): Add support for MonoGenericClass. 
13854         Inflate MonoType's.
13856 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
13858         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
13859         provide a managed method that does fast allocations without needing
13860         a managed->unmanaged transition. Boehm GC implementation currently
13861         enabled for ptrfree objects on sane architectures.
13863 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13865         * marshal.c, marshal.h: exported a couple of useful functions and
13866         added mono_mb_get_label () to easily handle backward branches.
13868 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
13870         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
13872 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
13874         * loader.c (find_method): Fixed the regression introduced while
13875         fixing bug #81466.
13877 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
13879         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
13880         well.
13881         
13882         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
13883         icall.c reflection.c: Pass a MonoGenericContext argument to 
13884         mono_lookup_dynamic_token ().
13886         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
13887         #82744.
13888         
13889 2007-09-09  Robert Jordan  <robertj@gmx.net>
13891         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
13892         for generic methods.
13894         * object.c (mono_object_get_virtual_method): Handle generic methods.
13895         Fixes bug #78882.
13897         Code is contributed under MIT/X11 license.
13899 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
13901         * image.c: fix locking in mono_image_load_file_for_image ().
13903 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
13905         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
13906         used only as a cache: added an icall to fill it.
13908 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
13910         * reflection.h: exposed mono_reflection_free_type_info
13911         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
13912         since mono_reflection_bind_generic_parameters makes a copy of it.
13913         * reflection.c (free_type_info): subinfos should be freed.
13914         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
13915         made non static.
13916         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
13917         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
13918         this fixes #82695 and #81726.
13919    
13921 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
13923         * process.h, process.c:  added support for user profile/info in
13924           ProcessStartInfo. For now only Windows works.
13926 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
13928         * metadata.c: consider the generic arguments when comparing
13929         signatures (bug #82614).
13931 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13933         * cil-coff.h, image.c: updated assembly loader to cope with the
13934         PE32+ 64 bit file format.
13936 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
13938         * assembly.c, class.c, domain.c, loader.c: remove useless
13939         inclusion of cil-coff.h.
13941 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
13943         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
13944         if interface is marked with CoClassAttribute. 
13945    
13946         Code is contributed under MIT/X11 license.
13948 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
13950         * sgen-gc.c: ensure no object from the to space is copied again or finalized
13951         if it's seen twice in major collections.
13953 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
13955         * sgen-gc.c: big objects are not copied to the gray area, but they
13956         need to be considered for scanning, too, if they are brought alive
13957         by an object ready for finalizations or a survived one.
13959 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
13961         * sgen-gc.c: properly account the number of disappearing links when
13962         they are nullified.
13964 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
13966         * sgen-gc.c: share the code to scan the registered roots between the
13967         different types of collections.
13969 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13971         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
13973 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
13975         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
13976         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
13978 2007-08-28  Mark Probst  <mark.probst@gmail.com>
13980         * security-manager.c (mono_security_manager_get_methods):
13981         LinkDemandSecurityException now has 2 arguments instead of 3.
13983 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
13985         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
13986         platforms which need it.
13988 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
13990         * sgen-gc.c: unregister thread data structures with a pthread_key_t
13991         dtor.
13993 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
13995         * threads.c: free the thread static data on thread exit.
13997 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
13999         * class.c: walk the hierarchy to find the generic definition for
14000         a class (fixes runtime part of bug #82498).
14002 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14004         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
14005         ...
14007         * image.c (mono_image_close): Here. Hopefully fixes #82510.
14009 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14011         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
14013 2007-08-24  Robert Jordan  <robertj@gmx.net>
14015         * appdomain.c: don't perform the ':'->';' substitution on Win32.
14017 2007-08-24  Jb Evain  <jbevain@novell.com>
14019         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
14020         for byref types.
14022 2007-08-24  Mark Probst  <mark.probst@gmail.com>
14024         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
14025         #82286.
14027 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
14029         * assembly.c: Fix a warning.
14030         
14031 2007-08-23  Marek Habersack  <mhabersack@novell.com>
14033         * appdomain.c: parse the <runtime> section looking for the probing
14034         element with the 'privatePath' attribute, which sets additional
14035         directories in which the runtime should look for assemblies.
14037 2007-08-23  Robert Jordan  <robertj@gmx.net>
14039         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
14040         Fixes #82499.
14042 2007-08-23  Martin Baulig  <martin@ximian.com>
14044         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
14045         _mono_debug_init_corlib() and remove it from the header file.
14047 2007-08-23  Martin Baulig  <martin@ximian.com>
14049         * mono-debug-debugger.c
14050         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
14051         don't notify the debugger about it.
14053         * mono-debug-debugger.h
14054         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
14056 2007-08-23  Robert Jordan  <robertj@gmx.net>
14058         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
14059         Code is contributed under MIT/X11 license.
14061 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
14063         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
14065 2007-08-22  Martin Baulig  <martin@ximian.com>
14067         * mono-debug.c: Store debugging info on a per-domain basis and
14068         free it on domain unload.  Add support for unloading symbol files.
14070         * mono-debug.h
14071         (MonoDebugList): New typedef.
14072         (MonoSymbolTable):
14073         - add `data_tables and `type_table'.
14074         - replace 'symbol_files' and `num_symbol_files' with a
14075           `MonoDebugList *'.
14076         (mono_debug_data_table): Removed.
14077         (mono_debug_list_add): New public function.
14078         (mono_debug_list_remove): New public function.
14079         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
14080         (mono_debug_init_2_memory): Renamed into
14081         mono_debug_open_image_from_memory().
14082         (mono_debug_close_image): New public function.
14083         (mono_debug_domain_create): Likewise.
14084         (mono_debug_domain_unload): Likewise.
14085         (MONO_DEBUGGER_VERSION): Bump to 60.
14087         * mono-debug-debugger.h
14088         (MonoDebuggerEvent):
14089         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
14090         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
14091         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
14092         - rename `THREAD_CREATED' and `THREAD_EXITED' into
14093           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
14094         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
14095           meaning.
14096         (mono_debugger_add_symbol_file): Removed.
14097         (mono_debugger_add_type): Removed.
14098         (mono_debugger_lookup_type): Removed.
14099         (mono_debugger_lookup_assembly): Removed.
14101         * domain.c
14102         (mono_domain_create): Call mono_debug_domain_create().
14103         (mono_init_internal): Call mono_debug_init_corlib().
14105         * assembly.c
14106         (mono_assembly_close): Call mono_debug_close_image().
14108 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
14110         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
14111         mmap call.
14113 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
14115         * sgen-gc.c: ensure section->pin_queue_end is initialized
14116         correctly when non pinning objects in the section have been found.
14118 2007-08-22  Marek Habersack  <mhabersack@novell.com>
14120         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
14121         containing a list of directories separated by ':'. MSDN docs say
14122         the directories should be separated with ';'. Part of a bugfix for
14123         bug #81446
14125 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
14127         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
14128         it should MonoType and not MonoClass.
14130 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
14132         * culture-info-table.h : regenerated.
14134 2007-08-20  William Holmes  <billholmes54@gmail.com>
14136         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
14137          to call ReplaceFile Kernel32 on windows or in io-layer.
14138         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
14139         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
14140          as an internal call.
14142         Code is contributed under MIT/X11 license.
14144 2007-08-20  Jb Evain  <jbevain@novell.com>
14146         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
14147         and MONO_EXCEPTION_FIELD_ACCESS.
14149         * debug-helpers.[c|h]: new mono_field_full_name function.
14151 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14153         * class.c: Removed class_security_level() and moved it to
14154         security-core-clr.c.
14156         * security-core-clr.c, security-core-clr.h: class_security_level()
14157         is now public and renamed to mono_security_core_clr_class_level().
14158         It also looks for security attributes in the classes a class is
14159         nested in.
14161 2007-08-20  Mark Probst  <mark.probst@gmail.com>
14163         * security-core-clr.c, security-core-clr.h: CoreCLR security
14164         utility functions.
14166         * Makefile.am: Added security-core-clr.[ch].
14168         * security-manager.c, security-manager.h: Functions and enum for
14169         setting and getting the security mode.
14171         * class.c: CoreCLR security checks.
14173 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14175         * icall-def.h, process.c, process.h: implemented icall to get
14176         user/system processor times.
14178 2007-08-17  Mark Probst  <mark.probst@gmail.com>
14180         * domain.c, threads.c, class-internals.h, domain-internals.h: New
14181         reader-lock-free jit_info_table.
14183 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
14185         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
14187         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
14189         * object-internals.h (MonoException): Add missing _data member.
14191 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14193         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
14194         checking that only methods with matching qname or fqname are picked
14195         from implemented interfaces.
14197 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14199         * verify.c (do_newarr):added, do type verification of
14200         newarr ops, push the right value on the eval stack.
14201         * verify.c (mono_method_verify): use do_newarr
14204 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14206         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
14207         factored the common code into get_boxable_mono_type, which
14208         is now using mono_type_get_full, this fixed byref related tests.
14210 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
14212         * class.c: added mono_type_get_full, this function has the same
14213         behavior of mono_class_get_full but the returned MonoType has
14214         all metadata of the associated token in case of a typespec token.
14215         * class.c: added mono_type_retrieve_from_typespec, used by 
14216         mono_type_get_full to retrieve the token type.
14217         * class.c (mono_class_create_from_typespec): changed to use
14218         mono_type_retrieve_from_typespec.
14219         * class.c (mono_ldtoken): changed to use mono_type_get_full
14220         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
14221         * class-internals.h: exported mono_type_get_full for internal use.
14223 2007-08-16  Jb Evain  <jbevain@novell.com>
14225         * domain.c (supported_runtimes): add entry for
14226         the 'moonlight' runtime version.
14228 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14230         * verify.c (mono_method_verify): small typo sliped in.  
14232 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14234         * verify.c (do_unbox_value): added, do type verification of
14235         unboxing ops
14236         * verify.c (mono_method_verify): use do_unbox_value
14239 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14241         * verify.c (dump_stack_value): fixed typo, was printing string
14242         instead of object on stack.
14243         * verify.c (do_box_value): moved the byref check up as it leads
14244         to invalid code and should be done earlier.
14245         * verify.c: improved error messages for and ldobj
14247 2007-08-15  William Holmes  <billholmes54@gmail.com>
14249         * marshal.c (emit_marshal_custom): Omit the call to 
14250           marshal_native_to_managed when calling native to managed 
14251           and the argument is specified as an out argument.
14253         Code is contributed under MIT/X11 license.
14255 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
14257         * verify.c: fixed the type checks for generics, function pointers and vectors.
14258         Added type verification for ldobj and ldtoken. The verifier
14259         would segfault if header or signature of a method contained references
14260         to non-existant types.
14262 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14264         * marshal.c (cominterop_get_ccw): Patch from
14265         Bill Holmes to no walk up interface hierarchy. 
14266         All parent methods should be present in the interface for COM.
14267    
14268         Code is contributed under MIT/X11 license.
14270 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
14272         * marshal.c (emit_marshal_com_interface): Patch from
14273         Bill Holmes to handle COM Interfaces as return values
14274         for native->managed calls.
14275    
14276         Code is contributed under MIT/X11 license.
14278 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
14280         * marshal.c (cominterop_get_idispatch_for_object): Implement
14281         for runtime callable wrappers.
14282    
14283         Code is contributed under MIT/X11 license.
14285 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
14287         * pedump.c (main): changed from mono_init to mono_init_from_assembly
14288         so 2.0 types are accessible
14291 2007-08-13  Miguel de Icaza  <miguel@novell.com>
14293         * domain.c (mono_init_internal): Call mono_assembly_load_friends
14294         once we load mscorlib.   Due to the order in which we initialize,
14295         the mono_assembly_load_full routine that loads mscorlib did not
14296         load friends.   We now load it once we load the
14297         mono_defaults.internals_visible_class class. 
14299         * assembly.c: Expose the mono_load_friend_assemblies method.
14301 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
14303         * verify.c: improved the handling of boxing, better
14304         type checking for unary ops and conversion. Fix bug
14305         regarding managed pointer compatibility checking
14307 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
14309         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
14311         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
14313 2007-08-09  Raja R Harinath  <rharinath@novell.com>
14315         * reflection.c (dup_type): Remove.
14316         * class.c (dup_type): Remove.
14317         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
14318         instead of the dodgy 'dup_type'.
14319         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
14320         handle the case where 'dup_type' needed the second argument.
14322 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
14324         * domain.c: Fix a warning.
14326 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
14328         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
14329         checking that methods with the same fqname are not overridden
14330         with a method from an ancestor.
14332 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
14334         * threads.c (free_thread_static_data_helper): Avoid a crash if
14335         thread->static_data is not yet set.
14337 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
14339         * marshal.c: Use correct image when emitting
14340         native wrapper for COM calls.
14341    
14342         Code is contributed under MIT/X11 license.
14344 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
14346         * icall-def.h, security.c, security.h :
14347           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
14349 2007-08-07  Martin Baulig  <martin@ximian.com>
14351         * mono-debug-debugger.h
14352         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
14354         * domain.c (mono_domain_free): Call
14355         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
14357 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
14359         * verify.c (check_underflow, check_overflow): error message now returns IL offset
14360         * verify.c (in_same_block): code should test if either offset is inside the clauses
14361         * verify.c (mono_method_verify): push the exception into the eval stack of exception
14362         and filter blocks
14364 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14366         * image.c (mono_image_close): Fix a leak.
14368         * object.c (mono_runtime_invoke_array): Avoid using alloca.
14370         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
14372 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
14374         * domain.c, threads.c, threads-types.h: fix memory retention issue
14375         with thread static variables not being cleared on domain unload.
14376         Reuse thread static slots after domain unload.
14378 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
14380         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
14381         nullable type.
14383         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
14384         now done in mono_runtime_invoke_array.
14386         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
14387         receiver is a nullable type.
14389         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
14390         generic parameter.
14392 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
14394         * marshal.c: Implement COM Objects as return type for 
14395         managed->unmanaged calls. Added Release calls for COM Object
14396         out/return values in managed->unmanaged calls.
14398         Code is contributed under MIT/X11 license.
14400 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
14402         * threads.h, threads-type.h: move the hazard pointer declarations
14403         to the private header.
14405 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
14407         * file-io.c, appdomain.c: memory leak fixes.
14409 2007-08-02  Dick Porter  <dick@ximian.com>
14411         * socket-io.c
14412         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
14413         SO_REUSEADDR setting into io-layer/sockets.c.
14415 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
14417         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
14418         from Object when called on a generic parameter. Fixes #82211.
14420 2007-08-01  Dick Porter  <dick@ximian.com>
14422         * file-io.c (convert_share): Test FileShare values bit-by-bit.
14423         Fixes bug 79250 yet again.
14425 2007-07-30  Martin Baulig  <martin@ximian.com>
14427         Merged the `debugger-dublin' branch.
14429         * mono-debug.h
14430         (MonoDebugDataTable): New typedef.
14431         (MonoDebugMethodAddressList): New typedef.
14432         (MonoDebugWrapperData): Removed.
14433         (MonoDebugSymbolTable): Removed `current_data_table',
14434         `current_data_table_size', `current_data_table_offset'.
14435         (MonoDebugDataItemType): Moved into mono-debug.c.
14436         (MonoDebugMethodJitInfo): Remove `address'.
14437         (mono_debug_data_table): New global variable.
14438         (mono_debug_lookup_method_addresses): New public function.
14439         (mono_debug_find_method): Take a `MonoMethod *', not a
14440         `MonoDebugMethodInfo *'.
14442         * mono-debug.c: Drop support for the old symbol tables.
14444 2007-06-28  Martin Baulig  <martin@ximian.com>
14446         * mono-debug.c (mono_debug_debugger_version): New public variable.
14448 2007-07-31  William Holmes  <billholmes54@gmail.com>
14450         * metadata.c Changed mono_type_create_from_typespec to not insert
14451           the type into the hash map until after
14452           do_mono_metadata_parse_type has completed.
14453         Fixes Bug #82194
14454         Code is contributed under MIT/X11 license.
14456 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
14458         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
14459         generic parameter. Fixes #82211.
14461 2007-07-27  Jb Evain  <jbevain@novell.com>
14463         * pedump.c (dump_metadata, dump_metadata_header): dump
14464         versions contained in the metadata header.
14466 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14468         * threads.c: register small_id_table with the GC.
14470 2007-07-27  Mark Probst  <mark.probst@gmail.com>
14472         * threads.c, threads.h, class-internals.h, object-internals.h:
14473         Hazard pointers, to be used by lock-free parallel algorithms.
14475 2007-07-26  Dick Porter  <dick@ximian.com>
14477         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
14478         routine on non-windows platforms, as I've not managed to think of
14479         a non-kludgy way of doing this.  Finishes off bug 78739.
14481 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
14483         * object.c: properly setup interface_bitmap in proxy vtables.
14485 2007-07-25  Marek Habersack  <mhabersack@novell.com>
14487         * appdomain.c (get_shadow_assembly_location): do not use TickCount
14488         to create unique shadow copy target directories, use the domain's
14489         serial number instead. Each domain gets a unique target directory
14490         that way.
14492         * domain.c (mono_domain_create): added code to increment domain
14493         shadow copy serial number and cache the value in the current
14494         domain structure.
14496         * domain-internals.h (struct _MonoDomain): added a new field -
14497         shadow_serial to hold the serial number used in generation of
14498         shadow-copy directories. This is to make sure that the directory
14499         name is unique for each and every domain created. We avoid a race
14500         condition with overriding assemblies already in use by other app
14501         domains.
14503 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
14505         * class.c (mono_bounded_array_class_get): fixed memory leak when 
14506         binding generic parameters.
14508 2007-07-24  Raja R Harinath  <rharinath@novell.com>
14510         * metadata.c (do_mono_metadata_parse_generic_class): Use
14511         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
14512         error.
14514 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
14516         * loader.c, class-internals.h, reflection.c: removed the per-method
14517         generics hashtable: we use the global one through the call of
14518         mono_class_inflate_generic_method ().
14520 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
14522         * class.c, metadata.c, class-internals.h: introduce yet another
14523         generics global cache for inflated methods (fixes 98% of the perf
14524         issue in bug #81806).
14526 2007-07-23  Raja R Harinath  <rharinath@novell.com>
14528         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
14529         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
14530         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
14531         return a MonoGenericInst containing (a copy) of those types.
14532         (mono_metadata_inflate_generic_inst): Update to changes.
14533         (mono_metadata_parse_generic_inst): Likewise.
14534         (mono_get_shared_generic_inst): Likewise.
14535         * reflection.c (mono_class_bind_generic_parameters): Likewise.
14536         (mono_reflection_bind_generic_method_parameters): Likewise.
14537         * metadata-internals.h: Likewise.
14538         * icall.c (free_generic_context): Kill.
14539         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
14541         * reflection.c (reflection_methodbuilder_to_mono_method): Use
14542         mono_metadata_type_dup.
14543         * marshal.c (mono_mb_create_method): Likewise.
14545         * metadata.c (mono_metadata_type_dup): Rename from
14546         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
14547         MonoImage.  Handle a few more cases, esp. when no mempool is given.
14548         * marshal.c, metadata-internals.h: Update to changes.
14550 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14552         * class.c: fixed a small leak for array classes and removed warning.
14554 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
14556         * loader.c (mono_method_get_param_token): Make this work on generic methods.
14557         Return 0x8000000 for return parameters. Fixes #82161.
14559 2007-07-21  Marek Habersack  <grendello@gmail.com>
14561         * appdomain.c (get_shadow_assembly_location): append the current
14562         ticks value to the path. Avoids overwriting the same assemblies by
14563         several threads at the same time.
14565 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14566         and Raja R Harinath  <rharinath@novell.com>
14568         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14569         Simplify slightly.
14570         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
14571         property for testing if a method is a generic method definition.
14573 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
14575         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
14577 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14579         * verify.c: used function from private branch, reverted to the one in class.h 
14581 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14583         * verify.c: a typo slipped in and the code wont compile
14585 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14587         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
14588         disabled box instruction as it is doing the wrong thing
14589         improved stack dump messages, now it is easier to debug type related issues
14592 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
14594         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
14596 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14598         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
14599         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
14600         grouped with class and valuetype. This change will simply 
14601         the code as it should be handled just like unmanaged pointers.
14603 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14605         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
14607 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
14609         * verify.c: several stack merge issues fixed, reference comparisons now
14610         check the type size. strict type check now works correctly.
14611         added more uses of IS_MANAGED_POINTER macro.
14612         fixed issues pointed by running the test suite against .net.
14613         
14615 2007-07-19  Mark Probst  <mark.probst@gmail.com>
14617         * class.c, loader.c, class-internals.h: Removed the
14618         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
14619         defines.
14621         * icall.c: Better error checking in some internal reflection
14622         methods.
14624 2007-07-18  William Holmes  <billholmes54@gmail.com>
14626         * filewatcher.c : removed unused variable 'filename' in 
14627           ves_icall_System_IO_FSW_SupportsFSW
14629 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
14631         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
14632         obsolete, removed.
14634 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
14636         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
14637         
14638         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
14640 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
14642         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
14643         Implement generics support.
14644         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14646         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
14647         type_args and method_args arguments.
14648         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
14649         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
14650         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
14652 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
14654         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
14655           It adds a rootimage parameter to mono_reflection_get_type_internal,
14656           adds new function mono_reflection_get_type_with_rootimage and use
14657           the rootimage to resolve the types instead of the current image
14659 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
14661         * culture-info-table.h: Forgot to update after r78304.
14663 2007-07-13  Raja R Harinath  <rharinath@novell.com>
14665         * class.c (mono_class_is_open_constructed_type)
14666         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
14668 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
14670         * class.c (mono_bounded_array_class_get):  method fails if used with
14671         an incomplete TypeBuilder enum (no basetype field), fixed it by 
14672         avoiding calculating the size for such array as it cannot be instantiated.
14673         Fix bug #82015
14675 2007-07-12  Raja R Harinath  <rharinath@novell.com>
14677         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
14678         field.
14679         * metadata.c, reflection.c: Update to changes.
14681 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
14683         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
14684         mono_class_is_valid_enum, they are used to valide a enum when loading.
14685         * reflection.c: used new functions to throw TypeLoadException when and
14686         invalid enum is build with TypeBuilder. Fixes #82018
14687   
14688 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
14690         * object.c: forgot commit of mono_class_setup_methods () to access
14691         iface->methods.
14692         * object-internals.h: added a few more handy fields to
14693         MonoIMTCheckItem.
14695 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
14697         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
14698         iface->methods.
14700 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
14702         * class-internals.h, object-internals.h, object.c: IMT-based
14703         interface invocation core from Massimiliano Mantione
14704         (massi@ximian.com) with a reworked arch-specific interface,
14705         bsearch implementation and a few bugfixes and memory savings by me.
14707 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
14709         * class.c (mono_class_create_from_typedef): mono would segfault if 
14710         an enum did not have a __value field. It now throws a TypeLoadException
14711         for such cases. Fix bug #82022
14713 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14715         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
14717 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14719         * class.c (mono_class_init): If a class is already inited but has
14720         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
14722 2007-07-09  Mark Probst  <mark.probst@gmail.com>
14724         * class.c: Properly handle the case of an unimplemented interface
14725         method.  Fixes: 81673.
14727 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14729         * class-internals.h, object.c: cleanup patch from massi: use
14730         MonoVTable->interface_bitmap since the vtable interfaces offset array
14731         is going away.
14733 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
14735         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
14736         GetMDStreamVersion icall instead.
14738 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
14740         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
14741         not use mono_dl_build_path() with a full library name: makes
14742         fallbacks to libgaim and libfam work.
14744 2007-07-06  William Holmes  <billholmes54@gmail.com>
14746         * assembly.c: Added a continue statement in probe_for_partial_name when
14747          parse_assembly_directory_name fails.  Fixes : 82002
14749 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
14751         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
14752         and added a verification  for TYPEDBYREF.
14753         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
14754         make native int interchangeable with int32 and some small cleanup and formating.
14755         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
14756         handle byref of byref.
14757         * verify.c (push_local): handle byref of byref.
14758         * verify.c (do_binop): invalid mix of values is unverifiable
14759         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
14760         added visibility checks
14761         * verify.c (field related method): added visibility checks
14762         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
14764 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
14766         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
14767         string.
14769 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
14771         * profiler.c (mono_profiler_load): Fix an off-by-one error.
14773         * marshal.c (emit_marshal_string): When returning a string from managed code,
14774         allways make a copy even for unicode strings. Fixes #81990.
14776 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
14778         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
14779         of byref generic inst types (bug #81997).
14781 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
14783         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
14784         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
14786 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
14788         * marshal.c (emit_marshal_string): Add support for unicode strings in
14789         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
14791 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
14793         * verify.c: field load/store are now verified, missing only access checks now
14795 2007-06-28  Martin Baulig  <martin@ximian.com>
14797         * mono-debug.c (mono_debug_debugger_version): New public variable.
14799 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
14801         * locales.c: When constructing DateTimeFormat or NumberFormat for
14802         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
14803         MonoCultureInfo contructed from the current locale is always
14804         read-only and has UseUserOverride set to true. All MonoCultureInfo
14805         instances returned for GetCultures have both IsReadOnly and
14806         UseUserOverride set to true. Fixes part of bug #81930.
14808 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
14810        * icall-def.h: Update System.__ComObject icalls
14811        * marshal.c: Avoid managed transition (and object creation)
14812        when looking up COM interface in RCW.
14813        * marshal.h: Ditto.
14814        
14815        Code is contributed under MIT/X11 license.
14817 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
14819         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
14820         to avoid crashes during assembly unloading.
14822 2007-06-22  Raja R Harinath  <rharinath@novell.com>
14824         Fix MethodInfo.IsGenericMethodDefinition
14825         * reflection.c (mono_reflection_bind_generic_method_parameters):
14826         Rearrange code to ensure we always uses a generic method definition.
14827         * class.c (mono_class_inflate_generic_method_full): Set
14828         'generic_container' field only for generic method definitions.
14829         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
14830         Use presense of 'generic_container' field as indication of being a
14831         generic method definition.
14833 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
14835         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14837         * object-internals.h: Reflect changes in the layout of the managed Delegate
14838         class.
14839         
14840         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
14841         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
14842         runtime memory used by the dynamic method. Fixes #77146.
14844 2007-06-21  Dick Porter  <dick@ximian.com>
14846         * file-io.h: 
14847         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
14848         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
14849         81767.
14851 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14853         * reflection.c (method_encode_methodspec): Add a tripwire.
14854         * class.c (inflate_generic_type): The fully open generic type is
14855         not the same as the generic type definition.
14857 2007-06-21  Martin Baulig  <martin@ximian.com>
14859         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
14861         * mono-debug-debugger.h
14862         (MonoDebuggerBreakpointInfo): Removed.
14863         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
14864         (mono_debugger_remove_breakpoint): Likewise.
14865         (mono_debugger_breakpoint_callback): Likewise.
14866         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
14868 2007-06-21  Raja R Harinath  <rharinath@novell.com>
14870         * metadata.c (mono_metadata_lookup_generic_class): The fully open
14871         generic type is not the same as the generic type definition.
14872         * class.c (mono_generic_class_get_class): Likewise.
14874 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
14876         * icall.c: The second argument to 
14877         System.Reflection.MethodBase.GetMethodFromHandleInternalType
14878         is a MonoType not a MonoClass.
14880 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14882         * verify.c: support for function pointers in the verifier
14884 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
14886         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
14888 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
14890         * assembly.c: removed Mono.Data.SqliteClient from the list of
14891         forward-compatible assemblies as it breaks the ABI (bug #81899).
14893 2007-06-19  Raja R Harinath  <rharinath@novell.com>
14895         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
14896         lookup/update with the loader lock.
14897         * reflection.c (mono_class_bind_generic_parameters): No need to
14898         protect mono_metadata_lookup_* with the loader lock.
14899         * class.c (inflate_generic_type): Likewise.
14900         
14901         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
14902         on a generic instantiated type.
14904 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
14906         *verify.c: produce meanfull error messages on verification error
14907         *verify.c: fixed some cases of verification errors reported as validation errors
14908         *pedump.c: fixed the error name array, now it shows validation errors properly
14909         *verify.h: fixed the contant that should be used for verification errors
14911 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
14913         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
14914         for bug #77596, 81858 and 80743 (generics data structures on domain
14915         unload).
14917 2007-06-15  Raja R Harinath  <rharinath@novell.com>
14919         Avoid allocating 'MonoGenericContext' on the heap.
14920         * class-internals (_MonoMethodInflated::context): Make field
14921         inline, not a pointer.
14922         * loader.c (method_from_methodspec): Allocate 'new_context' on the
14923         stack.  Use the context embedded within the inflated method as the
14924         hash key, rather than 'new_context'.
14925         * class.c (inflate_generic_context): Simplify.  Return a struct
14926         rather than allocating on the heap.
14927         (mono_class_inflate_generic_method_full): Update to changes.  Now,
14928         doesn't salt away a copy of the context -- simplifying the
14929         lifetime rules of a 'MonoGenericContext *'.
14930         (mono_method_get_context): Return pointer to embedded context.
14931         (setup_generic_array_ifaces): Allocate temporary context on stack.
14932         * reflection.c (inflate_mono_method): Likewise.
14933         (mono_reflection_bind_generic_method_parameters): Likewise.
14934         Use the context embedded within the inflated method as the hash key.
14936         Avoid a source of allocation of 'MonoGenericContext'.
14937         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
14938         and 'cached_context' fields into embedded 'MonoGenericContext' field.
14939         * class.c: Update to changes.
14940         (mono_generic_class_get_context): Simplify drastically.  Now just
14941         returns a pointer to the field.
14942         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
14943         argument as a const pointer.
14944         (mono_metadata_generic_context_equal): Likewise.
14945         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
14946         Update to changes.
14948 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
14950         * verify.c improved the handling of brtrue/brfalse, factored out common code
14952 2007-06-14  Raja R Harinath  <rharinath@novell.com>
14954         Kill MonoGenericMethod.
14955         * class-internals.h (MonoGenericContext::method_inst): Rename from
14956         'gmethod' and convert to a MonoGenericInst.
14957         (MonoGenericMethod): Remove.
14958         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
14959         * loader.c (method_from_methodspec): Update to changes.  Use a
14960         MonoGenericContext as the key to the hashtable.
14961         * metadata.c (mono_metadata_generic_context_equal): Rename from 
14962         'mono_metadata_generic_method_equal' and take MonoGenericContext.
14963         (mono_metadata_generic_context_hash): Likewise from
14964         'mono_metadata_generic_method_hash'.  Change hash function.
14965         (mono_metadata_load_generic_params): Update to changes.
14966         (mono_get_shared_generic_method): Remove.
14967         * metadata-internals.h (mono_get_shared_generic_method): Remove.
14968         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
14969         (inflate_generic_context): Likewise.
14970         (mono_class_inflate_generic_method_full): Likewise.
14971         (setup_generic_array_ifaces): Likewise.
14972         (mono_class_create_from_typespec): Likewise.
14973         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
14974         (method_encode_methodspec): Update callsite.
14975         (reflection_methodbuilder_to_mono_method): Update to changes.
14976         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
14977         MonoGenericContext as the key to the hashtable.
14978         (inflate_mono_method): Update to changes.
14980         * class-internals.h (MonoGenericMethod::container): Remove.
14981         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
14983 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
14985         * profiler-private.h, profiler.c, profiler.h: added API to profile
14986         exception events.
14988 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14990         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
14992 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
14994         * verify.c: method invocation is now validated, now we verify parameter types on stack.
14995         Fixed overflow and underflow not aborting the verification process.
14997 2007-06-13  Mark Probst  <mark.probst@gmail.com>
14999         * class-internals.h (MonoStats): Added stats entries for dynamic
15000         code allocations.
15002 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
15004         * loader.c (mono_free_method): Free header->locals and header->clauses.
15006         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
15007         dynamic case.
15009         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
15011         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
15013 2007-06-12  Raja R Harinath  <rharinath@novell.com>
15015         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
15016         the tables.
15018 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15020         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
15022 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15024         MonoGenericMethod on a diet
15025         * class-internals.h (_MonoMethodInflated::reflection_info): Move
15026         here ...
15027         (_MonoGenericMethod::reflection_info): ... from here.
15028         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
15029         Update to changes.
15030         * reflection.c (inflate_mono_method): Likewise.
15031         (mono_reflection_bind_generic_method_parameters): Likewise.
15033 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15035         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
15036         *verify.c: factored long ldarg forms to share code with short forms
15038 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
15040         *verify.c: fixed code formating factored some duplicate code
15041         into a new function
15043         *verify.h: fixed binary incompatibility introduced earlier
15045         *pedump.c: fixed formating
15047 2007-06-11  Raja R Harinath  <harinath@gmail.com>
15049         Fix assertion when disassembling Mono.C5.dll
15050         * loader.c (method_from_methodspec): Avoid inflating a method
15051         twice with the same context.  If the methodref is inflated, use
15052         the declaring method instead.
15054         * class.c (mono_class_from_generic_parameter): Fix case similar to
15055         bug #81830 handled below, but for method containers.
15057 2007-06-10  Raja R Harinath  <harinath@gmail.com>
15059         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
15060         get_shared_generic_class.  Directly inflate the instance.
15061         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
15062         (inflate_generic_class): Delete.
15063         (get_shared_generic_class): Delete.  Move setting of
15064         'cached_class' and 'cached_context' ...
15065         * metadata.c (mono_metadata_lookup_generic_class): ... here.
15067         * metadata.c (mono_metadata_lookup_generic_class): Change
15068         signature to take the components of a MonoGenericClass rather than
15069         an allocated MonoGenericClass.  Change semantics to be intern-like.
15070         * reflection.c (mono_class_bind_generic_parameters): Update to
15071         changes.  Make locking region tighter.
15072         * class.c (inflate_generic_class): Update to changes.
15073         (get_shared_generic_class): Likewise.
15074         * metadata-internals.h: Likewise.
15076         * reflection.c (mono_class_bind_generic_parameters): Take and
15077         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
15078         (mono_reflection_bind_generic_parameters): Use
15079         'mono_class_bind_generic_parameters' rather than duplicate the code.
15080         * class.c (mono_bounded_array_class_get): Update to changes.
15081         * object-internals.h: Likewise.
15083         * reflection.c (mono_class_bind_generic_parameters): Only support
15084         parameterizing generic type definitions.  Remove support for other
15085         open types.
15087 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
15089         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
15091         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
15092         in the dynamic case.
15094 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
15096         * threads.c: When cleaning up thread, reset the Background bit.
15097         Fixes bug #81720.
15099 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
15101        * metadata.c: Move variable declarations to top of scope.
15102        * verify.c: Move variable declarations to top of scope.
15104        Code is contributed under MIT/X11 license.
15106 2007-06-08  Raja R Harinath  <rharinath@novell.com>
15108         * reflection.c (mono_class_bind_generic_parameters): Replace
15109         open-coded loop with mono_metadata_inflate_generic_inst.
15111         * class.c (get_shared_generic_class): Don't call
15112         mono_get_shared_generic_inst.  Use the container's own
15113         'class_inst'.
15115         * metadata.c (mono_metadata_load_generic_params): Move
15116         initialization of 'context' field here from ...
15117         * class.c (mono_class_create_from_typedef): ... here, and ...
15118         * loader.c (mono_get_method_from_token): ... here.
15120         * class.c (get_shared_generic_class): Rename from
15121         mono_get_shared_generic_class and make static.
15122         (mono_get_shared_generic_inst): Move to metadata.c.
15123         * loader.c (mono_get_shared_generic_method): Likewise.
15124         * class-internals.h, metadata-internals.h: Update to changes.
15126         Fix #81830
15127         * class.c (mono_class_from_generic_parameter): Don't assume a
15128         generic container owner exists.  Generic containers from monodis
15129         don't have any.
15131 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
15133         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
15134         * verify.h: new typedefs to returns the non-verifiable status
15135         * verify.c: initial implementation of generics, stack merging and object compatibility check
15137 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15139         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15140         a MonoInternalHashTable again (fixed bug in internal hash table
15141         code).
15143 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15145         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15146         MonoInternalHashTable again (fixed bug in internal hash table
15147         code).
15149 2007-06-06  Mark Probst  <mark.probst@gmail.com>
15151         * class.c, image.c, class-internals.h, domain.c,
15152         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
15153         changes.  Have to figure out what makes them break the SWF
15154         regression.
15156 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15158         * class.c, image.c, class-internals.h (MonoImage): class_cache is
15159         a MonoInternalHashTable now.
15161 2007-06-04  Mark Probst  <mark.probst@gmail.com>
15163         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
15164         MonoInternalHashTable now.
15166 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
15168         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
15169         invoke_impl code.
15171         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
15173         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
15174         dependent trampoline.
15176         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15178         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
15180 2007-05-29  Robert Jordan  <robertj@gmx.net>
15182         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
15184 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
15186         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
15188 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
15190        * marshal.c: Fix interface lookup loops for
15191        cominterop_get_com_slot_for_method and 
15192        cominterop_get_method_interface. Only need to lookup
15193        if type is a class, else use interface type method is on.
15195        Code is contributed under MIT/X11 license.
15197 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
15199         * reflection.c: HasSecurity can be present even if no specially 
15200         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
15201         SecurityAttribute). Fix CAS regression tests on buildbot.
15203 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
15205        * appdomain.c: Add configure checks for header files.
15206        * image.c: Add configure checks for header files.
15207        * file-io.c: Add configure checks for header files.
15208        * debug-mono-symfile.c: Add configure checks for header files.
15209        * threadpool.c: Add configure checks for header files.
15210        * console-io.c: Add configure checks for header files.
15211        * profiler.c: Add configure checks for header files.
15212        * rawbuffer.c: Add configure checks for header files.
15213        * icall.c: Add configure checks for header files.
15214        * rand.c: Add configure checks for header files.
15215        * socket-io.c: Add configure checks for header files.
15217        Code is contributed under MIT/X11 license.
15219 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
15221         * reflection.c (mono_custom_attrs_from_builders): Remove the 
15222         assertion as it breaks the build.
15223         
15224         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
15226         * reflection.c (lookup_custom_attr): Make a copy here too.
15228         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
15229         dynamic images.
15231         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
15232         images.
15234         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
15235         info.
15237 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
15239         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
15240         (load_cattr_value): Ditto.
15242 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
15244         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
15246 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
15248         * threads.c: In "start_wrapper", set apartment_state to MTA if
15249         apartment_state is Unknown and we're running on 2.0 profile or
15250         higher.
15251         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
15252         to main method, then set apartment_state to Unknown on 1.0 profile,
15253         and MTA on 2.0 profile.
15255 2007-05-16  Jb Evain  <jb@nurv.fr>
15257         * class-internals.h (MonoDefaults): Add an attribute_class and
15258           customattribute_data_class.
15259         * domain.c (mono_init_internal): Populate them.
15260         * reflection.c: Use them to remove duplicates. Make a vew
15261         MonoClass variables `static'.
15263 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
15265         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
15266         step in implementing IMT, so that all isinst checks now can go
15267         through the bitmap.
15268         This was needed because vtables for TransparentProxy need to look
15269         like the vtable of the "target" class, so they need to point to
15270         its interface bitmap directly.
15272         * object.c: inside "mono_class_create_runtime_vtable" and
15273         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
15275 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
15277         * object-internals.h
15278           culture-info.h : added territory field in MonoCulture and
15279           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
15280         * locales.c : fill territory field above too.
15281         * culture-info-table.h : regenerated.
15283 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
15285         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
15286         Fixes #81599.
15288 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
15290         * object.c: Always initialize apartment, even if 
15291         there is no custom attributes on entry point.
15292         
15293         Code is contributed under MIT/X11 license.
15295 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
15297         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
15298         * metadata.c: If no encoding is set, check for unicode
15299         on class.
15300         
15301         Code is contributed under MIT/X11 license.
15303 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15305         * threads.c: Handle if mono_thread_current returns NULL 
15306         
15307         Code is contributed under MIT/X11 license.
15309 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
15311         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
15312         in start_wrapper. Added mono_thread_init_apartment_state and
15313         mono_thread_cleanup_apartment_state.
15314         * object.c: Initialize thread apartment state on main thread
15315         by checking for STAThreadAttribute on entry point.
15316         * object-internals.h: Add apartment_state field to MonoThread.
15317         * threads-types.h: Add unmanaged definition of 
15318         System.Threading.ApartmentState, MonoThreadApartmentState.
15319         
15320         Code is contributed under MIT/X11 license.
15321         
15322 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
15324         * class.c: Fix windows build.
15325         * class-internals.h: Fix windows build.
15326         
15327         Code is contributed under MIT/X11 license.
15329 2007-05-08  Robert Jordan  <robertj@gmx.net>
15331         * process.c (CreateProcess_internal):
15332         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
15333         .CreateNoWindow was specified. Fixes #81496.
15335 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15337         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
15338         step in implementing IMT, replaced it with two compact arrays
15339         (interfaces_packed and interface_offsets_packed) and a bitmap that
15340         is used for isinst checks (interface_bitmap).
15342         * class.c: (compare_interface_ids): compare function to pass to
15343         bsearch when looking for an interface with a given id.
15344         (mono_class_interface_offset): reimplemented using bsearch on
15345         interfaces_packed, getting the offset from interface_offsets_packed.
15346         (print_implemented_interfaces): utility debugging function.
15347         (setup_interface_offsets): reworked to initialize interfaces_packed,
15348         interface_offsets_packed and interface_bitmap.
15350         * object.c: replaced all accesses to "MonoClass.interface_offsets"
15351         with uses of interfaces_packed and interface_offsets_packed.
15353 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
15355         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
15356         mono_class_interface_offset prototype to wrap all accesses to
15357         "MonoClass.interface_offsets".
15359         * class.c: Implemented mono_class_interface_offset, and wrapped all
15360         accesses to "MonoClass.interface_offsets".
15362         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
15363         "MonoClass.interface_offsets".
15365 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15367         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
15368         GetMethodFromHandle overloads (bug #78637).
15370 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15372         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
15373         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
15375 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
15377         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
15378         #81498.
15380         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
15381         gracefully.
15382         (mono_custom_attrs_from_index): Ditto.
15384         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
15385         Fixes #81501.
15387 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
15389         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
15390         is now allocated from a mempool.
15392 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
15394         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
15395         caller holds threads_lock, leading to deadlocks. Fixes #81476.
15397 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
15399         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
15400         mono_loader_clear_error () too late. Fixes #81463.
15402 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
15404         * culture-info-table.h : regenerated.
15406 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
15408         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
15409         is missing.
15411 2007-04-25  Dick Porter  <dick@ximian.com>
15413         * Makefile.am: Put the mingw enforced-optimisation back into the
15414         PLATFORM_WIN32 section.
15416 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
15418         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
15419         patch.
15421         * image.c (mono_image_load_module): New API function to load a module reference.
15423         * image.c (load_modules): Load modules lazily. Fixes #80812.
15425         * class.c (mono_class_from_typeref): Use mono_image_load_module.
15426         
15427         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
15429         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
15430         to mono_image_load_module_dynamic.
15432 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
15434         * marshal.c: Fix calling convention for CCW on non-windows
15435         platforms. STDCALL on windows, CDECL everywhere else to work 
15436         with XPCOM and MainWin COM.
15437         
15438         Code is contributed under MIT/X11 license.
15440 2007-04-23  Martin Baulig  <martin@ximian.com>
15442         Fix #80969.
15444         * loader.c
15445         (method_from_memberref): Added `gboolean *used_context' argument.
15446         (mono_get_method_from_token): Likewise.
15447         (mono_get_method_full): Don't insert the method in the cache when
15448         `used_context' is true.
15450 2007-04-23  Raja R Harinath  <rharinath@novell.com>
15452         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
15454         * reflection.c (mono_reflection_bind_generic_parameters): Don't
15455         create new MonoTypes for returned types.
15456         * class.c (mono_generic_class_get_class): Export mono-internal.
15457         * class-internals.h: Update to changes.
15459 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15461         * threadpool.c, threadpool.h, icall-def.h: patch from
15462         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
15464 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
15466         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
15467         
15468         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
15470         * threads.c (mono_thread_get_stack_bounds): New helper function.
15472         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
15473         Correctly compute stack bounds when attaching. Fixes #81394.
15475 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
15477         * reflection.c: fix handling of doubles in custom attributes
15478         for the arm-fpa format (bug #81368).
15480 2007-04-18  Raja R Harinath  <rharinath@novell.com>
15482         * reflection.c (assembly_add_win32_resources): Mildly relax an
15483         bounds check to let the end pointer point just past the end of the
15484         allocated buffer.  (may fix #81384)
15486 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
15488         * culture-info-table.h : regenerated.
15490 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
15492         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
15493         the thread is aborted early.
15495 2007-04-05  Dick Porter  <dick@ximian.com>
15497         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
15498         FindFirstFile()/FindNextFile() to find entries.  This lets the
15499         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
15500         81038.
15502         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
15503         the parameters of
15504         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
15506 2007-04-04  Martin Baulig  <martin@ximian.com>
15508         * debug-helpers.c
15509         (mono_method_desc_full_match): Add support for nested classes.
15511 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
15513         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
15515 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
15517         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
15518         waiting for too many threads.
15520 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
15522         * environment.c: Fix return value check on uname so we can get the 
15523         executing version on Solaris operating systems.
15525 2007-03-28  Jb Evain  <jbevain@gmail.com>
15527         * class.c (mono_type_get_name_recurse): Complete the
15528         fix for the creation of assembly qualified names for
15529         pointer types. Fixes #81208.
15531 2007-03-27  Dick Porter  <dick@ximian.com>
15533         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
15534         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
15535         changed.
15537         * threads.c
15538         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
15539         the value of ReleaseMutex().
15541 2007-03-27  Dick Porter  <dick@ximian.com>
15543         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
15544         in little-endian order, not network endian, so must be converted
15545         to host endian here.  Fixes bug 80593.
15547 2007-03-22  Jb Evain  <jbevain@gmail.com>
15549         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
15550         qualified names for pointer types. Fixes #81208.
15552 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
15554         * marshal.c: Add support for PreserveSigAttribute. 
15555         
15556         Code is contributed under MIT/X11 license.
15558 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
15560         * process.c: Fix endianness issues. Fixes #81126.
15562         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
15563         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
15565         * image.c (mono_image_lookup_resource): Make this work on big-endian
15566         machines.Change API contract so the caller needs to free the return value.
15567         
15568         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
15569         API change.
15570         
15571 2007-03-14  Martin Baulig  <martin@ximian.com>
15573         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
15574         mono_type_get_desc() as well.
15576 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
15578         * icall.c:  Fix environ access in VS.  
15579         
15580 2007-03-13  Alp Toker  <alp@atoker.com>
15582         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
15583         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
15584         #63841.
15586 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
15588         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
15589         circular references among dynamic methods. Fixes #81091.
15591         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
15593 2007-03-09  Martin Baulig  <martin@ximian.com>
15595         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
15597 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
15599         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
15600         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
15601         
15602         Code is contributed under MIT/X11 license.
15603         
15604 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
15606         * loader.c: Reapply patch for bug #79424.
15608 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15610         * metadata.c (mono_type_to_unmanaged): Only convert object to
15611         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
15613 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
15615         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
15616         (and incorrectly set) is_reference field from MonoGenericInst.
15618 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
15620         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
15621         a little earlier.
15623         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
15625         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
15627 2007-03-05  Miguel de Icaza  <miguel@novell.com>
15629         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
15630         FileOptions.1 value to mean "temporary", map that to
15631         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
15633         Fixes 80688
15635 2007-03-03  Marek Habersack  <mhabersack@novell.com>
15637         * appdomain.c: implement MS .Net style shadow copying. Copies of
15638         the assemblies are made in a subdirectory of the dynamic base
15639         directory, the assembly names are preserved.
15640         Copy .mdb and .config files along with the assemblies being shadowed.
15642 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15644         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
15645         (emit_marshal_handleref): Ditto.
15647         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
15648         on Visual C++. Fixes #80671.
15650 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
15652         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
15653         for clone operations.
15655 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
15657         * marshal.c: Fix warnings.
15659 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
15661         * loader.c: allow case-insensitive matching of the dll name
15662         in dllmap handling when prefixed with "i:".
15664 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
15666         * threads.c: Fix #ifdef for dummy_apc function for VS.
15668 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
15670         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
15672 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
15673         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
15674         giving precedence to the methods with a fully qualified name
15675         (InterfaceName.MethodName) when building the interface sections
15676         of the vtable.
15678 2007-02-16  Dick Porter  <dick@ximian.com>
15680         * threadpool.c (append_job): Fix fast-path array handling, so it's
15681         less likely the array will grow exponentially when the load is
15682         heavy.
15684 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15686         * metadata-internals.h, loader.c: fix dllmap lookup order
15687         for non-function maps, too, and prepare for fallback code.
15689 2007-02-12  Robert Jordan  <robertj@gmx.net>
15691         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
15692         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
15693         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
15694         GlobalFree. Fixes a part of bug #77075.
15696 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
15698         * loader.c: implemented typedef parent in field memberref.
15700 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
15702         * marshal.c: Fix warnings and remember to call Release on
15703         IUnknown of RCW.
15704         
15705         Code is contributed under MIT/X11 license.
15707 2007-02-10  Miguel de Icaza  <miguel@novell.com>
15709         * class-internals.h: Add MonoHandleRef definition, and
15710         handleref_class to mono_defaults. 
15712         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
15713         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
15715         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
15716         (do nothing on this stage)
15717         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
15718         (emit_marshal_handleref): New method, used for argument handling
15719         of HandleRefs. 
15721 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
15723         * class.c (mono_class_setup_parent): Lazily init com types.
15724         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
15725         init com types.
15726         * object.c (mono_remote_class_vtable): Lazily init com types.
15727         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
15728         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
15729         * domain-internals.h: Expose mono_init_com_types.
15730         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
15731         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
15732         Add support for COM Callable Wrapper marshalling.
15733         * marshal.h: Add icall definitions.
15734         * gc.c: Handle freeing of CCWs in finalizer code.
15735         
15736         Code is contributed under MIT/X11 license.
15738 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
15740         * reflection.c: changed all the signature encoding code to use
15741         a variable-sized buffer.
15743 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15745         * marshal.c: locking fixes: never take the loader lock
15746         or other runtime locks when holding the marshal lock
15747         (fixes bug#80664).
15749 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
15751         * marshal.c: make the delegate function pointer mapping
15752         work for the moving GC.
15754 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
15756         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
15757         for bug #80618.
15759 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
15761         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
15762         gmodule.
15764 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
15766         * threadpool.c: made the code moving-GC safe.
15768 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
15770         * assembly.c, boehm-gc.c, class-internals.h, class.c,
15771         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
15772         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
15773         warning cleanup.
15774         * reflection.c: warning cleanup, some threading and moving GC fixes.
15776 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
15778         * class.c, loader.c: create the needed Set/Get/Address array methods
15779         as well as the .ctors in mono_class_init (), fixes bug #80567.
15781 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
15783         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
15784         we doesn't decrease its alignment. Should fix the sparc build.
15786 2007-01-24  Dick Porter  <dick@ximian.com>
15788         * socket-io.c
15789         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
15790         Create the returned object if we need to ignore an unsupported
15791         socket option.  Fixes a segfault reported by Atsushi.
15793 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
15795         * class.c, object.c: restrict GC-tracked fields to
15796         UIntPtr fields used inside corlib, so we provide better
15797         type info to the GC and also allow broken packing as in
15798         bug #80580.
15800 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
15802         * sgen-gc.c: removed duplicated function.
15804 2007-01-19  Miguel de Icaza  <miguel@novell.com>
15806         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
15807         value that means that the value is not supported, but that we
15808         should not return a failure, but instead report this as a
15809         successful operation.
15811 2007-01-19  Raja R Harinath  <rharinath@novell.com>
15813         Fix tests/bug79956.2.il
15814         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
15815         (mono_generic_class_get_class): If the generic definition in an
15816         enum, copy over other fields related to it.
15818 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
15820         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
15821         genericinst enums (bug #79215).
15823 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
15824         * class.c: Fix bug 80307.
15826 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
15828         * image.c: if the file table is not present, try to load
15829         all the modules, since we don't have info about them
15830         having or not metadata (bug #80517).
15831         * assembly.c: allow mono_assembly_load_references () to
15832         work for netmodules.
15834 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
15836         * image.c, metadata-internals.h, object.c: execute module
15837         cctors when running on the 2 runtime if present (bug #80487).
15839 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
15841         * icall.c: optimized InitializeArray() on bigendian.
15843 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
15845         * icall.c: fix for the broken ARM FPA double format.
15847 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
15849         * icall.c: handle endian issues for r4 and r8 types, too, in
15850         the InitializeArray() icall.
15852 2007-01-15  Miguel de Icaza  <miguel@novell.com>
15854         * loader.c (mono_loader_error_prepare_exception): Clear the error
15855         once we have extracted the information from it, do this before we
15856         call into the JIT's class loading mechanisms.
15858         * object.c (mono_class_create_runtime_vtable): Do not clear the
15859         loader error before calling mono_class_get_exception_for_failure
15860         as the loader error is needed inside
15861         mono_class_get_exception_for_failure to throw the error (thinko).
15863         Fixes #80521
15864         
15865 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
15867         * reflection.c: align fields rva data so it's faster to load at
15868         runtime.
15870 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15872         Prepare to simplify GenericMethod handling.
15873         * class-internals.h (mono_method_get_context): New accessor function.
15874         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
15875         rather than directly accessing '->context' field.
15877         * class-internals.h (_MonoGenericParam.method): Move ...
15878         (_MonoGenericContainer): ... here.  Add into union with klass field.
15879         * class.c, icall.c, loader.c, metadata.c, reflection.c:
15880         Update to changes.
15882 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
15884         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
15885         the wrapper type enum and reduce relocations.
15887 2007-01-12  Raja R Harinath  <rharinath@novell.com>
15889         * reflection.c (inflate_mono_method): Reuse method instantiation
15890         from the generic method, if available.
15892 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15894         * marshal.c (emit_marshal_variant): Fix conv_arg
15895         type in last commit, based on whether parameter is byref.
15896         
15897 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15899         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
15900         marshalling.
15901         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
15902         MONO_TYPE_OBJECT back for VARIANT support.
15904 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
15906         * marshal.c, marshal.h, icall-def.h: Implement 
15907         Marshal.ReAllocCoTaskMem.
15909 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
15911         * marshal.c: memory retention fixes: use the proper
15912         image cache for runtime_invoke method lookups.
15914 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
15916         * mempool.c: added code to help debug mempool allocations.
15918 2007-01-11  Dick Porter  <dick@ximian.com>
15920         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
15921         support (experimenting with faking it with IP_MTU_DISCOVER for
15922         systems that don't have IP_DONTFRAGMENT.)
15923         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
15924         icall.
15926         * icall-def.h: new System.Net.Sockets.Disconnect icall.
15928         * socket-io.h: Add new fields to MonoSocketAsyncResult
15929         corresponding to the new ones in Socket.cs.
15931 2007-01-11  Raja R Harinath  <rharinath@novell.com>
15933         Fix IronPython regression mentioned in #80249
15934         * metadata.c (do_mono_metadata_parse_generic_class): Clear
15935         'cached_context' field, since it may have been initialized as a
15936         side-effect of metadata parsing.
15938         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
15939         (_MonoGenericClass.cached_class): Move here and rename from lone
15940         remaining field of ...
15941         (_MonoInflatedGenericClass): ... this.  Remove.
15942         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
15943         to changes.
15945         Fix mcs/tests/test-128.cs regression.
15946         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
15947         2007-01-10 change below.
15948         [MONO_TYPE_OBJECT]: Recurse into array case.
15950 2007-01-11  Raja R Harinath  <harinath@gmail.com>
15952         * class-internals.h (mono_get_inflated_generic_class): Remove.
15953         * class.c (mono_get_inflated_generic_class): Remove.
15954         (mono_generic_class_get_class): Rename from
15955         mono_class_create_generic.
15956         (mono_class_from_mono_type) [GENERICINST]: Use it.
15957         * reflection.c, metadata.c: Update to changes.  Use
15958         'mono_class_from_mono_type'.
15960 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
15962         * reflection.c: use passed type when encoding an array element
15963         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
15965 2007-01-09  Robert Jordan  <robertj@gmx.net>
15967         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
15968         result arguments (someDelegate.EndInvoke (unrelatedAres)).
15969         Fixes bug #80392.
15971 2007-01-09  Raja R Harinath  <rharinath@novell.com>
15973         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
15975         * object.c (set_value): Avoid aliasing between type->data.klass
15976         and type->data.generic_class.
15978         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
15980 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15982         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
15983         between type->data.klass and type->data.generic_class.
15985 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
15987         * marshal.c: In MS.NET, StringBuilder objects are not copied by
15988         value in out parameters.
15990 2007-01-08  Raja R Harinath  <rharinath@novell.com>
15992         Simplify invariant for MonoGenericClass::klass field.
15993         * class.c (mono_class_create_generic): Verify 'klass' is null.
15994         * metadata.c (do_mono_metadata_parse_generic_class): Don't
15995         initialize 'klass' field.
15997 2007-01-05  Raja R Harinath  <rharinath@novell.com>
15999         Ongoing work to avoid redundant data and simplify invariants.
16000         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
16001         'generic_class', and change type to a GenericInst.
16002         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
16003         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16005 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
16007         * class.c : skip io-layer under PLATFORM_WIN32.
16009 2007-01-03  Tor Lillqvist  <tml@novell.com>
16011         Fix #80305: In a bundled executable, look in the bundled exe
16012         assembly to determine the runtime version. Add the possibility to
16013         bundle also the machine.config file.
16014         
16015         * assembly.c (mono_assembly_open_from_bundle): Make
16016         non-static. Allow being called even if we have no bundled
16017         assemblies, and return NULL right away in that case.
16019         * domain-internals.h: Declare mono_assembly_open_from_bundle()
16020         here.
16022         * domain.c (app_config_parse): Take an assembly exe file name as
16023         parameter instead of a config file name. Check for a bundled
16024         config file for that assembly by calling
16025         mono_config_string_for_assembly_file() (see below) before looking
16026         for one in the file system.
16027         (get_runtimes_from_exe): Corrsponding change to call of
16028         app_config_parse().
16029         (get_runtimes_from_exe): Check for bundled assembly exe file first
16030         by calling mono_assembly_open_from_bundle(). If no bundled
16031         assembly exe file is found, call mono_image_open() as before to
16032         look it up in the file system.
16034         * mono-config.c: Add variable bundled_machinec_onfig.
16035         (mono_config_string_for_assembly_file): New function.
16036         (mono_config_for_assembly): Move code snippet that looks for a
16037         bundled assembly .config file into the above new function. Call
16038         it.
16039         (mono_register_machine_config, mono_get_machine_config): New
16040         functions to set and retrieve
16042         * assembly.h: Declare mono_register_machine_config().
16044         * mono-config.h: Declare mono_get_machine_config() and
16045         mono_config_string_for_assembly_file().
16047         * icall.c: No declaration of environ necessary on Win32. It is
16048         declared (as a macro expanding to a function call) in stdlib.h.
16049         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
16050         New internal mono function. Returns the value of
16051         mono_get_machine_config() as a Mono string.
16053         * icall-def.h: Add get_bundled_machine_config().
16055 2007-01-04  Raja R Harinath  <rharinath@novell.com>
16057         Remove redundant field
16058         * class-internals.h (_MonoGenericContext.container): Remove field.
16059         * loader.c (mono_method_get_signature_full): Don't parse a
16060         "container" for a signature parse when the signature is inflated
16061         immediately.
16062         (method_from_methodspec): Likewise, for a generic_inst.
16063         * class.c, metadata.c, reflection.c: Update to changes.
16065 2006-01-04  Raja R Harinath  <rharinath@novell.com>
16067         * class-internals.h (_MonoGenericClass): Rename 'context' field to
16068         'cached_context', and change semantics -- it starts off NULL, and
16069         is initialized on demand.
16070         * class.c (mono_generic_class_get_context): New accessor to
16071         replace 'context' field accesses.
16072         (mono_class_get_context): New helper.
16073         (*): Update to changes.
16074         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
16076 2007-01-03  Miguel de Icaza  <miguel@novell.com>
16078         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
16079         before the memcpy.   Fixes Marshal2 regression.
16081 2007-01-02  Jb Evain  <jbevain@gmail.com>
16083         * blob.h: add a MONO_TYPE_ENUM definition
16084         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
16085         fix the encoding of arrays of enums in custom attributes.
16087         Fixes #79666.
16089 2007-01-01  Miguel de Icaza  <miguel@novell.com>
16091         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
16092         string is null terminated, but only cut the string short if it
16093         overflows the buffer.   
16094         
16095         (mono_string_to_byvalstr): Also fix this routine.   The code here
16096         was not properly terminating a string (it was only terminated
16097         because of the previous catch-all memset). 
16099         I left the memset, because I do not know if applications expect
16100         the runtime to clear this region. 
16102         Fixes #79944.
16104         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
16105         Clear the error before returning to unmanaged code to prevent the
16106         runtime from being confused later on (fixes  80420).
16107         (ves_icall_type_from_name): Always call mono_loader_clear_error
16108         after parsing a type that could have failed.
16109         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
16111         * loader.c (mono_loader_clear_error): Fix indentation.
16113 2006-12-28  Martin Baulig  <martin@ximian.com>
16115         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
16117 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
16119         * reflection.c: patch from Rolf Bjarne Kvinge to fix
16120         getting a token for an EnumBuilder.
16122 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
16124         * reflection.c: be more careful in case resource generation
16125         fails to create the data array.
16127 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
16129         * sgen-gc.c: write barrier for clone and fix unregister handles.
16131 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
16133         * reflection.c: some fixes needed in the generics code for the moving GC.
16135 2006-12-22  Robert Jordan  <robertj@gmx.net>
16137         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
16138         account. Fixes bug #80299.
16140 2006-12-21  Raja R Harinath  <rharinath@novell.com>
16142         Fix WaitHandle usage in delegates.
16143         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
16144         * object.c (mono_wait_handle_new): Use the property set method to
16145         initialize the handle.
16146         (mono_wait_handle_get_handle): New.
16147         * threadpool.c (mono_async_invoke): Use it.
16148         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
16149         Likewise.
16150         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
16152 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
16154         * marshal.c (emit_marshal): Call emit_marshal_variant and
16155         emit_marshal_com_interface when applicable.
16156         (emit_marshal_variant, emit_marshal_com_interface): Add
16157         methods for this case and remove if's from emit_marshal_object.
16158         
16159 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
16161         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
16163 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
16165         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
16166         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
16167         and GlobalFree on Windows. Remove FIXME.
16169 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
16171         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
16172         implementation for managed objects.
16174 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
16176         * object.c: implemented code to be used for checking
16177         that no reference field overlaps with non-references.
16179 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16181         * threadpool.c: fix queue code to be compatible with the
16182         moving GC.
16184 2006-12-18  Miguel de Icaza  <miguel@novell.com>
16186         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
16187         in structures by throwing ArgumentNullException.
16189         (emit_marshal_safehandle): Also when they are null parameters.
16191         (emit_marshal_safehandle): Add support for ref
16192         SafeHandles parameters
16194 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
16196         * profiler.c: updated to use the mono-dl API instead of
16197         gmodule.
16199 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16201         * profiler.c: updated to use the mono-dl dynamic loading
16202         API instead of gmodule.
16204 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
16206         * profiler.c: use readlink, older versions of glib don't have
16207         g_file_read_link ().
16209 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16211         * profiler.c: try to detect the path to mono if libc fails to provide
16212         a useful name (bug #80286).
16214 2006-12-16  Raja R Harinath  <rharinath@novell.com>
16216         Fix #80242
16217         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
16218         instance, use the generic type definition instead.
16219         (ves_icall_Type_GetNestedTypes): Likewise.
16220         * class.c (mono_class_create_generic): Always set the
16221         nested_classes of a generic instance to NULL, even if the generic
16222         type definition has nested types.
16224 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
16226         * marshal.c (mono_string_from_bstr): Revert previous Windows change
16227         and fix on Linux.
16228         
16229 2006-12-15  Miguel de Icaza  <miguel@novell.com>
16231         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
16232         my arguments were in the wrong order.   I also fixed the Windows
16233         version which seems to have had the same issue.
16235         (mono_free_bstr): On Unix, this is g_free.
16236         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
16237         conversions (for the tests in corlib to pass).
16239 2006-12-14  Miguel de Icaza  <miguel@novell.com>
16241         * marshal.c (emit_ptr_to_object_conv): For now, ignore
16242         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
16243         exception if a ref SafeHandle in a struct has changed).
16244         
16245         (emit_struct_conv): Do not perform layout checks for classes
16246         derived from SafeHandle, as those are specially handled. 
16248         (emit_object_to_ptr_conv): Add support for
16249         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
16251         (emit_marshal_safehandle): Implement conversion of return values
16252         of safehandles (MARSHAL_ACTION_CONV_RESULT).
16253         
16254         * threads.c: WaitHandle now is compiled with two different handles
16255         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
16256         for 2.0.
16257         
16258         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
16259         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
16260         these routines to cope with both kinds of fields.
16262 2006-12-12  Miguel de Icaza  <miguel@novell.com>
16264         * metadata.c (mono_type_to_unmanaged): Handle the case where
16265         type->data.klass is a SafeHandle, and in that case, return the
16266         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
16267         MONO_MARSHAL_CONV_SAFEHANDLE. 
16269 2006-12-11  Miguel de Icaza  <miguel@novell.com>
16271         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
16272         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
16273         calling emit_marshal_object.
16275         (emit_marshal_safehandle): Implement marshalling of
16276         SafeHandle parameters (no ref support yet).
16278         (MarshalAction): Document the defines as I implement
16279         them for SafeHandle.
16281         (emit_marshal_object): indentation police.
16283         * class-internals.h: Define MonoSafeHandle.
16284         Add safehandle_class to MonoDefaults type.
16286         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
16287         list of classes to check for fields. 
16289         * domain.c (mono_init_internal): Add SafeHandle to the list of
16290         mono_defaults loaded.
16292 2006-12-15  Raja R Harinath  <rharinath@novell.com>
16294         Fix #80253
16295         * reflection.c (mono_reflection_bind_generic_parameters): If the
16296         generic type definition is a type builder, ensure that it is fully
16297         initialized before instantiating it.  Kill some dead code.
16299 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
16301         * object.c: clear the loader_error () before loading
16302         more metadata stuff (bug #80258).
16304 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
16306         * icall.c, icall-defs.h: type modifiers icalls for
16307         parameters and properties.
16309 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
16311         * object.c, icall.c: fixed warnings.
16313 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16315         * marshal.c: fixed a couple of leaks and coding style in a few places.
16317 2006-12-08  Dick Porter  <dick@ximian.com>
16319         * process.c: Cope with NULL ProcessStartInfo arguments on windows
16320         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
16321         80173.
16323 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
16325         * process.c: ProcessStartInfo may have only filename set and
16326         arguments can be NULL.
16328 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
16330         * icall.c: fix leak found by Robert Jordan.
16332 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
16334         * marshal.c, marshal.h: generate managed method to access an element
16335         of a multi-dimensional array.
16337 2006-11-30  Paolo Molaro (lupus@ximian.com)
16339         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
16341 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
16343         * icall.c: back out GetFields () fix until the serialization code is
16344         fixed to not depend on the incorrect behaviour.
16346 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
16348         * profiler.c: provide defaults if none are set.
16350 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
16352         * Makefile.am, attrdefs.h: new public header file with
16353         constants for attributes for use by embedders.
16355 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
16357         * icall.c: GetFields () fix for bug #80064.
16359 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
16361         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
16362         removed long unused icalls.
16364 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
16365   
16366         * marshal.c: 
16367                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
16368                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
16369                 can be generated without a delegate class.
16370                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
16371         
16372         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16374 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16376         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
16377         #80069.
16379 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
16381         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
16382         icall-def.h: added icalls needed by System.GC.
16384 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
16386         * loader.c: ensure the class in catch clauses is handled
16387         correctly for generics methods (fixes bug#79980).
16389 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
16391         * monitor.h, monitor.c: added mono_locks_dump () function
16392         to help debug deadlocks involving managed locks.
16394 2006-11-13  Dick Porter  <dick@ximian.com>
16396         * file-io.c (get_file_attributes): If the file is a symlink try
16397         and get the stat data for the target, but also add the
16398         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
16399         the specs for the windows symlink support, but will probably have
16400         to be reworked when I have test data from a vista machine.  Fixes
16401         bug 79887.
16403 2006-11-13  Dick Porter  <dick@ximian.com>
16405         * gc.c (mono_domain_finalize): 
16406         * marshal.c (mono_delegate_begin_invoke): 
16407         * threadpool.c (socket_io_init, mono_thread_pool_init)
16408         (mono_thread_pool_finish): 
16409         * monitor.c (mono_monitor_try_enter_internal): 
16410         * threads.c (mono_thread_resume, mono_thread_init)
16411         (mono_thread_suspend_all_other_threads)
16412         (mono_thread_execute_interruption): 
16413         * appdomain.c (mono_domain_unload): Check for NULL error returns
16414         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
16415         75733.
16417 2006-11-11  Miguel de Icaza  <miguel@novell.com>
16419         * process.c
16420         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
16421         Only close the handle if the value of the handle is not
16422         INVALID_HANDLE_VALUE.  This just makes the process a bit more
16423         robust.
16425         Improvement for #75733, so that we do not run into this problem. 
16427         
16428         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
16429         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
16430         internal variables.  Fixes #79462 
16431         
16433 2006-11-09  Dick Porter  <dick@ximian.com>
16435         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16436         Use poll() not select().  Fixes bug 79397.
16438 2006-11-09  Raja R Harinath  <rharinath@novell.com>
16440         Fix #79872
16441         * assembly.c (mono_assembly_load_from_full): Check that the given
16442         image has an assembly manifest.
16444 2006-11-09  Ankit Jain  <jankit@novell.com>
16446         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
16447         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
16448         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
16450 2006-11-07  Dick Porter  <dick@ximian.com>
16452         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16453         Put the old resolver behaviour back for pre-2.0 profiles.
16455 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
16457         * threadpool.c: precise GC and locking fixes.
16459 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
16461         * class.c: don't load types that have an explicit unaligned
16462         managed reference. Provide better info in the TypeLoad exception.
16463         Part of the fix for bug #79744.
16464         * object.c: use the correct check for class type load issues.
16466 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
16468         * class.c: enforce alignment of fields with managed references
16469         even when Pack=1 is forced by the user (bug #77788).
16471 2006-11-03  Dick Porter  <dick@ximian.com>
16473         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
16474         If the address reverse lookup fails, return it as the hostname
16475         anyway.  Fixes bug 79721.
16477 2006-11-03  Dick Porter  <dick@ximian.com>
16479         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
16480         Fix build on Windows.
16482 2006-11-02  Dick Porter  <dick@ximian.com>
16484         * icall-def.h: 
16485         * object-internals.h: 
16486         * exception.c (mono_get_exception_thread_interrupted): 
16487         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
16488         Fixes bug 74525.
16490         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
16491         Check for pending Thread.Interrupt.
16493 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
16494         * loader.c: Fixed bug 79684.
16496 2006-10-27  Dick Porter  <dick@ximian.com>
16498         * file-io.c (get_file_attributes): Force symlinks to directories
16499         to be returned as a regular file.  Fixes bug 79733.
16500 2006-10-26  Dick Porter  <dick@ximian.com>
16502         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
16503         CreateFile to open a directory then we need to set the
16504         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
16506 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
16508         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
16509         friends.
16511 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16513         * sgengc.c: small cleanup of timer code.
16515 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
16517         * sgen-gc.c: fix some warnings and start adding support for
16518         complete object removal on domain unload.
16520 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
16522         * assembly.c: build_assembly_name should not consider a version
16523         number without build or revision number invalid. Fixes bug #79715.
16525 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
16527         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
16528         call kernel32 function OutputDebugString directly.
16529         
16530         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
16531         
16532 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
16534         * reflection.c: small cleanup, using a function to insert a MonoString
16535         in the string heap.
16537 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
16539         * reflection.c: moving GC fixes.
16541 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
16543         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
16544         all the objects with finalizers belonging to an unloading appdomain.
16546 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
16548         * sgen-gc.c: added ability to allocate even when the nursery is fully
16549         pinned and fixed a couple of bugs.
16551 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16553         * threads.h: Revert the last change for now.
16555         * threads.h (mono_thread_get_pending_exception): Rename this to
16556         mono_thread_get_undeniable_exception ().
16558 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
16560         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
16561         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
16562         when fname does not refer to valid assembly. This result in a more
16563         meaningful error message.
16564         * exception.c: added mono_get_exception_bad_image_format2 which 
16565         constructs a BadImageFormatException using the ctor taking a custom
16566         message and the file name. Passing in a NULL msg results in a default
16567         message.
16568         * exception.h: define mono_get_exception_bad_image_format2 function.
16569         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
16570         when file name pointed to an invalid IL image. Use 
16571         mono_get_exception_file_not_found2 to construct FileNotFoundException,
16572         as this results in a more meaningful error message.
16574 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
16576         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
16577         #79465.
16579 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
16581         * metadata.c (mono_type_size): Change the align parameter to guint32 for
16582         consistency with the other _size functions.
16583         (mono_type_stack_size): Ditto.
16585         * class.c object.c icall.c: Fix warnings caused by the above change.
16587         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
16589         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
16591         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
16593 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
16595         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
16596         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
16597         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
16598         threadpool.h, threads-types.h: mark more internal functions.
16600 2006-10-11  Dick Porter  <dick@ximian.com>
16602         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
16603         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
16604         reproduce the bug even before applying the fix.)
16606 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
16608         * reflection.c: allow retrieving attributes for arguments in generic
16609         methods (bug #79241).
16611 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
16613         * debug-mono-symfile.c: properly check fopen () result (found by
16614         coverity).
16616 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
16618         * reflection.c: make error message clearer and fixed two
16619         issuelets found by Coverity.
16621 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
16623         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
16625 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
16627         * object-internals.h, gc-internal.h, profiler-private.h:
16628         mark internal functions.
16630 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
16632         * reflection.c: put data in the text section.
16633         * icall.c: recognize more types in type_from_typename ().
16634         * process.c, marshal.c: added some GC FIXMEs.
16636 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16638         * loader.c: check for NULL before initializing.
16640 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
16642         * gc.c (finalizer_thread): Use a non-alertable wait here.
16644         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
16645         until the correct solution is found.
16647 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16649         * reflection.c (mono_module_get_object): Avoid an assert when operating on
16650         modules with no metadata. Fixes #79596.
16652         * image.c (load_metadata_ptrs): Put back the error message when
16653         the #- heap is encountered since the support is not complete yet.
16655 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
16657         * gc.c: do not allow the user to SuppressFinalize () a
16658         delegate because it would leak the trampoline if present.
16660 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
16662         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
16663         PropertyPtr table.
16665 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
16667         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
16669         * metadata.c (mono_metadata_get_param_attrs): Ditto.
16671         * row-indexes.h: Add definitions for *Ptr tables.
16673         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
16675         * metadata.c (mono_metadata_translate_token_index): New helper function to
16676         translate table indexes used in uncompressed metadata.
16677         (mono_metadata_decode_table_row): Ditto.
16678         (mono_metadata_decode_table_row_col): Ditto.
16680         * metadata.c: Add table schema for *Ptr tables.
16682         * class.c loader.c: Use the new helper function to access the affected metadata
16683         tables.
16684         
16685         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
16686         #38532.
16687         
16688 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
16690         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
16691         sequences which can be unbounded in size. Fixes #79583.
16693 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
16695         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
16696         static initialization.
16698         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
16700         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
16702         * domain.c (mono_domain_free): Free up type_init_exception_hash.
16704         * object.c (mono_runtime_class_init): Implement correct semantics when a static
16705         ctor fails, i.e. throw the same exception on subsequent accesses.
16706         
16707 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
16709         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
16710         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
16711         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
16712         Handle marshalling of interfaces and VARIANTs contained in structs.
16713         
16714         Code is contributed under MIT/X11 license.
16715         
16716 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
16718         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
16719         
16720         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
16721         mempool.
16723 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16725         * console-io.c: ignore previous SIGINT handler.
16727 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
16729         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
16730         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
16731         #79460, #79461, #79485.
16733         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
16735         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
16736         #79217.
16738 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
16740         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
16741         could be generated from it.
16743 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
16745         * rand.c: fix read loop to correctly handle EINTR.
16747 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16749         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
16750         internal calls are defined to keep methods closer to the declaring
16751         type and allow a significant reduction in runtime relocations and
16752         memory usage.
16754 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
16756         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
16757         exception message to have FileNotFoundException use the default
16758         assembly load error message. Fixes bug #79426.
16759         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
16761 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16763         * threadpool.c: (start_thread_or_queue) use the root domain when
16764         creating the thread instead of the async object one.
16766 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
16768         * class.c, object.c, class-internals.h, reflection.c:
16769         for arrays, store element_size inside MonoClass (speedup
16770         for array object creation).
16772 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
16774         * icall.c: fixed CodeBase to use the file name and not the module
16775         name (bug #79365).
16777 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
16779         * mono-debug.c, mono-debug.h: export find_method as
16780         mono_debug_find_method ().
16782 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
16784         * debug-helpers.c, class-internals.h: added a few functions useful
16785         when debugging under gdb.
16787 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16789         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
16790         characters that need special handling.
16792 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
16794         * mono-config.c: make the os/cpu specification more flexible,
16795         allowing lists and negation.
16797 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
16799         * marshal.c: COM Interop fixes. Handle case where method->klass.
16800         is interface. Handle BSTR/MonoString when null. Use CDECL as 
16801         calling convention on non-windows platforms. This is for
16802         compatibility with XPCOM and MainWin COM.
16803         
16804         Code is contributed under MIT/X11 license.
16805         
16807 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
16809         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
16810         correctly. Fixes #79217.
16812         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
16814 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
16816         * mono-config.c: allow both an os and cpu attribute for dllmap
16817         and dllentry elemnets to enable a single config file to be used
16818         for multiple architectures.
16820 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
16822         * loader.c: MonoLoaderError was cleared too soon on load failure.
16823         Fixes bug #79424.
16825 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
16827         * icall.c: use the defining class vtable when accessing a
16828         static field, not a pobblibly derived class.
16830 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
16832         * icall.c string-icalls.c: Remove references to unicode.h.
16834         * unicode.h unicode.c Makefile.am: Remove these unused source files.
16836         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
16838         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
16839         indicating the image where custom marshaller types should be looked up.
16840         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
16841         custom marshallers, instead of corlib. Fixes #79425.
16843 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
16845         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
16847 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
16849         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
16850         Implement Environment.ProcessorCount.
16851         
16852         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
16853         Implement Environment.ProcessorCount.
16854         
16855         * icall.c: 
16856         Add Environment.ProcessorCount icall.
16857         
16858         Patch by Jason McFall.
16860 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16862         * assembly.c: don't append .exe/.dll when the filename already contains
16863         one of those extensions.
16865 2006-09-12  Martin Baulig  <martin@ximian.com>
16867         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
16868         to array interfaces.
16870 2006-09-11  Martin Baulig  <martin@ximian.com>
16872         * reflection.c (mono_image_build_metadata): Create the
16873         MethodImpl's after emitting all types and methods, so we don't
16874         need another fixup pass for them.
16876 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
16878         * class.c (mono_class_from_name_case): Fix regression introduced by the last
16879         change.
16881 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
16883         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
16884         unload.
16886 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
16888         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
16889         args is not set. Fixes #78926.
16891 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
16893         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
16895         * image.c (load_class_names): Move this to class.c, and rename it to 
16896         'mono_image_init_name_cache'.
16897         (load_modules): Fix a warning.
16899         * class.c icall.c image.c: Initialize image->name_cache lazily.
16901         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
16902         on its name using information in the AOT file.
16904         * class.c (mono_class_from_name): Use the new hook function.
16906 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
16908         * reflection.c (mono_param_get_objects): Handle enum default parameter values
16909         correctly.
16911         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
16912         Fixes #79289.
16913         
16914 2006-09-06  Martin Baulig  <martin@ximian.com>
16916         * icall.c (mono_lookup_internal_call): Small fix.
16918 2006-09-05  Raja R Harinath  <rharinath@novell.com>
16920         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
16921         double g_free.
16923 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
16925         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
16926         when --debug is specified.
16928 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
16930         * class.c (setup_generic_array_ifaces): Fix a warning.
16932 2006-09-04  Miguel de Icaza  <miguel@novell.com>
16934         * Temporarily remove the patch to assemly.c that checks the
16935         assembly versions as it breaks our gacutil.
16937 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
16939         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
16941         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
16942         a net 1.0 runtime.
16944         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
16945         created using the default ctor. Fixes #79152.
16946         (mono_string_builder_to_utf16): Ditto.
16948 2006-09-01  Martin Baulig  <martin@ximian.com>
16950         Fix handling of the generic array interfaces.
16952         * class-internals.h
16953         (MonoDefaults): Removed `generic_array_class' and added
16954         `generic_ilist' class.
16956         * class.c
16957         (mono_bounded_array_class_get): Add the new generic array interfaces.
16958         (setup_generic_array_ifaces): New static method; create vtable
16959         entries for each method in the generic array interfaces.
16961         * metadata.c
16962         (select_container): Allow "parent-less" generic methods.
16964         * marshal.c
16965         (mono_marshal_get_generic_array_helper): New public method.
16967         * icall.c
16968         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
16969         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
16970         moved the interncall into System.Array.
16972 2006-09-01  Raja R Harinath  <rharinath@novell.com>
16974         A few more cases of avoiding work on types with ->byref set.
16975         Has the real fix for #79238
16976         * icall.c (is_generic_parameter): New helper.
16977         (ves_icall_Type_GetGenericParameterPosition): Use it.
16978         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
16979         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
16980         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
16981         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
16982         reference types.
16983         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
16984         reference types.
16985         (ves_icall_Type_get_IsGenericInstance): Likewise.
16986         (ves_icall_Type_get_IsGenericType): Likewise.
16988 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
16990         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
16991         class if possible.
16993         * mempool.h (mono_mempool_get_allocated): New helper function.
16995         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
16996         change.
16998         * mempool.c: Fix warnings and the calculation of stats.
17000         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
17002         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
17004         * loader.c (mono_get_method_from_token): Update method_count stat.
17006         * class-internals.h (MonoStats): Add some stats.
17008 2006-08-31 Robert Jordan  <robertj@gmx.net>
17010         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
17011         with managed variants.
17012         All code is contributed under the MIT/X11 license.
17013         
17014 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
17016         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
17017         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
17019         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
17021         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
17022         with cycles in classes.
17024         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
17026         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
17027         missing a [MarshalAs] directive. Fixes #79203.
17029         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
17030         klass->marshal_info. Fixes #79217.
17032 2006-08-30  Martin Baulig  <martin@ximian.com>
17034         Committing a patch from Joachim Ante <joe@otee.dk>:
17035         Add support for binary data symbol stores.
17037         * debug-mono-symfile.c
17038         (mono_debug_open_mono_symbol_file): Renamed into
17039         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
17040         arguments.
17042         * mono-debug.c
17043         (mono_debug_open_image): Added `raw_contents' and `size' args.
17044         (mono_debug_init_2_memory): New public function.
17046 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
17048         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
17050 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17052         * appdomain.c: implement support for ShadowCopyFiles.
17054 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
17056         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
17057         when value is NULL (and should remove CID #51).
17059 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17061         * image.c: moved 2 functions to ../utils.
17063 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
17065         * gc.c: cope with the target object of a GC handle being NULL
17066         (bug #78877).
17068 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
17070         * class.c: recursively check parent's explicit implementations
17071         of interface methods (fixes bug #79125).
17073 2006-08-19  Miguel de Icaza  <miguel@novell.com>
17075         * filewatcher.c: Avoid warnings when building, do not redefine
17076         constants that are defined.
17078         Remove warnings.
17080 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17082         * image.c: don't fail when the link points to an absolute path.
17084 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
17086         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
17087         Fix CID #3.
17089 2006-08-17  Miguel de Icaza  <miguel@novell.com>
17091         * image.c (full_path): A new method used to obtain the actual path
17092         of an assembly even in the presence of symbolic links.  
17094         This is necessary for the case where we are running a binary that
17095         has been GACed, but we are using the "published" path name
17096         ($prefix/mono/1.0/blah.exe) which happens to point to the real
17097         file in the GAC.
17099         This was the source of the failure for the `xsp' command with the
17100         recent AppDomain changes, as far as the runtime was concerned,
17101         there were two different assemblies: $prefix/mono/1.0/blah.exe and
17102         $prefix/mono/gac/blah/version/blah.exe.
17104         (do_mono_image_open): use full path
17106 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17108         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
17110 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
17112         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
17113         domain_id is supplied. Fix CID #241 and corlib's unit tests.
17115 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17117         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
17118         small structures. Fixes #78990.
17120 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
17122         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
17124         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
17126 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17128         * appdomain.c:
17129         * marshal.c: don't load all the assemblies from a domain into newly
17130         created ones. The new domains might have different rules and load
17131         assemblies from different locations. Fixes bug #76757.
17133         Patch by Lluis. Conflicts resolved by Brian Crowell.
17135 2006-08-16  Alp Toker  <alp@atoker.com>
17137         * socket-io.c: First half of the fix for #79084.
17138         Set sa_size to the length of the content, not that of the struct.
17139         Don't add NULL suffix to the content, this should be done in
17140         managed code if needed.
17142 2006-08-14  Raja R Harinath  <rharinath@novell.com>
17144         Fix part of #79012
17145         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
17146         mono_metadata_parse_type returns NULL.
17148 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
17150         * normalization-tables.h : new file for string normalization data.
17151         * locales.c, locales.h, icall.c :
17152           added load_normalization_resource() for string normalization,
17153           and icall as well.
17154         * Makefile.am : added normalization-tables.h to the sources.
17156 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
17158         * marshal.c: Add more helper functions to reduce code duplication and use them
17159         everywhere.
17161 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
17163         * marshal.c: Fix non-x86 stdcall warnings.
17164         
17165         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
17166         them everywhere.
17168 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
17170         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
17171         type check on multi-dimensional arrays. Fixes #79000.
17173 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
17175         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
17176         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
17177         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
17178         * class-internals.h: add is_com_object to class structure.
17179         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
17180         null checks to COM object marshalling. Fix .ctor call on RCW.
17181         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
17182         
17183         All code is contributed under the MIT/X11 license.
17185 2006-08-09  Dick Porter  <dick@ximian.com>
17187         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
17188         racing mono_monitor_allocator_lock() somewhere, so don't delete
17189         the critical section for now.  Found by running and exiting
17190         monodevelop.
17192 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
17194         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
17195         (ves_icall_System_ComObject_FindInterface): Ditto.
17196         (ves_icall_System_ComObject_CacheInterface): Ditto.
17198         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
17199         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
17201 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17203         * threadpool.c: treat pipes from process asynchronous reads as sockets
17204         when reading from them, so we get select/poll or epoll to wait for
17205         data.
17207 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
17209         * loader.c: Fix a typo (CID #233) in the null check.
17211 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
17213         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
17214         Hopefully fixes #78949.
17215         
17216         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
17217         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
17218         bytes. Fixes #78972.
17220 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17222         * filewatcher.c: we need to set errno here.
17224 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17226         * filewatcher.c: let Win32Exception get the error value.
17228 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17230         * filewatcher.c: translate errno into win32 errors for Win32Exception
17231         to know what happened.
17233 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
17235         * threadpool.c: Fix more warnings.
17237         * assembly.c (search_loaded): Fix warnings.
17239         * threadpool.c (mono_thread_pool_finish): Fix warnings.
17240         (mono_async_invoke): Ditto.
17242 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
17244         * object.c (mono_remote_class_vtable): Need to create proxy vtable
17245         entries for __ComObject type in addition to ComImport types.
17246         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
17247         about hash table.
17248         
17249         All code is contributed under the MIT/X11 license.
17251 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
17253         * image.c: avoid tentative loading of modulerefs that contain
17254         no metadata (P/Invoke library names).
17256 2006-07-28  Dick Porter  <dick@ximian.com>
17258         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
17259         mono_loader_lock() somewhere, so don't delete the critical section
17260         for now.  Found by running and exiting monodevelop.
17262 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17264         * filewatcher.c: define the inotify syscalls when we're building on
17265         linux and have sys/syscall.h. The build system might not have support
17266         for inotify but the target system might have it.
17268 2006-07-26  Miguel de Icaza  <miguel@novell.com>
17270         * domain.c: Documentation updates.
17272         * loader.c (mono_free_method): Do not release the method
17273         information if we are being profiled, as profilers will use this
17274         information at shut down to present some data to the user.
17276         This is needed so that the profiler does not crash, as the
17277         profiler tends to keep MonoMethods around, and they might become
17278         invalid if we free these.
17280         (mono_get_method_constrained): Return the original CIL stream
17281         method as well, so verification can be performed against it.
17283 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17285         * filewatcher.[ch]: support for inotify file system watcher.
17286         * icall.c: add new internal calls for the inotify file system watcher.
17288 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17290         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
17291         #78888.
17293 2006-07-20  Dick Porter  <dick@ximian.com>
17295         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
17296         warning.
17298 2006-07-20  Dick Porter  <dick@ximian.com>
17300         * threads.c (start_wrapper): Do the thread cleanup while we still
17301         hold a reference to its object.  Fixes bug 78123.
17303 2006-07-18  KornĂ©l Pál  <kornelpal@gmail.com>
17305         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
17306         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
17307           "managed-to-managed".
17308         * icall.c: Redirect string constructors that take sbyte* to
17309           ves_icall_System_String_ctor_RedirectToCreateString.
17310         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
17311           to CreateString () methods with matching signature.
17312         * reflection.c: Use original security informations for
17313           MONO_WRAPPER_MANAGED_TO_MANAGED.
17314         * security-manager.c: Use original security informations for
17315           MONO_WRAPPER_MANAGED_TO_MANAGED.
17316         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
17317           that is a placeholder and only its address should be used.
17318         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
17319           that is a placeholder and only its address should be used.
17321 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
17323         Begin implementing COM Interop.
17324         * appdomain.c: Increment corlib version.
17325         * class.c: Set ComImport classes' parent to __ComObject.
17326         * loader.c: Mark cominterop methods as such.
17327         * domain.c: Add __ComObject class to MonoDefaults structure.
17328         * image.c: Add 2 hashtables to the image for COM Interop related methods
17329         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
17330         using the mempool allocator
17331         
17332         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
17333         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
17334         declaration for mono_metadata_type_dup_mp.
17335         
17336         * debug-helpers.c: Added strings for two additional wrapper types
17337         * object.c: Create proxy objects for ComImport classes
17338         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
17339         and added __ComObject class to MonoDefaults structure.
17340         
17341         * object-internals.h: Finish MonoRealProxy definition, and add definition of
17342         MonoComInteropProxy and MonoComObject.
17343         
17344         * marshal.c: Added support for COM Interop
17345         (signature_cominterop): Converts managed signature to corresponding
17346         unmanaged COM signature.
17347         (cominterop_get_function_pointer): gets unmanaged function pointer via
17348         COM object vtable
17349         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
17350         (cominterop_get_method_interface): returns interface type that method is defined on
17351         (mono_mb_emit_cominterop_call): emits native call to function pointer
17352         gotten from vtable
17353         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
17354         that matches signature of unmanaged function.
17355         (cominterop_get_native_wrapper): wrapper around adjusted method call.
17356         (cominterop_get_invoke): forwards call from proxy to __ComObject
17357         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
17358         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
17359         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
17360         
17361         * marshal.h: Added Marshal icall declarations.
17362         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
17363         so we can access them in finalizer
17364         
17365 2006-07-14  Dick Porter  <dick@ximian.com>
17367         * object.c (mono_type_initialization_cleanup): Fix a race
17368         condition by temporarily commenting out the critical section
17369         deletion.
17371 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
17373         * reflection.c (create_custom_attr): Fix some warnings.
17374         (create_custom_attr_data): Ditto.
17375         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
17376         types. Fixes #78855.
17378 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
17380         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
17382         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
17384 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
17386         * reflection.c (resolve_object): Add support for DynamicMethod.
17388         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
17389         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
17391 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
17393         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
17394         don't leak GPtrArray's pdata has we have no use (nor free) for it.
17396 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
17398         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
17399         Fixes #77888.
17401 2006-06-30  Raja R Harinath  <rharinath@novell.com>
17403         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
17404         slightly: remove a shadow local variable.
17406 2006-06-29  Raja R Harinath  <rharinath@novell.com>
17408         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
17409         definition that introduces the virtual function slot.
17410         Also fix Coverity #105.
17412 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
17414         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
17415         for dynamic assemblies. Fixes #78724.
17417 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
17419         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
17420         Fixes #78722.
17422 2006-06-21  Martin Baulig  <martin@ximian.com>
17424         * reflection.c
17425         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
17426         fixes #76484.
17428 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
17430         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
17432 2006-06-20  Raja R Harinath  <rharinath@novell.com>
17434         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
17435         nor TYPEREFs.
17436         * class.c (mono_class_create_from_typespec): Add 'context' argument.
17437         Inflate result if necessary.
17438         (mono_class_get_full): Remove old version.  Rename from
17439         'mono_class_get' and add 'context' argument.  Pass it to
17440         ..._create_from_typespec.
17441         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
17442         (mono_ldtoken): Revert change below.
17444 2006-06-20  Martin Baulig  <martin@ximian.com>
17446         * class.c (mono_ldtoken): Don't pass the generic context to
17447         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
17449 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
17451         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
17452         and later freeing it. Fixes #78638.
17454 2006-06-15  Miguel de Icaza  <miguel@novell.com>
17456         * icall.c (mono_class_get_throw): Revert over-zealous error
17457         throwing, the caller for mono_class_get_throw will cope with
17458         errors when classes are not properly initialized already.
17460         The code still copes with loader exceptions though.
17462         Fixes the regression in reftype1 and reftype3 from the CAS tests.
17463         
17464 2006-06-14  Miguel de Icaza  <miguel@novell.com>
17466         Fixes the `make run1' version of RuntimeAbort (to be commited,
17467         source is in Bugzilla).
17468         
17469         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
17470         FALSE on class loading failure instead of returning true.
17472         * class.c (mono_class_create_from_typedef): It is possible for
17473         mono_metadata_interfaces_from_typedef_full to fail if a class is
17474         not found, cope with this.
17475         
17477 2006-06-14  Dick Porter  <dick@ximian.com>
17479         * socket-io.c: 
17480         * process.c: Fix a bunch of signed/unsigned warnings from gcc
17481         4.1.1
17483 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
17485         * culture-info-table.h : oops, forgot to make it nsync with r61548.
17487 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17489         * icall.c: Another fix for building mono in Visual Studio.
17491 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17493         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
17494         
17495 2006-06-09  Martin Baulig  <martin@ximian.com>
17497         * debug-mono-symfile.c: Put this back and really fix it this
17498         time. Sorry for all the trouble.
17500 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
17502         * icall.c (mono_class_get_throw): Fix a warning.
17503         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
17504         ReflectionTypeLoadException if needed. Fixes #78606.
17506         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
17507         (mono_class_init): Ditto.
17509         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
17510         ref_only exceptions.
17511         (mono_loader_clear_error): Make this work even if there is no error.
17513 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
17515         * object-internals.h marshal.c marshal.h icall.c: Implement method 
17516         Marshal.GetComSlotForMethodInfo using internal call.
17518 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
17520         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
17521         a function for signalling it.
17523         * class.c (mono_class_from_typeref): Use the new kind of loader error when
17524         a referenced assembly is not found.
17526         * loader.c (mono_loader_error_prepare_exception): Add support for 
17527         LOADER_ERROR_ASSEMBLY. Fix formatting.
17529 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17531         * domain.c appdomain.c class-internals.h marshal.c: Add support 
17532         for VARIANT marshalling on windows and increment corlib version
17533         since Variant struct was added.
17535 2006-06-03  Miguel de Icaza  <miguel@novell.com>
17537         * debug-mono-symfile.c: Revert Martin's previous patch which broke
17538         stack trace line information:
17540         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
17541         (Martin) when looking up B which is between A and C, return A not C.
17543         Bug is #78573.
17545         Thanks to Alexander Olk for tracking this down.
17547 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
17549         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
17550         
17551         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
17552         avoid clobbering its value.
17553         (mono_string_to_lpstr): Fix a warning on windows.
17555 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17557         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
17559         * reflection.c loader.c: Removed references to 'dummy' flag.
17561         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
17563         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
17564         it gets GC tracking.
17566         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
17567         GC tracking.
17568         
17569         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
17571         * marshal.c threadpool.c: Update callers of mono_async_result_new.
17573         * appdomain.c: Bump corlib version.
17575 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17577         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17578         CEE_STIND_REF when working with object references.
17580 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
17582         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
17583         Fixes #78539.
17585 2006-05-30  Miguel de Icaza  <miguel@novell.com>
17587         * loader.c (method_from_memberref): Fix argument value for
17588         mono_loader_set_error_method_load (I was passing the MonoClass
17589         instead of the class name char *).
17591 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
17593         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
17594         CEE_STIND_REF when working with object references.
17596 2006-05-30  Martin Baulig  <martin@ximian.com>
17598         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
17599         mono_method_full_name() change and replace the ':' with a '.'
17600         here.
17602 2006-05-30  Martin Baulig  <martin@ximian.com>
17604         * debug-mono-symfile.c
17605         (mono_debug_symfile_lookup_location): Fix the algorithm:
17606         when looking up B which is between A and C, return A not C.
17608 2006-05-29  Martin Baulig  <martin@ximian.com>
17610         * mono-debug.h
17611         (MonoDebugMethodInfo): Make the typedef public.
17612         (MonoDebugSourceLocation): New public struct.
17614         * mono-debug.c
17615         (mono_debug_source_location_from_address): Removed.
17616         (mono_debug_source_location_from_il_offset): Removed.
17617         (mono_debug_il_offset_from_address): Removed.
17618         (mono_debug_address_from_il_offset): Removed.
17619         (mono_debug_lookup_method): New public function.
17620         (mono_debug_lookup_source_location): New public function; replaces
17621         the old mono_debug_source_location_from_*() functions; see the
17622         inline documentation.
17623         (mono_debug_free_source_location): New public function.
17624         (mono_debug_print_stack_frame): New public function; see the
17625         inline documentation.
17627         * debug-mono-symfile.c
17628         (mono_debug_find_source_location): Renamed into
17629         mono_debug_symfile_lookup_location(); only take a
17630         `MonoDebugMethodInfo *' and an `offset' argument; added inline
17631         documentation.
17632         (mono_debug_find_method): Renamed into
17633         mono_debug_symfile_lookup_method().
17635 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
17637         * assembly.c (mono_assembly_open_full): Dont overwrite the status
17638         returned by mono_image_open_full ().
17640         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
17641         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
17642         #78517.
17644         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
17645         #78518.
17647 2006-05-27  Miguel de Icaza  <miguel@novell.com>
17649         * class.c (mono_class_from_typeref): handle missing images
17650         earlier, deals with bug #78418.   Refactor code; 
17652         Fix a warning introduced in my previous commit (some stale code
17653         from before I revisited my patch).
17655         * class.c (mono_class_create_from_typedef): On failure, remove the
17656         class from the MonoImage->class_cache as the class is not
17657         initialized;   Fixes the leak pointed out by Paolo.
17659 2006-05-25  Dick Porter  <dick@ximian.com>
17661         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
17662         DeleteCriticalSections until I figure out which one may still be
17663         sometimes locked when mono_thread_cleanup is called.
17665 2006-05-24  Dick Porter  <dick@ximian.com>
17667         * threads.c (mono_thread_cleanup): Move the threading cleanup out
17668         of mono_thread_manage and back into its own function, so it can be
17669         called after the finalizer thread has finished.
17671         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
17673 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
17675         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
17676         Fixes #78495.
17678         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
17679         with non-blittable elements.
17680         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
17682 2006-05-24  Martin Baulig  <martin@ximian.com>
17684         * mono-debug-debugger.h (MonoDebuggerEvent): Added
17685         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
17687         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
17688         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
17689         `mono_debugger_event_handler' to NULL.
17691 2006-05-24  Martin Baulig  <martin@ximian.com>
17693         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
17695 2006-05-24  Martin Baulig  <martin@ximian.com>
17697         * mono-debug-debugger.h
17698         (mono_debugger_create_notification_function): Added
17699         `MonoCodeManager *' argument.
17701 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
17703         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
17705 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
17707         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
17708         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
17709         implementation.
17711 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
17713         * icall.c: precise GC support: objects can't be stored in unmanaged
17714         memory anymore, even if they are kept alive by other references: since
17715         they can move the GC needs to be able to always find them.
17717 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17719         * object.c: precise GC support for static fields. Support
17720         for moving GCs: write barriers and pinned allocation for interned
17721         strings.
17723 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17725         * domain.c, domain-internals.h: precise GC support for the MonoDomain
17726         structure.
17728 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17730         * class.c, gc.c: sgen and precise GC updates.
17732 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
17734         * marshal.h, marshal.c: added write barrier wrapper and precise type
17735         fixes.
17737 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
17739         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
17740         support.
17742 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
17744         * reflection.c: precise and sgen GC updates.
17746 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
17748         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
17750 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
17752         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
17754 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
17756         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
17757         MONO_TYPE_OBJECT. Fixes #78462.
17759 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
17761         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
17762         and blittable types.
17764 2006-05-17  Miguel de Icaza  <miguel@novell.com>
17766         * class.c (mono_class_get_exception_for_failure): Implement parts
17767         of a TODO: if the loader error is set (instead of the class
17768         error), we return a Loader exception that can be properly thrown
17769         elsewhere.
17771         This was exposed by some Winforms 2.0 code that I tried to run
17772         (Atsushi pointed me to it).
17774 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
17776         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
17777         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
17778         
17779         * marshal.c (emit_marshal_vtype): Add limited support for 
17780         UnmanagedType.LPStruct. Fixes #78427.
17782         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
17783         Applied a patch from kangaroo to fix #77523.
17785 2006-05-17  Martin Baulig  <martin@ximian.com>
17787         * threads.c
17788         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
17789         (debugger_thread_created): Removed.
17790         (debugger_thread_exited): Removed.
17792 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
17794         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17796         * object-internals.h (MonoReflectionResource): Sync with managed version.
17798 2006-05-12  Wade Berrier <wberrier@novell.com>
17800         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
17802 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
17804         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
17805         functions try to allocate from the image mempool.
17807 2006-05-12  Dick Porter  <dick@ximian.com>
17809         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
17811 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
17813         * object.c: The FieldGetter and FieldSetter methods require the full
17814         name of the class, not only the name. Fixes bug #78277.
17816 2006-05-11  Miguel de Icaza  <miguel@novell.com>
17818         * loader.c (method_from_memberref): Do not pass the NULL klass to
17819         mono_loader_set_error_() methods.  Pass the non-NULL value
17820         (class). 
17822 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
17824         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
17825         (mono_assembly_close): Null out assembly->image->references after freeing it.
17827         * image.c (mono_image_close): Free image->references.
17828         
17829         * reflection.c (mono_image_basic_init): Fix a small memory leak.
17831 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17833         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
17834         before checking if it's NULL (g_assert).
17836 2006-05-10  Martin Baulig  <martin@ximian.com>
17838         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
17839         I thought I already killed that two months ago, but now it somehow reappeared.
17841 2006-05-10  Martin Baulig  <martin@ximian.com>
17843         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
17845 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
17847         * reflection.c: Allocate memory for dynamically created methods in the image
17848         mempools.
17850 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
17852         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
17853         don't use the ad pointer before checking if it's NULL (g_assert).
17855 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
17857         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
17858         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
17860         * marshal.c: Allocate all signatures from mempools.
17862         * marshal.c: Allocate some more signatures from mempools.
17864 2006-05-09  Miguel de Icaza  <miguel@novell.com>
17866         * object.c (mono_load_remote_field): The code used to provide a
17867         temporary variable for returning results if the user did not
17868         provide a result pointer.  But our temporary variable was allocted
17869         on the satck.
17871         Fix calling code to always pass a result area.   Coverity ID 103.
17873 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
17875         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
17876         value, not the old. Fixes #78312.
17877         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
17879         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
17880         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
17881         per-image cache.
17883         * assembly.c (mono_assembly_close): Free image->references.
17885         * assembly.c (mono_assembly_names_equal): Fix a warning.
17886         (mono_assemblies_cleanup): Cleanup more global data.
17888         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
17890         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
17891         ptr_cache and image->modules.
17893         * image.c (mono_image_init): Allocate array_cache lazily.
17894         
17895 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17897         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
17898         behavior was changed recently and has bad side effects.
17900 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
17902         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
17903         
17904         * assembly.c (mono_assembly_close): Remove a debug printf.
17906         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
17908         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
17909         to also allow for temporary references between mono_image_open ()/close ().
17911         * domain.c (get_runtimes_from_exe): Add a FIXME.        
17913 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
17915         * marshal.c: Fix support for dynamic methods.
17917         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
17919         * marshal.c (mono_marshal_cleanup): New cleanup function.
17921         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
17922         image mempools.
17924         * class.c (mono_class_init): Fix leaking class->nested_classes.
17926         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
17928         * image.c (mono_image_init): Initialize the new cashes.
17930         * image.c (mono_image_close): Destroy the new cashes.
17932         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
17934         * mempool.c (mono_mempool_strdup): New helper function.
17936         * class-internals.h: Add prototype for mono_loader_unlock ().
17938         * domain.c (mono_jit_info_table_find): Fix a warning.
17939         (mono_debugger_check_runtime_version): Ditto.
17941         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
17942         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
17943         functions to these modules.
17945         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
17946         metadata modules.
17947         
17948         * marshal.c (mono_free_bstr): Fix a warning.
17950         * assembly.c (mono_assembly_open_full): Fix another small leak.
17952         * object.c: Fix some unload leaks in the remoting code.
17954         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
17955         function.
17957         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
17959         * reflection.c: Fix some unload leaks in dynamic assemblies.
17961 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
17963         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
17964         * marshal.h: Add BSTR support on Win32
17965         * icall.c: Add BSTR icalls
17966         * metadata.h: Add BSTR enums
17968 2006-04-28  Miguel de Icaza  <miguel@novell.com>
17970         Work to catch the crash from #76795 and turn it into an
17971         exception.   As I stubbed out pieces of the VisualBasic support,
17972         I found a number of places where the code was failing and I added
17973         checks to those places. 
17974         
17975         * metadata.c (do_mono_metadata_parse_generic_class): Make this
17976         function return a status code.  If we fail to parse the signature
17977         from mono_metadata_parse_generic_inst, return FALSE.
17979         * loader.c (mono_get_method_from_token): If we fail to load the
17980         method (mono_class_get) return NULL.   
17982         * (method_from_memberref): Return NULL if we are unable to parse
17983         the method signature
17985         (mono_loader_error_prepare_exception): Since we now use the
17986         loader_error flag internally to stop processing, and obtaining
17987         exceptions that might be thrown will walk this code path the
17988         proper way of going from a MonoLoaderError into a
17989         MonoException was convoluted.   This new routine encapsulates the
17990         process of turning the error into an exception and *clearing* the
17991         error afterwards.
17992         
17993 2006-04-27  Miguel de Icaza  <miguel@novell.com>
17995         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
17996         with missing assemblies), and to cope with:
17998                 * Missing fieldref from a non-existing assembly.
17999                 * Missing methodref from a non-existing assembly.
18001         The first batch of work to address *some* of the issues from 76661.
18002         
18003         * object.c (mono_class_create_runtime_vtable): If we fail to
18004         initialize the class raise the exception here. 
18006         * metadata.c (mono_class_get_overrides_full): If any methods fail
18007         to load return the failure to the caller.
18009         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
18010         flagging assemblies that failed to load.   
18012         Do not crash if we are unable to load the assembly.
18014         (mono_assembly_close): Do nothing with REFERENCE_MISSING
18015         assemblies. 
18017         * loader.c (mono_loader_set_error_type_load): Change the
18018         convention to always pass unallocated strings, so we make our own
18019         copies (I know our own code had duplicated strings before, but
18020         this keeps the normal conventions).
18021         (method_from_memberref): Call mono_loader_set_error_method_load
18022         for all possible failures of loading the class. 
18023         Remove assert, turn into a loader error.
18025         (mono_loader_error_to_exception): Move this routine from mini
18026         (mini_loader_error_to_exception) there was no need to have that in
18027         mini. 
18029         * class.c (mono_class_from_typeref): If we were not able to load
18030         the assembly with mono_assembly_load_reference, call the
18031         mono_loader_set_error_type_load to register the problem.
18033         (mono_class_setup_fields): If we fail to load the type from
18034         mono_metadata_parse_type_full, call mono_class_set_failure and
18035         break from the loop.
18037         If class->exception_type is set, we do not layout the fields as
18038         that might crash the runtime, and instead return (from breaking
18039         from the previous loop).
18041         (mono_class_setup_vtable): This now returns a boolean indicating
18042         whether the table was properly setup.   The decision is driven by
18043         mono_class_get_overrides_full which might run into non-existing
18044         methods. 
18045         
18046         (mono_class_init): Returns TRUE on success or FALSE if there was a
18047         problem in loading the type (incorrect assemblies, missing
18048         assemblies, methods, etc).
18050         When we call mono_class_setup_fields we also check for a potential
18051         error inside this call (either a class exception or a general
18052         loader exception).
18054         (mono_class_create_from_typedef): If the parent fails to load
18055         (calling mono_class_get_full) return NULL.
18056         
18057         ** Important **
18059         calls to mono_metadata_parse_type_full should be checked
18060         everywhere and set the mono_class_set_failure
18061         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
18063         The current patch checks the places where my manually constructed
18064         tests show the errors are showing up, but we should do it
18065         everywhere. 
18067         ** Important2 **
18069         mono_class_init return values should be tested everywhere, like
18070         the previous case this is something that we should audit
18071         everywhere and not only on the cases exposed by the tests I
18072         created. 
18074 2006-04-26  Miguel de Icaza  <miguel@novell.com>
18076         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
18077         boolean parameter and instead pass the information on `options'
18078         parameter (FileOptions).
18080         * icall.c: Register the new signature for MonoIO.Open.
18082         * debug-helpers.c (dis_one): Trying to understand how coverity
18083         works.  Fix Run 5, item 78.
18085 2006-04-26  Dick Porter  <dick@ximian.com>
18087         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
18088         dereference.
18090 2006-04-25  Martin Baulig  <martin@ximian.com>
18092         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
18094         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
18095         debugger_thread_created().
18096         (debugger_gc_push_all_stacks): Don't handle the main thread in any
18097         special way.
18098         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
18099         (mono_debugger_finalize_threads): New function; undo the effects
18100         of mono_debugger_init_threads().
18101         (mono_debugger_create_all_threads): Removed.
18103 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
18105         * image.c (mono_image_close): Tidy up trace messages.
18107         * assembly.c (mono_assembly_close): Ditto.
18109         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
18110         no longer references an already freed assembly. Fixes #78168.
18112 2006-04-21  Dick Porter  <dick@ximian.com>
18114         * threads.c (mono_thread_detach): Fix reference counting when
18115         detaching threads.
18117 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
18119         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
18120         #78155.
18122 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
18124         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
18125         (mono_type_to_stind): Ditto.
18127         * marshal.c: Use the new helper functions to simplify code.
18129         * image.c (mono_image_close): Add some code for help debug assembly unloading
18130         problems.
18132         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
18133         image mempool.
18135         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
18136         assembly was already loaded in another appdomain. Fixes #78083.
18138 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
18140         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
18141         referenced assemblies.
18142         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
18144         * domain.c (mono_domain_free): Add a trace message.
18146         * appdomain.c (add_assemblies_to_domain): Ditto.        
18148         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
18149         field.  
18151 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18153         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
18155 2006-04-12  Martin Baulig  <martin@ximian.com>
18157         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
18158         `USE_INCLUDED_LIBGC'.   
18160 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
18162         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
18163         the patch contains ../ and a small directory name later. Hopefully fixes
18164         #78035.
18166 2006-04-10  Martin Baulig  <martin@ximian.com>
18168         Clean up the debugger's thread-handling code.
18170         The debugger's thread-handling code has been moved from
18171         ../mini/debug-debugger.c to threads.c.  We now iterate directly
18172         over the `threads' hash, keep track of exiting threads and also
18173         use proper locking.
18175         We can now debug XSP and XSP based applications with the debugger.
18177         * object-internals.h (MonoThread): Added `gpointer end_stack'.
18179         * threads.h
18180         (MonoThreadCallbacks): Removed; this was only used by the debugger.
18181         (mono_install_thread_callbacks): Likewise.      
18183         * threads.c (mono_thread_callbacks): Removed.
18184         (debugger_thread_created, debugger_thread_exited): New static functions.
18185         (start_wrapper): Call debugger_thread_created().
18186         (thread_cleanup): Call debugger_thread_exited().
18187         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
18188         (mono_debugger_init_threads): New public function.
18189         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
18190         iterate directly over the `threads' hash and also use proper locking.
18192         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
18194         * mono-debug-debugger.h
18195         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
18197 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
18199         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
18200         argument type=array. Fixes #78057.
18202 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
18204         * culture-info-table.h : regenerated. Fixed bug #69652.
18206 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
18208         * loader.c metadata.c: Reapply a variant r59116.
18209         
18210         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
18212         * class.c (mono_class_setup_interface_offsets): New internal function.
18214         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
18215         interfaces too. Fixes #77398.
18217         * reflection.c (encode_cattr_value): Add support for 
18218         parameter type=object, argument type=array.
18219         (load_cattr_value): Ditto. Fixes #77916.
18221         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
18222         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
18224         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
18225         a byval char array and CharSet is Ansi.
18227         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
18229 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
18231         * metadata.c: Add some locking comments.
18232         
18233         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
18234         mempool.
18235         (mono_metadata_free_method_signature): Don't free the signature itself.
18237         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
18239         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
18240         reference the same MonoImage.
18241         (mono_assembly_load_from_full): Add an assert.
18243 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
18245         * image.c (mono_image_close): Don't put the image we are about to free into the
18246         loaded_images_guid_hash.
18248         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
18249         to reduce code duplication.
18251         * marshal.c: Register the native functions called by this module as icalls, to
18252         somewhat centralize the creation of MonoMethodSignature's.
18254         * loader.c (mono_method_signature): Add a cache for method signatures.
18256         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
18257         the parameter attributes of a method.
18258         (mono_metadata_parse_method_signature_full): Refactored the computation of
18259         parameter attributes into a separate function. Also avoid one allocation in
18260         most cases.
18262         * assembly.c (mono_assembly_close): Ditto.
18264         * image.c (mono_image_close): Log trace messages with INFO level.
18266         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
18268         * image.c reflection.c: Correct reference counting of image modules.
18269         
18270         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
18271         of this function from the image mempool.
18272         
18273         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
18274         to allow more cached types to be used.
18276         * mono-debug.c (mono_debug_add_method): Appled patch from
18277         David S. Miller  <davem@sunset.davemloft.net>: Access 
18278         minfo->lexical_blocks[] entry elements using read32().
18280 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
18282         * loader.c (mono_free_method): No longer free the method header for non-dynamic
18283         methods as it is allocated from the mempool.
18285         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
18286         image mempool.
18288         * metadata-internals.h: Add comments describing the reference counting scheme
18289         used for MonoImage and MonoAssembly.
18291         * image.c assembly.c reflection.c: Rework reference counting of images and 
18292         assemblies so they are freed when the runtime is shut down. Free some 
18293         additional memory structures when an image is unloaded.
18294         
18295 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
18297         * class.c loader.c reflection.c: Allocate more data structures in
18298         the image mempool.
18300 2006-03-31  Miguel de Icaza  <miguel@novell.com>
18302         * icall.c
18303         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
18304         build on pre glib 2.4 systems.
18306 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
18308         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
18310         * icall.c: Fix some warnings.
18312 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
18314         * culture-info-table.h : regenerated.
18316 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
18318         * threads.c, object-internals.h, verify.c: changed the culture caching
18319         code to use a normal MonoArray for storage so the GC can keep track of
18320         them easily. Fixed bits of the cache logic, too and simplified the
18321         code.
18323 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
18325         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
18326         thread for non-Boehm GCs.
18328 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
18330         * domain.c, object.c, domain-internals.h: reduce the amount of memory
18331         needed to keep track of the data for static fields.
18333 2006-03-29  Raja R Harinath  <rharinath@novell.com>
18335         Fix #75172
18336         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
18337         for interface classes.  Use 'num_methods' instead.
18338         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
18339         before using '->vtable_size' field.
18341 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
18343         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
18344         doesn't contain managed pointers, so use a normal hashtable.
18346 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
18348         * reflection.c, class-internals.h, domain.c: fixed handling of types
18349         used as values for objects in custom attributes (bug #77915):
18351 2006-03-24  Martin Baulig  <martin@ximian.com>
18353         * class.c (mono_class_setup_fields): Added support for generic
18354         instances; fixes #77580.
18356 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18358         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
18360 2006-03-24  Dick Porter  <dick@ximian.com>
18362         * file-io.c (get_file_attributes): More stat macro breakage.
18363         Fixes bug 77759.
18365 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
18367         * profiler.c: added the file=filename option in the default profiler
18368         to output the profile data to filename.
18370 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18372         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
18373         bug #77877.
18375 2006-03-22  Martin Baulig  <martin@ximian.com>
18377         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
18378         allocated `MonoClassField *' in `fb->handle'.
18380 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
18382         * class.c, image.c, metadata-internals.h: implemented new mechanism to
18383         allocate interface ID to save memory and allow better ID reuse on
18384         appdomain unload. setup_generic_vtable () removal from Martin.
18386 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18388         * object.h, appdomain.c, domain.c, exception.c, icall.c,
18389         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
18390         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
18391         write barriers for reference stores with managed objects accessed with
18392         C structures in the runtime and in embedding programs.
18394 2006-03-20  Raja R Harinath  <rharinath@novell.com>
18396         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
18397         'interface_id' and 'max_interface_id' fields of MonoClasses
18398         representing open generic types.
18400 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
18402         * object.h, object.c, icall.c: added functions to deal with
18403         storing valuetypes that contain references in managed objects.
18404         * reflection.c, string-icalls.c, threads.c, marshal.c: small
18405         fixes and comments around uses of mono_array_addr ().
18407 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
18409         * object.h, icall.c, monitor.c: object.GetHashCode ()
18410         implementation that supports the moving garbage collector.
18412 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
18414         * icall.c, threads-types.h, threads.c: implemented finalizer for
18415         LocalDataStoreSlot.
18417 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
18419         * metadata.c (mono_type_size): Add a fixme.
18420         (mono_type_stack_size): Ditto.
18422         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
18423         'type_forwarders' field.
18425         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
18426         attribute from net 2.0.
18428         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
18429         from class.c.
18431         * class.c (mono_class_setup_fields): Fix a warning.
18432         
18433         * class.c (mono_class_from_name): Add support for assemblyref entries
18434         in the EXPORTEDTYPE table.
18436         * reflection.c: Add support for handling type forwarders under net 2.0.
18438         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
18439         
18440 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
18442         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
18443         overwriting entries in ModuleBuild->types, also clean up the code
18444         a little. Fixes #77774.
18446 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
18448         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
18449         load friend assembly info when present.
18451 2006-03-14  Raja R Harinath  <rharinath@novell.com>
18453         Fix crasher on gtest-158.cs.
18454         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
18455         the return value if the MonoClass we want is yet in an
18456         inconsistent state.
18457         * class.c (mono_class_create_from_typedef): Add an comment
18458         explaining an order dependency between mono_class_setup_parent and
18459         mono_class_setup_mono_type.
18461 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
18463         * class.c: documentation updates and events bug fix.
18465 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
18467         * class.c: some cleanup, locking fixes.
18469 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
18471         * class.c: fix the generics code to setup nested
18472         type info to the instantiated type (bug #77770).
18474 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
18476         * marshal.c: fixed a few type correctness issues.
18478 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18480         * loader.c: the Set/Get/Addrtess array methods should be public.
18482 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
18484         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
18485         
18486         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
18487         info->wrapper.
18489 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
18491         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
18493         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
18495         * mempool.c (mono_mempool_alloc): Speed this up a bit.
18496         (mono_mempool_alloc0): Ditto.
18498 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18500         * socket-io.c:
18501         (create_object_from_sockaddr): it was allocating 4 extra bytes
18502         for the AF_UNIX data. Fixes bug #77747.
18504 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
18506         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
18508 2006-03-09  Dick Porter  <dick@ximian.com>
18510         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
18511         Fixes bug 76966 again.
18513 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
18515         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
18516         names from r57532
18517         * appdomain.c: Bumped corlib version to 48 (due to r57532)
18519 2006-03-07  Martin Baulig  <martin@ximian.com>
18521         * object.c
18522         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
18524 2006-03-07  Martin Baulig  <martin@ximian.com>
18526         * class.c
18527         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
18528         regression introduced in r56970; see gtest-252.cs.
18530         * loader.c (mono_get_method_constrained): Correctly handle generic
18531         methods; see gtest-253.cs.
18533 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
18535         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
18537 2006-03-04  Martin Baulig  <martin@ximian.com>
18539         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
18540         compute the parent type at runtime, just like we're already doing
18541         it for interfaces.
18543         * reflection.c
18544         (mono_reflection_bind_generic_parameters): Don't compute the
18545         parent type anymore.
18547         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
18549 2006-03-04  Martin Baulig  <martin@ximian.com>
18551         * mono-debug-debugger.h
18552         (mono_debugger_create_notification_function): Allocate memory at
18553         runtime and return a pointer to it.
18555 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
18557         * assembly.c: Fix windows build.
18558         
18559         * assembly.c: Fix build.
18561         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
18563         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
18564         
18565 2006-03-03  Dick Porter  <dick@ximian.com>
18567         * process.c
18568         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
18569         Check parameters before dereferencing them.  Fixes Aaron's part of
18570         bug 77393.
18572 2006-03-03  Raja R Harinath  <rharinath@novell.com>
18574         Fix performance regression.
18575         * loader.c (find_method_in_class): Add 'from_class' argument.
18576         Rename 'klass' argument to 'in_class'.  The signature is compared
18577         against the method in 'in_class', and the corresponding method is
18578         returned from 'from_class'.
18579         (find_method): Walk both 'in_class' and 'from_class' in parallel.
18580         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
18581         type definition and generic instantiation in parallel.
18582         (mono_get_method_constrained): Update to changes.
18584 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
18586         * threads.c: make sure the domain is correct, too when doing
18587         mono_thread_attach ().
18589 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
18591         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
18592         windows. Fixes #77683.
18594 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
18596         * object.h, *: introduced specific way to set elements of an array
18597         of references to be used as write barrier. Still need to audit the
18598         uses of mono_array_addr.
18600 2006-03-01  Miguel de Icaza  <miguel@novell.com>
18602         * object-internals.h: New field to cache the assmebly name, patch
18603         from Tambet Ingo (tambet@ximian.com)
18605 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
18607         * decimal.h, class-internals.h, metadata-internals.h,
18608         file-io.h: mark a few function declarations as internal, to
18609         reduce the number of PLT entries.
18611 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18613         * file-io.c: fix typo in warning message.
18615 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
18617         * loader.c: on unix, lookup the "*A" version of a function
18618         if charset is auto as a second option before failing.
18620 2006-02-28  Raja R Harinath  <rharinath@novell.com>
18622         * class.h (mono_class_inflate_generic_method): Revert to two
18623         argument version.
18624         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
18625         (mono_class_inflate_generic_method_full): Add.
18626         * class.c (mono_class_inflate_generic_method_full): Rename from
18627         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
18628         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
18629         * loader.c, reflection.c: Update to changes.
18631 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
18633         * icall.c: const fixes and small improvements.
18635 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18637         * threadpool.c: for asynchronous connect(), enable the same workaround
18638         for BSD 6 as for the Mac. Fixes bug #77637.
18640 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
18642         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
18643         formatted classes. Fixes #77524.
18645 2006-02-24  Raja R Harinath  <rharinath@novell.com>
18647         * class.c (inflate_generic_type): Add a couple more
18648         micro-optimizations.
18649         (inflate_generic_context): Don't use the 'gmethod' from
18650         'inflate_with'.
18651         (mono_class_inflate_generic_method): If the method has generic
18652         parameters, but the passed-in context doesn't have a 'gmethod',
18653         create one.  Use the possibly simplified generic instantiation
18654         from the declaring class instead of the one passed in.
18656 2006-02-24  Raja R Harinath  <harinath@gmail.com>
18658         Make generic method signature and method header handling lazy.
18659         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
18660         (inflate_generic_header): Likewise.
18661         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
18662         parameter to avoid inflating types.
18663         (mono_get_inflated_method): Empty out.
18664         * class.h (mono_class_inflate_generic_method): Update to changes.
18665         * loader.c (mono_get_method_from_token): Don't parse signature for
18666         generic methods, nor methods of generic classes.
18667         (mono_method_signature): Rename from 'mono_method_signature'.
18668         Inflate signature on demand.
18669         (mono_method_get_header): Inflate method header on demand.
18670         * reflection.c: Update to changes.
18672 2006-02-23  Raja R Harinath  <rharinath@novell.com>
18674         * metadata.c (mono_metadata_inflate_generic_inst): If the
18675         instantiation is closed, don't bother expanding it in the new
18676         context.
18677         * class.c (inflate_generic_class): If the generic instantiation
18678         doesn't change after inflation, return the argument itself.
18679         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
18680         Add bounds checks.
18681         (inflate_generic_context): If neither the generic class nor the
18682         generic method instantiations change, return the original context.
18683         * reflection.c (mono_method_get_object): Do
18684         'mono_get_inflated_method' before accessing the ->klass field.
18685         (inflate_mono_method): Don't create a MonoGenericMethod unless
18686         necessary.
18687         (inflate_method): Don't pass a constructed type as the declaring
18688         type of a methodbuilder.
18690 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
18692         * object.c: fix memory overwrite.
18694 2006-02-22  Dick Porter  <dick@ximian.com>
18696         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
18697         it doesn't work any more.
18698         (mono_threads_request_thread_dump): Fix unused variable warnings.
18700 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
18702         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
18703         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
18704         the public header file.
18706 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
18708         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
18710 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
18712         * class-internals.h, object.c: reduce the size of MonoVTable
18713         and store the interface_offsets array at negative offsets.
18715 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
18717         * metadata.c: tweak table descriptors data structures to reduce
18718         size and runtime relocations.
18720 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18722         * marshal.c: fix some types and opcodes to be type-safe
18723         in marshaling wrappers.
18725 2006-02-21  Ankit Jain  <jankit@novell.com>
18727         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
18729 2006-02-21  Raja R Harinath  <rharinath@novell.com>
18731         * metadata.c (get_constraints): Relax debugging checks for monodis.
18733 2006-02-21  Ankit Jain  <jankit@novell.com>
18735         * metadata.c (mono_metadata_load_generic_params): Move the code
18736         checking for ambiguous generic params from here to mono/dis/get.c
18737         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
18739 2006-02-21  Raja R Harinath  <harinath@gmail.com>
18741         Fix assertion triggered when compiling nemerle.
18742         * class.c (mono_get_shared_generic_inst): Rename from
18743         get_shared_inst and make non-static.
18744         * loader.c (mono_get_shared_generic_method): New.  Used to create
18745         the MonoGenericContext-equivalent of a MonoGenericContainer.
18746         (mono_get_method_from_token): Initialize the 'context' field of
18747         the created MonoGenericContainer.
18748         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
18749         * metadata.c (get_constraints): Add sanity check.
18750         * class-internals.h: Add new internal methods.
18752         * reflection.c (verify_safe_for_managed_space): New sanity check.
18753         Currently checks that owner-less generic parameters aren't allowed
18754         in managed space.
18755         (mono_type_get_object): Use it.
18756         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
18757         that are now in mono_type_get_object.
18758         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
18760 2006-02-19  Raja R Harinath  <harinath@gmail.com>
18762         * metadata.c (mono_type_create_from_typespec): Rename from
18763         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
18764         argument and caching of types in the generic container.
18765         (unwrap_arrays, find_generic_param): Remove.
18766         * metadata-internals.h: Update.
18767         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
18769 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
18771         * class.c (mono_class_get_exception_for_failure): Fix a warning.
18773         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
18774         return values. Fixes #77581.
18776         * class.c (mono_fnptr_class_get): Switch name and name_space.
18778         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
18779         classes and add support for [In, Out] attributes.
18780         (mono_marshal_free_asany): Ditto. Fixes #77524.
18782 2006-02-18  Raja R Harinath  <harinath@gmail.com>
18784         * class.c (mono_class_from_generic_parameter): Make more robust to
18785         incomplete MonoGenericContainers from monodis.
18787 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18789         * class-internals.h: added some more exception types.
18790         * class.c, metadata.c: added a few checks to handle missing
18791         types.
18793 2006-02-17  Raja R Harinath  <rharinath@novell.com>
18795         Use owner-less generic-params some more.
18796         * class.c (my_mono_class_from_generic_parameter): Remove.
18797         (mono_class_from_generic_parameter): Handle null image,
18798         param->name and param->owner.
18799         (mono_class_from_mono_type): Update.
18800         (mono_class_create_from_typespec): Remove 'container' parameter.
18801         If that parameter is non-null, the result is always inflated by
18802         'mono_class_get_full' anyway.
18803         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
18804         parameter.
18805         (mono_class_get_full): Update.
18807         * class.c (inflate_generic_type) [GENERICINST]: If the generic
18808         instance is not open, don't bother inflating.
18809         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
18810         parse metadata for inflated classes.
18811         (_mono_class_get): Change GenericContext* parameter to
18812         GenericContainer*.
18813         (mono_class_create_from_typespec): Likewise.  Simplify, and
18814         implement trivially.  All the cases are handled in
18815         mono_class_from_mono_type.  Don't inflate returned class.
18816         (mono_class_get_full): Delegate GENERICINST optimization to
18817         inflate_generic_type.
18818         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
18820 2006-02-16  Dick Porter  <dick@ximian.com>
18822         * socket-io.c (create_object_from_sockaddr): Fix typo.
18823         (create_sockaddr_from_object): Check array lengths before
18824         potentially accessing items off the end.
18825         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
18826         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
18827         (ves_icall_System_Net_Sockets_Socket_Send_internal)
18828         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
18829         length checks to avoid wraparound overflows.
18830         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
18831         contents of the array of sockets
18832         (hostent_to_IPHostEntry2)
18833         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
18834         Check return value of inet_ntop ().
18835         (addrinfo_to_IPHostEntry): Fix typo
18837 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18839         Type metadata parsing doesn't use generic-instantiation information.
18840         * metadata.c (mono_metadata_parse_array_full): Change
18841         MonoGenericContext* parameter to MonoGenericContainer*.
18842         (mono_metadata_parse_type_full): Likewise.
18843         (mono_type_create_from_typespec_full): Likewise.
18844         (mono_metadata_parse_mh_full): Likewise.
18845         (mono_metadata_parse_generic_inst): Likewise.
18846         (do_mono_metadata_parse_generic_class): Likewise.
18847         (do_mono_metadata_parse_type): Likewise.
18848         * metadata-internals.h: Update to changes.
18849         * class.c (mono_class_find_enum_basetype): Likewise.
18850         (mono_class_setup_fields): Likewise.
18851         (mono_class_create_from_typespec): Likewise.
18852         * loader.c (method_from_methodspec): Likewise.
18853         (mono_get_method_from_token): Likewise.
18854         (mono_method_get_header): Likewise.
18856 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
18858         * marshal.c: handle additional GENERICINST case (patch from
18859         Thong Nguyen <tum@veridicus.com>).
18860         Fix a few cases where LDIND_I/STIND_I was used for references.
18862 2006-02-16  Raja R Harinath  <rharinath@novell.com>
18864         * reflection.c (mono_reflection_get_token): Remove unused variable.
18866 2006-02-16  Martin Baulig  <martin@ximian.com>
18868         * reflection.c (mono_reflection_get_token): Add support for fields
18869         in instantiated generic types.
18871         * icall.c
18872         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
18874 2006-02-15  Martin Baulig  <martin@ximian.com>
18876         * icall.c
18877         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
18878         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
18879         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
18880         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
18882 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
18884         * class.c, metadata.c, metadata.h, object.c, icall.c,
18885         marshal.c: changed mono_type_get_underlying_type () to do
18886         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
18887         Fixed handling of instantiated generic valuetypes (bug #75479).
18889 2006-02-15  Raja R Harinath  <rharinath@novell.com>
18891         * metadata.c (mono_metadata_decode_signed_value): Simplify.
18892         Delegate to mono_metadata_decode_value, and work on the returned value.
18894         * icall.c (ves_icall_MonoType_GetGenericArguments):
18895         Add consistency check here too.
18896         
18897 2006-02-15  Ankit Jain  <jankit@novell.com>
18899         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
18900         char/short etc.
18902 2006-02-15  Ankit Jain  <jankit@novell.com>
18904         * metadata.c (mono_metadata_decode_signed_value): New function to decode
18905         signed values, used only for representing lower bounds of arrays.
18906         (mono_metadata_parse_array_full): Use new
18907         mono_metadata_decode_signed_value to decode lower bounds.
18909 2006-02-14  Martin Baulig  <martin@ximian.com>
18911         * reflection.c
18912         (mono_reflection_get_token): Support "MonoGenericMethod" and
18913         "MonoGenericCMethod" and allow generic instances / methods.
18915 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
18917         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
18918         to obtain the terminal size using an ioctl.
18920         * object.c (mono_nullable_init): Revert this as nullable reference
18921         types are not valid.
18922         (mono_nullable_box): Ditto.
18924 2006-02-09  Dick Porter  <dick@ximian.com>
18926         * threads.c (mono_thread_detach): Drop a reference to the thread
18927         we're detaching.
18929 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
18931         * object.c (mono_nullable_init): Handle nullable reference types.
18932         (mono_nullable_box): Ditto. Fixes #77446.
18934 2006-02-07  Martin Baulig  <martin@ximian.com>
18936         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
18938 2006-02-07  Ankit Jain  <jankit@novell.com>
18940         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
18941         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
18942         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
18943         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
18944         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
18945         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
18947 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
18949         * class.c (mono_class_create_generic): Set type_token as well.
18951         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
18952         compatible with MS.
18954 2006-02-02  Martin Baulig  <martin@ximian.com>
18956         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
18957         has never been used so far.
18959 2006-02-02  Martin Baulig  <martin@ximian.com>
18961         * mono-debug-debugger.h: Changed comment at the top of this file;
18962         the header is not installed, but it's safe to #include it from
18963         within the JIT.
18965         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
18966         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
18968 2006-02-02  Martin Baulig  <martin@ximian.com>
18970         * mono-debug.h
18971         (MonoSymbolTable): Removed the `metadata_info' field.
18973         * mono-debug.c
18974         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
18976         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
18977         (mono_debugger_add_builtin_types): Removed.
18978         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
18979         (mono_debugger_create_notification_function): We now operate on a
18980         pre-allocated area; take a `gpointer' and return `void'.
18982         * mono-debug-debugger.c
18983         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
18984         (mono_debugger_add_builtin_types): Removed.
18986 2006-02-02  Martin Baulig  <martin@ximian.com>
18988         * threads.c (mono_debugger_create_all_threads): New public method.
18990 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
18992         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
18993         breaks on several platforms.
18995 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
18997         * assembly.c: the VS.NET build doesn't supply default values for
18998         MONO_ASSEMBLIES and MONO_CFG_DIR.
19000 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
19002         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
19003         helper function.
19005         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
19007         * loader.c (method_from_memberref): Fix a warning.
19009         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
19011         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
19012         with explicit layout. Fixes #77433.
19014 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
19016         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
19017         max_interface_id is initialized before using it. Fixes #77398.
19018         (ves_icall_Type_GetInterfaces): Ditto.
19020 2006-01-30  Raja R Harinath  <rharinath@novell.com>
19022         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19023         allocate memory for parameter attributes when parsing memberref
19024         signatures.
19025         * loader.c (mono_loader_set_error_method_load): Don't warn.
19026         (method_from_memberref): Ensure MissingMethodException gets thrown
19027         if method is not found.  Make warning more informative.
19029 2006-01-29  Raja R Harinath  <harinath@gmail.com>
19031         Fix #77397
19032         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
19033         return true if is byref.
19034         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
19035         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
19036         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
19038 2006-01-27  Raja R Harinath  <rharinath@novell.com>
19040         Fix tests/find-method.2.il
19041         * loader.c (find_method, find_method_in_class): Remove is_inflated
19042         argument.  Revert 2006-01-18 change.
19043         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
19044         is generic, search for method in its generic definition.
19045         * class.c (mono_class_setup_vtable_general): Print generic
19046         arguments of generic types in debugging printf.
19048 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
19050         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
19052         * threads.c (mono_threads_request_thread_dump): New helper function.
19054 2006-01-25  Raja R Harinath  <rharinath@novell.com>
19056         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
19058 2006-01-25  Ankit Jain  <jankit@novell.com>
19060         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
19061         move definition to ..
19062         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
19063         
19064 2006-01-25  Ankit Jain  <jankit@novell.com>
19065             Raja R Harinath  <rharinath@novell.com>
19067         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
19068         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
19069         as necessary.
19071 2006-01-25  Martin Baulig  <martin@ximian.com>
19073         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
19074         `MonoDebuggerThread' into debug-debugger.c.
19076 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
19078         * profiler.c: fix printing of data.
19080 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
19082         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
19083           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
19085 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
19087         * object.c: fix deadlock related to string interning.
19089 2006-01-23  Martin Baulig  <martin@ximian.com>
19091         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
19093         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
19095 2006-01-23  Martin Baulig  <martin@ximian.com>
19097         * mono-debug.h: Moved the prototypes of some functions which are
19098         used by the JIT here from mono-debug-debugger.h.
19100 2006-01-21  Martin Baulig  <martin@ximian.com>
19102         * Makefile.am: Don't install mono-debug-debugger.h.
19104 2006-01-21  Martin Baulig  <martin@ximian.com>
19106         * mono-debug-debugger.h: Enforce the private status of this header
19107         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
19108         Moved some stuff from mono-debugger-jit-wrapper.h here.
19110 2006-01-20  Raja R Harinath  <rharinath@novell.com>
19112         * class.c (mono_class_from_typeref): Add a sanity test to help
19113         catch lack of assembly load/search hooks.
19115 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
19117         * marshal.c (emit_struct_conv): Relax the fields with same offset
19118         check even more. Fixes #77230.
19120 2006-01-18  Martin Baulig  <martin@ximian.com>
19122         * loader.c (find_method_in_class): Added `gboolean is_inflated'
19123         argument; if false, we compare the uninstantiated signatures.
19124         (method_from_memberref): Compare the uninstantiated signatures;
19125         fixes #76417.
19127 2006-01-18  Robert Jordan  <robertj@gmx.net>
19129         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
19130         Clear the weak link. Fixes bug #77170.
19132         * gc.c (mono_gchandle_free):
19133         Reflect *-gc.c changes (tiny optimization).
19135 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
19137         * metadata.c (mono_metadata_signature_dup): Applied patch from
19138         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
19139         Fixes #77288.
19141 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
19143         * marshal.c (emit_struct_conv): Allow fields with the same offset when
19144         marshalling from native to managed code. Fixes #77230.
19146 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19148         * threadpool.c: fix problem (Mac only) when more than one asynchronous
19149         connect. Fixes bug #77020.
19151 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
19153         * class.c: fixed id assignement for nested interfaces (bug #77275).
19154         Added also better info for --print-vtable debugging.
19156 2006-01-12  Martin Baulig  <martin@ximian.com>
19158         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
19159         interfaces on-the-fly; fixes #76625.
19161         * class-internals.h
19162         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
19163         don't need that anymore.
19165 2006-01-12  Miguel de Icaza  <miguel@novell.com>
19167         * socket-io.c
19168         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19169         To avoid initing the nested_classes when not needed I turned the
19170         PeerCredData as a toplevel internal class, as it has to be shared
19171         anyways. 
19173         Fixes the CASA issue.
19175 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
19177         * domain.c: Accessors for MonoJitInfo
19179         * profiler-private.h: Add jitinfo to the end jit hook
19181         * profiler.[ch]: Define new hooks, called after jitting which give
19182         the MonoJitInfo that was compiled
19184 2006-01-10  Martin Baulig  <martin@ximian.com>
19186         * class.c (mono_class_setup_events): Add support for generic
19187         classes; fixes #76440.
19189 2006-01-06  Raja R Harinath  <rharinath@novell.com>
19191         Fix #77160.
19192         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
19193         on passed-in method.
19195 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19197         * object.c (mono_runtime_invoke_array): Add Nullable support.
19199         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
19201 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
19203         * file-io.c: Don't consider sockets as directory and avoid an endless
19204         loop. Fix bug #76966.
19206 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
19208         * object.c (mono_nullable_init): New helper function.
19209         (mono_nullable_box): Ditto.
19211         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
19213         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
19215         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
19216         
19217 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
19219         * class.c (mono_class_is_assignable_from): Make T assignable to 
19220         Nullable<T>.
19222 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
19224         * appdomain.c: Bump corlib version to 46.
19225         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
19226         serialization purpose) and changed ves_icall_System_Reflection_
19227         Assembly_get_code_base signature to accept a boolean (to escape, or 
19228         not, the assembly code base).
19230 2005-12-23  Dick Porter  <dick@ximian.com>
19232         * icall.c: 
19233         * threads-types.h: 
19234         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
19235         CreateEvent icall now returns "created" boolean parameter.
19237 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
19239         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
19240         #76967.
19242         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
19243         when attr_klass is an interface. Fixes #77045.
19245 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
19247         * marshal.c (emit_struct_conv): Fix previous patch.
19248         
19249         * marshal.c (emit_struct_conv): Add a check for fields with the same
19250         offset.
19252 2005-12-20  Raja R Harinath  <rharinath@novell.com>
19254         Fix regression in Mono.C5.
19255         * class.c (mono_class_create_generic): If 'klass' is an interface
19256         set up the interface offsets.
19257         (mono_class_is_assignable_from): Don't throw away generic arguments.
19259 2005-12-19  Raja R Harinath  <rharinath@novell.com>
19261         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
19262         type parameters.
19264 2005-12-15  Raja R Harinath  <rharinath@novell.com>
19266         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
19267         dead store.
19268         (do_mono_metadata_parse_generic_class): Don't pass the current
19269         generic context when parsing the type being instantiated: it
19270         cannot use it, anyway.
19272         * loader.c (method_from_memberref): Don't inflate a signature if
19273         it doesn't contain any type parameters.
19275 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
19277         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
19279 2005-12-14  Martin Baulig  <martin@ximian.com>
19281         * class.c
19282         (mono_type_get_name_recurse): Don't return null for type
19283         parameters and open generic classes.
19284         (mono_class_setup_methods): Don't exclude generic instances.
19285         (mono_get_unique_iid): Use different IDs for different
19286         instantiations of the same generic type.
19287         (mono_class_setup_vtable): Only use setup_generic_vtable() for
19288         open generic instances; create a normal vtable for closed generic
19289         instances.
19290         (mono_class_setup_vtable_general): We're now also called for
19291         closed generic instances.
19293         * reflection.c
19294         (mono_reflection_bind_generic_parameters): Correctly use
19295         mono_metadata_lookup_generic_inst() everywhere.
19297 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
19299         * object.c (mono_class_create_runtime_vtable): Call 
19300         mono_class_setup_vtable ().
19302         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
19303         function.
19304         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
19305         #76959.
19307         * loader.c (mono_loader_set_error_type_load): Print the type load
19308         warnings to the console so they are more visible to the user.
19309         (mono_loader_set_error_method_load): Ditto.
19311         * reflection.c (ensure_runtime_vtable): Revert the last change as it
19312         is still broken.
19313         
19314         * reflection.c (ensure_runtime_vtable): Fix build.
19316         * reflection.c (ensure_runtime_vtable): Disable an optimization which
19317         doesn't work in all cases.
19319 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
19321         * object.c (mono_array_new_full): Treat a single dimensional array
19322         with 0 lower bounds as an szarray. Fixes #76973.
19324         * reflection.c (custom_attr_visible): Really fix this.
19326 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
19328         * reflection.c (custom_attr_visible): Allow nested public attributes
19329         as well.
19331         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
19332         interface check.
19334 2005-12-12  Raja R Harinath  <harinath@gmail.com>
19336         * class.c (set_generic_param_owner): Delete.
19337         (mono_class_create_from_typedef): Don't set ->owner field of
19338         generic parameters to "param containers" of enclosing classes.
19339         * reflection.c (mono_reflection_initialize_generic_parameter):
19340         Likewise.
19342 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
19344         * reflection.c (custom_attr_visible): Fix build.
19346 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
19348         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
19349         private attributes.
19350         
19351         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
19352         handling of null parameter defaults.
19354 2005-12-09  Raja R Harinath  <rharinath@novell.com>
19356         * class.c (mono_class_from_generic_parameter): Don't set
19357         klass->generic_container.
19358         (my_mono_class_from_generic_parameter): Likewise.
19360 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
19362         * reflection.c (load_public_key): Fix a warning.
19363         (method_encode_code): Fix unaligned accesses.
19365 2005-12-07  Martin Baulig  <martin@ximian.com>
19367         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
19369         * reflection.c
19370         (write_generic_param_entry): Encode our custom attrs.
19372         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
19374 2005-12-07  Martin Baulig  <martin@ximian.com>
19376         * reflection.c (encode_new_constraint): Removed; we don't use the
19377         `NewConstraintAttribute' anymore.
19379 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
19381         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
19382         not fire a TypeResolve event when Assembly.GetType () is called.
19384 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
19386         Beginning of support for nullable types in the runtime. Parts of
19387         this patch are from Martin.
19389         * appdomain.c (MONO_CORLIB_VERSION): Bump
19391         * domain.c (mono_init_internal): get the nullable type
19393         * class.c (mono_class_is_nullable): New method
19394         (mono_class_get_nullable_param): New mehod
19395         (mono_class_create_generic): In types T? set cast_class to T
19397         * class-internals.h (MonoDefaults): new nullable default class
19398         (mono_class_get_nullable_param, mono_class_get_nullable_param):
19399         new methods.
19401 2005-12-05  Raja R Harinath  <rharinath@novell.com>
19403         * metadata.c (select_container): New.  Refactor code to select the
19404         appropriate GenericContainer given the type of generic parameter
19405         we are looking for.
19406         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
19407         not a MonoGenericContext.  Use select_container.  Update parameters.
19408         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
19409         and MONO_TYPE_MVAR.
19410         (unwrap_arrays): Remove duplicate tests.
19411         (find_generic_param): Rename from 'has_same_context'.  Now walks a
19412         generic instantiated class to find any arguments that are generic
19413         parameters.
19414         (mono_type_create_from_typespec_full): Use find_generic_param to
19415         avoid evicting some generic instantiations from the typespec
19416         cache.
19418 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
19420         * reflection.c: fixed writing of doubles on ARM FPA.
19422 2005-12-02  Robert Jordan  <robertj@gmx.net>
19424         * icall.c: Fixed EventInfo.ReflectedType (#76829).
19426 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19428         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
19429         least on SUSE 10 they are not the same (on debian, they are just the
19430         same thing).
19432 2005-12-01  Raja R Harinath  <rharinath@novell.com>
19434         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
19435         DeclaringType for VARs and MVARs.
19436         * class.c (set_generic_param_owner): Fix initialization of owner
19437         fields.
19439 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
19441         * icall.c: fixed Enum.ToObject() to correctly convert the values.
19443 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19445         * threadpool.c: workaround for a bug that shows up on the Mac:
19446         select()+connect() on a blocking socket is not like it should
19447         be, so we proceed to connect() in that case, wasting the I/O
19448         threadpool thread until connect succeedes. Fixes bug #75436.
19450 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19452         * threadpool.c: fix typo when setting file descriptor states.
19454 2005-11-28  Raja R Harinath  <rharinath@novell.com>
19456         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
19457         * metadata.c (mono_metadata_parse_method_signature_full): Don't
19458         create a temporary signature container.
19459         (mono_metadata_parse_generic_param): Update to changes.
19460         (mono_type_create_from_typespec_full): Update to changes.
19461         * loader.c (method_from_memberref): Don't use a
19462         MonoGenericContainer while parsing a memberref signature.
19463         (method_from_methodspec): Remove dead-store of the 'container'
19464         variable.  It's overwritten before use.
19466         * metadata.c (mono_type_create_from_typespec_full): Make debugging
19467         checks tighter.
19468         (mono_metadata_parse_generic_param): Likewise.
19469         * loader.c (find_method_in_class): Does not need a
19470         MonoGenericContainer.  Use 'mono_method_signature' rather than
19471         'mono_method_signature_full'.
19472         (find_method, mono_get_method_constrained, method_from_memberref):
19473         Update to changes.
19475         * metadata.c (mono_type_create_from_typespec_full): Ensure that
19476         owner-less generic-parameters are never evicted from the typespec
19477         cache.
19479         * loader.c (method_from_memberref): Don't use the current context
19480         when parsing signatures.
19481         (method_from_methodspec, mono_get_method_from_token): Update to changes.
19483         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
19484         side-effects in g_assert.
19485         * loader.c (mono_get_method_from_token): Resolve klass earlier so
19486         that we don't potentially lose information.
19488 2005-11-26  Dick Porter  <dick@ximian.com>
19490         * icall.c:
19491         * threads.c: icalls to implement basic (ie, not named)
19492         System.Threading.Semaphore.
19494 2005-11-24  Dick Porter  <dick@ximian.com>
19496         * process.c
19497         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19498         Use GetProcessId() if it's available.
19500 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
19502         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
19504 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19505             Ankit Jain  <jankit@novell.com>
19507         * loader.c (mono_get_method_from_token): Initialize 'method' field
19508         of all generic parameters before parsing the signature.  Remove
19509         code that "fixed"-up MVAR references.
19511 2005-11-23  Ankit Jain  <jankit@novell.com>
19513         * metadata.c (mono_metadata_has_generic_params):
19514         (mono_metadata_load_generic_param_constraints):
19515         (mono_metadata_load_generic_params): Move duplicate code ...
19516         (mono_metadata_get_generic_param_row): ... here. Returns the
19517         first row-id in GenericParam table for a given owner (token).
19518         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
19519         prototype.
19521 2005-11-23  Raja R Harinath  <rharinath@novell.com>
19522             Ankit Jain  <jankit@novell.com>
19524         * metadata.c (mono_metadata_class_equal): Pass signature_only when
19525         comparing VARs too.
19526         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
19527         type->data.generic_param only if the type is an MVAR.
19528         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
19529         leak owner-less VARs and MVARs into managed space.
19531 2005-11-21  Martin Baulig  <martin@ximian.com>
19533         * class-internals.h
19534         (MonoMethod): Moved the `generic_container' here from
19535         `MonoMethodNormal' since we now also need it for
19536         `MonoMethodPInvoke';
19537         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
19538         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
19539         an union containing both `MonoMethodNormal' and
19540         `MonoMethodPInvoke'.
19542         * loader.c
19543         (mono_get_method_from_token): Allow implementing generic methods
19544         as interncalls.
19546         * threads.c
19547         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
19548         icall.
19550 2005-11-17  Dick Porter  <dick@ximian.com>
19552         * icall.c: 
19553         * process.h: 
19554         * process.c: Split the Process Start_internal icall into
19555         ShellExecuteEx_internal and CreateProcess_internal, which are
19556         called depending on whether UseShellExecute is true.  Fixes bug
19557         76670.
19559         * appdomain.c (MONO_CORLIB_VERSION): Incremented
19561 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
19563         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
19564         'msize' parameters, use the information in 'mspec' instead.
19565         (emit_object_to_ptr_conv): Ditto.
19567         * marshal.c (emit_struct_conv): Handle explicit layout structs with
19568         fields out of order. Fixes #76733.
19570 2005-11-17  Ankit Jain  <jankit@novell.com>
19572         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
19574 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
19576         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
19577           bug #76575.
19579 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19581         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
19582         for types with non-auto layout. Fixes #76717.
19584 2005-11-16  Ankit Jain  <jankit@novell.com>
19586         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
19587         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
19588         if generic_context is null.
19589           (mono_metadata_generic_param_equal): param->owner can be null.
19590           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
19591         null.
19593 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
19595         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
19596         the correct value.
19598 2005-11-15  Martin Baulig  <martin@ximian.com>
19600         * object.c (set_value): Use mono_class_from_mono_type() instead of
19601         the hack for generic instances; fixes #76136.
19603 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
19605         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
19606         fields.
19608         * image.c (load_metadata_ptrs): Initialize the new fields.
19610         * reflection.c (create_dynamic_mono_image): Ditto.
19612         * reflection.c (build_compressed_metadata): Use the new fields.
19614         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
19615         icall.
19617         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
19618         icall.
19619         
19620 2005-11-15  Ankit Jain  <jankit@novell.com>
19621             Raja R Harinath  <harinath@gmail.com>
19623         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
19624         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
19625         new per-generic_container cache if the cached MonoType's context matches
19626         the current context.
19627           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
19628         to the expected context.
19629           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
19631 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19633         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
19634         we changed the signature of an icall.
19635         * icall.c: Modify to mono_double_ParseImpl return true/false 
19636         depending on the success, instead of throwing the exception. This will
19637         help us in Double.TryParse methods.
19638         
19639 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
19641         * marshal.c (emit_marshal_object): Throw an exception when
19642         marshalling 'object' instead of crashing. Fixes #76696.
19644 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19646         * class-internals.h: Add prototype for mono_type_get_full_name ().
19648 2005-11-11  Dick Porter  <dick@ximian.com>
19650         * threads.c (mono_thread_manage): Make sure the main thread has
19651         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
19653 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
19655         * loader.c (mono_loader_set_error_type_load): Log a warning to the
19656         console about the missing type.
19657         (mono_loader_set_error_method_load): Ditto.
19659 2005-11-09  Miguel de Icaza  <miguel@novell.com>
19661         * mono-config.c (mono_get_config_dir): Set the system defaults if
19662         none is specified.
19664         * assembly.c (mono_set_dirs): New API entry point to set the
19665         assembly and the config directory in one call
19667 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
19669         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
19670         the ftnptr was created from a delegate in a domain other than the
19671         current domain. Fixes #75377.
19673         * exception.h exception.c: Add mono_get_exception_not_supported ().
19675 2005-11-08  Martin Baulig  <martin@ximian.com>
19677         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
19679 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
19681         * security-manager.h: Added definitions to deal with strongname key 
19682         pairs bigger (and smaller) than 1024 bits.
19683         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
19684         adjust wrt the public key length being used.
19686 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
19688         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
19689           Windows build (r51396-51397).
19691 2005-11-03  Martin Baulig  <martin@ximian.com>
19693         * class.c (mono_class_setup_vtable_general): Also add generic
19694         methods to the vtable; fixes #76581.
19696 2005-11-01  Miguel de Icaza  <miguel@novell.com>
19698         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
19699         sure that we lookup GetString method from the System.Text.Encoding
19700         class, not the derived class or we get an empty method.
19702         Fixed class #76612.
19704 2005-10-25  Miguel de Icaza  <miguel@novell.com>
19706         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
19707         if it has been previously set (embedders). 
19709         Make mono_set_rootdir available also on Unix.
19711 005-10-24  Robert Jordan  <robertj@gmx.net>
19713         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
19715 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
19717         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
19718         only calls which are made to native code use this flag.
19720         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
19722 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
19724         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
19725         Add support for FieldBuilders.
19727 2005-10-29  Martin Baulig  <martin@ximian.com>
19729         * mono-debug.c
19730         (mono_debug_using_mono_debugger): New public method; returns
19731         whether we're running inside the debugger.
19733 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
19735         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
19736         for Method/Constructor/FieldBuilders.
19738 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
19740         * reflection.c (module_add_cattrs): Save custom attributes for global methods
19741         and fields as well.
19743 2005-10-26  Martin Baulig  <martin@ximian.com>
19745         * mono-debug-debugger.c
19746         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
19748 2005-10-24  Raja R Harinath  <harinath@gmail.com>
19750         * icall.c (base64_to_byte_array): Don't pass an out-of-range
19751         integer to isspace.
19753 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
19755         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
19756         when passing valuetypes byref. Fixes #76502.
19758 2005-10-19  Jackson Harper  <jackson@ximian.com>
19760         * profiler.c: Don't put a . in front of types that are not in a
19761         namespace.
19763 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
19765         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
19767 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
19769         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
19770         #76436.
19771         (mono_marshal_get_ldflda_wrapper): Fix a warning.
19773 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19775         * assembly.c metadata-internals.h icall.c: Define an additional
19776         parameter for mono_assembly_name_parse_full, so we can avoid creating
19777         S.R.AssemblyName.Version when no version info wasn't passed.
19778         
19779 2005-10-09  Miguel de Icaza  <miguel@novell.com>
19781         * class.c (mono_type_get_full_name): Reimplement method that was
19782         removed. 
19784         * image.c: Some docs
19786 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
19788         * profiler.c (output_newobj_profile): Fix printing of Total memory
19789         on x86.
19791 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19793         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
19795 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
19797         * threads.c: remove debug output.
19799 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
19801         * threads.c (mono_thread_manage): Fix crashes if more than 64
19802         threads need to be aborted. Hopefully fixes #75899.
19804         * assembly.c (mono_stringify_assembly_name): New helper function.
19806         * class.c: Use mono_stringify_assembly_name instead of the similar
19807         static function.
19809         * assembly.h assembly.c: Add support for calling a postload search 
19810         hook if an assembly cannot be loaded.
19812         * appdomain.c: Register new search hooks which call the AssemblyResolve
19813         events in AppDomain. Fixes #75231
19815 2005-10-07  Martin Baulig  <martin@ximian.com>
19817         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
19818         methods without debug info.
19820 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
19822         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
19823         wrappers.
19825 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19827         * file-io.c: now that we return symlinks, use lstat and, when the file
19828         is a symbolic link, stat, to get the file attributes. Also avoid the
19829         conversion to/from utf16/external.
19831 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
19833         * class.c (mono_class_layout_fields): Compute klass->has_references
19834         correctly if an embedded valuetype is not yet initialized. Fixes
19835         #76331.
19837 2005-10-04  Martin Baulig  <martin@ximian.com>
19839         * metadata.c
19840         (mono_metadata_load_generic_param_constraints): New public
19841         function; splitted the constraints loading out from
19842         mono_metadata_load_generic_params().
19844         * class.c (mono_class_create_from_typedef): Call
19845         mono_metadata_load_generic_param_constraints() after setting up
19846         the type and creating our parent; fixes #75329.
19848 2005-10-04  Martin Baulig  <martin@ximian.com>
19850         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
19851         non-dynamic parent classes.
19853 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
19855         * file-io.c : win32 build fix (ETXTBSY seems not found).
19857 2005-10-04  Martin Baulig  <martin@ximian.com>
19859         * reflection.c
19860         (mono_image_get_methodspec_token): Make the cache actually work;
19861         fixes #75974.
19863 2005-10-04  Martin Baulig  <martin@ximian.com>
19865         * class.c (mono_class_name_from_token): Removed the unneccessary
19866         `MonoGenericContext *' argument.
19868 2005-10-04  Martin Baulig  <martin@ximian.com>
19870         * loader.c
19871         (method_from_methodspec): Make the caching work again; fixes the
19872         performance regression from #76262.
19874 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19876         * file-io.c:
19877         * file-io.h:
19878         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
19879         GetFileSystemEntries that performs the same work but without going
19880         into io-layer, locking, etc.
19882 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
19884         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
19885         ThreadState_Stopped as well. Fixes #76047.
19887 2005-09-29  Martin Baulig  <martin@ximian.com>
19889         * class.c
19890         (inflate_generic_context): If the new context has a `gmethod', set
19891         its `container' that that gmethod's `container'.
19893         * metadata.c
19894         (mono_metadata_parse_generic_param): Simplify things;
19895         `generic_container = generic_context->container;' is just fine.
19897         * loader.c (method_from_methodspec): Code cleanups.
19899 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
19901         * decimal.c: fix warning (and let gcc generate correct
19902         code on ARM with optimizations).
19904 2005-09-28  Martin Baulig  <martin@ximian.com>
19906         * loader.c
19907         (method_from_memberref): Added `MonoGenericContext *class_context'
19908         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
19909         (method_from_methodspec): If we're a memberref, use the enclosing
19910         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
19912 2005-09-28  Martin Baulig  <martin@ximian.com>
19914         * object.c (mono_runtime_invoke_array): Added support for
19915         MONO_TYPE_GENERICINST; fixes #75917.
19917 2005-09-27  Martin Baulig  <martin@ximian.com>
19919         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
19920         `k->byval_arg.type' to determine the actual type.
19922         * loader.c (method_from_methodspec): Removed some hacks.
19924 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
19926         * class-internals.h (mono_field_is_deleted): Do the test for
19927         rtspecialname before we check the actual name of the field. This
19928         prevents us from dereferencing a pointer into the string table,
19929         saving us from accessing a few pages
19931         * *.c: Replace the use of {Enter,Leave}CriticalSection with
19932         macros. This will allow a deadlock debugger to easily be plugged
19933         in.
19935 2005-09-27  Martin Baulig  <martin@ximian.com>
19937         * loader.c (method_from_methodspec): Create a "signature"
19938         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
19940 2005-09-27  Martin Baulig  <martin@ximian.com>
19942         * class.c
19943         (inflate_generic_class): Correctly set the new context's
19944         container.
19946         * loader.c
19947         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
19948         instead of a `MonoGenericContext *'.
19949         (mono_method_signature_full): Take a `MonoGenericContainer *'
19950         instead of a `MonoGenericContext *'.
19952         * metadata.c
19953         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
19954         instead of a `MonoGenericContext *'.
19955         (mono_metadata_parse_method_signature_full): Likewise.
19957 2005-09-26  Martin Baulig  <martin@ximian.com>
19959         * class.c
19960         (mono_class_from_generic_parameter): Set `klass->generic_container'
19961         (mono_class_from_generic_parameter): Likewise.
19962         (mono_bounded_array_class_get): We inherit the generic container
19963         from the element class.
19965         * loader.c
19966         (find_method, find_method_in_class): Take a `MonoGenericContext *'
19967         argument rather than computing it here.
19968         (method_from_memberref): Correctly set the generic context before
19969         parsing the signature.  Fixes #75681.
19971 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
19973         * object.c (mono_class_has_special_static_fields): Fix warnings.
19975 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
19977         * assembly.c: Add parse_public_key function, to
19978         par the public keys. Also added mono_assembly_name_parse_full,
19979         to define it the parsed key should be freed or not.
19980         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
19981         to parse a long format assembly name.
19982         * metadata-internals.h: Keep mono_assembly_name_parse_full as
19983         private, since calling it to preserve the key requires
19984         freeing it manually.
19985         
19986 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
19988         * locales.c : removed HAVE_ICU part.
19990 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
19992         * object.c (mono_class_create_runtime_vtable): Avoid calling 
19993         field_is_special_static if the klass has no special static fields.
19995         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
19996         (MonoCachedClassInfo): Likewise.
19998         * object.c (mono_class_has_special_static_fields): New helper function.
20000 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20002         * class.c (mono_class_create_from_typedef): Don't call 
20003         interfaces_from_typedef_full for enums.
20004         (mono_class_create_from_typedef): Compute the base types of enums directly
20005         without calling mono_class_setup_fields ().
20006         (mono_class_find_enum_basetype): New helper function.
20008         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
20009         one place inside the string heap.
20010         
20011 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
20013         * class.c: locking fixes, code cleanups, some docs added.
20014         Allocate some data structures in the image mempool.
20016 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20018         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20019         the example code.
20020         
20021 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
20023         * class-internals.h, class.c, reflection.c: reduce memory taken by
20024         MonoClass.
20026 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
20028         * metadata.c, metadata.h, loader.h: documentation updates, code and
20029         API cleanups.
20031 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
20033         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
20034         the example code.
20036         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
20037         page faults caused by the runtime while reading metadata.
20039 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20041         * socket-io.c: the field names were changed 3 months ago and no one
20042         realized until bug #76077 got filed!
20044 2005-09-20  Martin Baulig  <martin@ximian.com>
20046         * icall.c (assembly_icalls): Removed some unused debugger icalls.
20048 2005-09-20  Martin Baulig  <martin@ximian.com>
20050         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
20051         write the rank into the class entry.
20053 2005-09-20  Martin Baulig  <martin@ximian.com>
20055         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
20057 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
20059         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20061         * icall.c (custom_attrs_defined_internal): New icall.
20063         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
20064         function.
20065         (mono_custom_attrs_construct_by_type): New helper function.
20067 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
20069         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
20070         terminate the resulting string. Fixes #76123.
20072 2005-09-16  Martin Baulig  <martin@ximian.com>
20074         * mono-debug.c
20075         (mono_debug_add_method): Ignore inflated methods for the moment.
20077 2005-09-14  Martin Baulig  <martin@ximian.com>
20079         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
20081 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
20083         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
20084         return a success/failure indication.
20085         (mono_metadata_interfaces_from_typedef_full): Ditto.
20086         (get_constraints): Ditto.
20088 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
20090         * marshal.c (emit_marshal_array): Fix handling of null arrays.
20091         
20092         * marshal.c (emit_marshal_array): Add support for returning string
20093         arrays from delegates. Fixes #76063.
20095         * marshal.c: Use the emit_ldloc/stloc macros where possible.
20097 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
20099         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
20100         icall.
20102 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
20104         * reflection.c icall.c: Fix after mono_get_exception_type_load
20105         signature change.
20107         * assembly.c (mono_assembly_get_assemblyref): New helper function.
20108         (mono_assembly_load_reference): Use the new helper.
20110         * class-internals.h (MonoLoaderError): New structure containing 
20111         information about type loading errors.
20113         * class-internals.h loader.c: Add APIs to store per-thread loader
20114         error information.
20116         * loader.c class.c: Set the loader error if needed.
20118         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
20120 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
20122         * decimal.c: fixed to handle the broken ARM fp format.
20124 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
20126         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
20127         broken.
20129 2005-09-06  Martin Baulig  <martin@ximian.com>
20131         * domain.c (supported_runtimes): Added v2.0.50727.
20133 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
20135         * culture-info.h: reduce the size of some structures.
20137 2005-09-05  Martin Baulig  <martin@ximian.com>
20139         Reflect latest API changes in the August CTP.
20141         * icall.c
20142         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
20143         ("MonoType.HasGenericArguments"): Removed.
20144         ("MonoMethod.BindGenericParameters"): Renamed to
20145         "MakeGenericMethod".
20146         ("MethodBuilder.BindGenericParameters"): Renamed to
20147         "MakeGenericMethod".    
20149 2005-09-05  Martin Baulig  <martin@ximian.com>
20151         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
20153 2005-09-05  Martin Baulig  <martin@ximian.com>
20155         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20157         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
20158         generic_container is non-NULL.
20160 2005-09-05  Martin Baulig  <martin@ximian.com>
20162         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20164         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
20166 2005-08-29  Michal Moskal  <malekith@nemerle.org>
20168         * reflection.c (encode_locals,
20169         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
20170         for large generic types.
20172 2005-09-05  Martin Baulig  <martin@ximian.com>
20174         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20176         * class.c (mono_dup_array_type): New public method.
20177         (mono_metadata_signature_deep_dup): New public method.
20178         (dup_type): Correctly duplicate array and function types.
20180 2005-09-05  Martin Baulig  <martin@ximian.com>
20182         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20184         * reflection.c (get_default_param_value_blobs): Handle generic types
20185         and generic methods.
20187 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
20189         * class.c: Fixed error reporting (method/class were inversed) for 
20190         inheritance demands.
20191         * security-manager.c|h: Added the AppDomain when calling the managed
20192         System.Security.SecurityManager.InheritanceDemand method.
20194 2005-09-01  Raja R Harinath  <rharinath@novell.com>
20196         * reflection.c (encode_marshal_blob): 'marshaltype' and
20197         'marshaltyperef' are alternate sources for the custom marshaler
20198         name.
20200 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
20202         * class.c: fix creation of array classes with rank == 1
20203         (patch by Ankit Jain <jankit@novell.com>).
20205 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
20207         * object.c: fix check for creating the bound data for arrays vs
20208         szarrays.
20210 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20212         * object.c: configuration file name is now based on the executable name,
20213         not the image name. Fixes bug #75931.
20215 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
20217         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
20218         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
20220 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
20222         * rand.c: Use wincrypt.h instead of WinCrypt.h.
20224 2005-08-24  Ankit Jain  <jankit@novell.com>
20225             Raja R Harinath  <rharinath@novell.com>
20227         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
20228           called by it recursively.
20229           (mono_class_init): Remove special case in pending_init handling, since it's
20230           superseded by the fix to mono_class_from_typeref.
20232 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
20234         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
20235         BROKEN_THREAD_START stuff.
20237 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
20239         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
20240         trampoline.
20242         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
20243         
20244         * object.c (mono_delegate_ctor): Replace the original function address with
20245         a delegate trampoline.
20247 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
20249         * icall.c: add boolean argument to base64_to_byte_array and 
20250         InternalFromBase64String to control whether a whitespace-only string
20251         is allowed (or should casue a FormatException to be thrown). We need
20252         this as the behavior has changed between MS.NET 1.x and 2.0, and we
20253         to match the MS behaviour in both profiles.
20254         * appdomain.c: Bump corlib version.
20256 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20258         This patch implements a big portion of publisher policy
20259         support, used to bind assembly versions and redirect
20260         one assembly from version A to version B.
20262         * assembly.c:
20263         New GSList loaded_assembly_bindings, for storing the cached
20264         assembly bindings.
20265         (assembly_binding_maps_name): New static function for checking if a 
20266         assembly binding information maps an assembly name.
20267         (mono_assembly_binding_info_free): New function for freeing
20268         assembly binding information resources.
20269         (get_publisher_policy_info): New static function for retrieving 
20270         assembly binding information from a MonoImage.
20271         (compare_versions): New static function for comparing an assembly
20272         binding information data and the version of an assembly name.
20273         (check_policy_versions): New static function for checking if an
20274         assembly binding info mapping an assembly name is valid for it.
20275         (mono_assembly_load_publisher_policy): New static function for
20276         loading the 'policy.major.minor.MyAssembly' image for an assembly
20277         with an assembly name 'aname'.
20278         (mono_assembly_bind_version): New static function for updating
20279         assembly redirection.
20280         (mono_assembly_apply_binding): New static function for applying
20281         assembly binding.
20282         (search_binding_loaded): New static function for searching 
20283         loaded assembly binding infos in the cache domain.
20284         (mono_assembly_load_full): Don't apply assembly binding for
20285         reflection only assemblies.
20287         * metadata-internals.h: Add MonoAssemblyBindingInfo,
20288         which contains information about assembly binding. Also
20289         declare signature for mono_config_parse_publisher_policy ()
20290         function, used to retrieve pub policy info.
20291         
20292         * mono-config.c:
20293         (publisher_policy_start): New static function used to parse publisher 
20294         policy config files.
20295         (publisher_policy_parser): New static MonoParseHandler containing 
20296         the functions used when parsing config files.
20297         (mono_config_parse_publisher_policy): New function for parsing
20298         publisher policy files.
20299         
20300 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
20302         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
20304         * marshal.c (mono_delegate_free_ftnptr): Ditto.
20306         * object.c (mono_get_addr_from_ftnptr): New helper function.
20308         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
20310         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20312 2005-08-19  Dick Porter  <dick@ximian.com>
20314         * threads.c, threads.h, appdomain.c, appdomain.h,
20315         profiler-private.h, monitor.c, object.c, object-internals.h,
20316         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
20317         store the thread ID, so it can hold a 64 bit value if needed.
20319 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
20321         * reflection.c (mono_reflection_create_dynamic_method): Store the
20322         handle class into the method references as well so ldtoken works in
20323         dynamic methods.
20325         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
20326         types.
20328 2005-08-19  Ankit Jain <jankit@novell.com>
20330         Fix #75847.
20331         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
20332           here rather than using the method signature of a arbitrary function
20333           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
20334           two arguments.
20335           Hack done with Harinath.
20337 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20339         * threadpool.c: disable printing stack traces when we get a exception
20340         in a threadpool thread. I need to do more testing to figure out which
20341         cases actually print this. Fixes bug #75828.
20343 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20345         * icall.c: there might be ignored whitespace after the last '='. This
20346         fixes length computation and bug #75840.
20348 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
20350         * assembly.c (mono_assembly_load_full): Consider .exe extension as
20351         well. Fixes #75809.
20353         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
20354         #75784.
20355         
20356         * reflection.c (create_custom_attr_data): Ditto.
20358 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
20360         * locales.c, culture-info.h : removed RegionLCIDMap.
20361         * culture-info-tables.h : regenerated.
20363 2005-08-16  Martin Baulig  <martin@ximian.com>
20365         * class.c (mono_type_get_name_recurse): Small fix.
20367 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
20369         * locales.c : indentation fixie.
20371 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
20373         * object-internals.h,
20374           locales.h,
20375           locales.c,
20376           culture-info.h,
20377           icall.c : added RegionInfo table support.
20378         * culture-info-table.h : regenerated for region support.
20380 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
20382         * reflection.c (resolve_object): handle all kinds of MonoMethod
20383         including generic ones
20385 2005-08-12  Ankit Jain <jankit@novell.com>
20387         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
20388           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
20390 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
20392         * process.c: Don't close a thread handle when it's NULL. This is a
20393         workaround for bug #75733.
20395 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
20397         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
20399 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
20401         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
20403 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20405         * threadpool.c: if a work item in the thread pool has a callback that
20406         catches a exception, don't propagate it after invoking the callback.
20407         Fixes bug #75336.
20409 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
20411         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
20413         * class-internals.h (MonoCachedClassInfo): Add some new fields.
20415         * class.c (mono_class_init): Load field info lazily in the AOT case.    
20417         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
20419 2005-08-03  Ankit Jain  <jankit@novell.com>
20421         Fix #75683.
20422         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
20423           PInvoke calling convention is 0.
20425 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
20427         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
20428         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
20430 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
20432         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
20433         to handle threads not started by the GC (patch by Michael Meeks
20434         <michael.meeks@novell.com>).
20436 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
20438         * reflection.c: Make buffer used in emitting types larger for some
20439         big generic types (patch by Michal Moskal).
20441 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
20443         * mono-debug.c: Fix some (not all) alignment problems.
20445 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20447         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
20448         Invoke mono_image_load_from_data_full passing the refonly
20449         parameter.
20451         * assembly.c
20452         (mono_assembly_open_from_bundle): Add the refonly argument, 
20453         in order to pass it to other methods it calls to.
20454         (do_mono_assembly_open): Add the refonly argument, in order 
20455         to pass it to other methods it calls to.
20456         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
20457         the refonly parameter to it.
20459         * image.c: Add loaded_images_refonly_hash and
20460         loaded_images_refonly_guid_hash to cache the reflection
20461         only loaded images.
20462         (mono_images_init): Initialize the hash tables used for
20463         caching the reflection only images.
20464         (load_modules): Invoke mono_image_open_full passing the refonly
20465         parameter to load the modules the correct way.
20466         (build_guid_table): Add the refonly argument, to re-build the 
20467         correct hash table.
20468         (do_mono_image_open): Added the refonly argument, in order to
20469         define it for the loaded image.
20470         (mono_image_loaded_full): New function, which receives an
20471         additional parameter to look for the image in the refonly or
20472         non-refonly section.
20473         (mono_image_loaded): Updated, using mono_image_loaded_full.
20474         (mono_image_loaded_by_guid_full): The same case that happens
20475         with mono_image_loaded_full.
20476         (mono_image_loaded_by_guid): Likewise.
20477         (register_image): Use the ref_only variable inside MonoImage
20478         to decide in which hash table store the current image.
20479         (mono_image_open_from_data_full): Rename
20480         mono_image_open_from_data to mono_image_open_from_data_full,
20481         adding the refonly argument, to define the ref_only variable 
20482         inside MonoImage.
20483         (mono_image_open_from_data): Return 
20484         mono_image_open_from_data_full.
20485         (mono_image_open_full): Rename mono_image_open to
20486         mono_image_open_full, receiving the new refonly argument,
20487         to pass it to inner methods.
20488         (mono_pe_file_open): Update this function, to open
20489         a MonoImage as a non-refonly image.
20490         (mono_image_close): Use the refonly variable inside
20491         MonoImage to remove the image from the correct caches.
20493         * image.h: Add the signatures of mono_image_open_full,
20494         mono_image_open_from_data_full, mono_image_loaded_full,
20495         mono_image_loaded_by_guid_full.
20497         * metadata-internals.h: Add the ref_only field to 
20498         MonoImage.
20499         
20500 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20502         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
20503         Fix the last behavior, which used to load the assemblies and
20504         extract MonoReflectionAssemblyName information, instead of
20505         extract it from the metadata tables. Needed for Reflection
20506         Only assemblies.
20507         
20508 2005-07-29  Martin Baulig  <martin@ximian.com>
20510         * mono-debug-debugger.c
20511         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
20512         not initialized.
20514         * mono-debug.c
20515         (mono_debug_address_from_il_offset): Check whether we have
20516         debugging support before attempting to take the lock.
20517         (mono_debug_source_location_from_address): Likewise.
20518         (mono_debug_source_location_from_il_offset): Likewise.
20519         (mono_debug_il_offset_from_address): Likewise.
20520         (mono_debug_address_from_il_offset): Likewise.
20522 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
20524         * class.c (mono_class_from_name_case): Add support for dynamic images.
20525         Fixes #75650.
20527         * object.c (mono_class_compute_gc_descriptor): Add a workaround
20528         for #75479.
20530 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20531         
20532         * reflection.c (mono_method_get_object): Fix warning.
20534 2005-07-28  Martin Baulig  <martin@ximian.com>
20536         * mono-debug.c
20537         (mono_debug_add_wrapper): Also write the wrapper type.
20539 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
20541         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
20542         
20543         * class.c (mono_class_init): Avoid reading nested classes if the AOT
20544         data indicates the class has none.
20546 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
20548         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
20549         loader lock with the debugger lock. Prevents deadlocks for beagle.
20551         Beagle can now run on an smp box for a weekend without any
20552         issues. Woohoo!
20554 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
20556         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
20557         in a module. Fixes #75629.
20559 2005-07-26  Martin Baulig  <martin@ximian.com>
20561         * mono-debug.c (mono_debug_add_wrapper): New static method.
20562         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
20563         interncall or a wrapper.
20565         * mono-debug.h (MonoDebugWrapperData): New public typedef.
20566         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
20567         (MONO_DEBUGGER_VERSION): Bump to 51.
20569         * mono-debug-debugger.c
20570         (mono_debugger_add_type): Removed this empty function.
20571         (mono_debugger_add_method): Likewise.
20573 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
20575         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
20576         before accessing method->slot.
20578 2005-07-21  Jb Evain  <jbevain@gmail.com>
20580         * reflection.c (method_encode_clauses/class): Handle filters clauses.
20581         Fixes #75010.
20583 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
20585         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
20586         #75587.
20588 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
20590         * image.h image.c: Add mono_image_get_guid () API function.
20592 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
20594         There were issues when multiple threads tried to load
20595         assemblies. A deadlock was created between assemblies_mutex and
20596         mono_domain_assemblies_lock. This fixes the issue by making the
20597         assembly ref counting be lock free. See bug 75586.
20598         
20599         * image.c (mono_image_close): The add ref function here was using
20600         Interlocked operations while the unref was using a mutex and a
20601         --. I don't think this was ever a bug that would be exposed in a
20602         non-pendantic way (ie, by an embedder doing a ref on one thread
20603         and an unref on another), but for the sake of correctness, this is
20604         now Interlocked.
20606         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
20607         (mono_assembly_load_reference): Call mono_assembly_addref rather
20608         than touching the refcount ourselves.
20609         (mono_assembly_close): Use InterlockedDecrement to unref the
20610         assembly. Don't acquire the lock unless it is actually needed.
20612 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20614         * class.c (mono_class_layout_fields): Fix calculation of has_references
20615         for generic types.
20617 2005-07-12  Martin Baulig  <martin@ximian.com>
20619         Applying a patch from Michal Moskal <malekith@nemerle.org>.
20621         * metadata.c
20622         (mono_type_hash): Provide better hashing for generic instances.
20623         (mono_generic_inst_hash): Improve hashing.
20624         (mono_generic_class_hash): Likewise.
20626         * reflection.c (mymono_metadata_type_hash): Improve hashing for
20627         generic instances.
20629 2005-07-12  Martin Baulig  <martin@ximian.com>
20631         * reflection.c (mono_reflection_create_runtime_class): Remove the
20632         hack for generic type definitions and non-`Run' assemblies.
20633         (mono_reflection_bind_generic_parameters): Also use
20634         `klass->wastypebuilder' to check for TypeBuilders.
20636 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
20638         * class.c (mono_class_layout_fields): Fix calculation of has_references
20639         for generic types.
20641         * class.c (inflate_generic_class): Fix a leak.
20642         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
20643         for generic types.
20645 2005-07-11  Martin Baulig  <martin@ximian.com>
20647         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
20648         on error.
20650 2005-07-11  Martin Baulig  <martin@ximian.com>
20652         * loader.c (find_method): Also lookup in
20653         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
20655 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20657         * appdomain.c (mono_domain_unload): Don't free the error message
20658         before passing it to mono_get_exception_...
20660         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
20661         
20662 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
20664         * threads.c: try to better guess an available RT signal (bug #75387).
20666 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20668         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
20669         and CACHE_OBJECT.
20671 2005-07-07  Martin Baulig  <martin@ximian.com>
20673         * class.c (mono_type_get_name_full): Return NULL for
20674         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
20675         fixes #75408.
20677 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
20679         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
20680         exit the appdomain as well being aborted.
20682         * threadpool.c: Create all threadpool threads inside the root appdomain, and
20683         change back to the root domain after calling managed code. This enables
20684         appdomains using threadpools to be unloaded.
20686 2005-07-07  Martin Baulig  <martin@ximian.com>
20688         * class-internals.h
20689         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
20690         into `MonoDynamicGenericClass' since we only need it for dynamic
20691         types.
20693         * reflection.c (mono_class_bind_generic_parameters): We don't need
20694         to compute the `parent' here.
20696 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
20698         * culture-info-table.h : regenerated.
20700 2005-07-06  Martin Baulig  <martin@ximian.com>
20702         * icall.c
20703         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
20705         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
20707 2005-07-06  Martin Baulig  <martin@ximian.com>
20709         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
20710         we're doing a signature-only comparision; fixes #74945.
20712 2005-07-06  Martin Baulig  <martin@ximian.com>
20714         * class-internals.h (MonoGenericClass): Moved some things out into
20715         a new `MonoInflatedGenericClass' type.  
20716         (MonoInflatedGenericClass): New type; the `klass' of a
20717         `MonoGenericClass' is now computed lazyly in
20718         mono_get_inflated_generic_class().      
20720         * class.c (mono_get_inflated_generic_class): New public function.
20721         (mono_class_inflate_generic_method): Removed the unused
20722         `MonoClass *' argument.
20723         (setup_generic_vtable): Don't call mono_get_inflated_method() on
20724         all the methods.
20725         (mono_class_create_generic): Make this static and merge it with
20726         mono_class_create_generic_2(); we're now called automatically from
20727         mono_get_inflated_generic_class().
20729         * loader.c (mono_method_signature): Call
20730         mono_get_inflated_method() here.
20732 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
20734         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
20735         type of fields with RVA.
20737         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
20738         for this pseudo class.
20739         (my_mono_class_from_generic_parameter): Likewise.
20740         (mono_class_init): Allow interfaces to have cctors.
20742 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20744         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
20745         lazily for AOT methods.
20747 2005-07-05  Martin Baulig  <martin@ximian.com>
20749         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
20750         returns FALSE for a successful match, not TRUE.
20752 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
20754         * loader.c (mono_method_get_index): Optimize this a bit.
20756 2005-07-04  Martin Baulig  <martin@ximian.com>
20758         * class.c
20759         (class_compute_field_layout): Move the check for generic type
20760         definitions into mono_class_layout_fields().  Fixes #74684.
20761         (mono_class_from_generic_parameter): Correctly compute
20762         `klass->parent'; fixes #75457.
20764         * reflection.c (register_assembly, register_module): Make sure
20765         `domain->rejobject_hash' is already created.
20767 2005-07-02  Martin Baulig  <martin@ximian.com>
20769         * class-internals.h
20770         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
20771         `MonoDynamicGenericClass'.      
20773 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
20775         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
20776         returned by a field getter is null, since null is a valid value.
20778 2005-07-01  Martin Baulig  <martin@ximian.com>
20780         * reflection.c (mono_reflection_generic_class_initialize): Update
20781         the `dgclass->fields [i].parent' to the correct class.
20782         (mono_image_get_fieldref_token): Use the declaring type, not the
20783         reflected type.
20785 2005-07-01  Martin Baulig  <martin@ximian.com>
20787         * loader.c (find_method): Also look in the interfaces; fixes #75429.
20789 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
20791         * threads.c (thread_cleanup): assert that thread != NULL
20792         (wait_for_tids_or_state_change): We were using the wrong variable
20793         when accessing wait->threads. `i' was always out of the bounds of
20794         the array.
20796 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20798         * loader.c: map user32 and kernel32 to libMonoSupportW
20800 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
20802         * appdomain.c (unload_thread_main): Mark this as WINAPI.
20804 2005-06-28  Martin Baulig  <martin@ximian.com>
20806         * loader.c (method_from_methodspec): Fix #75334.
20808 2005-06-28  Martin Baulig  <martin@ximian.com>
20810         Fix #74953 - Arrays now implement the generic IList<T> interface
20811         on the 2.0 platform.
20813         * class-internals.h (MonoDefaults): Added `generic_array_class'.
20815         * reflection.c (mono_class_bind_generic_parameters): New public
20816         function; similar to mono_reflection_bind_generic_parameters(),
20817         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
20819         * domain.c (mono_init_internal): Try to initialize.
20820         `mono_defaults.generic_array_class' here; this'll only succeed if
20821         we're using the 2.0 corlib.
20823         * icall.c
20824         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
20825         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
20826         (mono_lookup_internal_call): Added support for nested classes.
20828         * loader.c
20829         (mono_get_method_from_token): Set `result->signature->pinvoke' if
20830         we're an interncall and have generic arguments.
20832         * class.c
20833         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
20834         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
20835         instance of System.Array.InternalArray<T> for arrays, so they
20836         implement the generic IList<T> interface.
20838 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
20840         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
20841         (chastamar@yahoo.com). Fixes #75374.    
20843 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
20845         * culture-info-table.h: regenerated.
20847 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20849         * icall.c: handle spaces correctly for base64 strings.
20851 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
20853         * *.c: Kill some warnings.
20855 2005-06-23  Duncan Mak  <duncan@novell.com>
20857         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
20858         that this builds on Solaris 10 (x86).
20860 2005-06-23  Martin Baulig  <martin@ximian.com>
20862         * class.c
20863         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
20864         generic type definitions.
20866 2005-06-23  Martin Baulig  <martin@ximian.com>
20868         Fix #75331.
20870         * metadata.c (mono_class_get_overrides): Renamed to
20871         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
20872         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
20873         pass it to mono_get_method_full().
20875 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
20877         * reflection.c (mono_reflection_create_runtime_class): take the
20878         mono_domain_lock in this method. Prevents deadlocks
20880 2005-06-22  Martin Baulig  <martin@ximian.com>
20882         * loader.c (method_from_methodspec): Fix #75330.
20884 2005-06-22  Martin Baulig  <martin@ximian.com>
20886         * reflection.c (type_get_qualified_name): Use
20887         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
20888         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
20889         argument; use it if we don't have an assembly name.
20891 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
20893         * object.c: In mono_message_init, set "copy out" flag for in
20894         parameters with the [Out] flag.
20896 2005-06-21  Martin Baulig  <martin@ximian.com>
20898         * class.c
20899         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
20900         and MONO_TYPE_PTR.
20902 2005-06-21  Martin Baulig  <martin@ximian.com>
20904         * class.c (mono_class_init): Don't initialize `class->fields' for
20905         generic instances since they're initialized again in
20906         compute_field_layout(). 
20907         (compute_field_layout): Set the field's `generic_info' here; fix
20908         #75320. 
20910 2005-06-21  Martin Baulig  <martin@ximian.com>
20912         * class-internals.h
20913         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
20915         * metadata.c (mono_metadata_generic_method_equal): Also
20916         distinguish the `generic_class'; fixes #75334.
20918 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20920         * domain.c:
20921         * appdomain.c:
20922         * domain-internals.h:
20923         * reflection.c: 'domain_assemblies' field is now protected by its own
20924         lock. Don't call into managed code to run the AssemblyLoad event if we
20925         now there are no registered delegates for it.
20927 2005-06-20  Martin Baulig  <martin@ximian.com>
20929         * class.c (mono_class_is_assignable_from): Use a custom version of
20930         mono_class_has_parent() to make things work for generic instances;
20931         fix #75300.
20933 2005-06-20  Martin Baulig  <martin@ximian.com>
20935         * loader.c (method_from_methodspec): Apply a patch from
20936         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
20938 2005-06-20  Martin Baulig  <martin@ximian.com>
20940         * class.c (mono_class_init): Reverted Zoltan's last change; it
20941         breaks generics.
20943 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
20945         * threads.c (wait_for_tids_or_state_change): Add missing locking.
20947 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20949         * socket-io.c: fix the index in the socket array for writable/error
20950         sockets. Fixes bug #75306.
20952 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
20954         * class.c (mono_class_init): Allow interfaces to have static ctors.
20956 2005-06-17  Martin Baulig  <martin@ximian.com>
20958         * loader.c (method_from_methodspec): Use `context->container' when
20959         parsing the `gmethod->inst'.
20961 2005-06-17  Martin Baulig  <martin@ximian.com>
20963         * class.c (mono_type_get_name_recurse): Don't add the assembly
20964         name for type arguments.
20966 2005-06-15  Martin Baulig  <martin@ximian.com>
20968         * reflection.c (mono_image_get_inflated_method_token): Encode
20969         correct klass; fixes #75260.
20971 2005-06-13 Michal Moskal <malekith@nemerle.org>
20973         * icall.c: Make GetCorrespondingMethod/Constructor take
20974         MonoReflectionMethod method not MonoMethod. Removed
20975         MonoType.GetCorrespondingField, and make
20976         MonoGenericType.GetCorrespondingField take name not
20977         MonoClassField.
20979 2005-06-13  Michal Moskal <malekith@nemerle.org>
20981         * reflection.c (field_encode_signature, encode_locals):
20982          Make sizes of buffers for types larger (for big generic types).
20983          (create_generic_typespec,
20984          mono_reflection_sighelper_get_signature_local,
20985          mono_reflection_sighelper_get_signature_field):
20986          Add asserts for too small buffers.
20988 2005-06-15  Martin Baulig  <martin@ximian.com>
20990         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
20991         if our parent is not a dynamic type.
20993 2005-06-15  Martin Baulig  <martin@ximian.com>
20995         * class-internals.h (MonoTypeNameFormat): New enum.
20997         * class.c
20998         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
20999         (mono_type_get_full_name): Removed.
21000         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
21001         argument instead of the boolean's.
21003         * icall.c (ves_icall_System_MonoType_getFullName):
21004         Added `gboolean assembly_qualified'.    
21006         * reflection.h
21007         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
21009         * reflection.c (mono_reflection_parse_type): Parse the new type
21010         name format.
21012 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21014         * icall.c: no need to convert from utf16 to utf8 and then back again
21015         after the call to GetLogicalDrives.
21017 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21019         * icall.c: frombase64. Fix problems exposed by new tests.
21021 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21023         * icall.c: added internal calls for converting char [] and strings in
21024         base64 into byte [].
21026 2005-06-10  Martin Baulig  <martin@ximian.com>
21028         * class.c (mono_class_create_generic_2): Read the nested classes
21029         from the metadata rather than from `gklass->nested_classes' since
21030         `gklass' might not be initialized yet.
21032 2005-06-09  Duncan Mak  <duncan@novell.com>
21034         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
21035         all public headers. Fixes #74919.
21037 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
21039         * domain.c: The key for proxy_vtable_hash is now a pointer
21040         array. Added new GHashFunc and GCompareFunc functions for this.
21042         * class.h: The list of interfaces in MonoRemoteClass is known in
21043         advance and can't grow (we create a new MonoRemoteClass if needed),
21044         so now the interface array can be allocated together with
21045         MonoRemoteClass.
21046         
21047         * object.c: Added a new method create_remote_class_key.
21048         Fixed mono_remote_class so it does not depend on
21049         mono_upgrade_remote_class.
21050         Removed extend_interface_array.
21051         Added new method clone_remote_class(), which makes a copy of a remote
21052         class and adds a new interface or class to it.
21053         mono_upgrade_remote_class() now creates a new remote class (or gets
21054         it from the cache) if an vtable upgrade is needed. In this way
21055         we make sure that other objects sharing the same remote class
21056         don't get the new vtable with unwanted interfaces.
21057         
21058         * object-internals.h:
21059         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
21060         
21061         * marshal.c: Track changes in mono_upgrade_remote_class().
21063 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
21064         * icall.c: Add runtime methods for obtaining members of inflated
21065         class, which were created from supplied non-inflated members. It
21066         is used in internal Get{Method,Constructor,Field} methods in
21067         System.Type
21069 2005-06-09  Martin Baulig  <martin@ximian.com>
21071         * reflection.c
21072         (mono_reflection_bind_generic_method_parameters): Fix #75169.
21074 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21075         * reflection.c (mono_image_basic_init): Define
21076         Version in MonoDynamicAssembly. 
21077         
21078 2005-06-08  Martin Baulig  <martin@ximian.com>
21080         Fix #75136.
21082         * loader.c
21083         (mono_method_signature_full): New public method; takes a
21084         `MonoGenericContext *'.
21085         (find_method): Use mono_method_signature_full() and pass the
21086         klass'es context to it.
21088         * class.c (mono_class_is_inflated_method): Use
21089         mono_method_signature_full() and pass the context to it.
21091 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
21093         * object.c: add proper locking in mono_remote_class_vtable(),
21094         fixes possible memory corruption.
21096 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
21098         * marshal.c (mono_remoting_marshal_init): set
21099         initialized after initialization.
21101 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
21103         * locales.c : hush.
21105 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
21107         * object.c (extend_interface_array): fix really silly
21108         memory corrupting / comparison bug.
21110 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21112         * reflection.c: Functions added to support the creation
21113         of CustomAttributeData, which includes Attribute data
21114         used by ReflectionOnly methods.
21116         * reflection.h:  mono_reflection_get_custom_attrs_data and
21117          mono_custom_attrs_data_construct added (functions exposed).
21119          * icall.c: Added mono_reflection_get_custom_attrs_data
21120          as icall.
21121         
21122 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
21124         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
21125         lupus's request.
21127 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
21129         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
21131         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
21132         dynamic DllImportAttribute.
21134         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
21135         dynamic DllImportAttribute.
21137         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
21138         Fixes #75162.
21140 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21142         * threads.c: avoid segfault when an unstarted thread is aborted.
21144 2005-06-05  KornĂ©l Pál <kornelpal@hotmail.com>
21146         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
21147         Returns the name and version of the runtime for reporting.
21149 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21151         * appdomain.c: bump corlib version.
21152         * object-internals.h: new field in MonoReflectionAssembly.
21154 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21156         * object-internals.h: Carlos forgot to add this field.
21158 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21160         * icall.c: Added create_version to create instances
21161         of Version of MonoReflectionAssemblyName. This change helps
21162         the AssemblyName tests to keep running fine.
21163         
21164 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
21165   
21166         * object.c (mono_method_return_message_restore): A somehow less
21167         intrusive fix for #75138.
21169 2005-06-03  Raja R Harinath  <rharinath@novell.com>
21171         * object.c (mono_method_return_message_restore): Fix computation
21172         of expected number of out args.
21174 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21176         * reflection.c (mono_image_get_method_info): Fix the case when the
21177         charset is empty.
21179 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
21181         * object.c: Added missing null check in
21182           mono_method_return_message_restore.
21184 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
21186         * reflection.c (mono_image_get_method_info): Handle the case when
21187         dllentry is empty.
21189 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
21191         * object.c: When creating the vtable for a proxy, take into account
21192         all inherited interfaces, not only the ones registered in
21193         iclass->interfaces. This fixs bug #74996.
21194         Also, in mono_method_return_message_restore, verify that the array
21195         of out args has the expected lengh.
21197 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21199         * socket-io.c: update the timeout in Poll when the call is interrupte.
21201 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21203         * socket-io.c: support abort/suspend in Select_internal after last
21204         change.
21206 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21208         * threadpool.c: remove warning.
21210 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21212         * icall.c:
21213         * socket-io.[ch]: Select_internal uses poll() now when available, thus
21214         removing the 1024 limit from select(). Runtime part of the fix for
21215         bug #71203.
21217 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21219         * socket-io.c: when resolving the addresses for the same
21220         host returned by gethostname(), get the local IPs from the interface
21221         list. Loopback addresses are discarded if the are interfaces up with
21222         non-loopback ones. Fixes bug #63265.
21224 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
21226         * appdomain.c, verify.c, object-internals.h, reflection.c:
21227         bumped corlib number to 36, and added new extra_flags field
21228         to ReflectionMethodBuilder and friends.  Fixes #75060.
21230 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
21232         * gc.c: register a new weak link only if the object is non-null
21233         (fixes bug#75047).
21235 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21237         * culture-info.h : short time pattern too.
21239 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
21241         * culture-info.h : expand long time pattern string length.
21243 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21245         * culture-info-table.h : update (more French date format; #72788).
21247 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
21249         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
21250         the method is static. Fixes #75029.
21252 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
21254         * reflection.c: Update the table_idx field of method builders after
21255         saving the module, since it can change. This is a workaround for
21256         bug #74914. 
21258 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
21260         * culture-info-table.h : update (additional French date format).
21262 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
21264         * icall.c (ves_icall_type_Equals): Revert last change.
21265         
21266         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
21268         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
21270 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
21272         * class-internals.h: Added executioncontext_class field to 
21273         MonoDefaults structure.
21274         * domain.c: Cache System.Threading.ExecutionContext class in 
21275         mono_defaults.
21276         * object.c: Capture the ExecutionContext for asynchroneous calls in
21277          mono_async_result_new.
21278         * object-internals.h: Added execution_context and original_context 
21279         fields to MonoAsyncResult. Added execution_context to MonoThread.
21280         * security-manager.c|.h: Added mono_get_context_capture_method to 
21281         return the capture method (if required by the security manager or by
21282         the framework version used).
21283         * threadpool.c: Apply capture (if present) ExecutionContext in 
21284         mono_async_invoke and revert to original context after it completes.
21286 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
21288         * culture-info-table.h : updated (real hacky solution for zh-CHT).
21290 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
21292         * culture-info-table.h : zh-CHT related workaround.
21294 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21296         * marshal.c (emit_marshal_custom): Add some error checking and call the
21297         methods in the ICustomMarshaler interface. Fixes #74875.
21298         
21299         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
21300         native->managed wrappers.
21302 2005-05-12  Martin Baulig  <martin@ximian.com>
21304         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
21305         here and use the loader lock.
21307         * mono-debug.c: Properly lock when the debugger is not attached.
21308         (mono_debug_init): Release the initial lock if we're not running
21309         in the debugger.
21311 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
21313         * marshal.c (emit_marshal_custom): Pass through NULL values without
21314         calling the custom marshalling routines.
21316         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
21317         conversion in structures. Fixes #74882.
21319 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
21321         * culture-info-table.h : zh-* cultures were missing.
21323 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
21325         * threads.c: Added a new event background_change_event which is signaled
21326         when a thread changes its background mode.
21327         Moved here several checks previously done in managed code. The checks
21328         require the thread lock, and using the thread lock in managed code
21329         can result in deadlocks.
21330         Merged Start_internal and Thread_internal into a single method. Now 
21331         Thread_internal does all work of creating and starting a thread.
21332         Added icalls for setting and getting the state of the object. Moved from
21333         managed code to avoid locking there.
21334         Added wait_for_tids_or_state_change() which is called instad of
21335         wait_for_tids when waiting for non-backround threads to end. This method
21336         will return if one of the threads ends or the background_change_event
21337         is signaled.
21338         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
21339         the background mode. This method signals the background_change_event
21340         event.
21341         * icall.c:
21342         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
21343         removed Start_internal.
21344         
21345 2005-05-11  Martin Baulig  <martin@ximian.com>
21347         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
21348         to order of some fields to get proper alignment on 64-bit machines.
21350 2005-05-11  Martin Baulig  <martin@ximian.com>
21352         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
21353         changes as they're broken and completely fuck up the debugger.
21355         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
21357 2005-05-10  Martin Baulig  <martin@ximian.com>
21359         * reflection.c (mono_reflection_generic_class_initialize): Don't
21360         call mono_class_setup_parent() here.
21362 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21364         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
21365         send/receive timeout use an integer in milliseconds. We were using a
21366         struct timeval.
21368 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21370         * locales.c:
21371         (internal_get_cultures): reserve the first slot of the array for the
21372         InvariantCulture, which will be filled in managed code.
21374 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
21376         * reflection.c (mono_image_fill_module_table): Initialize the
21377         GENERATION field as well.
21379 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21381         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
21382         Monitor.Enter on the object.
21384 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
21386         * threads.c: Enable the wait for running threads when exiting.
21387         * icall.c: Suspend all threads before exiting.
21389 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
21391         * assembly.c (mono_assembly_load_reference): Fix warning.
21393 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21395         * threadpool.c: changed the default number of threads per cpu. From now
21396         on, the default will be 20 + (5 * number of cpus) instead of 50.
21398 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
21400         * loader.c (mono_method_get_signature_full): Add locking here.
21402 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
21404         * appdomain.c: Moved methods for parsing and freeing assembly
21405         names to assembly.c.
21406         * assembly.c, domain-internals.h: Created public methods for parsing
21407         assembly names. Fixed mono_assembly_load_with_partial_name:
21408         it now finds the best match, taking into account the version,
21409         token and culture specified in the partial name. Also return
21410         the latest version if no version information is specified.
21412 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
21414         * threadpool.c: replace check for SocketAsyncCall class.
21416 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21418         * threadpool-internals.h:
21419         * Makefile.am: added threadpool-internals.h
21421         * threadpool.c: call mono_unhandled_exception on exceptions not handled
21422         that happen in threadpool threads (tested on MS).
21423         (mono_thread_pool_remove_socket): new function that dispatch any pending
21424         AIO call on a socket that is closing. By now only epoll really needs it,
21425         as select/poll wake up when the socket closes.
21428         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
21430 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
21432         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
21434 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
21436         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
21438 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
21440         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
21441         has an abort request, convert it into a suspend request.
21443 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
21445         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
21446         warning for the usage of `UnmanagedFunctionPointerAttribute' which
21447         is not supported yet.
21449 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21451         * image.c: register assemblies loaded from data (bundles) in the loaded
21452         assemblies hash. Fixes bug #74772.
21454 2005-04-29  Martin Baulig  <martin@ximian.com>
21456         * class.c (mono_type_get_name_recurse): Update to the new naming
21457         schema from the latest .NET 2.x beta2.
21458         (mono_class_setup_vtable_general): If we're a generic instance,
21459         copy the vtable from our generic type definition and inflate all
21460         the methods in it.
21462         * loader.c (find_method): Update to the new naming schema from the
21463         latest .NET 2.x beta2.
21465 2005-04-29  Raja R Harinath  <harinath@gmail.com>
21467         * class.c (mono_class_init): Add a mono_loader_unlock to the
21468         #74734 fix.
21470 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
21472         * icall.c (ves_icall_System_Environment_Exit): Remove the 
21473         suspend_all_other_threads () call for the time being, since it can hang.
21475         * threads.c (mono_thread_manage): Similarly, disable the waiting for
21476         the background threads to exit, since it can also hang.
21478         * class.c (mono_class_init): Applied patch from Ankit Jain 
21479         (radical@gmail.com). Avoid pending init errors when a field refers
21480         to a nested class using a typeref. Fixes #74734.
21482         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
21483         this for dynamic modules.
21485 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21487         * threads.c: don't wait for threads that are in the process of aborting
21488         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
21489         and waiting for background threads to finish. This makes xsp and
21490         mod-mono-server exit without random length delays and/or hangs.
21492 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21494         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
21496 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
21498         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
21499         dynamic types to prevent infinite loops. Fixes #74727.
21501         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
21502         ..._is_assignable_to.
21504 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
21506         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
21508 2005-04-25  Martin Baulig  <martin@ximian.com>
21510         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
21512         * domain.c
21513         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
21515         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
21517         * reflection.c (build_compressed_metadata): Set metadata header
21518         version to 2.0.
21520 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
21522         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
21523         number into an integral and a decimal part. Fixes #70473.
21525         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
21527 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
21529         * culture-info-table.h : reflected the latest locale-builder output.
21531 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21533         * threadpool.c: check for SuspendRequested too when deciding if
21534         mono_thread_interruption_checkpoint should be called.
21536 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21538         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
21539         * threads.c: remove interruption_mutex and use Interlocked instead. When
21540         suspending all the threads, wait for all the suspended events at once.
21541         If we're shutting down and get an APC that is going to be queued,
21542         call mono_thread_execute_interruption immediately, as the thread might
21543         be sleeping on a pthread condition or mutex.
21545         * icall.c: call mono_runtime_set_shutting_down before suspending the
21546         threads.
21548         Fixes bug #74693. And now xsp is happier when exiting.
21550 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
21552         * loader.c (mono_stack_walk): Fix #74690.
21554 2005-04-22  Martin Baulig  <martin@ximian.com>
21556         * mono-debug.h (MonoDebugMethodJitInfo): Added
21557         `MonoDebugMethodJitInfo *jit'.
21559         * mono-debug.c (mono_debug_read_method): Cache the
21560         MonoDebugMethodJitInfo in `address->jit'.
21561         (mono_debug_free_method_jit_info): New public method.
21563 2005-04-22  Martin Baulig  <martin@ximian.com>
21565         * class.c (mono_class_is_assignable_from): Disallow
21566         type parameter -> interface.
21568 2005-04-21  Dick Porter  <dick@ximian.com>
21570         * threads.c (mono_thread_create): Turn an assertion into an error.
21572 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
21574         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
21575         
21576         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
21577         Fix some gcc 4.0 warnings.
21579 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
21581         * file-io.c: fix alt dir separator char on unix systems
21582         and cleanup (fixes bug #71214).
21584 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
21586         * marshal.c: Use CALLVIRT instead of CALL when dispatching
21587         a call to a remote domain, since the method may be an
21588         interface method in the client domain. This fixes bug #74192.
21590 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21592         * threadpool.c: recv/send are now performed before going back to managed
21593         code to save one transition.
21595 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21597         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
21599         * metadata/threadpool.c: removed hack to workaround the bug above.
21601         Fixes bug #74618.
21603 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
21605         * reflection.c reflection.h: Fix handling of parameter defaults in
21606         dynamic methods. Also fixes handling of parameter attributes.
21607         Fixes #74609.
21609         * mono-debug.c (mono_debug_close_image): Fix warning.
21611 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21613         * socket-io.h: replaced old unused field with new 'blocking'.
21614         * threadpool.c: restore socket blocking state on windows(tm).
21616 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
21618         * icall.c: don't return the codebase in the AssemblyName[] returned by
21619         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
21620         * object-internals.h: Removed FIXME (fields were presents) and fixed
21621         versioncompat declaration.
21623 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21625         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
21626         not closed, so don't cleanup when it happens.
21628 2005-04-13  Chris Toshok  <toshok@ximian.com>
21630         * mono-debug-debugger.h: change prototype for
21631         mono_debugger_lookup_type.
21633         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
21634         this function, although it should probably be named
21635         mono_debugger_init_type.
21637 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21639         * threadpool.c: fix non-AIO case.
21641 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
21643         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
21644         the built-in profiler to measure just JIT compilation times.
21646 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21648         * threadpool.c: the epollfd might be closed by another thread at
21649         any time, so ignore EBADF at treat it as a "we're closing" sign.
21651 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21653         * threadpool.c: release the semaphores with a count equals to the number
21654         of working threads in both IO and regular pools. Fixed typo that messed
21655         up the count of IO pool threads. Don't initialize the pipe handles if
21656         we're using epoll.
21658 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21660         * threadpool.c: some systems don't like a NULL when deleting the socket
21661         from epoll.
21663 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21665         * threadpool.c: fix semaphore allocation.
21667 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21669         * threadpool.c: added epoll() based implementation for asynchronous IO
21670         that is used instead of the default poll() when available.
21671         It can be disabled by setting MONO_DISABLE_AIO.
21673 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21675         * threadpool.c: windows needs 'closesocket' and instead of returning
21676         0 when the stream is closed while in select, it returns -1. Fixes bug
21677         #74573.
21679 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
21681         * class.c (class_compute_field_layout): Fix the regression caused by
21682         the previous try.
21684 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21686         * threadpool.c: separate pool for socket async. IO.
21687         * threadpool.h: mono_max_worker_threads is not a global any more.
21689 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
21691         * class.c (class_compute_field_layout): Fix #74549.
21693 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21695         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
21696         use 2 connected sockets instead.
21698 2005-04-08  Miguel de Icaza  <miguel@novell.com>
21700         * mono-config.c: Add new entry point for mkbundle
21701         mono_config_parse_memory. 
21703 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21705         * threadpool.c: removed another unused function.
21707 2005-04-08  Ankit Jain  <radical@corewars.org>
21709         * reflection.c (get_default_param_value_blobs): Add 'types'
21710         parameter to get the types encoded in the constant table.
21711         (mono_param_get_objects): Use the type from the constant table,
21712         not the type of the parameter, when creating default values.
21713         Handle null default values correctly.
21715 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21717         * file-io.c:
21718         * file-io.h:
21719         * threadpool.c:
21720         * threadpool.h:
21721         * icall.c:
21722         * socket-io.c: removed dead code for async IO.
21724 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21726         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
21728         * threadpool.c: intercept socket async. calls and pass them to a thread
21729         that is polling and dispatching the job items to the threadpool as
21730         socket become ready. Fixes bugs #71217, #71933.
21732         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
21733         between char and short/ushort arrays.
21735         * socket-io.c: remove dead code.
21737 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21739         * locales.c,
21740           icall.c : removed InternalToUpper_Comp() and
21741           InternalToLower_Comp().
21743 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
21745         * char-conversions.h : The tables were incorrectly generated. Should
21746           be generated against invariant culture.
21748 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
21750         * object.c (mono_runtime_invoke_array): Fix return value when 
21751         passing pre-created valuetype objects to ctors.
21753         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
21754         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
21755         Fixes #74338.
21757 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
21759         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
21760         only used with --security and hides the wrong corlib version error.
21762 2005-03-30  Joshua Tauberer  <tauberer@for.net>
21764         * class.c: Changed mono_class_name_from_token so that types
21765         outside of a namespace don't have an initial period.  Improved
21766         the g_warning message used in _mono_class_get when loading
21767         fails.
21768         * assembly.c: In mono_assembly_load_reference, when an assembly
21769         can't be found, "No such file or directory" is misleading and
21770         unhelpful because a few paths were checked for the presence of
21771         the assembly.  When that happens (ENOENT), display a nicer
21772         message indicating the directories that were searched.  In all
21773         cases, the warning is made easier to read for non-hackers.
21775 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
21777         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
21778         project/solution.
21779         * appdomain.h|domain.c: Removed inline from functions.
21780         * appdomain.c: Reduced warnings when compiling on windows.
21781         * icall.c: Fixed output_debug declaration to gunichar2*.
21782         * mono-config.c: Reduced warnings when compiling on windows.
21783         * rand.c: Added missing "windows.h". Added missing return value.
21784         * rawbuffer.c: Added missing winsock2.h for windows.
21785         * sysmath.h: Added mono-compiler.h header to allow/ease 
21786         compilation with non-GCC compilers.
21787         * threads.c: Fixed declarations to compile with VS.NET C compiler.
21788         Removed cast warnings.
21790         Adapted from the work of J Lothian (for VC6).
21792 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
21794         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
21795         from default_path.
21797 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
21799         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
21800         the 2.0 profile.
21802 2005-03-27  Raja R Harinath  <harinath@gmail.com>
21804         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
21805         has to be in $(exec_prefix).  $(prefix) is for arch-independent
21806         stuff, and it would probably use $(prefix)/share rather than
21807         $(prefix)/lib.
21809 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21811         * console-io.c: added 2 includes that might be missing.
21813 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
21815         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
21816         profile.
21818         * reflection.c (create_custom_attr): Allocate the params array using
21819         alloca so it gets GC tracking.
21821 2005-03-23  Chris Toshok  <toshok@ximian.com>
21823         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
21824         out some spew.
21826 2005-03-24  Raja R Harinath  <rharinath@novell.com>
21828         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
21829         changes to pick up any changes in prefix, etc.
21831 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21833         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
21834         
21835         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
21836         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
21838 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
21840         * class-internals.h object-internals.h class.c reflection.c: Extend the
21841         mono_lookup_dynamic_token () function to return the class of the
21842         token as well. 
21844         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
21845         well. Fixes #73848.
21847 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
21849         * security-manager.c: Skip inheritance checks for intra-corlib
21850         class inheritance and method overrides. This skips a lot of checks
21851         and (anyway) permissions cannot work until corlib is loaded.
21853 2005-03-23  Martin Baulig  <martin@ximian.com>
21855         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
21856         MONO_TYPE_GENERICINST.  
21858 2005-03-23  Martin Baulig  <martin@ximian.com>
21860         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
21862 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
21864         * class.c: added locking comments to some functions.
21865         Cache the interface offsets arrays (saves about 20 KB
21866         of runtime memory in a typical app).
21867         Reduce the time overhead in mono_class_setup_supertypes ().
21869 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
21871         * icall.c: speedup and fix leaks in GetMethodsByName and
21872         GetPropertiesByName.
21874 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
21876         * reflection.c: some locking fixes.
21878 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
21880         * metadata.c: added missing break in case statement.
21882 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
21884         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
21885         typedbyref return values. Fixes #73941.
21887 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
21889         * security-manager.c|h: Added demandunmanaged method and 
21890         suppressunmanagedcodesecurity class to MonoSecurityManager.
21891         Renamed aptc class to allowpartiallytrustedcallers.
21893 2005-03-17  Martin Baulig  <martin@ximian.com>
21895         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
21897 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21899         * file-io.c: disabled file async. IO using aio_*. It uses the
21900         threadpool now. Workaround for bug #73718.
21902 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
21904         * assembly.h, mono-config.c: added code to deal with bundled configs
21905         for bundled assemblies.
21907 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
21909         * *.c, private.h: cleanup, removing old private.h header file.
21911 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
21913         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
21914         and throw_on_unmappable_char attributes.
21916 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
21918         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
21919         _ProcessName_internal.
21921 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
21923         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
21924         #73631.
21926         * icall.c threads.c threads-types.h: Remove slothash icalls as they
21927         are no longer used.
21929 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
21931         * object.c (compute_class_bitmap): Add support for generics. Fixes
21932         #73527.
21934 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21936         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
21938 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21940         * filewatcher.c: commented out the code for windows watcher, as we don't
21941         use it (we use the managed implementation instead).
21943 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
21945         * object-internals.h (MonoThread): Remove 'unused1' field.
21947         * appdomain.c: Bump corlib version.
21949         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
21951         * reflection.c (mono_reflection_create_runtime_class): Remove the
21952         AssemblyBuilder.Save optimization since it causes too many problems.
21954 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
21956         * exception.c|h: Added mono_get_exception_reflection_type_load to
21957         create a ReflectionTypeLoadException object.
21958         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
21959         to return NULL is a InheritanceDemand fails during reflection. Updated
21960         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
21961         ReflectionTypeLoadException if an InheritanceDemand fails during 
21962         reflection. Added icall mapping for GetLinkDemandSecurity.
21963         * security-manager.c|h: Added ves_icall_System_Security_
21964         SecurityManager_GetLinkDemandSecurity internal call to return the
21965         class and methods permissions set for a LinkDemand. Removed unused
21966         fields in MonoSecurityManager.
21968 2005-03-10  Martin Baulig  <martin@ximian.com>
21970         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
21971         it's a generic instance.
21973 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
21975         * reflection.c (mono_get_object_from_blob): Applied patch from
21976         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
21978         * class.c (mono_class_is_assignable_from): Another try at fixing 
21979         #73469 without breaking anything.
21981 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
21983         * class.c: (mono_class_is_assignable_from): Revert the last changes
21984         since they don't work with generics.
21985         
21986         * class.c (mono_class_is_assignable_from): Fix build bustage.
21988         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
21989         the managed IsAssignableFrom method. Fixes #73469.
21991         * reflection.c (mono_reflection_call_is_assignable_from): New helper
21992         function.
21994 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
21996         * object.c (mono_load_remote_field_new): Fix returning uninitialized
21997         memory when the remoting callback does not sets the out arguments.
21998         Fixes #73007.
22000         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
22001         by mistake.
22003         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
22005         * object-internals.h (MonoStackFrame): Sync with managed object layout.
22007         * appdomain.c: Bump corlib version.
22009 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
22011         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
22012         function.
22014         * threads.c (mono_thread_attach): Detect threads which are not started
22015         by the GC pthread wrappers.
22017 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
22019         * icall.c: Added new icall for RNG.
22020         * rand.c|h: Added new icall to open the RNG. This allows to share a 
22021         single handle on Linux to access /dev/urandom and fix #73183.
22023 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
22025         * object.c: setting the new vtable in a transparent proxy object must
22026         not change the GC descriptor.
22028 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22030         * object.c: fixed compilation without GCJ support.
22031         * reflection.c: for runtime-created types ensure klass->has_references
22032         is correct (bug #73215).
22034 2005-03-02  Martin Baulig  <martin@ximian.com>
22036         * class.c (mono_class_is_assignable_from): Make this work if
22037         `oklass' is a generic instance; fixes #72831.
22039 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22041         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
22042         with hasthis set.
22043         
22044         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
22046         * marshal.c: Reorganize native->managed marshalling code to also use
22047         the emit_marshal_... functions.
22049 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22051         * object.c: typed allocs have issues with bitmap sizes > 30,
22052         so check for max_set >= 30.
22054 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
22056         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
22057         managed code. Fixes #73012.
22059         * metadata.h (MonoMarshalSpec): Add elem_mult field.
22061         * metadata.c reflection.c: Load/Emit elem_mult as well.
22062         
22063         * metadata.h (MonoMarshalSpec): Add comment.
22065         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
22067         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
22068         num_elem to -1 if not given.
22070         * object-internals.h (MonoReflectionMarshal): Add has_size field.
22072         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
22073         given values.
22075 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
22077         * null-gc.c (mono_gc_free_fixed): Was not compilable.
22079 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
22081         * reflection.c (encode_marshal_blob): Encode param_num field as well.
22083         * object-internals.h (MonoReflectionMarshal): Add param_num field.
22085 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
22087         * object.c: generalized the reference bitmap creation
22088         and added hooks for the new GC.
22089         * class-internals.c: removed the gc_bitmap field from MonoClass.
22091 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22093         * domain.c: help the compiler to produce better code
22094         in mono_jit_info_table_find ().
22096 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22098         * object.c: make all allocations look typed.
22100 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22102         * socket-io.c: load Mono.Posix if it's not loaded already
22103         (fixes bug#73033).
22105 2005-02-24  Martin Baulig  <martin@ximian.com>
22107         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
22108         * reflection.c (dup_type): Likewise.
22110 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
22112         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
22113         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
22115 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22117         * domain.c, threads.c, object-internals.h: make the critical thread
22118         local vars use the fast access mode (even when we're compiled in
22119         a lib). Provide accessors to be used by the jit during codegen.
22121 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22123         * appdomain.c: Changed hook functios behavior to include
22124         support for the reflection only assemblies. Some icalls were changed
22125         to support the mentioned assemblies too. Signatures of static methods
22126         try_assembly_resolve and real_load now have an additional parameter:
22127         refonly.
22129         * assembly.c: General changes to mono_assembly_ methods to support
22130         reflection only api. Functions mono_assembly_open, mono_assembly_load,
22131         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
22132         suffix, to support an additional gbool parameter to specify whether
22133         the assembli is reflection only or not. Created some new hook functions 
22134         to add support for reflection only assemblies. Signatures of static 
22135         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
22136         have now an additional parameter: refonly.
22138         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
22139         indicating whether the assembly is reflection only or not.
22141         * exception.c: Add mono_get_exception_invalid_operation.
22143         * icall.c: Throw an InvalidOperationException when trying to invoke
22144         a property/method/event, or trying to set/get the value of a field.
22145         Also add an icall to retrieve the ref_only flag to the
22146         MonoReflectionAssembly.
22148 2005-02-23  Chris Toshok  <toshok@ximian.com>
22150         Part of fix for #72827.
22151         * mono-debug.c (mono_debug_add_method): add lexical block data to
22152         the info we write.  Kind of a hack at the moment - we copy the
22153         lexical block info from the MonoDebugMethodInfo to the
22154         MonoDebugMethodJitInfo here, before writing it.
22155         (mono_debug_read_method): read the lexical block info.
22157         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
22159         * debug-mono-symfile.h: add lexical block support.
22161         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
22162         support.
22164 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22166         * loader.c (mono_lookup_pinvoke_call): Fix warning.
22168         * object.c (mono_runtime_free_method): Call mono_free_method () and
22169         put the TODOs there.
22171         * loader.c (mono_free_method): Free up most memory allocated for 
22172         dynamic methods.
22174 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
22176         * reflection.c: properly flag a Type argument to a
22177         named custom attr value (bug #72248).
22179 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
22181         * reflection.c: reduce code duplication in named custom
22182         attribute encoding.
22184 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
22186         * reflection.c: properly encode custom attrs of type object
22187         (bug #72649).
22189 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
22191         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
22193 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
22195         * socket-io.c: load System.dll if it's not loaded already
22196         (bug #72850 and #70477).
22198 2005-02-21  Martin Baulig  <martin@ximian.com>
22200         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
22201         generic instances.
22203 2005-02-21  Martin Baulig  <martin@ximian.com>
22205         * reflection.c (mono_image_build_metadata): We also need to
22206         "fixup" the MethodImpl table after we computed the final method
22207         indices.  Call fixup_methodimpl() to do that.
22208         (fixup_methodimpl): New private method.
22210 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
22212         * assembly.c: special case mscorlib.dll (bug#72536),
22213         patch from Carlos Alberto Cortez.
22215 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
22217         * threads-types.h threads.c: Fix build bustage.
22219         * threads.c: Use a union for long<->double conversions.
22221         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
22222         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
22224         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
22225         containing the checkpoint call with NOT_TAKEN.
22226         
22227         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
22228         checkpoint before pushing the arguments, so they won't have to be
22229         spilled to stack.
22231 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22233         * domain.c, assembly.c, domain-internals.h: make some data
22234         const and relocation-free.
22236 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
22238         * object.c, appdomain.c, class-internals.h: introduce the
22239         MonoClassRuntimeInfo structure to hold the info needed to
22240         use a class at runtime. Made mono_class_vtable() lock-free
22241         for all the appdomains.
22243 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
22245         * metadata-internals.h, image.c: introduce a per-image mempool to
22246         be used for memory that has the same lifetime as the image.
22248 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
22250         * domain.c: In mono_init_internal(), instead of selecting the first
22251         runtime version supported by an executable, get a list of all
22252         supported versions and select the one for which an mscorlib exists
22253         (since even if the runtime supports a given version, it doesn't mean
22254         that the framework for that version is installed).
22255         Modified get_runtimes_from_exe to support this behavior.
22256         In supported_runtimes, added information about additional system
22257         assembly versions.
22258         
22259         * assembly.c: Added support for more than one system assembly version
22260         per runtime version. Updated the assembly list.
22261         In mono_assembly_remap_version, removed the initial version check,
22262         since we don't know to which version we need to compare until we
22263         get the version set on which the assembly is based.
22264         Moved the code for loading corlib into the new method
22265         mono_assembly_load_corlib(), so it can be used by the initialization
22266         code.
22267         
22268         * domain-internals.h: Updated data structures and added declaration
22269         for mono_assembly_load_corlib.
22271 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22273         * reflection.c (resolve_object): Fix the creation of the signature in 
22274         the SignatureHelper case.
22276         * assembly.c (mono_assembly_remap_version): Fix binary search.
22277         
22278 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
22280         * class.c: Added inheritance check when a method is overloaded (from a
22281         virtual method or when implementing an interface) and when a class is
22282         inherited. Added functions to set a failure for a class and to 
22283         retreive the exception from a failure.
22284         * class-internals.h: Added fields to MonoClass to keep the exception
22285         information status for inheritance (or other exceptions) to be thrown
22286         later (i.e. not at load time).
22287         * object.c: Throw the inheritance SecurityException when a type is to 
22288         be created with either class or method inheritance violations.
22289         * reflection.c|h: Fix when getting declsec from a class. Removed 
22290         unrequired code for class. Improved sanity in parameter naming.
22291         * security-manager.c|h: Added functions to check for class and method
22292         inheritance.
22294 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
22296         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
22297         and has_finalize in dynamic types as well.
22299 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
22301         * culture-info-table.h : fixed currency format for en-GB (and so on).
22303 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
22305         * gc.c: ensure the GC handles never have 0 as a value.
22307 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22309         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
22310         a pointer to a struct to unmanaged code. Fixes #72625.
22312 2005-02-16  Martin Baulig  <martin@ximian.com>
22314         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
22316 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
22318         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
22320 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22322         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
22324         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
22325         UnmanagedFunctionPointerAttribute, use it for determining calling convention
22326         etc. Fixes #71471.
22328         * reflection.c (mono_custom_attrs_get_attr): New helper function.
22330         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
22332 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
22334         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
22335         changes to make the current context a field in MonoThread.
22337 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
22339         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
22340         the last change.
22341         
22342         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
22343         extracted from mono_marshal_get_native_wrapper.
22345         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
22346         to create wrappers around native functions.
22348         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
22349         delegates for arbitrary function pointers. Fixes #71472.
22351 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22353         * threads.c: cleaned up the code a little.
22355 2005-02-15  Martin Baulig  <martin@ximian.com>
22357         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
22358         the data table.
22360         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
22361         allocate larger chunks if needed.
22363 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22365         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
22366         in by mistake.
22368 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
22370         * domain.c: keep the domains in an array and ensure the domain ids
22371         are kept small, so they can be used as indexes to domain-specific data
22372         with a small memory overhead.
22374 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
22376         * icall.c: Handle byref types in Type icalls. Fixes #72544.
22378 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
22380         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
22382 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
22384         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
22386         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
22387         values.
22389         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
22390         
22391 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
22393         * domain-internals.h: add the hashtable here.
22395         * class-internals.h: Remove `info' from MonoMethod
22397         * domain.c: Add a new hashtable, jit_trampoline_hash
22399 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22401         * object.c: don't set the value of static fields
22402         (fixes bug#72494).
22404 2005-02-11  Martin Baulig  <martin@ximian.com>
22406         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
22407         (mono_debug_add_method): Silently ignore the method if it's too big.
22408         (mono_debug_add_type): Likewise.
22410 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
22412         * threads.c, appdomain.c: remove #ifdefs from the code.
22414 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
22416         * metadata-internals.h: Added flags to MonoAssembly to cache the most
22417         common security informations. This allows us to stay in unmanaged code
22418         when doing LinkDemand and it's special cases (except for the first 
22419         time for initialization). The flags a very much used with --security.
22420         * reflection.c|h: Added code to get declarative security attributes 
22421         for LinkDemand and InheritanceDemand. This required to refactor the
22422         existing code for Demand.
22423         * security-manager.c|h: Added new method fields for the special cases
22424         of LinkDemand.
22426 2005-02-10  Martin Baulig  <martin@ximian.com>
22428         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
22429         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
22431 2005-02-10  Martin Baulig  <martin@ximian.com>
22433         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
22434         debugging code; this is almost a complete rewrite.
22436         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
22438 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22440         * domain.c, object.h: expose mono_string_equal () and 
22441         mono_string_hash ().
22442         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
22443         it's implemented in managed code.
22445 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22447         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
22448         lo leak objects between appdomains.
22450 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22452         * assembly.c: old compilers compilation fix from 
22453         robertj@gmx.net (Robert Jordan).
22455 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
22457         * class-internals.h: Little reminder for the future.
22459         * debug-helpers.c: Fix up wrapper_type_names
22461 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22463         * image.c, metadata-internals.h: when loading an image from a file,
22464         mmap all of it and use the same codepaths as when using a
22465         in-memory image: the code is simpler and we use less memory
22466         (both writable and readonly).
22468 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22470         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
22471         API to alloc runtime data structures that need to be tracked by the
22472         GC and contain pointers.
22473         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
22474         make the code more readable and eventually use a different GC.
22476 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
22478         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
22479         for out arguments.
22480         
22481 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
22483         * object.c: In release_type_locks(), don't release the cctor lock
22484         if it has already been released. This fixes a crash in the
22485         thread5 test.
22487 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
22489         * gc.c, marshal.c, icall.c: register a delegate for finalization
22490         only when the native function pointer has been allocated for it.
22492 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22494         * object.c: cleaned up some code, allocate objects that are
22495         pointer free with the atomic malloc variant. Allocate memory
22496         for static data from the mempool if it's pointer-free.
22497         Allocate the bounds array at the end of the array data, when needed.
22498         * object-internals.h, object.h: move a private function in a private
22499         header.
22500         * class.c: handle missing case in tracking references in fields.
22502 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
22504         * class.c, class-internals.h: keep track if a type has
22505         reference fields in either the instance or static fields.
22507 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
22509         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
22510         and renamed to MonoRuntimeInfo. Added fields to store the expected
22511         framework assembly version. Changed mono_get_framework_version and
22512         mono_get_runtime_version for a single mono_get_runtime_info method.
22513         
22514         * assembly.c: Added method to remap system assembly versions to the
22515         current executing runtime version. Removed old mapping code.
22516         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
22517         
22518         * icall.c, reflection.c: Track api changes.
22520 2005-02-06  Miguel de Icaza  <miguel@novell.com>
22522         * loader.c (method_from_memberref): Improve error reporting,
22523         produce the class name instead of the typeref/typedef index. 
22525 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
22527         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
22529 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22531         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
22532         stdcall and charset name mangling.  Reorganize the code and add
22533         some tracing stuff.
22535 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22537         * monodiet.c: More iters!
22539         * marshal.c: Iter usage.
22541         * icall.c: Iter usage.
22543         * object.c: Use iters.
22545         * debug-helpers.c: More iters
22547 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22549         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
22550         under win32.
22552 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
22554         * mono-debug-debugger.c: use iters
22556         * class.c, class-internals.h: mono_class_setup_events is static
22557         now
22559         * All callers: use iters
22561 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
22563         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
22564         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
22566 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22568         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
22570         * marshal.h: Add prototypes for ldfld/stfld_remote.
22572         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
22573         this is called during startup.
22574         
22575 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
22577         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
22578         MonoThreadsSync struct private in monitor.c. Changed the way
22579         MonoThreadsSync is allocated so it's faster and there is no
22580         need to keep track of it with a finalizer and it uses less memory.
22581         This also finally allows us to allocate mono objects as ptrfree when
22582         there are no reference fields.
22584 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
22586         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
22587         disappearing link to the GC interface and use them to simplify
22588         the gchandles code.
22590 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
22592         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
22593         stfld_remote which call mono_load/store_field_new. This allows methods
22594         calling ldfld/stfld wrappers to be AOTed.
22596         * console-io.c: Include sys/filio.h under solaris.
22597         
22598         * console-io.c: Include curses.h if needed correctly.
22600 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22601         
22602         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
22603         method->klass as well.
22605         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
22607         * class.c (mono_class_init): Switch on lazy initialization of 
22608         methods.
22610         * class.c (mono_class_get_finalizer): Handle the case when the 
22611         finalizer is inherited.
22613 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22615         * console-io.c: <curses.h> is needed by term.h on solaris.
22617 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
22619         * icall.c, class-internals.h, monodiet.c, class.c: Remove
22620         mono_class_setup_properties where possible. Remove this ftn from
22621         the header file, and make it static.
22623 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
22625         * loader.c: Add missing setup_... call.
22627         * class.c: Add missing setup_... calls.
22629         * class.c (mono_class_init): Switch on lazy initialization of 
22630         the generic vtable.
22631         
22632         * class.c (mono_class_init): Fix generics broken by the recent changes.
22634         * monodiet.c (handle_type): Add missing setup_... calls.
22636         * class.c: Back out garbage in previous patch.
22637         
22638         * class.c: Add missing setup_... calls.
22640         * class.c (mono_class_get_method_from_name_flags): Avoid calling
22641         mono_class_setup_methods () if possible.
22643         * class-internals.h (MonoClass): Add 'has_cctor' flag.
22645         * class-internals.h (MonoCachedClassInfo): New structure.
22647         * class.c: Initialize properties and events fields of MonoClass lazily.
22649         * class.c: Add infrastructure for lazily initializing the methods and
22650         vtable fields of MonoClass. Not yet used.
22652         * class.c (mono_class_get_finalizer): New helper function.
22654         * class.c: Add infrastructure for loading some class related data from
22655         an AOT file.
22657         * object.c: Add infrastructure for initializing the vtable from data
22658         in the AOT file.
22660         * gc.c (run_finalize): Use mono_class_get_finalizer ().
22662         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
22663         appropriate initialization function before accessing parts of the
22664         MonoClass structure.
22666         * marshal.c: Fix warnings.
22667         
22668         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
22670         * mono-debug-debugger.c (get_exception_message): Use 
22671         mono_class_get_method_from_name_flags ().
22673 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
22675         * reflection.c, appdomain.c: Replace a few manual searches that
22676         Zoltan missed. (Paolo approved this part of my initial patch).
22678 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
22680         * profiler.c: disable recording statistical events at report time.
22682 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22684         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
22685         to byteswap arrays of enum values, too (bug #72080).
22687 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
22689         * appdomain.c (set_domain_search_path): Allow this to be called if
22690         domain->setup is not yet set.
22692         * loader.c (mono_method_get_index): New helper function.
22694         * loader.c reflection.c: Use mono_method_get_index ().
22696         * class.c (mono_class_get_method_from_name_flags): New helper method.
22698         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
22699         this.
22701         * class.c (mono_class_get_cctor): New helper method.
22703         * string-icalls.c object.c class.c marshal.c reflection.c: Use
22704         mono_class_get_method () to look up methods.
22706 2005-02-01  Miguel de Icaza  <miguel@novell.com>
22708         * console-io.c: Fix the build, this should work on Windows.
22710 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
22712         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
22713         be set to null to keep things valid
22715 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22717         * icall.c: added Console 2.0 icalls.
22718         * Makefile.am: added console-io.[ch]
22719         * console-io.[ch]: internal calls for Console 2.0 API.
22721 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22723         * class.c: make sure we consider all the interfaces
22724         when calculating max_interface_id (bug found by
22725         Jeroen Frijters running ikvm).
22727 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
22729         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
22730         valuetype fields to null.
22732         * object.c (set_value): Ditto. Fixes #71669.    
22734 2005-01-31  Martin Baulig  <martin@ximian.com>
22736         * metadata.c (mono_metadata_has_generic_params): New public
22737         function; checks whether something is a generic method.
22739 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
22741         * appdomain.c: fix infinite recursion when adding assemblies.
22743 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
22745         * object.c: Fix small typo to return all items for Environment.
22746         GetCommandLineArgs.
22748 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
22750         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
22751         reflection.c: more domain and assembly-unload related fixes
22752         and memory leaks plugs.
22754 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
22756         * 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.
22758 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
22760         * loader.c (mono_method_signature): Make this method lazy
22761         (mono_get_method_from_token): Don't computate the signature here.
22763         Doing this saves quite a bit of memory. I got 90 kb on starting up
22764         monodoc. It should also save some disk reads on startup.
22766         * *: MonoMethod->signature might be NULL now. You *MUST* use
22767         mono_method_signature.
22769 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
22771         * object.c (mono_runtime_get_main_args): Return an array from the
22772         current domain here. Fixes #71938.
22774 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
22776         * monitor.c: formatting changes to comply with the
22777         mono coding style and remove #ifdefs from the code.
22779 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22781         * metadata.c, private.h: remove some unneeded data
22782         and use a more compact representation for table schemas.
22784 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
22786         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
22787         to get a better distribution in hash tables.
22788         * *.c: use mono_aligned_addr_hash() where appropriate.
22789         * assembly.c: make var static.
22791 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
22793         * domain-internals.h: Put MonoJitInfo on a diet.
22795         * domain.c: Fix a warning.
22797 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22799         * gc.c: rework the gc handles code to reuse handles
22800         when freed.
22802 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
22804         * domain.c: fixed long standing bug in mono_string_equal() which
22805         was brought to light with the ldstr changes.
22807 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
22809         * reflection.c: Remove warning by adding missing include for marshal.h
22811 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
22813         * domain.c, object.c: change the ldstr_table to hold
22814         MonoString* as keys: makes the runtime isinterned lookup
22815         faster and simplifies memory management.
22817 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
22819         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
22820         possible to add imperative security checks before calling the icall.
22821         * reflection.c: Return security attributes on the original MonoMethod
22822         (and not the wrapped one). This fix permissions on icalls.
22824 2005-01-25  Dick Porter  <dick@ximian.com>
22826         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
22827         the check for mktime() support actually test the mktime() return
22828         value.  "Fixes" bug 71682, though the output is still different to
22829         MS.
22831 2005-01-25  Martin Baulig  <martin@ximian.com>
22833         * class.c (mono_class_is_assignable_from): Make this work for
22834         generic instances.
22836 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
22838         * marshal.c (mono_string_utf8_to_builder)
22839         (mono_string_builder_to_utf16): We might not have ownership of the
22840         string. In thise case, we need to create a new buffer.
22842         * object-internals.h (mono_stringbuilder_capacity): sb->str might
22843         be null, in which case, use the default capacity.
22845 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
22847         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
22848         GC events to the profiler.
22850 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
22852         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
22853         if you don't want the GC to run.
22855 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
22857         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
22858         start providing a GC API and keeping different implementations in
22859         their own file.
22860         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
22862 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
22864         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
22865         mmap rather than allocating a huge buffer.
22866         (mono_debug_close_mono_symbol_file): Free the buffer allocated
22867         above.
22869 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
22871         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
22872         and CheckExecutionRights.
22873         * reflection.c|h: Keep the index of the declarative security to be 
22874         used, instead of the pointer, when AOT compiler is used. Also add 
22875         class initialization when requesting demands.
22876         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
22877         CheckExecutionRights. Both properties are now FALSE by default, and
22878         unmodifiable, unless the --security option is used.
22880 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
22882         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
22883         reflection.c: properly refcount images and assemblies, many leaks fixed.
22885 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22887         * threadpool.c: increase the timeout for threads in the thread pool to
22888         10s.  Fixes bug #67159.
22890 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
22892         * class-internals.h: Sun's compiler insists on explicit
22893         signed on bit fields to handle then correctly.
22895 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
22897         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
22898         Make the size of the array fit only the number of invalid path
22899         chars that we have.
22901         * class.c (_mono_class_get): Improve the error reporting when a
22902         class referenced is not found, to assist debugging. 
22904 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
22906         * threads.c: fix off-by-one error.
22907         * domain.c: free data allocated in the domain.
22909 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22911         * reflection.c (mono_method_body_get_object): Fill out exception info
22912         as well.
22914         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
22915         structure.
22916         
22917 2005-01-19  Martin Baulig  <martin@ximian.com>
22919         * loader.c (mono_get_method_constrained): Make this work again.
22921 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
22923         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
22924         guint16 to match the managed side.
22926         * reflection.c (mono_reflection_body_get_object): Fill out local
22927         variables array.
22929         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
22930         as well.
22932         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
22933         'local_var_sig_token'.
22935 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
22937         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
22938         System.Drawing.
22940         * reflection.c (mono_method_body_get_object): Handle abstract and
22941         runtime methods.
22943 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
22945         * marshal.c, loader.c, class-internals.h, reflection.c:
22946         store the emthod data for a wrapper in an array instead of a list.
22948 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
22950         * marshal.c: change the code to allocate memory more
22951         conservatively for method wrappers.
22953 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
22955         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
22956         fields from MonoClass to the marshal info structure where they belong.
22958 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
22960         * class.c, object.c, class-internals.h, marshal.c: rearrange
22961         some fields and tweak some types to lower memory usage.
22963 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
22965         * threads.c (signal_thread_state_change): Handle the case when the
22966         target thread is the current thread.
22968         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
22970         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
22971         emit_ptr_to_object_conv. 
22973         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
22974         marshalling. Fixes #71352.
22976 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
22978         * metadata.h, blob.h: move table enum to blob.h so it can be included
22979         in any header.
22980         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
22981         cut the size of MonoImage/MonoDynamicImage.
22983 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
22985         * profiler.c (mono_profiler_install_simple): Fix default arguments.
22987 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
22989         * reflection.c, reflection.h, icall.c: add a function to check
22990         if an attribute type is defined for a metadata object.
22992 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
22994         * object-internals.h: Added some needed fields from StringBuilder class.
22995         * marshal.c: Set the maxCapacity when creating a StringBuilder.
22997 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
22999         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
23000         threads before shutting down the runtime.
23002         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
23004 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23006         * object-internal.h, threads.c: implement stacksize and 
23007         parameterized thread start functionality (requires
23008         matching corlib). Marked broken code for later removal.
23010 2005-01-12  Martin Baulig  <martin@ximian.com>
23012         * class-internals.h (MonoGenericClass): Moved the `initialized'
23013         flag to MonoDynamicGenericClass, removed `init_pending'.
23014         (MonoGenericInst): Added `is_reference' flag.
23016 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
23018         * reflection.c (mono_image_create_pefile): Only set the pe_offset
23019         inside the MSDOS header. Fixes #71201.
23021         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
23022         gc thread.
23023         (mono_domain_finalize): Ditto.
23025 2005-01-12  Martin Baulig  <martin@ximian.com>
23027         * class.c (mono_get_shared_generic_class): Use the cache for
23028         non-dynamic generic classes.
23030         * class-internals.h (mono_class_create_generic_2): Removed
23031         function prototype, this function is now static inside class.c.
23033         * class.c (mono_class_create_generic_2): Made this static, only
23034         call it from mono_class_init() and mono_class_setup_parent().
23035         (collect_implemented_interfaces_aux): Call mono_class_init() on
23036         the interfaces we collect.
23037         (mono_class_setup_vtable): Call mono_class_init (class->parent).
23039 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23041         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
23042         it a real thread handle.
23044         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
23045         MonoJitExceptionInfo, since each catch clause needs its own variable.
23046         
23047 2005-01-11  Dick Porter  <dick@ximian.com>
23049         * image.c (mono_pe_file_open): New variant on mono_image_open()
23050         that does not set up the CLI metadata; used for FileVersionInfo so
23051         it can get the data for windows binaries too.
23052         
23053         * process.c (process_read_string_block): Don't read off the end of
23054         the StringTable block.
23056         These both fix bug 70766.
23058 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
23060         * gc.c: set some fields to NULL at GC cleanup time.
23061         * threads.c: if we quit the main thread, call exit ().
23063 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
23065         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
23067 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
23069         * threads.h, threads.c, object.c: added accessor and settor for
23070         main_thread. Handle it specially when exiting from it: wait
23071         for other foreground threads to exit.
23073 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
23075         * process.c, verify.c: remove some bloat.
23077 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
23079         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
23080         the calling convention to cdecl under win32.
23082 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
23084         * object.c (mono_object_get_size): New function to get the size of
23085         an object instance.
23087         * profiler.c (simple_allocation): Use above.
23089 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
23091         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
23092         ves_icall_System_AppDomain_getRootDomain (as it's not required to
23093         get an appdomain by it's id and we can't assume the root's id is 0).
23094         * domain-internals.h: Change the function prototype to match.
23095         * icall.c: Change the icall table for AppDomain.
23097 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
23099         * locales.c (string_invariant_compare_char): Only compute
23100         GUnicodeTypes in the case where we need them.  Test for ordinality
23101         first and return if so.
23103         From the commit:
23105                 /*
23106                  * FIXME: here we must use the information from c1type and c2type
23107                  * to find out the proper collation, even on the InvariantCulture, the
23108                  * sorting is not done by computing the unicode values, but their
23109                  * actual sort order.
23110                  */
23112 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23114         * loader.c: for P/Invoke methods, allow the "Internal" shared
23115         library name to refer to the calling process symbol namespace.
23117 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
23119         * Makefile.am: Add the security manager to the build.
23120         * security-manager.c|h: New. Initialization of the security manager.
23122 2005-01-07  Dick Porter  <dick@ximian.com>
23124         * threads.c: 
23125         * monitor.c: Update thread state during Monitor and WaitHandle
23126         waits.  Fixes bug 71031.
23128 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
23130         * reflection.c (property_encode_signature): Correctly handle when the
23131         property has no methods.
23133 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
23135         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
23136         
23137         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
23138         fields from mb, not rmb. Fixes #71017.
23140         * marshal.c (emit_ptr_to_str_conv): Add support for 
23141         ByValTStr -> string conversion. Fixes #71015.
23143         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
23145         * mempool.c (mono_mempool_contains_addr): New helper function.
23147 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23149         * metadata.c (mono_metadata_compute_size): Fix size calculation of
23150         HasSematics encoded fields.
23151         
23152         * metadata.c (mono_type_to_unmanaged): Improve error message for 
23153         invalid string marshalling.
23155         * metadata.c: Fix warnings.
23156         
23157 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23159         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
23160         profiler support.
23162 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
23164         * domain.c object.c domain-internals.h: Revert part of r38077 since the
23165         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
23166         tests.
23168 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
23170         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
23171         so methods containing these can be AOTed.
23173 2005-01-03  Martin Baulig  <martin@ximian.com>
23175         * loader.c (find_method): Removed the hack for generic instances.
23176         (method_from_memberref): If our parent is a generic instance, pass
23177         its generic type definition to find_method() and then inflate the
23178         method.
23179         (mono_get_method_constrained): Pass the generic type definition to
23180         find_method() and inflate the method later.
23182         * class-internals.h (MonoStats): Added `generic_class_count'.
23184         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
23185         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
23187         * reflection.c (mono_custom_attrs_from_params): Don't ignore
23188         generic type definitions.
23190 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
23192         * loader.c icall.c: Fix warnings.
23194 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
23196         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
23197         blittable types. Fixes #70864.
23199 2004-12-29  Martin Baulig  <martin@ximian.com>
23201         * icall.c
23202         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
23204         * reflection.c (mono_method_get_object): Create a
23205         "System.Reflection.MonoGenericMethod" for inflated methods; don't
23206         call mono_get_inflated_method().
23208         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
23210 2004-12-27  Martin Baulig  <martin@ximian.com>
23212         * class-internals.h (MonoMethod): Added `is_inflated' flag.
23213         (MonoMethodInflated): Added `inflated' field.
23215         * class.c (mono_class_inflate_generic_method): Don't really
23216         inflate the method here; just set the `is_inflated' flag in the
23217         MonoMethod.
23218         (mono_class_get_inflated_method): Actually inflate the method here
23219         if it's not already inflated; we use the MonoMethodInflated's new
23220         `inflated' field as a cache.
23222 2004-12-26  Martin Baulig  <martin@ximian.com>
23224         * class.c
23225         (inflate_generic_class): Moved some code out of inflate_generic_type().
23226         (mono_class_inflate_generic_method): If we're already inflated,
23227         inflate the context and use the declaring method; ie. make sure
23228         the declaring method of an inflated method is always the generic
23229         method definition.
23230         (mono_class_create_from_typedef): Create
23231         `class->generic_container->context->gclass'.
23233 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
23235         * metadata-internals.h, marshal.c, reflection.c: More
23236         MonoGHashTable->GHashTable.
23238         * domain-internals.h, class.c: Change MonoGHashTable's into
23239         GHashTables for some cases where no gc stuff is used
23241         All users: update apis
23243 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
23245         * metadata.c (builtin_types): Make this `const'. Makes this get
23246         put into the shareable section.
23247         (mono_metadata_init): Casts to make gcc happy.
23249 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
23251         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
23253 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
23255         * icall.c: Added an internal call to retrieve the position and length
23256         of assembly-level declarative security attributes (RequestMinimum, 
23257         RequestOptional and RequestRefuse). This is used by the Assembly class
23258         to re-create the corresponding permission sets.
23260 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
23262         * marshal.c: fix the stelemref wrapper to be type correct
23263         (and faster).
23265 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
23267         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
23268         to do key & 0x7fffffff. Hashtable already does this. It just
23269         results in longer code.
23271 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
23273         * appdomain.c: Bump corlib version.
23274         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
23275         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
23276         * reflection.c|h: Add functions to get declarative security infos
23277         (blob position and length) for assemblies, classes and methods.
23279 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
23281         * reflection.c: sort the constant table (bug #70693).
23283 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
23285         * object-internals.h, threads.c, domain.c: add accessors for
23286         the MonoThread and MonoDomain tls keys.
23288 2004-12-18  Martin Baulig  <martin@ximian.com>
23290         * class.c (inflate_generic_type): If we're inflating a generic
23291         instance, set `ngclass->context->container = context->container';
23292         ie. the container we inflated into.
23294         * metadata.c (mono_metadata_parse_generic_param): Reflect above
23295         inflate_generic_type() changes.
23297 2004-12-17  Martin Baulig  <martin@ximian.com>
23299         * class-internals.h
23300         (MonoGenericClass): Replaced `MonoType *generic_type' with
23301         `MonoClass *generic_class'.  Removed `dynamic_info'; if
23302         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
23303         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
23305 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
23307         * exception.c (mono_exception_from_token): New helper function.
23309 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
23311         * assembly.c (mono_assembly_load_with_partial_name): Call 
23312         mono_assembly_loaded before invoking the preload hooks. Fixes
23313         #70564.
23315         * object-internals.h (MonoThread): Change culture_info and 
23316         ui_culture_info into an array.
23318         * threads.c: Cache culture info objects from more than one appdomain.
23320         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
23321         current UI culture.
23323 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
23325         * threads.h threads.c appdomain.c: Clear the culture_info field of
23326         all threads during unloading if they point to an object in the dying
23327         appdomain.
23329 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
23331         * culture-info.h (TextInfoEntry): New struct
23332         * object-internals.h: sync with managed
23333         * locales.c: fill the `text_info_data' field
23334         * culture-info-tables.h: update
23336 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
23338         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
23339         collector.
23341 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
23343         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
23344         (ves_icall_ModuleBuilder_getMethodToken): Ditto
23346 2004-12-12  Martin Baulig  <martin@ximian.com>
23348         * mono-debug-debugger.c (write_type): If we're an enum and the
23349         builtin types have already been initialized, call mono_class_init().
23351 2004-12-11  Martin Baulig  <martin@ximian.com>
23353         * metadata.c (mono_metadata_load_generic_params): Added
23354         `MonoGenericContainer *parent_container' argument; automatically
23355         compute `container->is_method'; pass the correct owner to
23356         get_constraints().      
23358         * reflection.c (compare_genericparam): Sort the GenericParam table
23359         according to increasing owners. 
23361 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
23363         * profiler.c: allow disabling the default profiler.
23365 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
23367         * decimal.c, icall.c: allow disabling System.Decimal support.
23369 2004-12-09  Marek Safar <marek.safar@seznam.cz>
23371         * reflection.c: Add support for null attribute arguments.
23373 2004-12-09  Martin Baulig  <martin@ximian.com>
23375         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
23376         names to get rid of compiler warnings.
23378 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23380         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
23381         mono_marshal_load_type_info (). Fixes #69625.
23382         (mono_marshal_get_ptr_to_struct): Likewise.
23384 2004-12-08  Martin Baulig  <martin@ximian.com>
23386         * mono-debug.h: Bumped version number to 47.
23388         * mono-debug-debugger.c
23389         (mono_debugger_event_handler, mono_debugger_event): Take two
23390         guint64 arguments insteed of a gpointer and a guint32.  
23392 2004-12-08  Martin Baulig  <martin@ximian.com>
23394         * debug-mono-symfile.h
23395         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
23396         `address' to `native_offset'.
23398 2004-12-08  Martin Baulig  <martin@ximian.com>
23400         * class.c (mono_class_create_from_typespec): Only inflate if we
23401         either have `context->gclass' or `context->gmethod'.
23403 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
23405         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
23407         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
23409         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
23411         * reflection.c (mono_assembly_get_object): Remove the workaround put
23412         in for the release.
23413         
23414         * appdomain.c: Use the corlib_internal field from MonoAssembly.
23416         * appdomain.c: Bump corlib version.
23418         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
23419         be visible in other appdomains.
23421 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
23423         * threads.c: Interlocked inc and dec for longs were messed up,
23424         use a KISS based impl for this. Fixes 70234
23426 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
23428         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
23430 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
23432         * icall.c: fix to follow policy not to allow struct
23433         arguments in icalls.
23435 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23437         * process.c: make the patch that handles spaces in file paths work
23438         on mono/windows too.
23440 2004-12-06  Martin Baulig  <martin@ximian.com>
23442         * class.c (mono_class_create_generic): Call
23443         mono_class_setup_supertypes() if we're dynamic.
23444         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
23446 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
23448         * object-internals.h: Add new fields to MonoThread.
23450         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
23452         * icall.c threads-types.h threads.c: Add new icalls.
23454         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
23456         * object-internals.h (MonoReflectionAssembly): Sync object layout with
23457         managed side.
23459         * appdomain.c: Bump corlib version.
23461         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
23462         internal assemblies. Fixes #69181.
23464 2004-12-05  Martin Baulig  <martin@ximian.com>
23466         * class.c (mono_class_inflate_generic_signature): Make this a
23467         no-op if `context' is NULL or we don't have any type parameters;
23468         also copy `sentinelpos'.        
23470 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
23472         * image.c: Add unbox_wrapper_cache.
23474         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
23476         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
23477         function generator.
23478         
23479         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
23480         Fixes #70173.
23482         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
23483         
23484 2004-12-04  Martin Baulig  <martin@ximian.com>
23486         * loader.c (mono_method_get_signature_full): New public function;
23487         like mono_method_get_signature(), but with an additional
23488         `MonoGenericContext *' argument.
23490         * class.c (mono_class_inflate_generic_signature): Formerly known
23491         as inflate_generic_signature(); make this public.
23493 2004-12-04  Martin Baulig  <martin@ximian.com>
23495         * metadata.c
23496         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
23497         instead of a `MonoGenericContainer *'.  
23498         (mono_metadata_parse_array_full): Likewise.
23499         (mono_metadata_parse_signature_full): Likewise.
23500         (mono_metadata_parse_method_signature_full): Likewise.
23501         (mono_metadata_parse_generic_inst): Likewise.
23502         (mono_metadata_parse_generic_param): Likewise.
23503         (mono_metadata_parse_mh_full): Likewise.
23504         (mono_type_create_from_typespec_full): Likewise.
23506 2004-12-03  Martin Baulig  <martin@ximian.com>
23508         * class-internals.h (MonoGenericContainer): Replaced the
23509         `MonoGenericContext * pointer with a `MonoGenericContext'
23510         structure and made it the first element.
23512 2004-12-03  Martin Baulig  <martin@ximian.com>
23514         * class.c
23515         (inflate_generic_type): Set the `context->container' when creating
23516         a new MonoGenericContext.
23517         (mono_class_inflate_generic_method): Likewise.
23518         (mono_class_create_from_typespec): Just use `context->container'
23519         to get the container.
23521         * loader.c (method_from_methodspec): Set `context->parent' from
23522         `context->container' - and if that's a method container, use its
23523         parent.  Also set the `context->container' when creating a new
23524         MonoGenericContext.
23525         (mono_get_method_from_token): Use just `context->container' to get
23526         the container.
23528         * metadata.c (do_mono_metadata_parse_generic_class): Also set
23529         `gclass->context->container'.
23531         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
23532         the `context->container' when creating a new MonoGenericContext.
23534 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
23536         * reflection.c (compare_genericparam): Sort params with identical
23537         owner by their number. Fixes gen-111 on sparc.
23539 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23541         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
23542         around the domain changes.
23544         * appdomain.c (mono_domain_unload): Handle the case when the thread
23545         calling Unload is itself being aborted during unloading. Fixes #70022.
23547         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
23549         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
23550         checkpoint_func as an icall so it gets a wrapper.
23551         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
23552         in the cross-appdomain wrappers too.
23554         * threads.c (mono_thread_has_appdomain_ref): Make this public.
23556         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
23558         * reflection.c: Fix some memory leaks.
23559         
23560 2004-12-02  Martin Baulig  <martin@ximian.com>
23562         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
23564         * metadata.c (generic_class_cache): New static hashtable.
23565         (mono_metadata_lookup_generic_class): New public method.
23567 2004-12-02  Martin Baulig  <martin@ximian.com>
23569         * class.c (mono_class_create_from_typedef): Call
23570         mono_class_setup_parent() and mono_class_create_mono_type() before
23571         parsing the interfaces.
23573 2004-12-02  Martin Baulig  <martin@ximian.com>
23575         * metadata.c (generic_inst_cache): New static hashtable.
23576         (mono_metadata_lookup_generic_inst): New public function.
23577         (mono_metadata_inflate_generic_inst): New public function.
23578         (mono_metadata_parse_generic_inst): New public function.
23579         (do_mono_metadata_parse_generic_class): Use the new
23580         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
23581         since this'll also use the cache.
23583         * reflection.c (mono_reflection_bind_generic_method_parameters):
23584         Use mono_metadata_lookup_generic_inst() to use the new cache.
23586         * class.c (inflate_mono_type): Use
23587         mono_metadata_inflate_generic_inst() to inflate a generic
23588         instance; this'll also use the new cache.
23590         * loader.c (method_from_methodspec): Use
23591         mono_metadata_parse_generic_inst() and
23592         mono_metadata_inflate_generic_inst() rather than parsing it
23593         manually, so we can use the new cache.
23595 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
23597         * threads.c (wait_for_tids): Do not incorrectly free threads when 
23598         the wait times out.
23600 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
23602         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
23603         iter->args based on whether parameters are passed in registers (i.e.
23604         MONO_ARCH_REGPARMS is defined)
23606 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
23608         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
23609         the exception message. Fixes #70070.
23610         (method_from_methodspec): Fix warnings.
23612 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23614         * process.c: (complete_path) return the path quoted
23616 2004-12-01  Martin Baulig  <martin@ximian.com>
23618         * class-internals.h (MonoGenericInst): New structure.
23619         (MonoGenericClass): Replaced `type_argc', `type_argv' and
23620         `is_open' with `MonoGenericInst *inst'.
23621         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
23622         `is_open' with `MonoGenericInst *inst'.
23624 2004-11-30  Martin Baulig  <martin@ximian.com>
23626         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
23628         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
23629         to `generic_class_cache'.
23631         * metadata.c
23632         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
23633         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
23634         (mono_generic_inst_is_valuetype): Renamed to
23635         mono_generic_class_is_valuetype().
23637         * class-internals.h
23638         (MonoGenericInst): Renamed to MonoGenericClass.
23639         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
23640         (MonoClass): Renamed `generic_inst' to `generic_class'.
23641         (MonoGenericContext): Renamed `ginst' to `gclass'.
23643         * object-internals.h
23644         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
23646         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
23647         mono_reflection_generic_class_initialize().
23649         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
23650         now known as "System.Reflection.MonoGenericClass".
23651         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
23653 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
23655         * class-internals.h: Added a flag field to MonoClass to cache the
23656         declarative security attributes actions associated with the class.
23657         * domain-internals.h: Added booleans to MonoJitInfo to cache the
23658         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
23659         applicable to the JITted method.
23660         * reflection.c|h: Added functions to extract (as flags) which security
23661         actions are available (declaratively) for a method, class or assembly.
23662         * metadata.c|h: Added functions to search the declarative security
23663         table in the metadata.
23664         
23665 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
23667         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
23668         EXPORTEDTYPES are already in the class name cache, so there is no
23669         need to add extra code here to look at them. Just removes a bit of
23670         cruft.
23672         (ves_icall_System_Environment_get_TickCount): No need for #if
23673         WINDOWS. We already have the code in io-layer.
23675 2004-11-28  Martin Baulig  <martin@ximian.com>
23677         * loader.c
23678         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
23679         Fixes gen-112.cs.
23681 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
23683         * assembly.c (do_mono_assembly_open): Instead of having a
23684         conditional WITH_BUNDLE, incorporate support for bundles here, by
23685         having a global `bundles' variable holding a pointer to the actual
23686         bundles. 
23688         (mono_register_bundled_assemblies): New API call used by the
23689         bundle code. 
23691         See mkbundle.1 for details.
23692         
23693 2004-11-27  Martin Baulig  <martin@ximian.com>
23695         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
23696         the vtable for generic methods.
23698 2004-11-26  Martin Baulig  <martin@ximian.com>
23700         * metadata.c
23701         (mono_metadata_generic_method_hash): New public function.
23702         (mono_metadata_generic_method_equal): Likewise.
23704         * class-internals.h
23705         (MonoGenericContainer): Added `GHashTable *method_hash'.
23707         * reflection.c (ReflectionMethodBuilder): Added
23708         `MonoGenericContainer *generic_container'.
23709         (reflection_methodbuilder_to_mono_method): Don't create a new
23710         MonoGenericContainer each time we're called.
23711         (mono_reflection_bind_generic_method_parameters): Use
23712         `container->method_hash' to cache the results so we don't create a
23713         different method if we're called several times with the same
23714         arguments.
23716         * loader.c (method_from_methodspec): Use the new
23717         `container->method_hash' here, too.
23719 2004-11-26  Martin Baulig  <martin@ximian.com>
23721         * class.c (inflate_generic_signature): Correctly compute
23722         `res->has_type_parameters'.
23723         (mono_class_vtable): Use the `has_type_parameters' flag to
23724         determine whether we're a generic method.
23726         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
23728 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
23730         * object.c (mono_runtime_run_main): Fix a small memory leak.
23732 2004-11-25  Martin Baulig  <martin@ximian.com>
23734         * class.c (set_generic_param_owner): Fixed the loop.
23736 2004-11-25  Martin Baulig  <martin@ximian.com>
23738         * object.c (mono_class_vtable): Don't create any JIT wrappers for
23739         generic methods.
23741 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
23743         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
23744         names. Fixes #69787.
23746 2004-11-24  Martin Baulig  <martin@ximian.com>
23748         * class.c (mono_class_create_generic_2): If we don't have a
23749         `ginst->parent', inflate `gklass->parent' to get our parent.
23751 2004-11-24  Martin Baulig  <martin@ximian.com>
23753         * reflection.c (compare_genericparam): Correctly sort the
23754         GenericParam table; fixes #69779.
23756 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
23758         * reflection.c: When writing a PE file, don't create a huge
23759         buffer in memory. Just write the arrays we have to the file.
23760         This reduces memory usage.
23762         * metadata-internals.h: MonoDynamicStream pefile is no longer used
23763         globally.
23765 2004-11-17  Martin Baulig  <martin@ximian.com>
23767         * class.c (mono_class_init): Don't setup `class->parent' for
23768         dynamic instances; moved this to mono_class_generic_2().
23769         (mono_class_create_generic): Also set `klass->inited' for dynamic
23770         generic instances.
23771         (mono_class_create_generic_2): Don't do anything for dynamic
23772         generic instances.  Set `klass->parent' here and also call
23773         mono_class_setup_parent() here. 
23775         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
23776         `MonoType *parent' argument; set `ginst->parent' before calling
23777         mono_class_create_generic_2(), so we set the correct parent.
23779 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
23781         * reflection.c: allow getting attributes from ModuleBuilder
23782         (used by ikvm).
23784 2004-11-17  Martin Baulig  <martin@ximian.com>
23786         * class.c (mono_class_create_from_typedef): If a type parameter is
23787         inherited from an outer class, set its owner to that class.
23789 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
23791         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
23792           for (int*) written size. This fixes bug #69592.
23794 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
23796         * icall.c: Added IsAuthenticodePresnet internal call.
23797         * image.c|h: New function that check a MonoImage for an Authenticode
23798         signature in the certificate PE data directory.
23799         * security.c|h: New internal call to ask the runtime if an 
23800         Authenticode signature seems referenced in the PE header.
23802 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
23804         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
23806         * reflection.c (mono_image_create_pefile): Free the assembly streams
23807         after writing out the assembly file.
23809         * object.c (mono_runtime_run_main): Fix small memory leak.
23811         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
23812         property access modifiers. Fixes #69389.
23814 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
23816         * domain.c, object.c, object-internals.h, domain-internals.h,
23817         object.h, marshal.c: keep dynamic code info per domain.
23819 2004-11-15  Martin Baulig  <martin@ximian.com>
23821         * class.c (mono_type_get_name_recurse): Put type arguments in
23822         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
23823         see bug #68387.
23825 2004-11-15  Martin Baulig  <martin@ximian.com>
23827         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
23828         (mono_class_setup_vtable): When computing `the_cname' for a
23829         generic instance, don't include the namespace since we'd otherwise
23830         add it twice.
23832 2004-11-15  Martin Baulig  <martin@ximian.com>
23834         * class.c (mono_class_create_generic): Changed return type to void.
23835         (mono_class_create_generic_2): New public function; setup
23836         `class->method', `class->field' and `class->interfaces' here
23837         instead of in mono_class_init().
23839         * class.h (mono_class_create_generic): Moved to class-internals.h.
23841 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
23843         * reflection.c (mono_image_create_pefile): take a file HANDLE.
23844         rather than writing to memory, write to this file. Right now,
23845         we are just writting into a buffer, and copying that. However
23846         we can avoid the buffer later.
23848         (mono_dynamic_stream_reset): new function
23850         * icall.c, object-internals.h: update for the above.
23852 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
23854         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
23855         have been using gc'd memory. First it is slower, unlikely
23856         the comment in the source code said, secondly, it increases
23857         our footprint to do it in the gc.
23859         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
23860         the method so that it does not have to copy to managed code.
23862 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
23864         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
23866 2004-11-12  Martin Baulig  <martin@localhost>
23868         * reflection.c (mono_image_create_token): Allow generic method
23869         definitions here, since they may appear in an `.override'; see
23870         gen-98/gen-99 for an example.
23872 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
23874         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
23875         #69365.
23877         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
23878         descriptive.
23880 2004-11-11  Martin Baulig  <martin@ximian.com>
23882         * class.c (mono_class_setup_vtable): In an explicit interface
23883         implementation, the method name now includes the arity.
23885 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
23887         * object.c (mono_array_full_copy): Fix warning.
23889 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
23891         * appdomain.c: Removed look_for_method_by_name(). Use the new method
23892         mono_class_get_method_from_name() instead.
23893         
23894         * class-internals.h: Added two new types of wrappers. 
23895         Added MonoRemotingTarget enum. Added new trampoline function type, which
23896         takes an additional MonoRemotingTarget value as parameter, so it is
23897         possible to request a trampoline for a specific target.
23898         
23899         * class.c: Added new mono_class_get_method_from_name() method.
23900         
23901         * class.h: In MonoRemoteClass, we can have now to vtables, one for
23902         general remoting sinks and one specific for cross domain calls.
23903         
23904         * debug-helpers.c: Added new wrapper names.
23905         
23906         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
23907         of a remote class.
23908         
23909         * image.c: Porperly delete value objects form the remoting invoke hashtable.
23910         
23911         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
23912         with several other methods (mono_marshal_get_xappdomain_dispatch,
23913         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
23914         and others) can generate a fast remoting wrapper for cross domain calls.
23915         More information can be found in docs/remoting.
23916         Other changes: Removed mono_find_method_by_name, and used
23917         mono_class_get_method_from_name instead.
23918         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
23919         is stored in the remoting invoke hashtable.
23920         
23921         * marshal.h: published the new method for getting the xdomain wrapper,
23922         and also added a method for getting the adequate wrapper for a given
23923         method and target.
23924         
23925         * object-internals.h, object.c: Added a couple of methods for capying and
23926         cloning arrays.
23927         Modified mono_install_remoting_trampoline, which takes the new remoting
23928         trampoline that has a remoting target as parameter.
23929         mono_class_proxy_vtable now also takes a remoting target as parameter, and
23930         will return the most suitable vtable for the target.
23931         Added mono_remote_class_vtable, which returns the vtable of a remote class
23932         (which can be the normal remoting vtable or the xdomain vtable).
23933         
23934         * threads.c: the xdomain invoke and dispatch wrappers must also be
23935         protected against interruptions.
23937 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23939         * icall.c: use memmove in BlockCopyInternal when the source and
23940         destination arrays are the same.
23942 2004-11-09  Martin Baulig  <martin@ximian.com>
23944         * class-internals.h (MonoGenericContainer): Removed `method' and
23945         `signature', replaced them with `is_method' and `is_signature'
23946         flags.  Added `context'.
23948         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
23949         instead of a `MonoGenericContainer *'.
23951         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
23952         for dynamic type parameters.
23953         (mono_metadata_load_generic_params): Setup `container->context'.
23955         * reflection.c (mono_reflection_setup_generic_class): Setup
23956         `tb->generic_container->context'.
23957         (do_mono_reflection_bind_generic_parameters): Use
23958         mono_class_inflate_generic_type() to correctly inflate types,
23959         rather than using our own hack just for MONO_TYPE_VAR.
23961 2004-11-09  Martin Baulig  <martin@ximian.com>
23963         * class.c (mono_class_inflate_generic_method): Small fix; don't
23964         crash here.
23966         * icall.c
23967         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
23968         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
23969         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
23970         (ves_icall_Type_BindGenericParameters): Likewise.
23971         (ves_icall_Type_get_IsGenericInstance): Likewise.
23972         (ves_icall_Type_GetGenericParameterPosition): Likewise.
23973         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
23974         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
23975         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
23977 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
23979         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
23980         assembly versions and public key tokens. Fixes #69113.
23982 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
23984         * metadata.c: fix bug introduced with the type cache changes
23985         on 2004-11-06.
23987 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
23989         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
23990         the MonoClass pointer instead of the token in exception clauses.
23991         * reflection.c: updates for the above and make the code not depend
23992         on the structure of MonoExceptionClause.
23994 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
23996         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
23997         Add support for dynamic assemblies. Fixes #69114.
23999         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
24001 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
24003         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
24004         since most only those methods use it. the code member of
24005         MonoMethodPInvoke was dead, so that can be removed too. Also,
24006         remove inline_count (again, not used), and move slot so that it
24007         can share bits with some other flags. This saves 8 bytes in the
24008         structure and gives us about 50 kb back for mcs helloworld.cs
24010         * *.[ch]: Do naming changes for the above.
24012         * loader.c (mono_method_get_header): Lazily init the header
24013         on first access.
24014         (mono_get_method_from_token): don't init the header here
24015         (mono_free_method): the header may never be allocated
24017         Overall, this saves 150 kb of unmanaged allocations
24018         for mcs helloworld.cs. That accounts for 10% of the unmanaged
24019         memory at runtime.
24020         
24021         * loader.c, loader.h (mono_method_get_header): new accessor.
24023         * *.[ch]: use the above method. Prepares us to lazily load
24024         the header.
24026         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
24027         three warnings, which are actual bugs (see 69206).
24029         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
24030         unused. Saves a cool 4 bytes / method.
24032 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
24034         * metadata.c (builtin_types): Add types for System.Object here.
24035         (mono_metadata_parse_type_full): Cache MonoType*'s that are
24036         for a class or valuetype from klass->this_arg or klass->byval_arg.
24038         On mcs for a hello world, this gets us down from 21836 MonoType's
24039         to 14560.
24041         (mono_metadata_free_type): Account for the above change.
24043 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
24045         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
24046         exception instead of asserting if name is null.
24047         (ves_icall_System_AppDomain_GetData): Ditto.
24049 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
24051         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
24052         EnumBuilder.
24054         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
24055         Return NULL when the domain does not have entry_assembly set.
24057         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
24058         Add a 'resource_modules' argument.
24059         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
24061         * reflection.c (mono_reflection_create_runtime_class): Move setting
24062         of wastypebuilder here, so mono_get_type_object () returns a MonoType
24063         for enums too.
24065         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
24066         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
24067         Throw an ArgumentNullException if 'ptr' is null.
24069         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
24070         assemblies here. Fixes #69020.
24072 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
24074         * reflection.c (build_compressed_metadata): Fix the previous patch for
24075         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
24076         the stack.
24078 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
24080         * assembly.c (mono_assembly_names_equal): Allow a match if one of
24081         the cultures is false. Fixes #69090.
24083         * reflection.c (build_compressed_metadata): Fix invalid memory read 
24084         detected by valgrind.
24085         
24086         * reflection.c (mono_reflection_get_type): Avoid triggering a 
24087         TypeResolve multiple times for the same type. Fixes #65577.
24089 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
24091         * marshal.c: Avoid using ldftn to call managed functions. It is
24092         much slower than just a call.
24094         * reflection.c (mono_module_get_object): free the basename we
24095         allocate here from glib.
24096         
24097         * reflection.c (ensure_runtime_vtable): make sure to free
24098         overrides.  Also, we were allocating an array of MonoMethod not an
24099         array of MonoMethod*.
24101         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
24103         * image.c (mono_image_close): free image->guid here.
24105 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
24107         * reflection.c: Fix some spec conformance issues with the PE file
24108         structures so mcs compiled apps run on the Net 2.0 beta.
24110 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
24112         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
24113         Implement this. Fixes #67264.
24115         * debug-helpers.h debug-helpers.c marshal.c: Move 
24116         mono_find_method_by_name to debug-helpers.c.
24118 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
24120         * object.c (mono_release_type_locks): type_initialization_hash is
24121         a GHashTable.
24123         * reflection.c object.c object-internals.h: Fix warnings.
24125         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
24126         without accessors. Fixes #61561.
24128         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
24129         application base from the root domain if not set. Fixes #65641.
24130         (mono_runtime_init): Fix warning.
24132 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24134         * appdomain.c: call mono_thread_pool_init.
24135         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
24136         of worker threads based on the number of CPUs and the environment
24137         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
24138         for non-windows (windows) systems.
24140 2004-10-27  Chris Toshok  <toshok@ximian.com>
24142         * mono-debug-debugger.c (write_class): don't call mono_class_init
24143         here, as even with the check for (!klass->init_pending), we get
24144         into a situation where we're hitting cycles in class
24145         initialization.  Fixes #68816.
24147 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
24149         * image.c: Avoid overwriting values in the loaded_images_hash when an
24150         assembly is loaded multiple times. Fixes #61152.
24152         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
24153         so multiple satellite assemblies for the same name can be loaded.
24154         Fixes #68259.
24156         * mono_domain_assembly_preload: Actually return the loaded assembly, 
24157         not NULL.
24159         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
24160         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
24162         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
24163         pending finalizers are not invoked after the appdomain has been 
24164         unloaded. Fixes #67862.
24166 2004-10-22  Martin Baulig  <martin@ximian.com>
24168         * mono-debug-debugger.c
24169         (mono_debugger_runtime_invoke): Don't box valuetypes.
24171 2004-10-22  Chris Toshok  <toshok@ximian.com>
24173         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
24174         don't hide private methods.
24176 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
24178         * icall.c: Allows the runtime to "share" (when known) the public key
24179         token of an assembly. This avoid the need to recalculate the token 
24180         (from the public key) in managed code.
24182 2004-10-21  Chris Toshok  <toshok@ximian.com>
24184         * debug-helpers.c (append_class_name): argh, revert last patch.
24185         
24186 2004-10-21  Chris Toshok  <toshok@ximian.com>
24188         * debug-helpers.c (append_class_name): use '+' as the delimiter,
24189         not '/', so that it matches what the debugger uses to look up
24190         methods.
24192 2004-10-21  Martin Baulig  <martin@ximian.com>
24194         * mono-debug-debugger.c (mono_debugger_throw_exception): New
24195         public method; this is called each time an exception is thrown and
24196         allows the debugger to use exception catch points.
24198 2004-10-21  Martin Baulig  <martin@ximian.com>
24200         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
24201         the stack pointer and the exception object in some struct and pass
24202         that to the debugger.
24204 2004-10-21  Chris Toshok  <toshok@ximian.com>
24206         * mono-debug-debugger.c (do_write_class): add instance/static
24207         event support.  We don't expose "raise" or "other" yet.
24208         (event_is_static): new method.
24210 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
24212         * mono-debug-debugger.c
24213         (mono_debugger_handle_exception): Remove
24214         bogus return value for fussy compilers.
24216 2004-10-20  Martin Baulig  <martin@ximian.com>
24218         * mono-debug-debugger.c
24219         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
24220         (mono_debugger_handled_exception): Likewise.
24222 2004-10-20  Martin Baulig  <martin@ximian.com>
24224         * mono-debug-debugger.h (MonoDebuggerEvent): Added
24225         MONO_DEBUGGER_EVENT_EXCEPTION.
24227         * mono-debug-debugger.c (mono_debugger_handle_exception): New
24228         public function to send the debugger a notification for an
24229         exception and inform it about a catch/finally clause.
24231 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
24233         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
24234         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
24235         fix 2.95 build. 
24237         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
24239 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
24241         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
24242         marshalled as [In,Out]. Fixes #58325.
24244 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
24246         * reflection.c (mono_method_body_get_object): Implement some fields.
24248 2004-10-12  Martin Baulig  <martin@ximian.com>
24250         * reflection.c (mono_reflection_bind_generic_parameters): Small
24251         fix, correctly retrieve our parent from a generic instance.
24253 2004-10-12  Martin Baulig  <martin@ximian.com>
24255         * metadata.c (mono_metadata_generic_param_equal): We always have
24256         an owner.
24258         * class.c
24259         (mono_class_from_generic_parameter): We need to have an owner.
24260         (my_mono_class_from_generic_parameter): Likewise.
24262         * reflection.c (mono_reflection_setup_generic_class): Renamed to
24263         mono_reflection_create_generic_class() and added a new
24264         mono_reflection_setup_generic_class().  
24265         (mono_reflection_initialize_generic_param): If we're a nested
24266         generic type and inherited from the containing class, set our
24267         owner to the outer class.
24269 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
24271         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
24273         * reflection.c (mono_method_body_get_object): New function to create
24274         a MethodBody object.
24276         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
24278 2004-10-11  Martin Baulig  <martin@ximian.com>
24280         * metadata.c (_mono_metadata_type_equal): Renamed to
24281         do_mono_metadata_type_equal() and made static.
24283 2004-10-11  Martin Baulig  <martin@ximian.com>
24285         * appdomain.c: Bump corlib version number to 28.
24287 2004-10-10  Martin Baulig  <martin@ximian.com>
24289         * class-internals.h
24290         (MonoGenericInst): Added `MonoGenericContainer *container'.
24291         (MonoGenericMethod): Likewise.
24292         (MonoGenericContext): Likewise.
24293         (MonoGenericParam): Added `MonoGenericContainer *owner'.
24295         * metadata.c
24296         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
24297         (do_mono_metadata_parse_generic_inst): Likewise.
24298         (mono_metadata_parse_type_full): New public method.  This is the actual
24299         mono_metadata_parse_type() implementation - with an additional
24300         `MonoGenericContainer *' argument.
24301         (mono_metadata_parse_array_full): Likewise.
24302         (mono_metadata_parse_signature_full): Likewise.
24303         (mono_metadata_parse_method_signature_full): Likewise.
24304         (mono_metadata_parse_mh_full): Likewise.
24305         (mono_type_create_from_typespec): Likewise.
24306         (mono_metadata_interfaces_from_typedef_full): New public method;
24307         this is similar to the other _full() methods, but we take a
24308         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
24309         (mono_metadata_parse_generic_param): Take an additional
24310         `MonoGenericContainer *' argument and lookup the MonoGenericParam
24311         from that container.
24312         (mono_metadata_generic_param_equal): New static method to compare
24313         two type parameters.
24314         (_mono_metadata_type_equal): New static method; takes an
24315         additional `gboolean signature_only' argument - if true, we don't
24316         compare the owners of generic parameters.
24317         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
24318         with a TRUE argument - do a signature-only comparision.
24320         * loader.c: Use the new _full() methods and pass the
24321         MonoGenericContainer to them.
24323         * object-internals.h (MonoReflectionTypeBuilder): Added
24324         `MonoGenericContainer *generic_container' field.
24325         (MonoReflectionMethodBuilder): Likewise.
24327 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
24329         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
24330         case initial images of dynamic assemblies.
24332         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
24334         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
24336         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
24337         length of event->other array.
24338         (typebuilder_setup_events): Ditto.
24340         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
24341         'assembly_by_name' and add an 'assemblies' list.
24343         * assembly.h assembly.c: Add a new search hook for determining whenever
24344         an assembly is already loaded. Use this instead of searching in the
24345         loaded_assemblies list.
24347         * domain.c appdomain.c: Implement the new search hook so loaded 
24348         assemblies are now scoped by appdomain. Fixes #67727.
24350 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
24352         * threads.c (mono_thread_attach): Initialize synch_lock field so
24353         mono_thread_detach works again.
24355         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
24356         'lib' too. Fixes #63130.
24358 2004-10-06  Jackson Harper  <jackson@ximian.com>
24360         * culture-info-tables.h: regenerated.
24362 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
24364         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
24365         implemented by other interfaces in the result. Fixes #65764.
24366         
24367         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24368         Handle unloadable modules without crashing.
24370         * image.c (load_modules): Revert the previous patch since modules must
24371         have a fixed index inside the array.
24372         
24373         * image.c (load_modules): Don't include native modules in the modules
24374         array.
24376 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
24378         * reflection.h: Add param_defaults field.
24380         * reflection.c: Add support for parameter defaults in dynamic methods.
24381         Fixes #64595.
24383         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
24384         an empty string when a type has no namespace. Fixes #64230.
24386 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
24388         * tabledefs.h: Added "internal" security actions to support non-CAS
24389         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
24390         Note: they do not seems to be used anymore in 2.0 (new metadata format)
24392 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
24394         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
24395         constructor of abstract class. Fixes #61689.
24397 2004-10-04  Martin Baulig  <martin@ximian.com>
24399         * class-internals.h (MonoGenericContainer): New type.
24400         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
24401         `MonoGenericContainer *generic_container'.
24402         (MonoClass): Replaced `gen_params' and `num_gen_params' with
24403         `MonoGenericContainer *generic_container'.
24405         * metadata.c (mono_metadata_load_generic_params): Return a
24406         `MonoGenericContainer *' instead of a `MonoGenericParam *';
24407         removed the `num' argument.
24409 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
24411         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
24412         for dynamic images.
24414         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
24415         machine fields.
24417         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
24419         * reflection.c: Save pe_kind and machine values into the generated
24420         image file.
24422         * appdomain.c: Bump corlib version number.
24424         * object-internals.h: Reorganize layout of LocalBuilder.
24426         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
24427         New helper function.
24429         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
24430         created MonoType for dynamic types. Fixes #66180.
24432 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
24434         * threadpool.c: the ares hashtable needs a critical section around it.
24435         this prevents some nasty segfaults
24437 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
24439         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
24440         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
24441         bug 67324).
24442         
24443 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24445         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
24446         
24447 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
24449         * image.c: Always canonicalize image file names, to avoid loading
24450         the same assembly twice when referenced using a relative path.
24452 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
24454         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
24456         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
24458         * marshal.c: Fix warnings.
24460 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
24462         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
24463         attempting to marshal the delegate_trampoline as the method_addr.
24464         This patch has a static hashtable of marshalled delegates so that 
24465         we can map delegate_trampoline addresses back to delegates.  This
24466         allows a delegate passed to managed code to be passed back into native
24467         code.  Fixes #67039
24469 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24471         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
24473         * reflection.c (method_encode_code): Align method headers properly.
24474         Fixes #66025.
24476 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24478         * marshal.c: In the runtime invoke wrapper, reset the abort
24479         exception if it is cached. This avoids the automatic rethrowal of 
24480         the exception after the catch of the wrapper. Also check for pending
24481         interruptions before calling the managed method. This is done using
24482         the new method emit_thread_force_interrupt_checkpoint, since the
24483         normal checkpoint method is ignored when running the invoke wrapper.
24484         * object.c: If the abort exception is rethrown, set the abort_exc
24485         field of the thread, so it will be rethrown aftere every catch.
24486         * threadpool.c: Only run an interruption checkpoint if what has been
24487         requested is a stop of the thread (aborts will be ignored).
24488         * threads.c: By default, a thread will now never be interrumped while
24489         running the runtime invoke wrapper (this ensures that runtime_invoke
24490         will always return to the caller if an exception pointer is provided).
24491         There is a new special method mono_thread_force_interruption_checkpoint()
24492         to force an interruption checkpoint even if running a protected
24493         wrapper, which is used by the same runtime invoke wrapper to do a check
24494         at a safe point.
24496 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
24498         * object.c, object-internals.h: Implemented mono_release_type_locks,
24499         which releases the cctor locks held by a thread.
24500         * threads.c, threads.h: In thread_cleanup, release cctor locks held
24501         by a thread. Added mono_thread_exit() method to be used to safely stop
24502         a thread.
24504 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24506         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
24507         Move null check before dereference.  Avoid indexing beyond the end
24508         of the 'modules' array.
24510 2004-09-28  Raja R Harinath  <rharinath@novell.com>
24512         * metadata-internals.h (MonoImage): Add module_count field.
24513         * image.c (load_modules): Set image->module_count.
24514         (mono_image_load_file_for_image): Use image->module_count.
24515         * reflection.c (mono_image_load_module): Append to image->modules array 
24516         of dynamic assembly.
24517         (mono_module_get_object): Fix loop to actually increment index.
24518         Use image->module_count.
24519         * assembly.c (mono_assembly_load_references): Use image->module_count.
24520         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
24521         Likewise.
24523 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
24525         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
24526         Avoid assert on generic types.
24528 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
24530         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
24532         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
24534         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
24535         function to convert a MarshalSpec structure to its managed counterpart.
24537         * reflection.c: Fix warnings.
24538         
24539         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
24540         field.
24542         * icall.c (mono_create_icall_signature): Fix build.
24544 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
24546         * icall.c: Add MakePointType icall.
24548         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
24549         warnings.
24551 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24553         * threadpool.c: reuse allocated slots in the queue.
24555 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
24557         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
24559         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
24561         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
24562         previous change.
24564         * tabledefs.h: Add constants for pinvoke attributes BestFit and
24565         ThrowOnUnmappableChar.
24567         * icall.c (ves_icall_Type_GetPacking): New icall.
24569 2004-09-24  Martin Baulig  <martin@ximian.com>
24571         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
24573 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24575         * appdomain.c:
24576         (mono_domain_set): allow setting a domain that is being unloaded.
24577         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
24578         being unloaded.
24580 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24582         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
24583         the GetCustomAttributes icall.
24585 2004-09-23  Martin Baulig  <martin@ximian.com>
24587         * object-internals.h (MonoReflectionGenericParam): Replaced
24588         'has_ctor_constraint', `has_reference_type' and `has_value_type'
24589         with `guint32 attrs'.
24591 2004-09-23  Martin Baulig  <martin@ximian.com>
24593         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
24595 2004-09-23  Martin Baulig  <martin@ximian.com>
24597         * object-internals.h (GenericParameterAttributes): New enum.
24599 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
24601         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
24602         
24603         * class.c (init_events): Fill out event->other field.
24605         * class.c: Fix warnings.
24607         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
24609 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
24611         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
24612         walk which doesn't supply the IL offset.
24614 2004-09-22  Martin Baulig  <martin@ximian.com>
24616         * reflection.c (mono_reflection_setup_internal_class): If we're
24617         System.ValueType, System.Object or System.Enum, set
24618         `klass->instance_size' and create the vtable.
24619         (mono_reflection_create_internal_class): If we're an enum type,
24620         get the base class from our current corlib.
24622 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
24624         * reflection.h (MonoResolveTokenError): New type.
24626         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
24627         icall.
24629         * icall.c: Add an 'error' argument to the ResolveToken icalls.
24631 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
24633         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
24634         Support also calling constructors, but only for already allocated objects.
24636 2004-09-17  Geoff Norton <gnorton@customerdna.com>
24638         * reflection.c (type_get_qualified_name): If the klass is null
24639         return the typename to avoid a NullRefEx.
24640         (encode_cattr_value): Get the qualified name of the boxed type,
24641         not the underlying enumtype.  Fixes #62984.
24643 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
24645         * marshal.c: Fix problems with previous checkin.
24647 2004-09-21    <vargaz@freemail.hu>
24649         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
24650         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
24652         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
24654 2004-09-21  Geoff Norton <gnorton@customerdna.com>
24656         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
24657         should only return a type for pointers, arrays, and passbyref types.
24658         Fixes bug #63841.
24660 2004-09-21  Martin Baulig  <martin@ximian.com>
24662         * domain.c (mono_debugger_check_runtime_version): New public
24663         function.
24665         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
24667 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
24669         * reflection.c: Added missing sort to the declarative security 
24670         attributes table. MS implementation stops seeing the attributes if the
24671         token number regress in the table (as shown by ildasm and permview).
24673 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
24675         * object-internals.h (MonoReflectionModule): Add 'token' field.
24676         
24677         * reflection.c (mono_reflection_get_token): Add support for Module
24678         and Assembly.
24679         (mono_module_get_object): Set 'token' field.
24680         (mono_module_file_get_object): Set 'token' field.
24682         * icall.c: Add new Assembly and Module icalls.
24684         * appdomain.c: Bump corlib version.
24686 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
24688         * loader.h loader.c class.h class.c: Add helper functions for obtaining
24689         tokens of metadata objects.
24691         * reflection.h reflection.c (mono_reflection_get_token): New function
24692         to obtain the token of a metadata object.
24694         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
24696 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
24698         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
24699         
24700         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
24702 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
24704         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
24705         * object-internals.h: Added 3 MonoArray* members to MonoReflection
24706         AssemblyBuilder to access the permissions set in the class lib.
24707         * reflection.c: Added security attributes encoding step in 
24708         mono_image_build_metadata.
24709         * tabledefs.h: Added new security actions defined in 2.0:
24710         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
24712 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24714         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
24715         macro parameter.
24717 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
24719         * locales.c: nullify the ICU_collator member of CompareInfo when it is
24720           finalized. There where random SIGSEVs at program termination, when
24721           an object being finalized was trying to do a string comparison and
24722           the current culture was already finalized.
24724 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24726         * threads.c: call thread_cleanup before finishing the thread if we get
24727         there.
24729 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
24731         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
24732         assemblies from the parent. Fixes #65665.
24734 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
24736         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
24737         modifiers.
24739 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
24741         * reflection.h: add prototype for mono_get_dbnull_object
24742         * reflection.c: add prototypes for get_default_param_value_blobs 
24743         and mono_get_object_from_blob for fussier compilers
24745 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
24747         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
24748         false deadlock checks in class initialization.
24750 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
24752         * image.c (mono_image_addref): Fix comment.
24754         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
24755         possible.
24757 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
24759         * reflection.c (mono_param_get_objects): Modified to return
24760         ParameterInfo.DefaultValue object.
24762         (get_default_param_value_blobs):
24763         (mono_get_object_from_blob):
24764         (mono_get_dbnull_object): New helper routines. 
24766         * object.c (mono_get_constant_value_from_blob): New helper routine
24767         carved out from get_default_field_value ()
24769         * object-internals.h (mono_get_constant_value_from_blob): Added
24770         function declaration.
24772 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
24774         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
24775         referenced assemblies. Fixes #62135.
24777         * exception.h exception.c (mono_get_exception_file_not_found2): New
24778         helper function.
24780 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
24782         * class.h class.c: Add mono_type_get_underlying_type ().
24784 2004-09-09  Geoff Norton <gnorton@customerndna.com>
24786         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
24787         Fix GetTypes() to support dynamically created assemblies.
24789 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
24791         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
24792         
24793         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
24794         previous patch.
24796         * reflection.h reflection.c loader.c: Allow dynamic construction of
24797         pinvoke methods. Fixes #65571.
24798         
24799         * reflection.c (mono_reflection_get_type): Revert previous change since
24800         it causes regressions.
24802 2004-09-08  Martin Baulig  <martin@ximian.com>
24804         * class.c (class_compute_field_layout): Don't call
24805         mono_class_layout_fields() for open generic instances.
24807 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
24808         * threads.c appdomain.c: fix typo in GC macro
24810 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24812         * threads.c: don't call mono_thread_detach() in start_wrapper(),
24813         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
24815 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
24817         * image.c (mono_image_close): Applied patch from 
24818         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
24819         assembly is loaded multiple times from data.
24820         
24821         * image.c (mono_image_open): Fix warning.
24823 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24825         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
24826         once. Fixes #58334.
24827         
24828         * reflection.c (mono_reflection_create_runtime_class): Initialize
24829         klass->nested_classes. Fixes #61224.
24831 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
24833         * threads.c: sched_yield() on exit, to allow threads to quit.
24835 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24837         * object.c (mono_unhandled_exception): Remove leftover debug code.
24839 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
24841         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
24843 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
24845         * marshal.c (emit_marshal_array): Really null terminate string arrays.
24846         
24847         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
24849 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24851         * marshal.c (emit_marshal_array): Null terminate string arrays.
24852         
24853         * marshal.c (raise_auto_layout_exception): Fix warning.
24855         * reflection.c (mono_param_get_objects): Initialize the default value
24856         with DBNull.Value, not null. Fixes #62123.
24858 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
24860         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
24861         throw an exception with a cute explanation.
24863 2004-09-06  Dick Porter  <dick@ximian.com>
24865         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
24866         Close the new process's thread handle, as we don't use it.  The
24867         handle stays around forever otherwise.
24869 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24871         * object.c (arith_overflow): Fix warning.
24873         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
24874         calling conventions in method refs. Fixes #65352.
24876         * reflection.c: Fix warnings.
24878 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24880         * icall.c: Add a new icall for Array.Clear
24882 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
24884         * object.c: When allocating an array, we have to throw
24885         an overflow exception if any of the lengths are < 0.
24887 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
24889         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
24890         properly. Also move implementation of string array marshalling to 
24891         managed code. Fixes #42316.
24893 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24895         * assembly.c: provide more information when loading an assembly fails.
24897 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24899         * filewatcher.c: don't expect the development fam package to be
24900         installed.
24902 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
24904         * marshal.c: Make a copy of the signature cookie since it will be
24905         freed by the caller.
24906         
24907         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
24909         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
24911         * metadata.c (mono_metadata_free_marshal_spec): New function to free
24912         marshal specs.
24914         * marshal.c: More refactoring.
24915         
24916         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
24917         smaller functions.
24919 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
24921         * object.c: In mono_message_invoke, fill the output parameter array after
24922           calling the managed method (it was done before the call). This fixes
24923           bug #59299.
24925 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24927         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
24928         as well.
24930 2004-09-02  Martin Baulig  <martin@ximian.com>
24932         * class.c (mono_class_instance_size): Don't allow generic type
24933         definitions or open generic instances.
24934         (mono_class_array_element_size): If we're a value type, call
24935         mono_class_instance_size() on the original class.
24937         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
24938         handle generic instances.
24940         * mono-debug-debugger.c (write_type): Handle generic instances
24941         like classes.
24943 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
24945         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
24946         the allocation request fails. Fixes #65089.
24948         * object.c (mono_runtime_free_method): Do not call mono_free_method.
24949         
24950         * object.c (mono_runtime_free_method): New function to free a dynamic
24951         method.
24953         * marshal.c (mono_delegate_free_ftnptr): New function to free the
24954         delegate trampoline.
24956         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
24957         with hasthis as dynamic,
24959         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
24961         * domain.c (mono_jit_info_table_remove): New function to remove an
24962         entry from the jit info table.
24964         * class-internals.h (MonoMethod): Add 'dynamic' field.
24966         * loader.c: Fix warnings.
24968 2004-09-01  Martin Baulig  <martin@ximian.com>
24970         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
24971         instead of mono_debugger_lock() because the latter one is a no-op
24972         unless running in the debugger.
24974 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24976         * class.c (class_compute_field_layout): Classes with auto-layout or
24977         reference fields are not blittable.
24978         
24979 2004-09-01  Dick Porter  <dick@ximian.com>
24981         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
24982         mono_image_get_filename() to get the assembly location.
24984         * icall.c:
24985         * metadata.h: Fix compile warnings
24987 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
24989         * class.c (class_compute_field_layout): System.Object is blittable.
24991         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
24992         as in/out. Fixes #59909.
24994 2004-09-01  Martin Baulig  <martin@ximian.com>
24996         * metadata.h (MONO_TYPE_ISREFERENCE): Call
24997         mono_metadata_generic_inst_is_valuetype() if we're a generic
24998         instance to check whether our underlying type is a reference type.
25000 2004-09-01  Martin Baulig  <martin@ximian.com>
25002         * metadata.c (mono_type_size): If we're a generic instance, call
25003         mono_class_value_size() for value types.
25005 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
25007         * marshal.c: Implement more custom marshalling functionality. Fixes
25008         #64915.
25010 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25012         * mono-debug.c, debug-mono-symfile.c: add some locking love.
25014 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
25016         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
25018         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
25020         * icall.c: Fix some warnings.
25022         * threads.c (abort_appdomain_thread): Fix unref errors.
25023         (mono_thread_current): Fix THREAD_DEBUG define.
25025 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
25027         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
25029         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
25031 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
25033         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
25034         string arrays.
25036 2004-08-28  Martin Baulig  <martin@ximian.com>
25038         * metadata.c
25039         (mono_metadata_generic_inst_is_valuetype): New public function.
25041         * metadata.h (MONO_TYPE_ISSTRUCT): Call
25042         mono_metadata_generic_inst_is_valuetype() if we're a generic
25043         instance to check whether our underlying type is a valuetype.
25045 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
25047         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
25048         #63768.
25050 2004-08-25  Martin Baulig  <martin@ximian.com>
25052         * loader.c (mono_get_method_from_token): Abstract methods can also
25053         be generic and thus have type parameters.
25055         * metadata-internals.h
25056         (MonoDynamicImage): Added `GPtrArray *gen_params'.
25058         * reflection.c (mono_image_get_generic_param_info): Don't create a
25059         metadata row, just add an entry to the `gen_params' array.
25060         (build_compressed_metadata): Sort the `gen_params' array and then
25061         actually create the metadata.
25063 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25065         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
25067 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
25069         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
25071 2004-08-24  Martin Baulig  <martin@ximian.com>
25073         * class.cs (mono_class_is_subclass_of): Like an interface, a
25074         generic instance also derives from System.Object.
25076 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
25078         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
25079         custom modifiers to be in any order. Fixes #61990.
25081 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
25083         * object.c: Register mono_object_new_fast icall.
25084         
25085         * object.c (mono_class_get_allocation_ftn): Return to calling
25086         mono_object_new_fast, since it seems faster to compute the object 
25087         size in unmanaged code than passing it as a parameter.
25089         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
25091         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
25092         this function with Boehm as the oom handler, so we don't have to check
25093         the result of GC_malloc.
25095         * object.c: Remove checks for oom.
25097         * object.h object.c (mono_class_get_allocation_ftn): New function to
25098         return the icall which can be used to allocate an instance of a given
25099         class. 
25101         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
25103         * class-internals.h: Add 'enabled' field.
25105 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
25107         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
25109 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
25110         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
25111         value 0x0010.
25113 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
25115         * appdomain.c: use the Tls function for appdomain too,
25116         at Zoltan's request. Actually return in mono_context_get
25118         * appdomain.c, profiler.c, threads.c: use __thread
25120 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
25122         * appdomain.c threads.c: Call GC_CreateThread on windows.
25124         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
25125         multiple libraries since this don't work on windows.
25127 2004-08-18  Martin Baulig  <martin@ximian.com>
25129         * class-internals.h
25130         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
25131         MonoMethodHeader.
25133         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
25134         MonoMethodNormal since we also need it for abstract and interface
25135         methods.
25137         * reflection.c
25138         (build_compressed_metadata): Sort the GenericParam table.
25139         (mono_image_create_token): Added `gboolean create_methodspec'
25140         argument; this is false when generating a MethodImpl token.
25141         (reflection_methodbuilder_to_mono_method): Abstract and interface
25142         methods may also have generic parameters.
25144 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
25146         * appdomain.c: thread local alloc
25148 2004-08-17  Martin Baulig  <martin@ximian.com>
25150         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
25152         * icall.c
25153         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
25154         argument.
25156         * class.c (mono_type_get_full_name): New public function.
25157         (mono_type_get_name): Don't include the type arguments.
25159 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
25161         * Makefile.am: Build static versions of libmetadata and libmonoruntime
25162         for inclusion into the mono executable.
25164 2004-08-16  Martin Baulig  <martin@ximian.com>
25166         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
25167         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
25169 2004-08-14  Martin Baulig  <martin@ximian.com>
25171         * class.c (dup_type): Also copy the `byref' field.
25173 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
25175         * reflection.c (create_dynamic_mono_image): Revert the last change 
25176         since it breaks bootstrap.
25178 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
25180         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
25182         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
25183         not free them with g_free.
25185 2004-08-11  Martin Baulig  <martin@ximian.com>
25187         * reflection.c (mono_reflection_setup_internal_class): Also call
25188         mono_class_setup_mono_type() if we already have a `tb->type.type'.
25190 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
25192         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
25193         called during default (first) AppDomain creation. Keep track of
25194         Evidence when loading assemblies.
25196 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25198         * opcodes.c, opcodes.h: reduce runtime relocations.
25200 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
25202         * culture-info.h, locales.c: fixes and chages to sue the new
25203         optimized format of the locale data.
25204         * culture-info-tables.h: regenerated.
25206 2004-08-06  Geoff Norton <gnorton@customerdna.com>
25207         
25208         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
25210 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
25212         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
25213         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
25214         * domain-internals.h: icall declaration.
25215         * icall.c: icall registration.
25216         * object-internals.h: New fields in MonoAssembly for CAS.
25218 2004-08-05  Duncan Mak  <duncan@ximian.com>
25220         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
25221         CEE_LDELEM_ANY.
25223 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25225         * reflection.c: fix to deal with object[] arrays in custom ctors
25226         (bug #62550).
25228 2004-08-05  Martin Baulig  <martin@ximian.com>
25230         * class.c (mono_class_array_element_size): Added support for
25231         generic instances and correctly handle "recursive" types.
25233 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
25235         * assembly.c: Fix warnings.
25237 2004-08-04  Martin Baulig  <martin@ximian.com>
25239         * class.c
25240         (mono_type_get_name_recurse): Added `gboolean include_arity'
25241         argument specifying whether or not we should include the generic
25242         arity in the type name.
25243         (_mono_type_get_name): New static function.
25244         (mono_class_setup_vtable): If we're a generic instance, don't
25245         include the generic arity in the names of explicit method
25246         implementations.        
25248 2004-08-03  Martin Baulig  <martin@ximian.com>
25250         * class.c (mono_type_get_name_recurse): Enclose the generic type
25251         arguments in `<', '>'.
25253 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25255         * gc.c: make GC warning messages use the trace API, they are just
25256         noise to most of the users.
25258 2004-08-03  Martin Baulig  <martin@ximian.com>
25260         * debug-mono-symfile.c (read_string): Correctly read the string.
25262 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
25264         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
25265         
25266         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
25267         icalls.
25268         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
25270 2004-07-30  Martin Baulig  <martin@ximian.com>
25272         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
25273         Reflect latest symbol writer changes.   
25275 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25277         * object.c: always create an object if null is passed
25278         to Invoke() where a valuetype is expected.
25280 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
25282         * marshal.c (mono_marshal_init): make managed
25283         signatures match native ones better for 64bits.
25285 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25287         * appdomain.c: hack to build correctly the private bin path on windows.
25288         Fixes bug #61991.
25290 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
25292         * assembly.c: Load mscorlib from the correct framework directory
25293           (mono/<version>/mscorlib.dll).
25294         * appdomain.h: Added prototypes for new functions.
25295         * internals.h: Added some prototypes.
25296         * domain.c: When initializing the runtime, get from the executable and
25297           the configuration files the runtime version that the app supports.
25298           Added support methods for reading app.exe.config. Added list of versions
25299           supported by the JIT. Added two new methods: mono_init_from_assembly,
25300           which initializes the runtime and determines the required version from
25301           the provided exe file, and mono_init_version, which initializes
25302           the runtime using the provided version.
25303         * icall.c: Get machine.config from version-specific directory.
25304         * reflection.c: When generating an image, embed the version number
25305           of the current runtime.
25307 2004-07-28  Dick Porter  <dick@ximian.com>
25309         * socket-io.c
25310         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
25311         returned sockaddr size before creating the remote address object.
25312         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
25313         61608.
25315 2004-07-28  Dick Porter  <dick@ximian.com>
25317         * locales.c (string_invariant_compare_char): Fix invariant char
25318         compares between upper and lower cases.  Fixes bug 61458.
25320 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
25321         
25322         * marshal.c: actually cache stelem.ref wrappers.
25323         
25324 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
25326         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
25327         sections and remove the mono_cli_rva_map () function.
25329 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25331         * debug-mono-symfile.c: fix one more endianess issue, from a patch
25332         by Geoff Norton (<gnorton@customerdna.com>).
25334 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
25336         * class.c: fix class loads for pointer types (typeof(int) !=
25337         typeof(int*)).
25339 2004-07-27  Martin Baulig  <martin@ximian.com>
25341         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
25342         reading the debugging information from an external ".mdb" file.
25344 2004-07-24  Martin Baulig  <martin@ximian.com>
25346         * reflection.c (mono_image_get_type_info): Only write a class
25347         layout entry if we actually have a size or a packing size.
25349 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25351         * reflection.c (type_get_fully_qualified_name): 
25352         insert cast to get type checking of ?: with non-gcc compilers
25354 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
25356         * rand.c: use g_getenv for both lookups of
25357         MONO_EGD_SOCKET
25359 2004-07-17  Martin Baulig  <martin@ximian.com>
25361         * reflection.c (mono_reflection_bind_generic_method_parameters):
25362         Set `gmethod->reflection_info'.
25364 2004-07-17  Martin Baulig  <martin@ximian.com>
25366         * class.c (mono_class_create_from_typedef): Insert the newly
25367         created class into the hash table before computing the interfaces
25368         since we could be called recursively.
25370 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
25372         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
25373         function to implement stelem.ref in managed code
25374         * class-internals.h, debug-helpers.c: a new wrapper type
25375         for the above.
25377 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
25379         * gc.c: allow GC handles to work even when no GC is compiled in.
25380         Fix part of bug #61134 (GetAddrOfPinnedObject).
25382 2004-07-13  Peter Williams  <peter@newton.cx>
25384         * process.c (complete_path): Make sure we don't attempt to execute
25385         directories.
25387 2004-07-12  Geoff Norton <gnorton@customerdna.com>
25389         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
25390           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
25391           and will add/subtract the hour if needed
25393 2004-07-12  Martin Baulig  <martin@ximian.com>
25395         * reflection.c (mono_field_get_object): If we have
25396         `field->generic_info', take the attributes from
25397         `field->generic_info->generic_type'.    
25399 2004-07-12  Martin Baulig  <martin@ximian.com>
25401         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
25402         This function must be called before initializing the runtime.
25403         (mono_debug_init_1): New function; call this after initializing
25404         the runtime, but before loading the assembly.  It tells the
25405         debugger to load corlib and the builtin types.
25407         * mono-debug-debugger.c: Did some larger changes in the debugging
25408         code; support recursive class declarations, make sure we actually
25409         add all classes.
25411 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25413         * debug-helpers.c: undo my previous patch and fixed the real issue in
25414         ../mini/exceptions-x86.c
25416 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25418         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
25419         when no HOME env. variable was set and a NullRef was thrown in a .cctor
25420         called from other .cctors.
25422 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
25424         * loader.c: Removed the mono_loader_wine_init hack now that we are
25425         doing a managed version of Windows.Forms.
25427 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
25429         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
25430         threadpool.c, threads.c: remove static data from rootset.
25432 2004-07-09  Dick Porter  <dick@ximian.com>
25434         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
25435         Don't do any more processing if the matched length was 0.  It was
25436         increasing the size of the string before.  Fixes bug 61167.
25438 2004-07-09  Dick Porter  <dick@ximian.com>
25440         * socket-io.h:
25441         * socket-io.c
25442         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
25443         Add support for SO_PEERCRED if its available.
25445 2004-07-09  Peter Bartok <pbartok@novell.com>
25446         * loader.c: winelib.exe.so error message is now only displayed if
25447         MONO_DEBUG is set. To help us avoid questions when people are trying
25448         out the new Managed.Windows.Forms.
25450 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
25452         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
25453         for isinst and castclass wrappers.
25455         * class-internals.h icall.c: Move registration and lookup of JIT icalls
25456         to libmetadata from the JIT, so they could be used by the marshalling
25457         code and the interpreter.
25459         * marshal.c: Register marshalling related JIT icalls here instead of
25460         in mini.c. Use CEE_MONO_ICALL instead of the family of 
25461         CEE_MONO_PROC<x> opcodes to call marshalling functions.
25463         * metadata.h: Remove unneeded marshalling conversions.
25465         * opcodes.c: Update for new opcodes.
25466         
25467 2004-07-08  Martin Baulig  <martin@ximian.com>
25469         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
25470         (mono_debug_get_domain_data): Make this function static.
25472 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25474         * gc.c, object.h: add nice GC handle API for embedders.
25476 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
25478         * reflection.c: more changes for the new api
25480         * object.c: When we reflect on a field w/ a constant value, it
25481         will not have a memory location, so we must access metadata. Also,
25482         allow easier reading of strings so that we can read them from
25483         the constant data.
25485         * class.c (mono_class_layout_fields): no need for literal fields here.
25487         * class-internals.h: api changes for const fields
25489         * icall.c (ves_icall_get_enum_info): use new apis for const fields
25491 2004-07-06  Martin Baulig  <martin@ximian.com>
25493         * mono-debug.h: Increment version number to 44.
25495         * mono-debug.c (mono_debug_add_wrapper): The second argument is
25496         now a gpointer, rewrote this whole method.
25498         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
25499         function.  Add information about the wrapper in a new "misc table".
25501         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
25502         for the new misc table.
25504 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
25506         * metadata-internals.h image.c: Add a cache for helper signatures.
25508         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
25510 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
25512         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
25513         delegates from a delegate. Fixes #61033.
25514         
25515         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
25516         marshalling of stringbuilder arrays. Fixes #59900.
25518 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
25520         * icall.c: Add EnumBuilder:setup_enum_type icall.
25522 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
25524         * icall.c: Added a new icall for the property version of
25525         OffsetOfStringData.
25527 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
25529         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
25530         it has a constant size across platforms.
25532         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
25533         stack trace.
25535 2004-06-29  Martin Baulig  <martin@ximian.com>
25537         * mono-debug.c (mono_debug_add_method): Protect the whole function
25538         in mono_debugger_lock(), not just parts of it.
25540 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
25542         * reflection.c: make sure padding bytes in heaps are zeroed.
25544 2004-06-24  David Waite  <mass@akuma.org>
25546         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
25547         image.c, loader.c, locales.c, marshal.c, metadata.c,
25548         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
25549         string-icalls.c, threads.c: change to C90-style comments from C99 /
25550         C++ -style
25552 2004-06-24  Dick Porter  <dick@ximian.com>
25554         * threads.c
25555         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
25556         return createdNew.  Fixes bug 60412.
25558         * threads-types.h: 
25559         * icall.c: Add createdNew parameter to CreateMutex icall
25561 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25563         * reflection.c, object-internals.h: save default value in params.
25565 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25567         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
25568         no need to build a new path combining that with the application base.
25569         Fixes bug #60442.
25571 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
25573         * reflection.c: fixed minor standard compliance issues.
25575 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
25577         * reflection.c: fixed issue with encoding some custom attributes
25578         (arrays in properties and fields, bug #60411).
25580 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25582         * reflection.c: fix start address when copying the public key token.
25584 2004-06-23  Martin Baulig  <martin@ximian.com>
25586         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
25587         the `exc' object in a static object to put it into the GC's root set.
25589 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
25591         * reflection.c: make mono_reflection_setup_internal_class ()
25592         callable a second time to setup a new parent class.
25594 2004-06-23  Dick Porter  <dick@ximian.com>
25596         * threads.c: Check for WAIT_IO_COMPLETION return values.
25598 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
25600         * appdomain.c: Removed the g_free on the public key token. Now copy 
25601         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
25602         * assembly.c: Added public key token string value when loading 
25603         assemblies. Fix bug #60439.
25604         * icall.c: Added missing informations (like public key) in 
25605         GetReferencedAssemblies. Fix #60519.
25606         * image.h: Changed definition for public key token from const char*
25607         public_tok_value to guchar public_key_token [17];
25608         * reflection.c: Updated for changes to public key token.
25610 2004-06-22  Lluis Sanchez Gual
25612         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
25613         for the field in base classes.
25615 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25617         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
25618         mark headers as not supported, they are installed only for use by the
25619         debugger.
25621 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
25623         * *.c, *.h: avoid namespace pollution in public headers.
25625 2004-06-21  Martin Baulig  <martin@ximian.com>
25627         * exception.c (mono_get_exception_security): It's in
25628         "System.Security", not in "System".
25630         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
25631         the exception classes.
25633 2004-06-21  Martin Baulig  <martin@ximian.com>
25635         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
25636         Protect the exception object from being finalized.
25638 2004-06-21  Martin Baulig  <martin@ximian.com>
25640         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
25641         public function.
25643 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
25645         * reflection.c: Load the assembly in mono_reflection_type_from_name,
25646         if it was not loaded before. Fix parts of #60439.
25648 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
25650         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
25651         code that was broken since Ben's change: wrappers are now
25652         dependent on the method signature only again.
25654 2004-06-21  Martin Baulig  <martin@ximian.com>
25656         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
25657         added interface support.
25659 2004-06-21  Martin Baulig  <martin@ximian.com>
25661         * class.c (mono_vtable_get_static_field_data): New public method.
25663 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
25665         * filewatcher.c : Windows build fix to be compliant with API changes.
25667 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25669         * class.h, class.c: more accessors.
25670         * metadata.h, metadata.c: prepare for hiding MonoType and
25671         MonoMethodSignature: people should use the accessors from now on
25672         outside of the tree.
25674 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
25676         * *.c, *.h: more API cleanups.
25678 2004-06-18  Jackson Harper  <jackson@ximian.com>
25680         * assembly.c: Trace loading assemblies.
25681         * loader.c: Trace loading native libraries.
25682         * mono-config.c: Trace loading config files.
25683         
25684 2004-06-18  Dick Porter  <dick@ximian.com>
25686         * locales.c: Tell ICU the lengths of strings, it can cope with
25687         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
25689 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
25691         * image.c: swapped name/filename;
25693 2004-06-18  Martin Baulig  <martin@ximian.com>
25695         * mono-debug-debugger.c (write_class): Write the parent class at
25696         the end of the header.
25698 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
25700         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
25702 2004-06-17  Raja R Harinath  <rharinath@novell.com>
25704         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
25705         (bundle_obj): New conditional define.
25706         (BUILT_SOURCES): Remove.
25707         ($(bundle_srcs)): Make parallel-make safe.
25708         (libmonoruntime_la_LIBADD): Make unconditional.
25709         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
25710         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
25712 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
25714         * culture-info-tables.h: It was inconsistent with the latest
25715           supp info files.
25717 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
25719         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
25720         be loaded.
25722         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
25723         with gcc 2.95.
25725 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
25727         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
25728         cleaned up public header threads.h.
25730 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
25732         * Makefile.am, *.c, *.h: more API cleanups.
25734 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
25736         * Makefile.am: removed monosn from compilation.
25737         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
25738         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
25739         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
25740         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
25741         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
25742         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
25744 2004-06-15  Jackson Harper  <jackson@ximian.com>
25746         * assembly.c: Make locales lower case when searching the GAC for
25747         assemblies. gacutil will always make locales lowercase when
25748         installing so this effectively makes them case insensitive.
25749         
25750 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
25752         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
25753         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
25754           parameter which allows to choose whether the wait can be interrupted or 
25755           not. Also added the method mono_monitor_enter(), which locks the monitor
25756           using an infinite wait and without allowing interruption.
25757           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
25758           interrupted.
25759         * object.h: Added new fields in MonoThread. suspend_event holds the event
25760           used to susped/resume the thread. synch_lock is the lock object to use for
25761           modifying the thread state.
25762         * threads.c: Use the new synch_lock object for locking, instead of "this",
25763           which can generate deadlocks.
25764           Moved thread state change in Thread.Sleep and Thread.Join from managed
25765           to unmanaged code. This avoids a deadlock when the thread was suspended
25766           just after acquiring the thread lock.
25767           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
25768           Implemented Thread.Suspend using an event instead of ThreadSuspend,
25769           which is not fully implemented in the io-layer.
25770         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
25772 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
25774         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
25775         threads-types.h: more API cleanups.
25777 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
25779         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
25780         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
25781         threadpool.c, threads.c: first pass at the exported API cleanup.
25783 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
25785         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
25787 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25789         * icall.c: added internalGetHome.
25791 2004-06-14  Dick Porter  <dick@ximian.com>
25793         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
25794         possible to return successfully when '.' or '..' were the only
25795         entries in a directory, but were skipped.  The MonoIOStat was not
25796         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
25797         Fixes bug 59574.
25799 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
25801         * reflection.c: make binaries run on .Net 1.1 by default.
25803 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
25805         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
25807 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
25809         * marshal.c: keep track of struct size with explicit layout
25810         (bug #59979).
25812 2004-06-12  Martin Baulig  <martin@ximian.com>
25814         * mono-debug-debugger.c: Comment out a debugging g_message().
25816 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
25818         * reflection.c, reflection.h: do not free custom attrs that are cached.
25819         * icall.c: use braces to make code clearer.
25821 2004-06-11  Martin Baulig  <martin@ximian.com>
25823         * class.h (MonoInflatedField): New type.
25824         (MonoClassField): Replaced `MonoType *generic_type' with
25825         `MonoInflatedField *generic_info'.
25827         * icall.c
25828         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
25830 2004-06-11  Martin Baulig  <martin@ximian.com>
25832         * reflection.c (mono_image_create_method_token): Correctly encode
25833         varargs methods.
25835 2004-06-11  Martin Baulig  <martin@ximian.com>
25837         * metadata.c (mono_metadata_parse_method_signature): When parsing
25838         a MethodDef which has VarArgs, also set sentinelpos if we don't
25839         have any parameters.
25841 2004-06-11  Martin Baulig  <martin@ximian.com>
25843         * verify.c (mono_method_verify): In CEE_CALL, use
25844         mono_method_get_signature() to get the method's signature, unless
25845         we're a PInvoke method.
25847 2004-06-10  Jackson Harper  <jackson@ximian.com>
25849         * assembly.c: Use <path>/lib/mono/gac for the extra paths
25850         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
25851         logical name as the supplied path is just a prefix to the gac not
25852         the direct path to it.
25853         
25854 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
25856         * reflection.c: make the token for a created method match
25857         the token of the MethodBuilder it was created from
25858         (IKVM requires this behaviour now).
25860 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
25862         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
25863         reflection.c, socket-io.c: leak fixes.
25865 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
25867         * icall.c: handle sentinel pos in vararg methods in position different
25868         from 0.
25870 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25872         * culture-info-tables.h: freshly generated.
25874 2004-06-09  Martin Baulig  <martin@ximian.com>
25876         * loader.c (mono_get_method_constrained): Call `mono_class_init
25877         (constrained_class)'.   
25879 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
25881         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
25882         any methods. Fixes #59629.
25884 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25886         * culture-info-tables.h: reflecting locale-builder updates.
25888 2004-06-08  Dick Porter  <dick@ximian.com>
25890         * object.h:
25891         * locales.c: Fixed compile warnings, including a real bug in
25892         CompareInfo_internal_compare.
25893         
25894 2004-06-08  Dick Porter  <dick@ximian.com>
25896         * locales.c
25897         (ves_icall_System_Globalization_CompareInfo_internal_index):
25898         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25899         Double-check the resuls of usearches, because ICU currently
25900         ignores most of the collator settings here.  Fixes bug 59720.
25901         
25902 2004-06-08  Dick Porter  <dick@ximian.com>
25904         * locales.c
25905         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
25906         Fix memory leak and segfault-causing typo.  No idea how this one
25907         lasted so long without being noticed.
25909 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
25911         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
25912         any methods. Fixes #59629.
25914 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
25916         * assembly.c:
25917         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
25918         own the critical section before). Removed dead code (that's done
25919         in the preload hook).
25921         (mono_assembly_load_with_partial_name): call the preload hook.
25923 2004-06-08  Martin Baulig  <martin@ximian.com>
25925         * metadata.c (mono_metadata_signature_alloc): Default
25926         `sentinelpos' to -1.
25928         * reflection.c (mono_image_get_array_token): Likewise.
25930 2004-06-08  Martin Baulig  <martin@ximian.com>
25932         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
25934         * metadata.c (mono_metadata_parse_method_signature): When parsing
25935         a MethodDef which has VarArgs, set sentinelpos.
25937         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
25938         `gint16' since we're using -1 for non-varargs methods.
25940         * reflection.c
25941         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
25942         (method_encode_signature): Added varargs support.
25943         (method_builder_encode_signature): Likewise.
25944         (mono_image_get_varargs_method_token): New static method.
25945         (mono_image_create_method_token): New public method; this is
25946         called via an icall instead of mono_image_create_token() when
25947         calling a varargs method.       
25949 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
25951         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
25953 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25955         * culture-info-tables.h : Reflecting the latest locale-builder that
25956           fixed empty array representation ({} to {0}).
25958 2004-06-07  Jackson Harper  <jackson@ximian.com>
25960         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
25961         looking up extra gac paths. This allows MONO_GAC_PATH to act
25962         exactly like a prefix.
25963         
25964 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25966         * reflection.c (mono_reflection_type_from_name): Make a copy of the
25967         type name before modifying it. Fixes #59405.
25969 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25971         * culture-info.h: added fields for "all datetime patterns".
25972         * locales.c: (  ves_icall_System_Globalization_CultureInfo
25973           _construct_datetime_format ()): fill xxx_patterns fields.
25974         * object.h: added fields for "all datetime patterns" to
25975           MonoDateTimeFormatInfo.
25976         * culture-info-tables.h: reflecting locale-builder updates.
25978 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
25980         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
25981         the event has no add and remove methods. Fixes #59629.
25983 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
25985         * object.c: Fixed possible integer overflow when allocating large
25986         strings.
25988 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25990         * culture-info-tables.h: reflecting locale-builder updates.
25992 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
25994         * culture-info-tables.h: reflecting locale-builder updates.
25996 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
25998         * culture-info-tables.h: reflecting locale-builder updates.
26000 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
26002         * threads.c: Made Thread.Sleep abortable.
26004 2004-06-02  Martin Baulig  <martin@ximian.com>
26006         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
26008         * debug-mono-symfile.h: Bumped symbol file version number to 37.
26010 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
26012         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
26014 2004-05-30  Jackson Harper  <jackson@ximian.com>
26016         * reflection.c: Do not hardcode assembly versions or public key
26017         tokens anymore. All of this except the corlib section was dead
26018         code anyways.
26019         
26020 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
26022         * object.c (mono_runtime_invoke_array): Automatically create boxed
26023         objects for byref valuetypes if needed. Fixes #59300.
26024         
26025         * object.c (mono_method_return_message_restore): Handle 
26026         MONO_TYPE_OBJECT as well.
26028 2004-05-28  Jackson Harper  <jackson@ximian.com>
26030         * reflection.c: The modified type encoding was causing build
26031         problems. Reverted for now.
26032         
26033 2004-05-28  Jackson Harper  <jackson@ximian.com>
26035         * reflection.c/h: Take an assembly ref so that we dont create
26036         fully qualified names when encoding types in the same assembly as
26037         the custom attribute being emitted.
26038         * appdomain.c: Increment version number.
26039         
26040 2004-05-26  Duncan Mak  <duncan@ximian.com>
26042         * icall.c
26043         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26044         Set the full version number (major, minor, build, revision).
26046 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
26048         * marshal.c (emit_struct_conv): increment src/dst after blit
26049         (mono_marshal_get_managed_wrapper,
26050         mono_marshal_get_native_wrapper): make sure we have marshalling
26051         info before marshalling params (info computation affects
26052         blittable)
26054         * class.c (class_compute_field_layout): correctly deal with
26055         blittable
26056         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
26057         value types (as per what windows dows by default)
26058         (mono_class_setup_mono_type): System.ValueType is blittable
26059         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
26060         blittable
26062         * marshal.c (mono_marshal_load_type_info): flag types  as
26063         non-blittable if the native layout doesn't match the managed
26064         layout
26066 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26068         * appdomain.c: don't add stuff in the private search path that is
26069         above the application base. If application base is not set, there's
26070         no private search path.
26072 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
26074         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
26075         byref struct arguments in native->managed marshalling.
26077 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
26079         * marshal.c (mono_marshal_get_runtime_invoke): correctly
26080         cache methods using signature (special case for methods
26081         that are value type or string class)
26082         
26083         * image.c (mono_image_close): clean up allocated GSList's
26084         in runtime_invoke_cache.
26086 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26088         * mono-config.c: set the correct path for mono_cfg_dir on windows when
26089         there's no MONO_CFG_DIR environment variable defined.
26091 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26093         * threads.c: windows version must be >= 0x0500 to include OpenThread.
26095 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
26097         * threadpool.c: Really wait for 500ms after the async call, even if the wait
26098           is interrumped.
26099         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
26100           before waiting for it, and call CloseHandle after the wait to unref it.
26101           This will make sure that handles are not disposed too early.
26103 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26105         * appdomain.c:
26106         * appdomain.h:
26107         * icall.c: removed
26108         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
26109         needed now.
26111         * object.c: se the application_base only for the domain that runs
26112         Main. Fixes bug #59216,
26114 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26116         * appdomain.c:
26117         * object.c: only the domain in which Main is run have
26118         SetupInformation.ConfigurationFile set, so moved a few lines from
26119         appdomain.c to object.c.
26121 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26123         * appdomain.c: we tried to load [name].(dll|exe), but according
26124         to bug #57710, we must also try [culture]/[name].(dll|exe) and
26125         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
26126         There's a test case attached to bug #58922.
26128 2004-05-27  Dick Porter  <dick@ximian.com>
26130         * icall.c:
26131         * file-io.c: Implemented icalls for locking and unlocking regions
26132         in a file.
26133         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
26134         FALSE on error (fixes both compiler warning and real bug.)
26136 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
26138         * culture-info-tables.h: reflecting locale-builder updates.
26140           (Added missing ChangeLog entry for 05/26)
26142 2004-05-27  Jackson Harper  <jackson@ximian.com>
26144         * locales.c: Fix some cut and paste errors.
26145         
26146 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26148         * mono-config.c: set the correct path for config. directory on windows.
26150 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26152         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
26153           on win32.
26155 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26157         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
26158         from pinvoke functions.
26159         
26160         * marshal.c (mono_ftnptr_to_delegate): Implement this.
26162 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
26164         * culture-info-tables.h: reflecting locale-builder updates.
26166 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
26168         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
26169         #59086.
26171 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
26173         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
26174         * icall.c: Modified icalls for RNG.
26175         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
26176         Windows (CryptoAPI).
26178 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26180         * locales.c: Fix build.
26182 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
26184         * culture-info-tables.h: reflecting locale-builder updates.
26186 2004-05-25  Jackson Harper  <jackson@ximian.com>
26188         * locales.c: When creating the current culture use the $LANGs
26189         specific culture. So DateTimeFormat and NumberFormat entries are created.
26190         
26191 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
26193         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
26194         a char array as parameter.
26196 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
26198         * image.c: In mono_image_open(), always use an absolute path name to
26199           look for already loaded images.
26201 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
26203         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
26204         missing in the windows build (like older cygwin include files).
26206 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
26208         * icall.c: Fixed check for possible integer overflow in Buffer_
26209         BlockCopy icall. Replaced comments style // by /* */.
26211 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
26213         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
26214         
26215         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
26216         check after MONO_VTADDR. Fixes pinvoke2.exe.
26218         * marshal.h marshal.c metadata.h: Add beginnings of support for
26219         ftnptr -> delegate marshalling.
26221 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
26223         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
26224         * threads.c: Fix warnings.
26226 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
26228         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
26229         * icall.c: Registered icalls for Suspend and Resume.
26230         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
26231           Thread.Abort.
26232         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
26233         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
26234         * process.c: Use WaitForSingleObjectEx.
26235         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
26236           checkpoints.
26237         * threads.c, threads.h: Make use of new Ex wait methods. Improved
26238           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
26239           for Suspend and Resume. Added new mono_thread_stop, used for stoping
26240           background threads. Added basic support for Abort in Windows.
26241           Start new threads using a managed delegate invoke wrapper. This wrapper
26242           has an interruption checkpoint that is needed since an interruption
26243           can be requested before the thread leaves the unmanaged code that starts 
26244           the thread.
26245         * marshal.c: Added interruption checkpoint after every native call, and
26246           also before managed calls for wrappers called from unmanaged code to
26247           go into managed code.
26248         * object.h: Added new field in MonoThread to keep track of interruption
26249           requests.
26251 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
26253         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
26254         calls.
26256 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26258         * appdomain.c:
26259         * assembly.c:
26260         * gc.c:
26261         * locales.c:
26262         * mono-config.c:
26263         * rand.c: getenv -> g_getenv (windows!)
26265         * process.c: complete_path is also used on non-windows platforms.
26267 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26269         * icall.c: new signature for Process_Start.
26271         * process.[ch]: new signature for Process_Start. If we're on windows
26272         and UseShellExecute is false, we have to search for the program by
26273         ourselves if we don't get a full path.
26275 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
26277         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
26278         marshalling and call CleanUpNativeData if needed. Fixes #58646.
26280 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26282         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
26283         Fixes bug #58373.
26285 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26287         * process.c: use double quotes to quote program name and arguments on
26288         windows. Fixes bug #58575.
26290 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26292         * file-io.c: don't return "." and ".." when using windows Find*File.
26294 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
26296         * marshal.c: Don't pass wrappers to message init because method 
26297         addressed used to lookup metadata. part of remoting[2|3] fix.
26299 2004-05-15  Jackson Harper  <jackson@ximian.com>
26301         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
26302         path is essentially the same as MONO_PATH except that it points to
26303         GACs instead of lib directories.
26304         * loader.h: The user gac is gone so we dont need function to
26305         enable/disable it.
26306         * mono-config.c: user gac option is now gone.
26307         
26308 2004-05-15  Jackson Harper  <jackson@ximian.com>
26310         * culture-info.h: Make defines more consistent, add calendar data
26311         to the culture info table.
26312         * culture-info-tables.h: Add basic calendar data. Basically
26313         everyone gets default gregorian until all the data is
26314         updated.
26315         * locales.c: Use the new consistent defines. Set calendar data for
26316         culture info objects.
26317         * object.h: add a field for calendar data to CultureInfo
26318         
26319 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
26321         * image.c: image->runtime_invoke_cache is keyed on signatures now.
26322         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
26323         a signature.
26324         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
26325         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
26326         an extra param that is the pointer of the method to invoke. The IL for
26327         the invoke method is no longer specific to the method, but to the
26328         signature of the method. Thus, we can share the same code for multiple
26329         methods. This reduces the number of methods that have to be compiled.
26331 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
26333         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
26335         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
26337         * icall.c: Optimize Buffer.BlockCopy.
26339 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26341         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
26342         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
26343         quote). Changed them to "MMMM yyyy".
26345 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
26347         * rand.c
26348         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
26350 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
26352         * reflection.h: Updated after changes to managed structures.
26354         * appdomain.c: Bump corlib version.
26356 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26358         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
26359         windows.
26361 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26363         * Makefile.am: link to ../os/libmonoos.la on windows.
26365         * assembly.c:
26366                 -If MONO_DEBUG, warn about non-existing directories in
26367                 MONO_PATH.
26368                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
26369                 compile time variable.
26370                 -Removed init_default_path and call mono_set_rootdir from
26371                 libmonoos.a instead (windows only).
26373         * assembly.h: declare mono_assembly_getrootdir().
26375         * domain.c:
26376         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
26378         * loader.c: s/getenv/g_getenv/
26380 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
26382         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
26384         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
26386         * metadata.h: Add new marshalling conversions.
26388         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
26389         function.
26391         * reflection.c (mono_reflection_get_type): Lookup the type in all
26392         modules of a multi-module assembly. Fixes #58291.
26394 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
26396         * threads.c: Before aborting a background, set the StopRequested
26397         state.  This avoids throwing the Abort exception.
26398         In mono_thread_manage, don't continue with the shutdown until all
26399         aborted threads have actually stopped.
26401 2004-05-10  Jackson Harper  <jackson@ximian.com>
26403         * locales.c: Remove the modifier from culture names.
26404         
26405 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26407         * Makefile.am: monosn is not installed any more. It has been deprecated
26408         in favor of sn.
26410 2004-05-07  Jackson Harper  <jackson@ximian.com>
26412         * locales.c
26413         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
26414         Fix array construction, add bailout if the length is 0.
26416 2004-05-07  Dick Porter  <dick@ximian.com>
26418         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
26419         machine doesn't have a DNS entry.  Patch by Urs Muff
26420         (umuff@quark.com), fixes bug 57928.
26422 2004-05-06  Jackson Harper  <jackson@ximian.com>
26424         * reflection.c: Handle null PublicTokens properly. alloc mem for
26425         assembly names culture so we dont crash when freeing it.
26426         
26427 2004-05-06  Jackson Harper  <jackson@ximian.com>
26429         * assembly.c: Check the usergac when loading with partial names.
26430         
26431 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26433         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
26434         does nothing for now (not required for Linux/Windows) but the class
26435         library can call it (and a newer or modified runtime could need it).
26436         * icall.c: Registred icall.
26438 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26440         * loader.c: prints a message on module loading error we set MONO_DEBUG
26441         environment variable.
26443 2004-05-05  Jackson Harper  <jackson@ximian.com>
26445         * appdomain.c: Handle PublicKeyToken=null properly.
26446         
26447 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
26449         * environment.c|h: Added icall ves_icall_System_Environment_
26450         GetOSVersionString to get the current OS version as a string.
26451         * icall.c: Registred icall.
26453 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
26455         * object.c: in mono_object_get_virtual_method(), take into account that
26456         non-virtual methods don't have a slot in the vtable. Check needed when
26457         the object is a proxy.
26459 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
26461         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
26462         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
26464         * object.c (mono_class_compute_gc_descriptor): Fix warning.
26466         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
26467         passed when a valuetype is expected.
26469         * object.c (mono_unhandled_exception): Only set the exit code if the
26470         exception happens in the main thread. Fixes thread5.exe.
26472         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
26473         invalid names. Fixes #58047.
26475 2004-05-03  Jackson Harper  <jackson@ximian.com>
26477         * assembly.c: This line was committed accidently and is unneeded.
26478         
26479 2004-05-03  Jackson Harper  <jackson@ximian.com>
26481         * icall.c: Add new icall for Assembly::LoadWithPartialName
26482         * assembly.c/.h: new function that probes the GAC to load partial
26483         assembly names by Paolo Molaro.
26484         
26485 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26487         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
26488         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
26489         (type_get_fully_qualified_name): Added PublicKeyToken when building a
26490         full type name.
26492 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26494         * appdomain.c: fixed check for 'neutral' culture and removed warning.
26495         * reflection.c: fix bug when parsing a full type name and Version is not
26496         the last thing in the string.
26498 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
26500         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
26501         crashes when it is freed.
26503 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26505         * assembly.c: print the compat warning to stderr.
26507 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
26509         * assembly.c (mono_assembly_load_references): Add a compatibility
26510         hack to run old applications that might be still referencing the
26511         3300-based assemblies, only do this for System.xxx.
26513 2004-05-01  Jackson Harper  <jackson@ximian.com>
26515         * appdomain.c: If the culture is neutral we set it to "".
26516         
26517 2004-04-29  Jackson Harper  <jackson@ximian.com>
26519         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
26521 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
26523         * string-icalls.c: added low overhead function for copying chars
26524         * icall.c: added needed icall for the above function
26526 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26528         * icall.c: fix return value of get_global_assembly_cache.  Implemented
26529         Environment.GetLogicalDrives.
26531 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
26533         * rand.c: try and talk to egd or prngd
26534         for random bytes if opening devices fail.
26536 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
26538         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
26539         alignment for the type using the native alignment of its members 
26540         instead of using klass->min_align.
26542         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
26544 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26546         * file-io.c:
26547         * socket-io.c: added check for sys/aio.h.
26549 2004-04-28  Dick Porter  <dick@ximian.com>
26551         * threads.c: Don't abort a thread thats already aborting, when
26552         terminating everything.
26554 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26556         * icall.c: added 2 new async calls for Socket.
26558         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
26559         IO on *nix systems.
26561         * threadpool.c: removed unused variable.
26563 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
26565         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
26567 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26569         * locales.c: put back string_invariant_tolower () and
26570         string_invariant_toupper ().
26572 2004-04-26 David Waite <mass@akuma.org>
26574         * file-io.h:
26575         * socket-io.h:
26576         * threads.h:
26577         * unicode.h: remove comma from end of enumeration declarations
26579 2004-04-26 David Waite <mass@akuma.org>
26581         * debug-mono-symfile.h:
26582         * decimal.c:
26583         * mono_debug.h:
26584         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
26587 2004-04-26  Jackson Harper  <jackson@ximian.com>
26589         * appdomain.c: Increment version number.
26590         
26591 2004-04-26  Jackson Harper  <jackson@ximian.com>
26593         * appdomain.c: Set assembly references public token value when
26594         PublicKeyToken is specified, not the hash_value. Free public token
26595         values when free assembly name data. Previously the public key
26596         token was hex decoded, however we are using hex encoded public key
26597         tokens, so this is not neccasary.
26598         * assembly.c: Lookup assemblies in the gac if their public token
26599         value is set. Add function to allow enabling user gac
26600         lookups. Specify whether or not the assembly was loaded from the
26601         GAC. Compare full assembly names when checking the cache for
26602         assemblies (Temporarily disabled see comment in code). Remove
26603         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
26604         specifies trace-loader they get extra info to stdout on the
26605         loading of assemblies.
26606         * image.h: Add a field for an assembly references public token
26607         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
26608         whether an assembly has been loaded from the GAC.
26609         * image.c: Remove a corlib -> mscorlib name mapping.
26610         * loader.h: Add function to enable/disable the user gac.
26611         * mono-config.c: Check if the usergac is enabled in the config
26612         file.
26613         * icall.c: New icall to determine whether or not an assembly has
26614         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
26615         * tabldefs.h: Add constant for assemblyref flag that specifies a
26616         full public key is used instead of a public token.
26617         * reflection.c: Remove mscorlib -> corlib mappings. Set
26618         PublicTokenValue instead of hash value. This value is a hex
26619         string so it does not need to be expanded.
26621 2004-04-26  Martin Baulig  <martin@ximian.com>
26623         * mono-debug-debugger.c (mono_debugger_initialize): Set
26624         `mono_debugger_initialized' before calling mono_debug_lock().
26626 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
26628         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
26629           InternalToUpper/InternalToLower.
26630         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
26631           removed invariant culture shortcut.  This is now done in managed code.
26632         * locales.c: (string_invariant_toupper/tolower) removed.
26634 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26636         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
26637         Added Poll internal call.
26639         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
26640         call for Poll. Select was too heavy for polling a single socket.
26642         * threadpool.[ch]: added mono_threadpool_cleanup.
26643         * threads.c: use it. Don't use Thread_Abort on windows.
26645 2004-04-23  Martin Baulig  <martin@ximian.com>
26647         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
26649 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
26651         * icall.c: Registred new icalls for key pair protection and added an
26652         icall for Environment.GetFolderPath on Windows.
26653         * security.c|h: Added new icalls for key pair protection.
26655 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26657         * socket-io.c: don't display the non-supported family warning for known
26658         families. Now this is not displayed on windows when checking support
26659         for IPv4/IPv6.
26661 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26663         * class.c: don't display the layout warning for static fields.
26665 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
26667         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
26668         * locales.c, locales.h: Added new icalls for culture-specific
26669         Char.ToLower and Char.ToUpper.
26671 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26673         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
26674         by David Waite.
26676 2004-04-20  Martin Baulig  <martin@ximian.com>
26678         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
26679         of the type name before passing it to mono_reflection_type_from_name().
26681 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
26683         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
26684         encodings here. Fixes #56965.
26686 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
26688         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26689         fix test on strstr result not that I can see anything that
26690         relies on the result.
26692 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
26694         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
26695         Fixes #57081.
26697         * marshal.c (mono_marshal_get_string_encoding): New helper function.
26699         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
26700         function to determine which marshalling to use for strings. Fixes
26701         #56965.
26703         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
26705         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
26707 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
26709         * icall.c: #include mono-config.h
26711 2004-04-15  Jackson Harper  <jackson@ximian.com>
26713         * culture-info-tables.h: Fix date formats for en-US culture.
26714         
26715 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
26717         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
26718         ThreadPool.SetMinThreads.
26719         * threadpool.c: Implemented ThreadPool.GetMinThreads and
26720         ThreadPool.SetMinThreads.
26722 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
26724         * mono-config.c: also load the .config file in the directory
26725         where the assembly was found.
26727 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
26729         * assembly.c: load per-assembly config files.
26730         * icall.c: decrapified code to get the config dir and moved to
26731         mono-config.c.
26732         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
26733         per-assembly config files. When doing a dll map lookup give precedence
26734         to the per-assembly data.
26736 2004-04-14  Martin Baulig  <martin@ximian.com>
26738         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
26739         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
26740         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
26742         * mono-debugger-debugger.c: While the debugger is locked, remember
26743         whether the symbol tables have changes and send one single
26744         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
26746 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
26748         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
26750         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
26751         function.
26753         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
26754         account when marshalling string arrays. Fixes #56965.
26756 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
26758         * icall.c: Add new icalls mapping for security.
26759         * security.c|h: Add internal calls for WindowsIdentity,
26760         WindowsImpersonationContext and WindowsPrincipal.
26762 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
26764         * class.c: Added comment to ensure the System.MonoDummy class
26765         is removed when no longer necessary
26767 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
26769         * appdomain.c: Pass arguments to the bootstraping exceptions to
26770         minimize JITed methods at boot
26772         * metadata.c (mono_exception_from_name_two_strings): Allow for the
26773         second string to be null.
26775         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
26776         Change the protocol to minimize the JIT methods at startup.  Now
26777         it Returns the internal codepage, if the value of "int_code_page"
26778         is 1 at entry, and we can not compute a suitable code page
26779         number, returns the code page as a string.
26781 2004-04-13  Jackson Harper  <jackson@ximian.com>
26783         * culture-info-tables.h: Fix number of decimal digits for all
26784         english locales.
26786 2004-04-13  Jackson Harper  <jackson@ximian.com>
26788         * icall.c: Clairfy out of sync error message. It is not always
26789         your corlib that is out of sync.
26791 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
26793         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
26794         properties when only the set accessor is overriden. Fixes #55874.
26796 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
26798         * assembly.c (mono_assembly_load_references): Make this thread safe.
26799         Fixes #56327.
26801 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
26803         * monosn.c: Add missing initialization calls.
26805 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
26807         * locales.c:
26808         ves_icall_System_Globalization_CultureInfo_construct_number_format
26809         Fix g_assert so it compiles on fussier compilers re int/ptr
26810         mismatch
26812 2004-04-08  Dick Porter  <dick@ximian.com>
26814         * socket-io.h:
26815         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
26816         53992.  Also rearrange the code so that the internal calls return
26817         an error value and exceptions are thrown from managed code.
26819         * icall.c: Add type info to the socket icalls.
26821 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26823         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
26824         owes me a beer.
26826 2004-04-07  Martin Baulig  <martin@ximian.com>
26828         * class.c (mono_class_from_generic_parameter): Don't default
26829         `klass->parent' to `mono_defaults.object_type'.
26831 2004-04-07  Martin Baulig  <martin@ximian.com>
26833         * reflection.c (mono_reflection_initialize_generic_parameter): Set
26834         `param->pklass->reflection_info'.       
26836 2004-04-07  Jackson Harper  <jackson@ximian.com>
26838         * culture-info-tables.h: Fix date separator symbol.
26839         
26840 2004-04-07  Martin Baulig  <martin@ximian.com>
26842         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
26843         from System.Type to System.MonoType.
26845 2004-04-07  Martin Baulig  <martin@ximian.com>
26847         * reflection.h
26848         (MonoReflectionGenericParam): Added `has_reference_type' and
26849         `has_value_type' fields.
26851         * reflection.c (mono_image_get_generic_param_info): Encode the
26852         correct flags if we have the `class' or `struct' constraint.
26854 2004-04-07  Martin Baulig  <martin@ximian.com>
26856         * reflection.h
26857         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
26859 2004-04-07  Jackson Harper  <jackson@ximian.com>
26861         * appdomain.c: Revert extra patches, just wanted to bump the
26862         version number.
26863         
26864 2004-04-07  Jackson Harper  <jackson@ximian.com>
26866         * Makefile.am: Add culture-info private headers.
26867         * icall.c: Add new icalls for contructing locales.
26868         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
26869         * locales.h: Declare new culture info construction methods.
26870         * object.h: Add new fields used to avoid the CultureMap to
26871         MonoCultureInfo.
26872         * culture-info.h: Definition of structs used in the culture info
26873         tables.
26874         * culture-info-tables.h: Autogenerated tables that contain culture
26875         info data. This file was generated with the locale-builder tool.
26876         * appdomain.c: Incement corlib version number.
26877         
26878 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
26880         * appdomain.c: (mono_runtime_init) move mono_thread_init
26881         to before mono_object_new calls so critical sections
26882         are initialized before use.
26884 2004-04-07  Martin Baulig  <martin@ximian.com>
26886         * icall.c
26887         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
26888         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
26889         (ves_icall_MonoGenericParam_initialize): Removed.
26890         (monogenericparam_icalls): Removed.
26891         (generictypeparambuilder_icalls): Added new table for
26892         System.Reflection.Emit.GenericTypeParameterBuilder.
26894         * reflection.c
26895         (mono_reflection_define_generic_parameter): Removed.
26896         (mono_reflection_initialize_generic_parameter): This is now called
26897         from GenericTypeParameterBuilder's .ctor.
26899 2004-04-06  Martin Baulig  <martin@ximian.com>
26901         * class.c (mono_class_init): Don't inflate nested classes in a
26902         generic instance.
26903         (mono_type_get_name_recurse): Include the generic arguments for
26904         generic instances and generic type declarations.
26905         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
26906         (_mono_class_get_instantiation_name): Removed.
26907         (mono_class_create_generic): Always use `gklass->name' as our name.
26909         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
26911         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
26912         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
26913         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
26914         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
26915         closed generic methods here.
26917         * reflection.c
26918         (mono_reflection_generic_inst_get_nested_types): Removed.
26919         (inflate_mono_method): Copy the generic parameters from the
26920         MonoMethodHeader into out MonoGenericMethod.
26922 2004-04-06  Martin Baulig  <martin@ximian.com>
26924         * row-indexes.h
26925         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
26927         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
26929         * reflection.c (build_compressed_metadata): If we have any entries
26930         in the GenericParam, MethodSpec or GenericParamConstraint tables,
26931         set the header version to 1.1.
26933 2004-04-06  Martin Baulig  <martin@ximian.com>
26935         * class.c (mono_class_init): If we're a generic instance,
26936         initialize our nested classes, too.
26937         (_mono_class_get_instantiation_name): Deal with the new `!%d'
26938         suffix. 
26940 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26942         * process.c: quote the argument passed to the shell on windows.
26944 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
26946         * threads.c (mono_alloc_special_static_data): Allow this to be
26947         called during startup.
26949 2004-04-02  Martin Baulig  <martin@ximian.com>
26951         * icall.c
26952         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
26954 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
26956         * icall.c: Fix build.
26958 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
26960         * Makefile.am: Added security.c|h.
26961         * icall.c: Added icall for get_UserName;
26962         * security.c: New file for security related icalls. Added function
26963         get_UserName for System.Environment (fix #56144).
26964         * security.h: New. Header file for security.c
26966 2004-04-02  Dick Porter  <dick@ximian.com>
26968         * icall.c: Deleted the icalls that were obsoleted some time ago
26969         by the ICU string code, and which were mixed into the icall
26970         rearranging.  Fixes bug 55969.
26972         * string-icalls.h: 
26973         * string-icalls.c: Deleted the code that those icalls reference.
26975 2004-04-01  Martin Baulig  <martin@ximian.com>
26977         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
26979         * class.c (mono_class_from_generic_parameter): Don't set 
26980         TYPE_ATTRIBUTE_INTERFACE.
26981         (my_mono_class_from_generic_parameter): Likewise.
26983 2004-04-01  Martin Baulig  <martin@ximian.com>
26985         * loader.c (find_method): Added an optional `MonoClass *ic'
26986         argument to search in a specific interface.
26987         (mono_get_method_constrained): New public function.
26989 2004-04-01  Martin Baulig  <martin@ximian.com>
26991         * reflection.c (mono_image_get_generic_field_token): Use the
26992         `handleref' cache here.
26994 2004-04-01  Martin Baulig  <martin@ximian.com>
26996         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
26998         * reflection.c (create_generic_typespec): Use the `typespec' hash
26999         here, not the `typeref' one.    
27001 2004-04-01  Martin Baulig  <martin@ximian.com>
27003         * class.c (mono_class_inflate_generic_type): Moved the
27004         functionality into a new static inflate_generic_type() which
27005         returns NULL if it didn't do anything.  Only increment the
27006         `mono_stats.inflated_type_count' if we actually inflated
27007         something.
27008         (mono_class_get_full): Check the classes type to see whether we
27009         need to inflate it; also inflate MONO_TYPE_(M)VAR.
27011 2004-04-01  Jackson Harper  <jackson@ximian.com>
27013         * reflection.c: Set culture for assembly references.
27014         
27015 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
27017         * reflection.[ch], icall.[ch], Fix support for pinning variables.
27019 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27021         * assembly.c:
27022         (do_mono_assembly_open): the critical section also covers
27023         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
27025 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27027         * threads.c:
27028         (mono_manage_threads): abort the background threads when finishing.
27029         Fixes bug #47232.
27031 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27033         * gc.c: only close the done_event handle if there was no timeout.
27034         C-ified comments.
27036 2004-03-30  Martin Baulig  <martin@ximian.com>
27038         * icall.c (icall_entries): It's called "System.Activator", not
27039         "System.Activation".    
27041 2004-03-30  Martin Baulig  <martin@ximian.com>
27043         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
27044         (mono_class_create_from_typespec): Likewise.
27046 2004-03-30  Martin Baulig  <martin@ximian.com>
27048         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
27049         `has_ctor_constraint' and `initialized'.
27051 2004-03-30  Martin Baulig  <martin@ximian.com>
27053         * reflection.c (encode_new_constraint): New static function to add
27054         the constructor constraint attribute to a type parameter.
27055         (encode_constraints): Call encode_new_constraint() if necessary.
27057         * reflection.h
27058         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
27060         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
27061         
27062 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
27064         * reflection.c, icall.c: add support for pinning variables. 
27066 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
27068         * marshal.c (mono_marshal_get_managed_wrapper):
27069         init bool local with zero rather than null.
27071 2004-03-29  Martin Baulig  <martin@ximian.com>
27073         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
27074         the "official" behavior here.
27075         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
27077 2004-03-29  Martin Baulig  <martin@ximian.com>
27079         * icall.c: Reflect latest API changes.
27081 2004-03-29  Martin Baulig  <martin@ximian.com>
27083         * loader.c (mono_get_method_from_token): Also call
27084         mono_metadata_load_generic_params () for abstract and interface
27085         methods; replace the type arguments in the method signature with
27086         the ones which are loaded from the metadata.
27088 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
27090         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
27091         of the lock is not the current thread. MS.NET don't do it, in spite of
27092         what the documentation says. See bug #56157.
27094 2004-03-28  Martin Baulig  <martin@ximian.com>
27096         * class.c (mono_class_init): Don't call init_properties() and
27097         init_events() for generic instances; set `prop->parent' when
27098         inflating properties.
27100         * reflection.c (mono_generic_inst_get_object): Call
27101         `mono_class_init (ginst->klass)'.
27102         (mono_type_get_object): Only create a MonoGenericInst if your
27103         generic type is a TypeBuilder.
27104         (do_mono_reflection_bind_generic_parameters): Only set
27105         `ginst->is_dynamic' if our generic type is a TypeBuilder.
27107 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
27109         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
27110         Fixes #56091.
27112 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27114         * icall.c: added Kill_internal icall.
27115         * process.[ch]: added Kill_internal icall.
27117 2004-03-25  Martin Baulig  <martin@ximian.com>
27119         * class.h (MonoStats): Added `generic_instance_count',
27120         `inflated_method_count', `inflated_type_count' and
27121         `generics_metadata_size'.       
27123 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27125         * reflection.c: no warnings now.
27127 2004-03-25  Martin Baulig  <martin@ximian.com>
27129         * class.c (mono_class_get_full): New public function; does a
27130         mono_class_get(), but also takes a `MonoGenericContext *'.
27132         * loader.c (mono_field_from_memberref): Renamed to
27133         `field_from_memberref', made static and added `MonoGenericContext *'
27134         argument.
27135         (mono_field_from_token): Added `MonoGenericInst *' argument.
27136         (method_from_memberef): Likewise.
27137         (mono_get_method_from_token): Likewise.
27138         (mono_get_method_full): New public function; does a
27139         mono_get_method(), but also takes a `MonoGenericContext *'.
27141         * verify.c (mono_method_verify): Get the method's generic context
27142         and pass it to mono_field_from_token(), mono_get_method_full() and
27143         mono_class_get_full().
27145 2004-03-25  Martin Baulig  <martin@ximian.com>
27147         * class.c (mono_class_inflate_generic_type): Take a
27148         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
27149         `MonoGenericMethod *'.
27151 2004-03-25  Martin Baulig  <martin@ximian.com>
27153         * loader.h (MonoMethodInflated): Store the MonoGenericContext
27154         instead of the MonoGenericMethod here.
27156 2004-03-25  Martin Baulig  <martin@ximian.com>
27158         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
27159         each time we create a new MonoGenericInst, we also create a new
27160         context which points back to us.
27162         * class.c (inflate_method): Use `ginst->context' instead of
27163         creating a new context.
27165         * loader.c (method_from_memberref): Use
27166         `klass->generic_inst->context' instead of creating a new context.
27168 2004-03-25  Martin Baulig  <martin@ximian.com>
27170         * class.h (MonoGenericContext): New struct.
27171         (MonoGenericMethod): Removed `generic_inst'.
27173         * class.c (mono_class_inflate_generic_method): Take a
27174         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
27176 2004-03-25  Martin Baulig  <martin@ximian.com>
27178         * loader.h (MonoMethodInflated): New typedef.
27180         * metadata.h (MonoMethodSignature): Removed `gen_method', make
27181         `generic_param_count' consume just 30 bits, added `is_inflated'
27182         and `has_type_parameters' flags (one bit each).
27184         * class.c (mono_class_inflate_generic_method): Create a
27185         MonoMethodInflated instead of a MonoMethodNormal and set
27186         `is_inflated' in the method signature.
27188         * class.h (MonoGenericMethod): Removed `generic_method'.
27190 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
27192         * image.c: Make sure the name of a MonoImage is always an absolute path.
27193           This fixes bug #54415.
27195 2004-03-24  Martin Baulig  <martin@ximian.com>
27197         * class.c (mono_class_setup_vtable): If we're a generic instance,
27198         use our generic type's vtable size.
27200 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
27202         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
27203         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
27204         problems.
27206 2004-03-23  Martin Baulig  <martin@ximian.com>
27208         * class.h (MonoDynamicGenericInst): Added `int count_events' and
27209         `MonoEvent *events'.
27211         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
27212         (typebuilder_icalls): Added "get_event_info"; calls
27213         mono_reflection_event_builder_get_event_info(). 
27215         * reflection.c (mono_reflection_generic_inst_initialize): Added
27216         `MonoArray *events'.
27217         (mono_reflection_event_builder_get_event_info): New function.
27219 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
27221         * object.h: add mono_type_initialization_init
27223         * object.c (mono_runtime_class_init): 
27224         implement class constructor synchronization rules
27225         to cope with threading issues.  
27226         add mono_type_initialization_init
27228         * appdomain.c (mono_runtime_init): call 
27229         mono_type_initialization_init
27231         * class.h: removing initializing field from MonoVTable
27233 2004-03-23  Martin Baulig  <martin@ximian.com>
27235         * class.c (my_mono_class_from_generic_parameter): Use
27236         `param->name' if it's not NULL. 
27238 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
27240         * class.c: do not insert non-virtual methods in the vtable.
27241         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
27242         that means the method is non-virtual. This never would have
27243         happened before.
27245 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
27247         * profiler.c: Added lock for accessing coverage_hash.
27249 2004-03-22  Martin Baulig  <martin@ximian.com>
27251         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
27252         `method->method->signature->generic_param_count != 0' to make it
27253         work for interface methods.
27255 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27257         * process.c: quote the string passed to the shell using g_shell_quote.
27259 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27261         * threads.c:
27262         (mono_threads_manage): don't remove the finalizer thread and self
27263         from the threads hash table so that mono_thread_manage can be called
27264         more than once.
27266 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27268         * process.c: quote the arguments when UseShellExecute is true. Fixes
27269         bug #55790.
27271 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27273         * threads.c: set mono_thread_detach as a cleanup routine for every
27274         thread. This way it's always executed upon thread termination, either
27275         aborted or finished normally. No more xsp hangs!
27277 2004-03-17  Martin Baulig  <martin@ximian.com>
27279         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
27280         `int count_nested' and a `MonoType **nested'.
27282         * reflection.c (mono_reflection_bind_generic_parameters): Moved
27283         most of the functionality into a new static
27284         do_mono_reflection_bind_generic_parameters() and don't take a
27285         `MonoType *nested_in' argument any more.  Don't compute nested
27286         types here.
27287         (mono_reflection_generic_inst_get_nested_types): New public method
27288         to get nested types.
27290         * class.c (mono_class_create_generic): Set `klass->nested_in' if
27291         we're a nested class.
27293         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
27294         mono_reflection_generic_inst_get_nested_types() to compute the
27295         nested types.
27297 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27299         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
27300         descriptive error message under windows.
27301         
27302 2004-03-17  Martin Baulig  <martin@ximian.com>
27304         * class.c (dup_type): Added `const MonoType *original' argument;
27305         copy the attrs from the original type.
27307 2004-03-17  Martin Baulig  <martin@ximian.com>
27309         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
27310         `m->generic_inst_cache' here.
27312 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
27314         * exception.h exception.c: Add stack_overflow_exception.
27316 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27318         * threadpool.c:
27319         (overlapped_callback): call SetEvent *after* invoking the callback.
27320         No need to call CloseHandle.
27322 2004-03-16  Martin Baulig  <martin@ximian.com>
27324         * reflection.c (mono_image_get_fieldref_token): Take a
27325         `MonoReflectionField *' instead of a `MonoClassField *' and a
27326         `MonoClass *'; store the `MonoReflectionField *' in the hash.
27328 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27330         * appdomain.c: don't add the culture to the filename we're looking for
27331         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
27333 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27335         * locales.c: don't ignore symbols when doing case insensitive compares.
27336         Thanks Dick! Fixes bug #54046.
27338         * threads.c: surround 'threads' usage with enter/leave in
27339         mono_thread_manage.
27341 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
27343         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
27344         implicitly marshalled as [Out]. Fixes #55450.
27346         (mono_marshal_get_runtime_invoke): Zero out the result if there is
27347         an exception.
27349 2004-03-16  Martin Baulig  <martin@ximian.com>
27351         * class.c (mono_class_from_generic_parameter): Use the actual
27352         parameter name. 
27354 2004-03-16  Martin Baulig  <martin@ximian.com>
27356         * reflection.c (type_get_signature_size): New static function.
27357         Compues the size of the type in a method signature.
27358         (method_get_signature_size): New static function; calls
27359         type_get_signature_size() to compute the actual size of the
27360         method's signature.
27361         (method_encode_signature): Use method_get_signature_size() to get
27362         the signature's size rather than using `nparams * 10'.
27364 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27366         * file-io.h: define here WapiOverlapped on windows. I don't want the
27367         regular OVERLAPPED one.
27369         * file-io.c:
27370         * threadpool.c: somehow, BindIoCompletionCallback is not found.
27371         Disabling AIO on windows.
27373 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27375         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
27376         bug #55385.
27378 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27380         * appdomain.c: upgraded corlib version.
27382         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
27383         and BeginWrite. Allow opening files for asynchrnous operations.
27385         * file-io.h: new struct that maps FileStreamAsyncResult.
27386         * icall.c: added new icalls.
27387         * process.[ch]: support setting child process environment variables
27388         and use the SHELL or COMSPEC when UseShellExecute is true.
27390         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
27391         callback for async. IO is here and also BindHandle.
27393         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
27394         from here.
27396 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
27398         * reflection.c (create_custom_attr): Allow len == 0.
27400         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
27401         computation on big-endian machines.
27403 2004-03-13  Martin Baulig  <martin@ximian.com>
27405         * class.h (MonoGenericInst): Added `int count_ifaces'.
27407         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
27408         `ginst->count_ifaces' instead `klass->interface_count' since we
27409         may get called before the vtable is created.
27411         * loader.c (mono_method_get_param_names): If we're a generic
27412         instance, return and don't initialize the class.
27414         * reflection.c (mono_reflection_setup_generic_class): Don't call
27415         ensure_runtime_vtable().
27416         (mono_reflection_bind_generic_parameters): Set
27417         `ginst->count_ifaces'.
27419 2004-03-11  Jackson Harper <jackson@ximian.com>
27421         * icall.c:
27422         * unicode.c:
27423         * unicode.h: Remove unused System.Char icalls.
27424         
27425 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
27427         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
27428         code when we P/Invoke the first library in Windows.Forms, instead
27429         of when we first open the assembly.
27431         * assembly.c: Drop the lookup from here.
27433 2004-03-10  Martin Baulig  <martin@ximian.com>
27435         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
27436         class for properties, fields and events.  Finally fixes #54945.
27438 2004-03-10  Martin Baulig  <martin@ximian.com>
27440         * metadata.c (mono_metadata_class_equal): New static function;
27441         checks whether two generic instances or two generic parameters are
27442         equal.
27443         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
27444         compare classes.        
27446 2004-03-10  Martin Baulig  <martin@ximian.com>
27448         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
27450         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
27451         argument and write it into the `reflection_info' field.
27453         * icall.c
27454         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
27455         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
27457 2004-03-09  Jackson Harper  <jackson@ximian.com>
27459         * char-conversions.h: use 8 bits for numeric data its all we need
27460         * icall.c: numeric data is only 8 bits now.
27462 2004-03-09  Martin Baulig  <martin@ximian.com>
27464         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
27466         * class.c (init_properties, init_events): Initialize the new
27467         `parent' field.
27469         * reflection.c (typebuilder_setup_properties): Likewise.
27470         (typebuilder_setup_events): Likewise.
27472         * reflection.h (MonoEventInfo): Replaced `parent with
27473         `declaring_type' and `reflected_type'.
27475         * icall.c (ves_icall_get_property_info): Distinguish between
27476         declaring and reflected type.
27477         (ves_icall_get_event_info): Likewise.
27479 2004-03-09  Martin Baulig  <martin@ximian.com>
27481         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
27482         (ves_icall_Type_GetField): Correctly set field->klass.
27484 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
27486         * loader.h: Fix warning.
27488 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
27490         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
27491         library routine if present.  Notice that it will still continue
27492         executing even if its missing, for those working on the Gtk#
27493         edition of Windows.Forms.
27495         * assembly.c (do_mono_assembly_open): If loading the
27496         System.Windows.Forms call mono_loader_wini_init.
27498 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
27500         * class.h: Added MonoRemoteClass struct.
27501         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
27502         function for MonoStrings.
27503         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
27504         Added internal call for getting the proxy type.
27505         * marshal.c: Get the type of transparent proxies from its remote_class.
27506         Added methods that generate the IL for type checks and casts:
27507         mono_marshal_get_isinst, mono_marshal_get_castclass, 
27508         mono_marshal_get_proxy_cancast.
27509         * marshal.h: Declaration of the previous new methods.
27510         * object.c: Added new moethods for creating and updating MonoRemoteClass
27511         instances: mono_remote_class, mono_upgrade_remote_class, 
27512         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
27513         * verify.c: FIx transparent_proxy_fields layout.
27514         * appdomain.c: Bump corlib version.
27516 2004-03-04  Jackson Harper  <jackson@ximian.com>
27518         * icall.c: Add icall to access char conversion tables.
27519         * char-conversions.h: Character conversion tables.
27520         * Makefile.am: Add char-conversions.h private header file.
27521         
27522 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
27524         * appdomain.c (unload_thread_main): Increase unloading timeout to
27525         10 sec as a temporary workaround for Nant problems.
27527 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
27529         * gc.c: Add checks for GC_enable and GC_disable.
27531         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
27532         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
27533         (bug #54988).
27534         
27535 2004-02-27  Martin Baulig  <martin@ximian.com>
27537         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27538         `MonoReflectionType *' instead of a `MonoType *'.
27540 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
27542         * gc.c (run_finalize): Avoid finalizing the object representing the
27543         finalizer thread.
27544         (finalizer_thread): Fix warning.
27546 2004-02-25  Martin Baulig  <martin@ximian.com>
27548         * class.c (_mono_class_get_instantiation_name): Added `int offset'
27549         argument for nested types.
27550         (mono_class_create_generic): Added support for nested generictypes.
27552         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
27553         `GList *nested'.
27555         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
27557         * reflection.c (method_encode_signature): Increase the minimum
27558         value of `size' from 10 to 11.
27559         (mono_reflection_bind_generic_parameters): Take `int type_argc'
27560         and `MonoType **types' arguments instead of the `MonoArray
27561         *types'; added `MonoType *nested_in'.  Recursively instantiate
27562         nested classes. 
27564 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
27566         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
27567         stack_overflow_ex members which are used by exception handling.
27569         * appdomain.c (mono_runtime_init): Initialize the new members.
27571         * gc.c (mono_gc_enable): New helper function.
27572         * gc.c (mono_gc_disable): New helper function.
27574 2004-02-23  Martin Baulig  <martin@ximian.com>
27576         * icall.c: I must have been really stupid - make it actually work
27577         this time ;-)
27579 2004-02-23  Martin Baulig  <martin@ximian.com>
27581         * loader.c (method_from_memberref): Only inflate the method if
27582         it's in another klass.
27584 2004-02-23  Martin Baulig  <martin@ximian.com>
27586         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
27587         (mono_class_init): If we're a generic instance and an interface,
27588         compute `class->interface_id'; also create `class->interfaces'
27589         here and inflate them.
27591         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
27592         `ginst->is_open'.
27593         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
27595         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
27597 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
27599         * reflection.c (method_encode_code): Improved the error message
27600         generated by the exception.
27602 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27604         * icall.c: Martin did not do what he said in the ChangeLog for
27605         2004-02-18, but put back the changes for properties and events.
27606         Commenting those changes out again and adding comment to bug #54518.
27607         
27608         * process.c: removed warning.
27610 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
27612         * marshal.c (emit_struct_conv): Print an error message instead of
27613         asserting when a type does not have the StructLayout attribute.
27615 2004-02-20  Martin Baulig  <martin@ximian.com>
27617         * reflection.c (mono_type_get_object): Also use the cache for
27618         generic instances.
27619         (mono_reflection_bind_generic_parameters): Always compute
27620         `ginst->ifaces'.        
27622 2004-02-20  Martin Baulig  <martin@ximian.com>
27624         * class.h (MonoGenericMethod): Removed `klass'.
27626         * class.c (mono_class_inflate_generic_method): Added `MonoClass
27627         *klass' argument.
27629 2004-02-20  Martin Baulig  <martin@ximian.com>
27631         * reflection.c (method_encode_methodspec): Actually use the
27632         uninflated signature for the memberref.
27634 2004-02-20  Martin Baulig  <martin@ximian.com>
27636         * class.h (MonoGenericMethod): Removed `declaring'.
27638         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
27639         is NULL, compute it here.
27641 2004-02-20  Martin Baulig  <martin@ximian.com>
27643         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
27645         * metadata.c (mono_metadata_generic_inst_hash): New method.
27646         (mono_metadata_generic_inst_equal): New method.
27648         * reflection.c (mono_reflection_bind_generic_parameters): Use the
27649         `klass->image->generic_inst_cache' cache to avoid creating
27650         duplicate MonoGenericInst's.
27652         * class.c (mono_class_inflate_generic_type): Use the cache.
27654 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
27656         * object.c: fixed gc descriptor calculation for embedded valuetypes.
27658 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27660         * icall.c: added Socket.WSAIoctl icall.
27662         * socket-io.[ch]: implemented
27663         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
27665 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
27667         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
27669 2004-02-18  Urs C Muff  <umuff@quark.com>
27671         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
27672         this work on PPC and other big-endian architectures.
27674         * debug-mono-symfile.h: Prepended the names of all the `guint32'
27675         fields with an underscore to make sure they're only accessed by
27676         the read32() macro.
27678 2004-02-18  Martin Baulig  <martin@ximian.com>
27680         * icall.c: Put the klass->refclass changes back for methods and
27681         fields, but not for properties and events.  We're currently not
27682         distinguishing between DeclaringType and ReflectedType for
27683         properties and events, that's what caused the regressions.
27685 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27687         * object.c:
27688         (mono_async_result_new): the handle can be NULL.
27690         * threadpool.c: Use an event instead of a semaphore, don't initialize
27691         it until needed. This saves quite a few semaphores from being created
27692         when using the threadpool.
27694 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
27696         * object.c (mono_string_is_interned_lookup): Fix interning of long
27697         strings. Fixes #54473.
27699         * domain.c (ldstr_equal): Optimize if the two strings are equal.
27701         * icall.c: Revert the klass->refclass changes since they introduce
27702         regressions (bug #54518).
27704 2004-02-18  Martin Baulig  <martin@ximian.com>
27706         * class.c (mono_class_init): If we're a generic instance and don't
27707         come from a TypeBuilder, inflate our members here.
27708         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
27709         (mono_class_create_generic): New public method.
27710         (mono_class_initialize_generic): Removed.
27711         (get_instantiation_name): Renamed to
27712         _mono_class_get_instantiation_name() and made it public.
27714 2004-02-18  Martin Baulig  <martin@ximian.com>
27716         * class.c (mono_class_inflate_generic_type): Clear the new
27717         instance's `nginst->klass' when inflating a generic instance.
27718         (mono_class_is_subclass_of): Added (basic) support for generic
27719         instances.
27721 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
27723         * appdomain.h, domain.c: use a MonoCodeManager instead of a
27724         MonoMempool to hold compiled native code.
27726 2004-02-17  Martin Baulig  <martin@ximian.com>
27728         * class.h (MonoDynamicGenericInst): Added `count_properties' and
27729         `properties'.
27731         * reflection.c (mono_reflection_generic_inst_initialize): Added
27732         `MonoArray *properties' argument.
27734         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
27736 2004-02-17  Martin Baulig  <martin@ximian.com>
27738         * icall.c (ves_icall_Type_GetFields): Renamed to
27739         ves_icall_Type_GetFields_internal() and added a
27740         `MonoReflectionType *rtype' argument; pass it to
27741         mono_field_get_object() to set the field's "reflected" type.
27742         (ves_icall_Type_GetConstructors): Likewise.
27743         (ves_icall_Type_GetEvents): Likewise.
27744         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
27745         argument; pass it to mono_method_get_object() to set the method's
27746         "reflected" type.       
27748 2004-02-17  Martin Baulig  <martin@ximian.com>
27750         * class.h (MonoDynamicGenericInst): New type.
27751         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
27753         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
27754         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
27755         (ves_icall_MonoGenericInst_GetFields): New interncall.
27757         * class.c (mono_class_from_generic): Don't call
27758         mono_class_initialize_generic() if this is a dynamic instance;
27759         ie. it's being created from a TypeBuilder.
27760         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
27761         `class->byval_arg.type'.
27763         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
27764         to `inflate_method' and made static.
27765         (mono_reflection_inflate_field): Removed.
27766         (mono_reflection_generic_inst_initialize): New public method.
27768         * reflection.h (MonoReflectionGenericInst): Removed `methods',
27769         `ctors' and `fields'; added `initialized'.
27771 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
27773         * debug-helpers.c (mono_method_full_name): Fix output for empty
27774         namespaces.
27776 2004-02-12  Martin Baulig  <martin@ximian.com>
27778         * class.h (MonoClassField): Added `MonoType *generic_type'.
27780         * reflection.c (mono_image_get_fieldref_token): Added support for
27781         instantiated generic types.
27782         (field_encode_inflated_field): Removed.
27783         (mono_image_get_inflated_field_token): Removed.
27784         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
27786         * reflection.h (MonoReflectionInflatedField): Removed.
27788 2004-02-12  Martin Baulig  <martin@ximian.com>
27790         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
27791         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
27793         * reflection.c (mono_image_get_methodspec_token): Take a
27794         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
27795         (mono_image_create_token): Check whether we have a
27796         `method->signature->gen_method' and call
27797         mono_image_get_methodspec_token() if appropriate.
27798         (inflated_method_get_object): Removed.
27799         (mono_reflection_bind_generic_method_parameters): Return a
27800         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
27801         (mono_reflection_inflate_method_or_ctor): Likewise.
27803         * reflection.h (MonoReflectionInflatedMethod): Removed.
27805 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
27807         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
27808         for custom valuetype marshalling.
27810         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
27812 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27814         * icall.c: fixed WSAGetLastError_internal name.
27816 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
27818         * threads.c (mono_thread_attach): Allow this to be called multiple
27819         times for a thread.
27820         
27821         * threads.c (build_wait_tids): Do not wait for ourselves.
27823         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
27824         appdomain list is empty.
27826         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
27827         memory returned by mono_string_builder_to_utf16, since it points into
27828         managed memory. Thanks to Bernie Solomon for noticing this.
27830         * icall.c: Add AppDomainSetup icalls.
27832         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
27834         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
27835         types.
27837         * reflection.c (reflection_methodbuilder_to_mono_method): Save
27838         custom attributes to the method_aux struct. Also fix array indexes etc.
27840         * loader.c (mono_method_get_param_names): Make dynamic case work again.
27841         
27842 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
27844         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
27845         (both static and runtime) and reduce startup time.
27847 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
27849         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
27850         AsAny marshalling conversion instead of crashing.
27852         * marshal.c: Fix warnings.
27854 2004-02-09  Martin Baulig  <martin@ximian.com>
27856         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
27858         * reflection.h (MonoReflectionInflatedMethod): Removed the
27859         `declaring' field, it's now in the unmanaged MonoGenericMethod.
27861         * reflection.c (method_encode_methodspec): Removed the `method'
27862         argument; we get it from `gmethod->declaring'.
27863         (inflated_method_get_object): Removed the `declaring' argument.
27865 2004-02-09  Martin Baulig  <martin@ximian.com>
27867         * class.h (MonoGenericMethod): New type.
27868         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
27869         `generic_method'.
27871         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
27872         a `MonoGenericMethod *gen_method' one.
27874         * class.c (mono_class_inflate_generic_type): Take an additional
27875         `MonoGenericMethod * argument.  This is only non-NULL if we're
27876         inflating types for a generic method.   
27877         (mono_class_inflate_generic_signature): Renamed to
27878         inflate_generic_signature() and made static; take a
27879         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27880         (inflate_generic_header): Take a `MonoGenericMethod *' argument
27881         instead of a `MonoGenericInst *' one.
27882         (mono_class_inflate_generic_method): Likewise.
27884         * reflection.c (encode_generic_method_sig): Take a
27885         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
27886         (method_encode_methodspec): Likewise.
27887         (inflated_method_get_object): Likewise. 
27889         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
27890         field with a `MonoGenericMethod *gmethod' one.  
27892 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
27894         * class.h (mono_class_has_parent): add parens to expansion
27895         so you can ! this.
27897 2004-02-08  Martin Baulig  <martin@ximian.com>
27899         * image.h (MonoImage): Removed `generics_cache'.
27901         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
27902         instead of a `MonoType *' argument; removed the `inflate_methods'
27903         argument.  Don't inflate methods here.
27905         * loader.c (find_method): If it's a generic instance, call
27906         mono_class_init() on the `sclass->generic_inst->generic_type'.
27908         * metadata.c (mono_type_size): Make this work on uninitialized
27909         generic instances; call it on the `ginst->generic_type's class.
27911         * reflection.c (mono_reflection_bind_generic_parameters): Call
27912         mono_class_from_generic() to create the `ginst->klass'.
27914 2004-02-08  Martin Baulig  <martin@ximian.com>
27916         * class.h (MonoClass): Changed type of `generic_inst' from
27917         `MonoType *' to `MonoGenericInst *'.
27919 2004-02-08  Martin Baulig  <martin@ximian.com>
27921         * icall.c (ves_icall_Type_BindGenericParameters): Just call
27922         mono_type_get_object(), this is now creating a `MonoGenericInst'
27923         for MONO_TYPE_GENERICINST.
27924         (ves_icall_MonoGenericInst_GetParentType): Likewise.
27925         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
27927         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
27928         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
27929         (inflated_method_get_object): Added `MonoClass *refclass' argument.
27930         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
27931         and reflected type.
27933         * reflection.h (MonoReflectionInflatedMethod): Removed
27934         `declaring_type' and `reflected_type'.
27936 2004-02-08  Martin Baulig  <martin@ximian.com>
27938         * class.h (MonoGenericInst): Added `MonoType *parent' and
27939         `MonoType **ifaces'.
27941         * reflection.h (MonoReflectionGenericInst): Removed `klass',
27942         `parent' and `interfaces'.
27944         * reflection.c (mono_reflection_bind_generic_parameters): Take a
27945         `MonoType *' argument and return a `MonoType *'.
27947         * icall.c
27948         (ves_icall_MonoGenericInst_GetParentType): New interncall.
27949         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
27951 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27953         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
27954         valuetype marshalling.
27956 2004-02-06  Martin Baulig  <martin@ximian.com>
27958         * class.c
27959         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
27960         (my_mono_class_from_generic_parameter): Likewise.
27962 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
27964         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
27965         contents of the symbol files lazily.
27967         * object.h (MonoThread): Add 'name' and 'name_len' fields.
27969         * threads.h threads.c icall.c: New icalls for getting and setting the
27970         threads name.
27972 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
27974         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
27975         Raise an exception when the domain is not found.
27977 2004-02-03  Martin Baulig  <martin@ximian.com>
27979         * reflection.c (mono_image_get_methodspec_token): Use the
27980         uninflated signature; fixes gen-33.
27982 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
27984         * gc.c threads.c: Make the finalizer thread a normal managed thread so
27985         the finalizer code can use thread functionality.
27987         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
27988         the finalizer thread.
27990         * threads.c: Make some functions more robust.
27992         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
27994         * metadata.h: Add new marshalling conventions.
27996         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
27997         stringbuilder marshalling. Fixes #53700.
27999         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
28001         * reflection.c (mono_image_get_type_info): Save declarative security
28002         info.
28004         * reflection.c (mono_image_get_field_info): Handle uninitialized 
28005         unmanaged fields as well.
28007         * appdomain.c: Bump corlib version.
28009 2004-02-01  Martin Baulig  <martin@ximian.com>
28011         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
28012         method type arguments.  
28014 2004-01-30  Duncan Mak  <duncan@ximian.com>
28016         * marshal.h: Add prototype for
28017         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
28018         and
28019         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
28020         fix the build.
28022 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
28024         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
28025         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
28027 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28029         * marshal.c (mono_marshal_get_native_wrapper): Add support for
28030         custom marshalling of valuetypes.
28032         * marshal.c: Fix some warnings.
28034 2004-01-29  Martin Baulig  <martin@ximian.com>
28036         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
28037         for generic method parameters.
28039         * reflection.c (method_encode_methodspec): Write the uninflated
28040         signature into the methodspec table.
28041         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
28042         is always the uninflated method.
28043         (reflection_methodbuilder_to_mono_method): Copy the generic
28044         parameters from the MethodBuilder into `header->gen_params'.
28046 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
28048         * class.c (mono_class_from_generic_parameter): Fix warning.
28050 2004-01-27  Martin Baulig  <martin@ximian.com>
28052         * class.c (mono_class_from_generic_parameter): Don't create
28053         `klass->methods' here.  
28055 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
28057         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
28058         extension since it does not work with libraries named lib<FOO>.dll.so.
28060 2004-01-25  Martin Baulig  <martin@ximian.com>
28062         * class.c (mono_class_inflate_generic_type): Added support for
28063         MONO_TYPE_GENERICINST.
28065         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
28066         inflate methods on open constructed types.      
28068 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28070         * object.c: fire ProcessExit event in the root AppDomain after running
28071         Main. Fixes bug #53299.
28073 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
28075         * socket-io.c: include the new socket-wrappers.h header.
28076         Use the wrappers instead of the unix socket functions to make the code
28077         more clear.
28079 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
28081         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
28083         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28084         Fixes #22532.
28086 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
28088         * reflection.c (mono_image_create_pefile): Handle the case when the
28089         entry point is not a MethodBuilder.
28091         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28092         field to ReflectionMethod since it is not allways a builder.
28094         * reflection.c (type_get_fully_qualified_name): New helper function to
28095         return the fully qualified name of a type.
28097         * reflection.c (encode_marshal_blob): Always emit the fully qualified
28098         type name for custom marshallers.
28100         * reflection.c (mono_marshal_spec_from_builder): Ditto.
28102         * class.c (mono_class_setup_vtable): If a parent class already 
28103         implements an interface, use the implementing methods from that class.
28104         Fixes #53148.
28106 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28108         * threadpool.c: just return instead of ExitThread to allow for thread
28109         clean up earlier.
28111 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
28113         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
28114         when closing resource modules.
28116         * reflection.c (mono_image_create_pefile): Handle the case when the
28117         entry point is not a MethodBuilder.
28119         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
28120         field to ReflectionMethod since it is not allways a builder.
28122 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
28124         * marshal.c (mono_marshal_get_managed_wrapper): 
28125         mono_marshal_alloc takes native int so CONV_I
28126         the arg for 64bits.
28128 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
28130         * reflection.c (fixup_cattrs): New function to fixup the methoddef
28131         tokens in the cattr table. Fixes #53108.
28133 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28135         * loader.c: don't trim ".dll" before looking up in the config file.
28136         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
28138 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
28140         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
28141         Return the module which contains the resource as well.
28142         (ves_icall_System_Reflection_Module_Close): New icall.
28144         * appdomain.c: Bump corlib version number.
28146         * image.c (mono_image_addref): New public function.
28148         * assembly.c: Call mono_image_addref.
28150         * reflection.c (mono_module_get_object): Increase reference count of 
28151         the image.
28153         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
28154         Fixes #22532.
28156         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
28157         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
28158         proper exceptions on DllImport problems.
28160 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
28162         * class.c, metadata.c: eliminate CSIZE macro.
28164 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
28166         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
28167         * object.h: Added async_callback field in MonoAsyncResult.
28168         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
28169         * verify.c: Added async_callback in MonoAsyncResult layout.
28171 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
28173         * reflection.c (mono_reflection_get_custom_attrs): Add support
28174         for Modules.
28176 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28178         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
28179         marshalling.
28180         (mono_marshal_method_from_wrapper): Add null pointer check.
28182 2004-01-16  Martin Baulig  <martin@ximian.com>
28184         * debug-mono-symfile.h: Set version number to 36 and reflect
28185         latest symbol writer changes.
28187 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
28189         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
28190         multi-dimensional arrays.
28191         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
28192         (mono_class_from_mono_type): Use bounded_array_class_get.
28193         
28194         * class.c (mono_bounded_array_class_get): New function which takes
28195         a 'bounded' bool argument to distinguish vectors from one dimensional
28196         arrays.
28198         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
28199         bounded_array_class_get if the array has bounds.
28201         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28202         Search modules loaded using AssemblyBuilder:AddModule as well.
28204 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28206         * appdomain.c: increased corlib version.
28207         * filewatcher.c: removed g_print.
28208         * icall.c:
28209         (get_property_info): only allocate what is actually requested.
28210         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
28212 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28214         * Makefile.am: added filewatcher.[ch]
28215         * filewatcher.[ch]: FileSystemWatcher runtime support.
28216         * icall.c: added new FSW icalls.
28218 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
28220         * string-icalls.c: fix stringbuilder regression as suggested by
28221         Iain McCoy <iain@mccoy.id.au>.
28223 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
28225         * process.c (process_read_stringtable_block): Recognize '007f' as
28226         a language neutral stringtable block.
28228 2004-01-12  Patrik Torstensson
28230         * object.h (MonoStringBuilder) : Changed layout to support our
28231         new stringbuilder class.
28232         * marshal.c: Change marshalling to support the new layout of 
28233         string builder.
28234         * appdomain.c: increased version number because new layout of
28235         string builder.
28237 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
28239         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
28240         assembly name as an string instead of an AssemblyName, since it is
28241         easier to extract info from it.
28243         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
28244         the culture subdirectories too. Fixes #52231.
28246 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28248         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
28249         It takes 2 new parameters with an optional name for the method to look
28250         for and case ignoring info.
28252         * threadpool.c: removed unused variable.
28254 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28256         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
28257         It takes 2 new parameters with an optional name for the property to look
28258         for and case ignoring info.
28259         Fixes bug #52753.
28261 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
28263         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
28264         Fix #52451.
28266 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28268         * appdomain.c:
28269         * assembly.c: escape the uri before passing it to g_filename_from_uri.
28270         Fixes bug #52630.
28272 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
28274         * reflection.c: Add support for more than one unmanaged resource.
28276         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
28277         in field->def_value, as done in all other cases.
28279         * reflection.c (mono_reflection_get_custom_attrs): Add support for
28280         TypeBuilders.
28282         * reflection.c (mono_reflection_create_runtime_class): Remove 
28283         errorneous assignment to klass->element_class, since it is already
28284         done in mono_reflection_setup_internal_class.
28286 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28288         * gc.c: added missing LeaveCriticalSection.
28289         * icall.c: indented a couple of lines.
28290         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
28291         if we call EndInvoke inside a callback. Fixes bug #52601.
28293 2004-01-07  Martin Baulig  <martin@ximian.com>
28295         * mono-debug-debugger.h
28296         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
28298 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
28300         * appdomain.c: Use messages in NotImplementedException.
28302         * exception.c (mono_get_exception_not_implemented): Now this takes
28303         a message argument.
28305         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
28306         exception instead of g_asserting an aborting when something is not
28307         implemented.
28309         Add some inline docs.
28311 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
28313         * reflection.h: Update after changes to object layout.
28315         * reflection.c: Implement saving of unmanaged aka win32 resources.
28317         * appdomain.c: Bump version number.
28319         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
28320         Handle missing domains gracefully.
28322 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
28324         * file-io.c : On Windows, there are much more invalid_path_chars.
28326 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
28328         * class.h, object.c: prepare for GetType () speedup.
28330 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
28332         * profiler.c: workaround for --profile null reference exception on
28333           cygwin. Patch by Patrik Torstensson.
28335 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
28337         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
28338         make work for unaligned access.
28340 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
28342         * class.c: small cleanup (class->fields [i] -> field).
28343         * image.c: check address of metadata is valid.
28345 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
28347         * assembly.h assembly.c (mono_assembly_loaded): New public function to
28348         search the list of loaded assemblies.
28350         * reflection.c (mono_reflection_type_from_name): Use 
28351         mono_assembly_loaded instead of mono_image_loaded.
28353         * reflection.c: Fix warnings.
28355 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
28357         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
28358         is dynamic. This is needed since an assembly can contain both dynamic and
28359         non-dynamic images.
28361         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
28362         assembly->dynamic.
28364         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
28366         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
28367         to store modules loaded using AddModule.
28369         * reflection.c (mono_image_fill_file_table): Generalize this so it works
28370         on Modules.
28372         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
28374         * reflection.c (mono_image_fill_export_table_from_module): New function to
28375         fill out the EXPORTEDTYPES table from a module.
28377         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
28378         into a separate function. Also handle loaded non-dynamic modules.
28380         * reflection.c (mono_image_basic_init): Fix memory allocation.
28382         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28384         * assembly.c (mono_assembly_load_references): Make this public.
28386 2003-12-19  Martin Baulig  <martin@ximian.com>
28388         * class.c (mono_class_initialize_generic): Made this static, take
28389         a `MonoGenericInst *' instead of a `MonoClass *'.
28390         (mono_class_from_generic): Call mono_class_initialize_generic()
28391         unless we're already initialized or being called from
28392         do_mono_metadata_parse_generic_inst().
28394         * class.h (MonoGenericInst): Added `initialized' and
28395         `init_pending' flags.
28397         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
28398         `mono_class_init (gklass)' or mono_class_initialize_generic()
28399         here; set `generic_inst->init_pending' while parsing the
28400         `type_argv'.
28402 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
28404         * locales.c: include string.h for memxxx prototypes
28406 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
28408         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
28409         constructor when accessing literal fields.
28411 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
28413         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
28415         * reflection.c (assembly_add_resource_manifest): New function to fill
28416         the MANIFESTRESOURCE table.
28418         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
28420         * reflection.h: Update to changes in class layout.
28422         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
28423         Reenable call to mono_runtime_is_shutting_down ().
28425         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
28426         determine if the runtime is shutting down.
28428 2003-12-16  Jackson Harper <jackson@ximian.com>
28430         * icall.c: comment out call to mono_runtime_is_shutting_down to
28431         fix build.
28432         
28433 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
28435         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
28436         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
28438 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
28440         * reflection.c: move definition of swap_with_size
28441         to before its first call
28443 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
28445         * appdomain.c (mono_runtime_is_shutting_down): New public function.
28447         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
28448         icall.
28450         * object.c: Fix warnings.
28452         * icall.c (ves_icall_Type_Get...): Only consider inherited static
28453         members if FlattenHierarchy is set.
28455         * reflection.c (mono_image_add_decl_security): New function to emit
28456         declarative security.
28458         * reflection.h reflection.c: Add support for declarative security.
28460         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28461         
28462 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
28464         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
28465         
28466         * appdomain.c verify.c: Moved corlib version checking into its own
28467         function in appdomain.c since it needs to create vtables etc.
28469 2003-12-13  Patrik Torstensson <p@rxc.se>
28471         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
28472         instead of unwrapped server.
28474 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
28476         * verify.c (check_corlib): Fix field index.
28478 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
28480         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
28481         GetGacPath icall.
28483 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
28485         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
28486         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
28487         cope with sizeof(size_t) != sizeof(guint32).
28489 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28491         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
28492         in case of failure.
28494 2003-12-10  Mark Crichton <crichton@gimp.org>
28496         * icall.c: removed the GetNonZeroBytes.  We now handle this case
28497         in managed code.
28499         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
28501 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
28503         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
28504         marked as deleted.
28506 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
28508         * verify.c (check_corlib): Handle the case when the version field is 
28509         initialized by a static constructor.
28511 2003-12-08  Patrik Torstensson  <p@rxc.se>
28513     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
28515 2003-12-08  Martin Baulig  <martin@ximian.com>
28517         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
28518         a MonoReflectionGenericParameter, also take the parameter index
28519         and name as arguments.
28520         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
28521         (ves_icall_MonoGenericParam_initialize): New interncall.
28522         (ves_icall_Type_make_byref_type): New interncall.
28524         * reflection.h (MonoReflectionGenericParam): Derive from
28525         MonoReflectionType, not just from MonoObject.  Added `refobj' and
28526         `index' fields.
28528         * reflection.c (mono_reflection_define_generic_parameter): Create
28529         and return a new MonoReflectionGenericParam; don't initialize the
28530         constraints here.
28531         (mono_reflection_initialize_generic_parameter): New public method;
28532         initializes the constraints and creates the `param->pklass'.
28534 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
28536         * reflection.h reflection.c: Use the new fields 'num_types', 
28537         'num_fields' and 'num_methods' to track the number of types etc.
28539         * verify.c (check_corlib): Check corlib version number.
28541 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
28543         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
28544         function works on all methods.
28546 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
28548         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
28549         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
28550         the custom_type_info flag of the transparent proxy.
28551         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
28552         objects that supports IRemotingTypeInfo.
28553         * object.h: Added custom_type_info field in transparent proxy.
28555 2003-12-06  Martin Baulig  <martin@ximian.com>
28557         * class.c (mono_class_create_from_generic): Removed.
28558         (mono_class_from_generic): Check `ginst->klass' before doing
28559         anything else.  This is important to fully support "recursive"
28560         generic types.
28562         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
28563         empty `generic_inst->klass' before doing anything else.
28565 2003-12-06  Dick Porter  <dick@ximian.com>
28567         * verify.c: 
28568         * object.h:
28569         * icall.c:
28570         * locales.c: Use C structs to access class fields.  Don't do a
28571         conversion between MonoString and UChar because both are
28572         platform-endian UTF-16.  Compare now takes startindex and count
28573         parameters.  Add a char overload for IndexOf.  Speed up the
28574         invariant string IndexOf.
28576 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
28578         * Makefile.am (monosn_LDADD): Fix parallel build.
28580 2003-12-04  Martin Baulig  <martin@ximian.com>
28582         * icall.c
28583         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
28584         (ves_icall_Type_make_array_type): New interncall.       
28586 2003-12-04  Martin Baulig  <martin@ximian.com>
28588         * locales.c: also change it in the !HAVE_ICU case.
28590 2003-12-04  Dick Porter  <dick@ximian.com>
28592         * icall.c:
28593         * locales.c: construct_compareinfo is now in CompareInfo, not
28594         CultureInfo.
28596 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
28598         * image.c (mono_image_load_file_for_image): Cache loaded images in the
28599         image->files array.
28601         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
28602         table as well.
28604         * assembly.c (mono_assembly_load_references): Only load references
28605         once.
28607         * class.c (mono_class_from_name): Avoid linear search of the 
28608         EXPORTEDTYPE table.
28610         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
28612 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
28614         * image.h (MonoImage): Add 'field_cache' field.
28616         * loader.c (mono_field_from_token): Cache field lookups.
28617         
28618         * reflection.c (mono_module_get_object): Fix name property.
28620         * icall.c (ves_icall_get_enum_info): Update after changes to 
28621         mono_metadata_get_constant_index ().
28623         * icall.c: Get rid of get_type_info icall, use a separate icall for
28624         each type property to avoid needless memory allocations. Fixes #51514.
28626         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
28627         to avoid needless binary searches.
28629         * class.c (class_compute_field_layout): Move the initialization of
28630         field->def_value to mono_class_vtable ().
28632         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
28633         non-corlib types.
28635         * object.c (mono_object_allocate): Make it inline.
28637         * object.c (mono_object_allocate_spec): Make it inline.
28638         
28639 2003-12-02  Dick Porter  <dick@ximian.com>
28641         * locales.c (create_NumberFormat): NumberFormatInfo construction.
28642         Patch by Mohammad DAMT (mdamt@cdl2000.com).
28644 2003-12-01  Dick Porter  <dick@ximian.com>
28646         * threads.c: Fix signature and call in CreateMutex and
28647         CreateEvent.
28649 2003-12-01  Dick Porter  <dick@ximian.com>
28651         * icall.c: 
28652         * locales.c: Implement string compares and searching
28654         * object.h: Add extra Thread field
28656 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
28658         * reflection.c (fixup_method): Add support for MonoCMethod.
28660 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
28662         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
28664         * reflection.c (assembly_name_to_aname): Allow extra characters in
28665         assembly names. Fixes #51468.
28667 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
28669         * exception.c (mono_exception_from_name_domain): New helper function.
28671         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
28672         exception object in the correct domain.
28674         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
28675         formatting + make a copy a the input data.
28677         * loader.c (mono_get_method_from_token): Methods which contain
28678         native code do not have entries in the ImplMap.
28680         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
28681         Thanks to Gonzalo for spotting this.
28682         
28683         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
28684         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
28686         * assembly.h (mono_assembly_load_from): Split the second part of 
28687         assembly loading into a new public function.
28689         * exception.h (mono_get_exception_bad_image_format): New function.
28691 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
28693         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28694         Enumerate all modules inside a dynamic assembly. Fixes #51293.
28695         
28696         * icall.c: Add new icall for creating dynamic methods.
28698         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
28700         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
28702         * reflection.c (mono_reflection_create_dynamic_method): New icall to
28703         create a dynamic method.
28705         * reflection.c (resolve_object): New helper function.
28707         * reflection.c: Generalize ReflectionMethodBuilder and the functions
28708         which manipulate it so they can also work on dynamic methods.
28710         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
28711         creating the MonoReflectionMethodAux structure if it is not needed.
28712         
28713         * reflection.h verify.c: Update after changes to object layout.
28715         * reflection.c (method_builder_encode_signature): Fix compilation on
28716         gcc 2.95.x.
28718 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
28720         * appdomain.h: Added support for context static fields. Added static_data
28721           field to MonoAppContext and renamed thread_static_fields to a more
28722           generic special_static_fields in MonoAppDomain, since it can now contain
28723           context static fields.
28724         * domain.c: Updated hashtable name.
28725         * object.c: Replaced field_is_thread_static() for a more generic
28726           field_is_special_static() which also checks for context static attribute.
28727           In mono_class_vtable(), added support for static context fields.
28728         * threads.c: Changed methods that manage thread static fields to more
28729           generic methods so they can be reused both for thread and context static
28730           data.
28731         * threads.h: Declared some new methods.
28733 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
28735         * reflection.h: Update after changes to the managed types.
28737         * reflection.c (encode_custom_modifiers): New helper function.
28739         * reflection.c (method_encode_signature): Emit custom modifiers.
28741         * reflection.c (field_encode_signature): Emit custom modifiers.
28743 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
28745         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
28747         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
28748         implementation.
28750         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
28751         icall.
28753         * object.c (mono_field_get_value_object): New function.
28755         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
28756         specific.
28758 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
28760         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
28761         return a preallocated out-of-memory exception instance.
28763         * object.c (out_of_memory): Use the new function.
28765         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
28766         flag is before the custom modifiers. Fixes #49802.
28768 2003-11-16  Martin Baulig  <martin@ximian.com>
28770         * class.c (mono_class_is_open_constructed_type): Implemented the
28771         MONO_TYPE_GENERICINST case.
28773 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
28775         * assembly.c (mono_assembly_fill_assembly_name): New function to
28776         fill out the MonoAssemblyName structure.
28777         (mono_assembly_open): Use the new function.
28779         * icall.c (fill_reflection_assembly_name): New helper function.
28781         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
28782         new function.
28784         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
28786 2003-11-15  Martin Baulig  <martin@ximian.com>
28788         * class.c (mono_class_is_open_constructed_type): New public
28789         function; checks whether a type is an open constructed type,
28790         ie. whether it still contains type parameters.
28791         (mono_class_inflate_generic_type): If we're a type parameter and
28792         the inflated type is also a MONO_TYPE_(M)VAR, return the original
28793         type.
28795         * class.h (MonoGenericInst): Added `guint32 is_open'.
28797         * loader.c (method_from_methodspec): Check whether we're an open
28798         or closed constructed type and set `ginst->is_open'.
28800         * reflection.c (mono_reflection_bind_generic_parameters): Check
28801         whether we're an open or closed constructed type and set
28802         `ginst->is_open'.
28803         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
28804         from open constructed types.
28806 2003-11-15  Martin Baulig  <martin@ximian.com>
28808         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28809         a generic instance (instead of a generic type declaration) with
28810         unbound generic parameters, bind them to our actual types.
28812 2003-11-14  Martin Baulig  <martin@ximian.com>
28814         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
28816         * reflection.c (mono_reflection_bind_generic_parameters): If we're
28817         an interface type, populate `res->interfaces' with instantiated
28818         versions of all the interfaces we inherit.
28820 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
28822         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
28823         when MONO_PATH is set but doesn't contain the install dir.
28825 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28827         * icall.c:
28828         (ves_icall_Type_GetInterfaces): don't return an interface twice when
28829         it's also implemented in base classes. Fixes bug #50927.
28831 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
28833         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
28834         if this method is called from a finalizer. Fixes #50913.
28836 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
28838         * threads.c: Implement VolatileRead/VolatileWrite
28840         * icall.c: Add new icalls for VolatileRead/VolatileWrite
28842 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28844         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
28845         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
28846         2.95.3.
28848         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
28849         from Peter Ross (pro@missioncriticalit.com).
28850         
28851 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
28853         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
28855 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28857         * assembly.c (mono_assembly_load_references): Disable check because it
28858         triggers on older corlibs which lots of people have.
28860 2003-11-12  Jackson Harper  <jackson@ximian.com>
28862         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
28863         load corlib.dll if mscorlib.dll is not found.
28864         * assembly.h: Remove corlib name define.
28865         * class.c:
28866         * domain.c:
28867         * image.c: Change corlib name to mscorlib.
28868         
28869 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
28871         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
28873 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
28875         * appdomain.h: Added loader_optimization here to sync with the C#
28876         code, and add disallow_binding_redirects field.
28878 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28880         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
28882         * reflection.c (mono_image_build_metadata): Fix crash on modules
28883         with no types.
28885         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
28887         * icall.c (ves_icall_get_method_info): Return callingConvention as
28888         well.
28890         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
28891         namespaces from the EXPORTEDTYPE table as well.
28893         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
28894         from all modules inside the assembly.
28895         
28896 2003-11-11  Martin Baulig  <martin@ximian.com>
28898         * reflection.c (mono_reflection_bind_generic_parameters): Make
28899         this work for interfaces.
28901 2003-11-11  Martin Baulig  <martin@ximian.com>
28903         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
28905 2003-11-11  Martin Baulig  <martin@ximian.com>
28907         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
28908         "MonoInflatedMethod" and "MonoInflatedCtor".
28910 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
28912         * reflection.c (resolution_scope_from_image): Use the assembly table
28913         from the manifest module, since other modules don't have it.
28915         * debug-helpers.c (mono_type_full_name): New helper function.
28917         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
28919         * image.c (mono_image_load_file_for_image): New public function which
28920         is a replacement for the load_file_for_image in class.c.
28922         * assembly.c (mono_assembly_load_module): A wrapper for the function
28923         above which does assembly association and reference loading too.
28925         * class.c (mono_class_from_name): Call mono_assembly_load_module.
28927 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28929         * appdomain.c: not all of the attributes for the full assembly name
28930         are required and the order doesn't matter. Fixes bug #50787.
28932 2003-11-10  Dick Porter  <dick@ximian.com>
28934         * locales.c: Use platform-endian UTF16
28936 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28938         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28939         
28940 2003-11-10  Martin Baulig  <martin@ximian.com>
28942         * metadata.c
28943         (mono_metadata_load_generic_params): Make this actually work.
28945         * reflection.c (mono_reflection_bind_generic_parameters): If our
28946         parent is a generic instance, pass all the `types' to it, no
28947         matter whether it has the same number of type parameters or not.
28949 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
28951         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
28953         * assembly.c (mono_assembly_load_references): Move the image<->assembly
28954         assignment code to this function so it gets called recursively for all
28955         modules.
28957         * image.c (load_modules): Remove the assembly assignment since it is
28958         now done by mono_assembly_load_references.
28959         
28960         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
28961         Add 'module' argument.
28962         (mono_module_get_types): New helper function.
28963         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
28965 2003-11-08  Martin Baulig  <martin@ximian.com>
28967         * class.c (mono_class_inflate_generic_method): Interface method
28968         don't have a header.
28970         * reflection.c (mono_image_get_methodspec_token): Take an
28971         additional `MonoGenericInst *' argument instead of reading it from
28972         the header; this is necessary to support interfaces.
28973         (mono_image_create_token): Pass the `MonoGenericInst *' from the
28974         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
28975         (inflated_method_get_object): Take an additional `MonoGenericInst *'
28976         argument.
28978         * reflection.h (MonoReflectionInflatedMethod): Added
28979         `MonoGenericInst *ginst'.
28981 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
28983         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
28985 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
28987         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
28989 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
28991         * reflection.c 
28992         (reflection_methodbuilder_from_method_builder):
28993         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
28994         initialize a ReflectionMethodBuilder structure.
28995         (mono_image_get_methodbuilder_token):
28996         (mono_image_get_ctorbuilder_token): New functions to emit memberref
28997         tokens which point to types in another module inside the same assembly.
28999         * reflection.c: Use the new helper functions.
29000         
29001         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
29003         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
29004         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
29006         * reflection.c (resolution_scope_from_image): Emit a moduleref if
29007         neccesary.
29009         * reflection.c (mono_image_build_metadata): Emit metadata only for the
29010         current module. Emit the manifest only for the main module.
29012         * reflection.c (mono_image_create_token): Add assertion when a 
29013         memberref needs to be created.
29015         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
29017         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
29018         larger buffer for the custom attribute blob. Fixes #50637.
29019         
29020 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29022         * threadpool.c: notify listener on async processing handles after
29023         invoking the async callback. Thanks to Zoltan.
29025 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29027         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
29028         avoid code duplication.
29030         * reflection.h (MonoDynamicImage): New type which is currently unused,
29031         but will be used through the ref.emit code in place of 
29032         MonoDynamicAssembly.
29034         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29035         object layout.
29037         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
29038         a MonoDynamicImage instead of just a MonoImage.
29039         
29040         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
29041         icalls to ModuleBuilder but keep their semantics, so they will work
29042         with moduleb->assemblyb. This will change later.
29043         
29044 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29046         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
29047         object layout.
29049         * reflection.c (mono_image_build_metadata): Avoid creation of a default
29050         main module, since it is now done by the managed code.
29052 2003-11-03  Martin Baulig  <martin@ximian.com>
29054         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
29055         `ginst->klass' here.
29056         (method_encode_methodspec): Don't use the `ginst->generic_method's
29057         klass if it's a generic instance, use `ginst->klass' in this case.
29059 2003-11-03  Martin Baulig  <martin@ximian.com>
29061         * reflection.c (mono_image_get_generic_method_param_info):
29062         Removed, use mono_image_get_generic_param_info() instead.
29063         (mono_image_get_type_info): Write the GenericParam table before
29064         the Method table.  This is neccessary because in the GenericParam
29065         table, type parameters of the class (ie. '!0' etc.) must come
29066         before the ones from its generic methods (ie. '!!0' etc).
29068 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
29070         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
29072 2003-11-02  Martin Baulig  <martin@ximian.com>
29074         * reflection.c (create_generic_typespec): Take a
29075         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
29076         the generic parameters from it.
29078 2003-11-02  Martin Baulig  <martin@ximian.com>
29080         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
29081         instead of a `MonoClassField *' since we just need the type.
29082         (create_generic_typespec): New static function.  Creates a
29083         TypeSpec token for a generic type declaration.
29084         (mono_image_get_generic_field_token): New static function.
29085         (mono_image_create_token): If we're a FieldBuilder in a generic
29086         type declaration, call mono_image_get_generic_field_token() to get
29087         the token.
29089 2003-11-02  Martin Baulig  <martin@ximian.com>
29091         * reflection.h
29092         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
29093         `MonoReflectionGenericInst *declaring_type' and
29094         `MonoReflectionGenericInst *reflected_type' fields.
29096         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
29097         `MonoReflectionGenericInst *declaring_type' and a
29098         `MonoReflectionGenericInst *reflected_type' argument instead of a
29099         single `MonoReflectionGenericInst *type' one.  Set
29100         `res->declaring_type' and `res->reflected_type' from them.
29101         (mono_reflection_inflate_field): Likewise.      
29103 2003-11-02  Martin Baulig  <martin@ximian.com>
29105         * class.c (mono_class_setup_vtable): Don't store generic methods
29106         in the vtable.  
29108 2003-11-02  Martin Baulig  <martin@ximian.com>
29110         * reflection.h (MonoReflectionGenericInst): Added
29111         `MonoReflectionType *declaring_type'.
29113         * reflection.c (mono_reflection_bind_generic_parameters): Use
29114         `if (tb->parent)' instead of `klass->parent'.
29116 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
29118         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
29119         with an empty ASSEMBLY table.
29121         * reflection.c (mono_image_build_metadata): Avoid using the same loop
29122         variable in the inner and outer loops.
29124 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
29126         * metadata.h (mono_metadata_make_token): Put parentheses around macro
29127         argument.
29129         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
29130         
29131         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
29132         icalls. Instead, do everything in managed code. This is needed since
29133         it is hard to restore the original domain etc. in unmanaged code in the
29134         presence of undeniable exceptions.
29136         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
29137         New icalls to push and pop appdomain refs.
29139 2003-10-31  Martin Baulig  <martin@ximian.com>
29141         * class.c (inflate_generic_type): Renamed to
29142         mono_class_inflate_generic_type() and made it public.
29144         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
29145         New interncall.
29147         * loader.c (mono_field_from_memberref): Also set the retklass for
29148         typespecs.
29150         * fielder.c (mono_image_get_inflated_field_token): New static
29151         method; creates a metadata token for an inflated field.
29152         (mono_image_create_token, fixup_method): Added support for
29153         "MonoInflatedField".
29154         (fieldbuilder_to_mono_class_field): New static function.
29155         (mono_reflection_inflate_field): New public function.
29157         * reflection.h
29158         (MonoReflectionGenericInst): Added `MonoArray *fields'.
29159         (MonoReflectionInflatedField): New typedef.     
29161 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
29163         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
29164         for Solaris and other platforms without s6_addr16
29166 2003-10-30  Martin Baulig  <martin@ximian.com>
29168         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
29169         argument instead of two.
29170         (mono_class_inflate_generic_signature): Likewise.
29171         (inflate_generic_header): Likewise.
29172         (mono_class_inflate_generic_method): Likewise.  In addition, if
29173         `ginst->klass' is set, it becomes the new `method->klass'.
29175         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
29176         field.
29178         * reflection.c (encode_generic_method_sig): Write a 0xa as the
29179         first byte. [FIXME]
29180         (method_encode_methodspec): If we have generic parameters, create
29181         a MethodSpec instead of a MethodRef.
29182         (fixup_method): Added support for "MonoInflatedMethod" and
29183         "MonoInflatedCtor".
29184         (mono_image_create_token): Added support for "MonoInflatedMethod"
29185         and "MonoInflatedCtor".
29186         (inflated_method_get_object): New static function; returns a
29187         managed "System.Reflection.MonoInflatedMethod" object.
29188         (mono_reflection_bind_generic_method_parameters): Return a
29189         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
29190         (mono_reflection_inflate_method_or_ctor): Likewise.
29191         (mono_image_get_generic_method_param_info): Initialize unused
29192         fields to zero.
29193         (mono_image_get_generic_param_info): Likewise.
29195         * reflection.h (MonoReflectionInflatedMethod): New public
29196         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
29197         "S.R.MonoInflatedCtor" classes.
29199         * loader.c (method_from_memberref): If we're a TypeSpec and it
29200         resolves to a generic instance, inflate the method.
29202 2003-10-28  Dick Porter  <dick@ximian.com>
29204         * object.c (mono_runtime_run_main): Convert command-line arguments
29205         into utf8, falling back to the user's locale encoding to do so.
29207 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
29209         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
29210         at this time.
29212         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
29214         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
29215         up icalls at method definition time. Partially fixes #33569.
29217 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
29219         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
29220         marshalling of arrays. Fixes #50116.
29222         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
29224         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
29225         points to a vtable in the dying appdomain.
29227         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
29228         listeners into unmanaged code inside the lock.
29230         * object.c (mono_class_vtable): Turn off typed allocation in non-root
29231         domains and add some comments.
29233 2003-10-25  Martin Baulig  <martin@ximian.com>
29235         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
29237         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
29239         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
29240         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
29241         currently parsing.  Create the generic class and store it in
29242         `generic_inst->klass' before parsing the type arguments.  This is
29243         required to support "recursive" definitions; see mcs/tests/gen-23.cs
29244         for an example.
29245         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
29246         to support recursive typespec entries.
29248         * class.c (mono_class_setup_parent): If our parent is a generic
29249         instance, we may get called before it has its name set.
29250         (mono_class_from_generic): Splitted into
29251         mono_class_create_from_generic() and mono_class_initialize_generic().
29253 2003-10-25  Martin Baulig  <martin@ximian.com>
29255         * icall.c (ves_icall_Type_BindGenericParameters): Return a
29256         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
29257         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
29258         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
29260         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
29261         (create_typespec): Likewise.
29262         (mono_reflection_bind_generic_parameters): Return a
29263         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
29264         (mono_reflection_inflate_method_or_ctor): New public function.
29266         * reflection.h (MonoReflectionGenericInst): New typedef.        
29268 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
29270         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
29271         inside the domain lock. Fixes #49993.
29272         
29273         * object.c (mono_class_vtable): When typed allocation is used, 
29274         allocate vtables in the GC heap instead of in the mempool, since the
29275         vtables contain GC descriptors which are used by the collector even
29276         after the domain owning the mempool is unloaded.
29278         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
29280         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
29281         reflect what it does. Also invalidate mempools instead of freeing
29282         them if a define is set.
29284         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
29285         of the appdomain.
29286         
29287         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
29288         hold the finalizable objects in this domain.
29290         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
29291         appdomain.
29293         * appdomain.c (mono_domain_set): New function to set the current
29294         appdomain, but only if it is not being unloaded.
29296         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
29297         appdomain which is being unloaded.
29298         
29299         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
29300         unloading of the root appdomain.
29302         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
29303         icall to execute a method in another appdomain. Intended as a 
29304         replacement for InternalSetDomain, which can confuse the code 
29305         generation in the JIT.
29307         * appdomain.c (mono_domain_is_unloading): New function to determine
29308         whenever an appdomain is unloading.
29310         * appdomain.c (mono_domain_unload): New function to correctly unload
29311         an appdomain.
29313         * assembly.c (mono_assembly_load_references): Check that an assembly
29314         does not references itself.
29316         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
29317         domain manually, it asks the finalizer thread to do it, then waits for
29318         the result. Also added a timeout.
29320         * icall.c: Register the new icalls.
29322         * threads.h threads.c: Export the mono_gc_stop_world and 
29323         mono_gc_start_world functions.
29324         
29325         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
29326         function to fill out the mempool with 0x2a.
29328 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
29330         * reflection.h (MonoReflectionMethodAux): New structure to store
29331         information which is rarely used, thus is not in the MonoMethod
29332         structure.
29334         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
29335         store the aux info.
29337         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
29338         and marshalling info into the aux structure.
29340         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
29341         from the aux structure.
29343         * loader.c (mono_method_get_param_names): Retrieve the param names from
29344         the aux structure.
29345         
29346 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
29348         * exception.h exception.c: Add AppDomainUnloadedException && fix 
29349         warning.
29351 2003-10-21  Dick Porter  <dick@ximian.com>
29353         * socket-io.c
29354         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
29355         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
29357 2003-10-21  Martin Baulig  <martin@ximian.com>
29359         * reflection.c (mono_reflection_bind_generic_parameters):
29360         `klass->parent' is NULL for interfaces.
29362 2003-10-21  Martin Baulig  <martin@ximian.com>
29364         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29366 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
29368         * exception.c (mono_exception_from_name_msg): New helper function for
29369         creating exceptions and initializing their message field.
29371         * exception.c: Simplify functions using the new helper.
29373         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
29374         New function.
29376         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
29377         mono_raise_exception, since otherwise gcc doesn't generate the function
29378         epilog for raise_exception, confusing the stack unwinding in the JIT.
29379         Fixes #45043.
29381         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
29382         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
29383         Fixes #49499.
29385 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29387         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
29388         utf8.
29390 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
29392         * icall.c: Removed GetUninitializedObject method because
29393           AllocateUninitializedClassInstance does the same.
29395 2003-10-18  Martin Baulig  <martin@ximian.com>
29397         * class.c (inflate_generic_signature): Renamed to
29398         mono_class_inflate_generic_signature() and made it public.
29399         (my_mono_class_from_generic_parameter): New static function; if we
29400         don't already have the generic parameter's MonoClass, create a
29401         very simple one which is just used internally in the runtime and
29402         not passed back to managed code.
29404         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
29406         * metadata.h (MonoMethodSignature): Moved the
29407         `MonoGenericParam *gen_params' to the MonoMethodHeader.
29408         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
29410         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
29411         ves_icall_MonoMethod_GetGenericArguments(); this is now an
29412         interncall on the MonoMethod class, not on MethodInfo.
29413         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
29414         calling mono_reflection_bind_generic_method_parameters() directly.
29416         * loader.c (mono_method_get_signature): If this is a MethodSpec;
29417         return the already computed `method->signature'.
29418         (method_from_methodspec): New static function to load a method
29419         from a MethodSpec entry.
29420         (mono_get_method_from_token): Call the new method_from_methodspec()
29421         for MethodSpec tokens.  
29422         (mono_get_method_from_token): If we're a generic method, load the
29423         type parameters.
29425         * reflection.c (mono_image_get_memberref_token): Allow
29426         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
29427         table.
29428         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
29429         (mono_image_create_token): First check whether it's a generic
29430         method (so we'd need to create a MethodSpec), then do the other
29431         two alternatives.
29432         (mono_reflection_bind_generic_method_parameters): Return a
29433         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
29434         called directly from the interncall.
29436 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
29438         * reflection.c (load_public_key): Move loading of the public key
29439         into managed code.
29441         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
29443         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
29444         fields.
29446         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
29447         culture, hash_alg and public_key. Fixes #49555.
29449 2003-10-17  Martin Baulig  <martin@ximian.com>
29451         * class.h (MonoGenericInst): Moved this declaration here and added
29452         `MonoMethod *generic_method'.
29454         * icall.c
29455         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
29456         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
29458         * metadata.c (mono_metadata_type_equal): Two types of
29459         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
29460         index; ie. don't compare the address of the `MonoGenericParam'
29461         structure.
29462         (mono_metadata_load_generic_params): Removed the `MonoMethod
29463         *method' argument.
29465         * metadata.h (MonoGenericInst): Moved declaration to class.h.
29466         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
29468         * reflection.c (method_encode_signature): Encode the number of
29469         generic parameters.
29470         (encode_generic_method_sig): New static function.
29471         (method_encode_methodspec): New static function; creates an entry
29472         in the MethodSpec table for a generic method.
29473         (mono_image_get_methodspec_token): New static function.
29474         (mono_image_create_token): Call mono_image_get_methodspec_token()
29475         for generic methods.
29476         (mono_reflection_bind_generic_method_parameters): New public
29477         function.  Instantiates a generic method.
29479 2003-10-16  Martin Baulig  <martin@ximian.com>
29481         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
29482         *gen_params' here from MonoMethodHeader.
29484         * metadata.c (mono_metadata_parse_method_signature): If we have
29485         generic parameters, initialize `method->gen_params' and then set
29486         the correct `type->data.generic_param' in all the parameters.
29488 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
29490         * threads.c (mono_threads_get_default_stacksize): New function to 
29491         return the default stacksize.
29493         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
29494         termination of the finalizer thread, since the previous method had
29495         race conditions. Fixes #49628.
29497         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
29498         as for the other managed threads.
29500 2003-10-16  Martin Baulig  <martin@ximian.com>
29502         * class.c (inflate_generic_signature): Copy `generic_param_count'
29503         and `gen_params'.
29505         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
29506         New interncall.
29508         * metadata.c (mono_metadata_parse_method_signature): Actually set
29509         the `method->generic_param_count' here.
29510         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
29512 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
29514         * object.h: Add a new field to TypedRef to simplify the implementation
29515         of the REFANY opcodes in the JIT.
29517         * icall.c: Make use of the new field.
29519         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
29520         dynamically.
29522 2003-10-15  Martin Baulig  <martin@ximian.com>
29524         * class.c (mono_class_from_gen_param): Renamed to
29525         mono_class_from_generic_parameter() and moved most of the
29526         functionality from mono_reflection_define_generic_parameter()
29527         here; ie. we create a "real" class here.
29528         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
29529         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
29530         previously been called.
29532         * class.h (MonoGenericParam): Moved the declaration of this struct
29533         here from metadata.h and added `MonoMethod *method'.
29535         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
29536         interncall.
29538         * loader.c (mono_get_method_from_token): If we have any generic
29539         parameters, call mono_metadata_load_generic_params() to read them
29540         from the MONO_TABLE_GENERICPAR.
29542         * metadata.c (mono_metadata_load_generic_params): Added
29543         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
29545         * metadata.h (MonoMethodSignature): Replaced
29546         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
29547         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
29549         * reflection.c (mono_reflection_define_generic_parameter): Moved
29550         most of the functionality into the new
29551         mono_class_from_generic_parameter(); set the `method' field if
29552         we're a method parameter.       
29554 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
29556         * marshal.c (emit_struct_conv): if native size is 0
29557         emit no code.
29559 2003-10-14  Martin Baulig  <martin@ximian.com>
29561         * icall.c: The generics API has changed in the spec since it was
29562         added to System.Type; these modifications make it match the spec
29563         again.
29564         (ves_icall_Type_GetGenericParameters): Renamed to
29565         `ves_icall_Type_GetGenericArguments'.
29566         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
29567         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
29568         `ves_icall_MonoType_get_HasGenericArguments'.
29569         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
29570         `ves_icall_MonoType_get_IsGenericParameter'.
29571         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
29572         this is no interncall anymore.
29573         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
29574         `ves_icall_TypeBuilder_get_IsGenericParameter'.
29576 2003-10-14  Martin Baulig  <martin@ximian.com>
29578         * reflection.c (mono_reflection_bind_generic_parameters): Also
29579         inflate generic methods if we're reading the class from IL.
29581 2003-10-13  Martin Baulig  <martin@ximian.com>
29583         * reflection.c (mono_reflection_define_generic_parameter): This
29584         method isn't called directly from the icall anymore; take a
29585         `MonoReflectionAssemblyBuilder *' so we can use this for type and
29586         method generic parameters.
29587         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
29588         (method_builder_encode_signature): Encode generic parameters.
29589         (mono_image_get_method_info): Write generic params to the
29590         MONO_TABLE_GENERICPARAM table.
29592         * reflection.h (MonoReflectionMethodBuilder): Added
29593         `MonoArray *generic_params'.
29595         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
29597         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
29598         wrapper for mono_reflection_define_generic_parameter().
29599         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
29601 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
29603         * marshal.h: Add missing function to fix build.
29605         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
29606         the SetLastError pinvoke attribute.
29608         * marshal.c (mono_marshal_set_last_error): New helper function called
29609         by the generated code.
29610         
29611         * marshal.c (mono_mb_emit_branch): New helper function.
29613         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
29615         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
29616         classes as parameters and return values of delegates. Fixes #29256. 
29618 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
29620         * locales.c: use gint32 in non HAVE_ICU case
29622 2003-10-11  Martin Baulig  <martin@ximian.com>
29624         * mono-debug.c (mono_debug_add_method): Added a workaround for
29625         bug #48591.
29627 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
29629         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
29630         delegates passed to native code must use the STDCALL calling 
29631         convention. Fixes #35987.
29633 2003-10-10  Martin Baulig  <martin@ximian.com>
29635         * class.c (inflate_generic_type): If we're inflating for a generic
29636         type instance (and not for a generic method), return
29637         MONO_TYPE_MVAR unchanged.
29639 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29641         * string-icalls.c: Join ignores null strings in the source array.
29642         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
29643         * threads.c: GetAvailableTheads is slightly more accurate.
29645 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
29647         * threads.h threads.c : add mono_threads_set_default_stacksize
29648         and pass default to CreateThread calls.
29650 2003-10-09  Dick Porter  <dick@ximian.com>
29652         * icall.c:
29653         * locales.h:
29654         * locales.c: Internal calls for constructing CultureInfo and
29655         related objects from libicu (if its available.)
29657 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
29659         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
29661 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29663         * threadpool.c: added an argument to async_invoke_thread that is the
29664         item to process, pass the MonoAsyncResult to the thread start function
29665         when creating a new thread. This way we don't need to acquire any lock
29666         when we're creating a new thread. Readded a semaphore for faster
29667         response times (instead of that Sleep i added).
29669 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
29671         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29672         get daylight change dates better on Windows, fix handling
29673         of platforms without tm_gmtoff.
29675 2003-10-06  Martin Baulig  <martin@ximian.com>
29677         * class.c (inflate_generic_method): Renamed to
29678         mono_class_inflate_generic_method() and made public.
29679         (mono_class_init): Don't inflate the generic methods here.
29680         (mono_class_from_generic): Added `gboolean inflate_methods'
29681         argument.  Inflate the methods here.
29683         * loader.c (mono_method_get_param_names): Ignore instances of
29684         generic types for the moment.
29686         * reflection.c (fixup_method): Added support for inflated methods.
29687         (mono_image_create_token): Use mono_image_get_methodref_token()
29688         for inflated methods.
29689         (mono_custom_attrs_from_param): Ignore instances of generic types
29690         for the moment.
29691         (mono_reflection_bind_generic_parameters): New public function.
29692         Moved all the functionality from
29693         ves_icall_Type_BindGenericParameters() here and added support for
29694         dynamic types.
29695         (mono_reflection_define_generic_parameter): Initialize
29696         `klass->methods' here.
29698         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
29699         functionality into mono_reflection_define_generic_parameter().
29700         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
29701         TypeBuilder, return that TypeBuilder.
29703 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29705         * appdomain.c: removed mono_delegate_semaphore.
29707         * threadpool.c:
29708         (mono_thread_pool_add): moved hash table creation inside and the thread 
29709         creation outside of the critical region.
29710         (mono_thread_pool_finish): removed obsolete code.
29711         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
29712         continue or exit the thread depending on the queue.
29714 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
29716         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
29717         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
29718         handle more bool marshalling options
29720 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
29722         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
29723         arrays of structs. Also add a more descriptive error message when
29724         a structure member is marshalled as LPArray.
29726 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
29728         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29729         marshalling arrays of complex types. Fixes #29098. Also remove an
29730         usused and incomplete function.
29732 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
29734         * gc.c: report heap_size - free_bytes as total memory allocated
29735         (bug#49362).
29737 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
29739         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
29740         fix timezone handling problems on Windows.
29741         
29742         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
29743         asserts when the year is outside the range handled by ms the functions.
29745         * class.c (setup_interface_offsets): If the class is an interface,
29746         fill out its interface_offsets slot.
29748 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29750         * threadpool.c: mark threadpool threads as background.
29752 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
29754         * decimal.c - define DECINLINE to nothing if not using GCC
29756 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
29758         * assembly.c: More refcount fixes.
29760 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29762         * string-icalls.c: if we're not trimming, return the same string.
29763         When not splitting, don't create a new string.
29765 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29767         * image.c:
29768         (mono_image_open): increment the ref_count inside the critical section.
29770 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
29772         * image.c (mono_image_open): Fix reference counting bug.
29774 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
29776         * marshal.c (mono_marshal_type_size) struct alignment changed for 
29777         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
29778         64bits. Avoid leak in mono_marshal_get_native_wrapper when
29779         mono_lookup_pinvoke_call throws.        
29781 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
29783         * reflection.c (mono_reflection_parse_type): Fix #49114.
29785         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
29786         temporary workaround for cygwin header problem.
29788         * object.c (mono_object_isinst): Synchronize this with the code
29789         generated by the JIT for casts.
29791 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
29793         * reflection.c (encode_type): Fix #38332.
29795 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
29797         * marshal.c (mono_marshal_method_from_wrapper): New function to return
29798         the original method from the wrapper method.
29800 2003-09-25  Martin Baulig  <martin@ximian.com>
29802         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
29803         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
29804         (ves_icall_Type_get_IsGenericInstance): New interncall.
29806 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
29808         * object.c: fix cast warning in big endian code.
29810 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
29812         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
29813         
29814 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29816         * assembly.c: don't call check_env from mono_assembly_load. It's
29817         already done once in mono_assemblies_init and may cause headaches when
29818         multiple threads are loading assemblies.
29820 2003-09-19  Martin Baulig  <martin@ximian.com>
29822         * reflection.c (mono_reflection_define_generic_parameter): Don't
29823         allocate `klass->methods', set `klass->flags' to
29824         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
29826 2003-09-18  Martin Baulig  <martin@ximian.com>
29828         * class.c (mono_class_init): Don't create `class->methods' if it's
29829         already initialized.
29831         * metadata.c (mono_metadata_load_generic_params): Make this
29832         actually work.
29834         * reflection.c (mono_reflection_define_generic_parameter): Set
29835         parent class and interfaces from the constraints.
29837         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
29838         to keep this struct in sync with the declaration in TypeBuilder.cs.
29840 2003-09-17  Martin Baulig  <martin@ximian.com>
29842         * metadata.h (MonoType): Replaced the data's `int type_param'
29843         field with `MonoGenericParam *generic_param'.
29844         (MonoGenericParam): Added `MonoClass *klass'.
29846         * class.c (mono_class_from_gen_param): Removed the
29847         `MonoImage *image' and `int type_num' arguments.
29849         * metadata.c (mono_metadata_parse_generic_param): New static
29850         method; creates a MonoGenericParam which just contains the index.
29851         (do_mono_metadata_parse_type): Call
29852         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
29853         MONO_TYPE_MVAR.
29855         * reflection.c (mono_image_typedef_or_ref): Generic type
29856         parameters may be in the same assembly, but never use a typedef
29857         for them.
29858         (mono_reflection_define_generic_parameter): We're now creating a
29859         "real" class for the type parameter; it's now safe to call
29860         mono_class_from_mono_type() on the class'es type, it'll do the
29861         right thing.
29863 2003-09-16  Martin Baulig  <martin@ximian.com>
29865         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
29866         `symfile->range_entry_size' and `symfile->class_entry_size' here;
29867         the `symfile' data structure must be fully initialized before it
29868         gets added to the table.
29870 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
29872         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
29874         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
29875         class init trampolines.
29877 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
29879         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
29880         to the built-in profiler to turn off time and allocation profiling
29881         respectively.
29883 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
29885         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
29886         g_direct_equal.
29888         * debug-helpers.c (mono_method_full_name): Print the wrapper type
29889         in human readable form.
29891 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
29893         * reflection.c icall.c: Fixed warnings.
29895         * image.c (load_class_names): Use a temporary hash table to hold the
29896         namespaces in order to avoid doing many string comparisons.
29898         * image.h: Fix typo.
29900         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
29901         Pass NULL instead of g_direct_equal to the GHashTable constructor 
29902         since the NULL case is short-circuited inside g_hash_table_lookup, 
29903         leading to better performance.  
29905         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
29906         obtain the first custom attribute for a given index. Depends on the
29907         CustomAttribute table being sorted by the parent field.
29909         * reflection.c (mono_custom_attrs_from_index): Use the new function 
29910         for better performance.
29912 2003-09-07  Martin Baulig  <martin@ximian.com>
29914         * class.c (mono_class_init): If we're a generic instance, inflate
29915         all our methods instead of loading them from the image.
29916         (mono_class_from_generic): Set `class->methods = gklass->methods'.
29918 2003-09-07  Martin Baulig  <martin@ximian.com>
29920         * mono-debug-debugger.c: Added support for constructors.
29922 2003-09-06  Martin Baulig  <martin@ximian.com>
29924         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
29925         New interncall.
29927         * reflection.c (mono_reflection_setup_generic_class): Call
29928         ensure_runtime_vtable() to create the vtable.
29930 2003-09-05  Martin Baulig  <martin@ximian.com>
29932         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
29933         MONO_TYPE_MVAR.
29935 2003-09-04  Martin Baulig  <martin@ximian.com>
29937         * reflection.c (mono_reflection_define_generic_parameter): Generic
29938         parameters start with zero.
29940 2003-09-04  Martin Baulig  <martin@ximian.com>
29942         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29944         * reflection.h (MonoReflectionGenericParam): New typedef.
29945         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
29946         the generic parameters from the managed TypeBuilder.
29948         * reflection.c (mono_reflection_define_generic_parameter): New function.
29949         (mono_reflection_create_runtime_class): Encode generic parameters.
29950         (mono_reflection_setup_generic_class): New function; this is
29951         called after adding adding all generic params to the TypeBuilder.
29952         (encode_type): Added MONO_TYPE_VAR.
29954 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
29956         * class.h class.c (mono_class_needs_cctor_run): Moved this method
29957         here from the JIT.
29959         * assembly.h assembly.c: Moved the AOT loading code into an assembly
29960         load hook.
29962 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
29964         * reflection.h reflection.c class.h class.c: Delete duplicate 
29965         definition of mono_type_get_name () from reflection.c and export the
29966         one in class.c.
29968         * class.c: Class loading fixes from Bernie Solomon 
29969         (bernard@ugsolutions.com).
29971         * reflection.c: Endianness fixes from Bernie Solomon 
29972         (bernard@ugsolutions.com).
29973         
29974 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
29976         * assembly.h assembly.c: Define a file format version for AOT
29977         libraries.
29978         
29979         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
29981         * appdomain.h (MonoJitInfo): New field to determine whenever the
29982         code is domain neutral.
29983         
29984 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
29986         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
29988 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
29990         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
29991         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
29992         Avoid caching the result since strings must be domain specific. Fixes
29993         #48050.
29995 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
29997         * marshal.c (mono_marshal_init): Make this callable multiple times
29998         since it is hard to find a correct place to call it.
30000         * object.c (mono_runtime_class_init): Execute static constructors in
30001         the correct appdomain.
30003         * image.c (build_guid_table): Handle the case when multiple images have
30004         the same GUID.
30006 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30008         * icall.c: added a couple of icalls for System.Web.
30010 2003-08-28  Martin Baulig  <martin@ximian.com>
30012         * icall.c (ves_icall_Type_BindGenericParameters): Use
30013         `klass->generic_inst' instead of `&klass->byval_arg' in the
30014         mono_type_get_object() call.  The returned type must be
30015         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
30017 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
30019         * NOTES: New file.
30021         * object.c (mono_class_proxy_vtable): Make it thread safe.
30023         * pedump.c: Fix warning.
30025         * object.c appdomain.h: Get rid of metadata_section. 
30026         It is no longer needed and it was causing deadlocks with domain->lock.
30028         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
30030 2003-08-26  Martin Baulig  <martin@ximian.com>
30032         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
30034 2003-08-26  Martin Baulig  <martin@ximian.com>
30036         * pedump.c (main): Call mono_metadata_init(),
30037         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
30038         and mono_loader_init().
30040 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
30042         * loader.h: Add missing include to fix build.
30044         * image.h: mono_image_load_references is no more.
30046         * assembly.c: Reworked assembly loading to make it really thread safe.
30047         After these changes, the assembly returned by mono_assembly_open is
30048         fully initialized, i.e. all its references assemblies are loaded.
30050         * assembly.c (mono_image_load_references): Renamed to 
30051         mono_assembly_load_references, and made private, since clients no
30052         longer need to call it.
30054         * class.c: Removed calls to mono_assembly_load_references, since it was
30055         a source of deadlocks.
30057         * loader.h loader.c class.h class.c: Protect data structures using a 
30058         new lock, the loader lock.
30060         * class.c (mono_class_setup_vtable): Create temporary hash tables and
30061         GPtrArrays only when needed.
30063         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
30064         into empty structures by mcs. Fixes pinvoke7.cs.
30065         
30066         * domain.c (mono_init): Call a new initialization function.
30068         * appdomain.c (mono_runtime_init): Call the new initializer function
30069         of the marshal module.
30071         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
30072         inserted into empty structures by mcs. Fixes pinvoke7.cs.
30074         * marshal.h marshal.c: Added locks around the wrapper caches to make
30075         this module thread safe.
30077         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
30078         this argument. Fixes pinvoke1.exe.
30080 2003-08-25  Lluis Sanchez <lluis@ximian.com>
30082         * object.h: Added call_type field to MonoMethodMessage and the corresponding
30083         enumeration of values. Removed fields to store remote call output values in
30084         MonoAsyncResult. Not needed any more.
30085         * object.c: Initialize call_type and async_result fields in mono_message_init.
30086         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
30087         dispatching the message.
30088         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
30089         async call to finish. To do it use a message with EndInvoke call type.
30091 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
30093         * loader.h loader.c (mono_method_hash_marhal_info): New function which
30094         determines whenever a method has marshalling info.
30096 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30098         * assembly.c: fix the build on windows.
30100 2003-08-22 Lluis Sanchez <lluis@ximian.com>
30102         * object.cs: Fixed bug #47785.
30104 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
30106         * string-icalls.c (StringReplace): If their are no occurances of
30107         the old string found return a reference to the supplied
30108         string. This saves some memory and matches MS behavoir.
30109         
30110 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30112         * socket-io.c: fixed compilation for systems that define AF_INET6
30113         and don't define SOL_IP/SOL_IPV6.
30115 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
30117         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
30118         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
30120         * rawbuffer.c rawbuffer.h: Make this module thread safe.
30122         * domain.c: Make this module thread safe.
30124         * domain.c (mono_init): Call new initialization function.
30126         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
30127         reference types too. Fixes #38812.
30129         * image.c (mono_image_init): Fixed warnings.
30131         * class.c (mono_class_from_typeref): Handle assembly load failure
30132         correctly.
30134         * appdomain.c (add_assemblies_to_domain): Handle the case when
30135         the references of an assembly are not yet loaded.
30137         * metadata.c image.c assembly.c: Moved initialization of global
30138         variables to a separate function called at startup since lazy 
30139         initialization of these variables is not thread safe.
30140         
30141         * image.c assembly.c: Made this module thread safe by adding locks in 
30142         the appropriate places.
30144         * domain.c (mono_init): Call the new initialization functions of the
30145         three modules.
30147 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
30149         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
30150           make a direct call. It is proxy's work to make the call asynchronous.
30151           mono_delegate_end_invoke(): If the targe is a proxy, just collect
30152           the return values.
30153         * object.cs: mono_method_call_message_new(): read AsyncResult and
30154           state object from parameters list, if this info is requested.
30155         * object.h: Added fields to store remote call output values in
30156           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
30158 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30160         * object.h: add needed fields to MonoThread.
30161         * threads.c, threads.h: allow registering a function to cleanup data
30162         allocated per thread by the JIT.
30164 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30166         * loader.h: portability fix by Bernie Solomon
30167         * <bernard@ugsolutions.com>.
30169 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
30171         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
30172         return a MonoArray. This simplifies the code and also ensures that
30173         the cache allways contains an object reference as a value.
30175         * icall.c (ves_icall_get_parameter_info): Simplified using the new
30176         function.
30178 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30180         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
30181         fixes a problem with byte ordering when getting the address family for
30182         a socket.
30184 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
30186         * .cvsignore: Added monosn.
30188         * reflection.h reflection.c loader.c: Added support for parameter
30189         marshalling to dynamically created types. Fixes #47295.
30191 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
30193         * rand.c: remove useless warnings.
30195 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30197         * class.c: implemented ldtoken for methods and fieldrefs.
30199 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30201         * threadpool.c: when mono_async_invoke was called, no one took care of
30202         monitoring the queue. So if the method invoked took some time and we
30203         got new async invoke requests after 500 ms (the thread created waited
30204         that long in WaitForSingleObject), the new async invoke was not called
30205         until the previous one finished.
30207         This is fixed now. Thanks to Totte for helping with it.
30209 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30211         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
30213 2003-08-11  Martin Baulig  <martin@ximian.com>
30215         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
30217 2003-08-06  Martin Baulig  <martin@ximian.com>
30219         * mono-debug-debugger.c: Added support for static fields,
30220         properties and methods.
30222 2003-08-06  Martin Baulig  <martin@ximian.com>
30224         * mono-debug-debugger.c: Don't store the MonoString's vtable to
30225         make this work for applications with multiple application domains.
30227 2003-08-04  Martin Baulig  <martin@ximian.com>
30229         * mono-debug-debugger.c: Completely reworked the type support; the
30230         most important thing is that we're now just using one single
30231         `MonoType' instance per type.
30233 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
30235         * mono-endian.h, mono-endian.c, icall.c: Added icall
30236         ves_icall_System_Double_AssertEndianity to assert double word endianity
30237         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
30239 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30241         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
30242         support, icalls and fixes.
30244 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
30246         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
30247         classes that are a punctuation character in .NET is not the same a
30248         g_unichar_ispunct.
30250 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30252         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
30254 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
30256         * icall.c: Add new MemCopy internalcall.
30257         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
30258         Simplified code; It is not necessary to handle all the cases here,
30259         as the C# code takes care of it.  Only handle the case of the name
30260         resource embedded into the assembly.
30262         Changed signature to return the data pointer and the size of the
30263         data. 
30265 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
30267         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
30268         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
30270 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30272         * socket-io.c: ignore EINTR error in select.
30274 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30276         * class.h, class.c: removed unused subclasses field in MonoClass.
30278 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
30280         * icall.c: improve fix of get_base_definition(). If the parent class
30281           doesn't have the mehod, look at the parent of the parent.
30282         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
30283           to check if a parameter is an in or out parameter
30284           (PARAM_ATTRIBUTE_IN is not set by default).
30285           mono_method_return_message_restore(): Use mono_class_value_size to
30286           get the size of a value type. mono_type_stack_size (parameterType)
30287           does not return the correct value if parameterType is byRef.
30288           mono_load_remote_field(), mono_load_remote_field_new(),
30289           mono_store_remote_field(), mono_store_remote_field_new():
30290           raise exception if the remote call returns an exception.
30292 2003-07-28  Martin Baulig  <martin@ximian.com>
30294         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
30295         method.  This is a wrapper around mono_runtime_invoke() which
30296         boxes the instance object if neccessary.
30298 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30300         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
30301         metadata.h, row-indexes.h, verify.c: first cut of generics support.
30303 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30305         * icall.c: disable mcs bug workaround.
30307 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
30309         * object.c (mono_runtime_class_init): Take the metadata_section
30310         mutex before obtaining the domain mutex.
30312         * appdomain.h: Added definition of metadata_section mutex here. 
30314         * object.c: define metadata_mutex here.
30316 2003-07-24  Ravi Pratap  <ravi@ximian.com>
30318         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
30319         fixed.
30321 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
30323         * reflection.c: Fix bug #46669
30325 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30327         * exception.c:
30328         * exception.h:
30329         * icall.c:
30330         * object.h: fill in the type name for TypeLoadException.
30332 2003-07-23  Ravi Pratap  <ravi@ximian.com>
30334         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
30335         relationship between TypeBuilders while compiling corlib) and bug
30336         45993 (Array types returned from the runtime while compiling
30337         corlib were from the loaded corlib).
30339 2003-07-22  Martin Baulig  <martin@ximian.com>
30341         * mono-debug-debugger.c: Reworked the type support a bit more;
30342         distinguish between types and classes.
30344 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
30346         * icall.c: add IsArrayImpl icall.
30348 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
30350         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
30351         initializing real_size only once. Also fix bug #46602.
30353 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
30355         * object.c: Renamed mono_metadata_section to metadata_section.
30357 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
30359         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
30360           empty array if the type is an array. Fixed.
30361           ves_icall_MonoMethod_get_base_definition: if the base method
30362           is abstract, get the MethodInfo from the list of methods of
30363           the class.
30364         * reflection.c: ParameterInfo.PositionImpl should be zero-based
30365           and it was 1-based. Fixed in mono_param_get_objects.
30367 2003-07-20  Martin Baulig  <martin@ximian.com>
30369         * mono-debug.h: Set version number to 31.
30370         (mono_debug_init): Added `MonoDomain *' argument.
30372         * mono-debug-debugger.c: Reworked the type support; explicitly
30373         tell the debugger about builtin types; pass the `klass' address to
30374         the debugger.
30376 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
30378         * image.c: Allow new metadata tables to be loaded without a
30379         warning. Also update the warning message to give the new constant value.
30380                 
30381 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
30383         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
30384         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
30385         array type representation changes.
30387 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30389         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
30390         on Environment.Exit () call.
30392 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
30394         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
30395         requires a matching corlib.
30397 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30399         * Changelog: My editor decided to add a CR to each line. Sorry about that.
30400           Committed again without the CRs.
30401         
30402 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
30404         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
30405           getting it from the "this" socket instance. Did not work
30406           if the socket is a subclass of Socket.
30407           Also fixed bug #35371.
30409 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30411         * metadata.c: fixed size for TypedByRef.
30412         * loader.c: when searching for a method, consider the vararg amrker.
30413         * unicode.c, decimal.c: constify some arrays.
30415 2003-07-15  Dick Porter  <dick@ximian.com>
30417         * socket-io.c: Fixed compilation for gcc < 3.2.
30419         Fixed compilation for machines that don't have AF_INET6 (thanks to
30420         Bernie Solomon <bernard@ugsolutions.com> for that part.)
30422         Fixed compile warnings.
30423         
30424         Fixed formatting and line endings.
30426 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
30428         * socket-io.h:
30429         * socket-io.c: Added IPv6 support.
30431 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
30433         * class.c (mono_class_is_assignable_from): New function to implement
30434         the is_assignable_from logic. Used by mono_object_isinst, 
30435         Type::IsAssignableFrom () and the interpreter.
30437         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
30438         Object, even interfaces.
30439         
30440         * object.c (mono_object_isinst): Implement in terms of 
30441         is_assignable_from.
30443         * icall.c (ves_icall_type_is_assignable_from): New icall.
30445 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
30447         * domain.c (foreach_domain): fix compiler warning.
30449 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
30451         * image.c (load_metadata_ptrs): use g_strndup because strndup is
30452         not available on all plattforms
30454 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
30456         * image.h image.c: Store the metadata version string in MonoImage.
30457         * icall.c: New icall to retrieve the image version.
30458         * reflection.c (create_dynamic_image): Fill in the image version field
30459         * reflection.c (build_compressed_metadata): Use the image version
30460         from the image structure.
30462 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30464         * appdomain.c: modified comment.
30465         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
30466         That will be its last iteration when mono_gc_cleanup is called from
30467         mono_runtime_cleanup and before the domain is unloaded.
30469         Fixes bug #45962.
30471 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
30473         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
30474         attributes.
30476 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30478         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
30479         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
30480         Bernie Solomon <bernard@ugsolutions.com>.
30482 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30484         * object.c, object.h: provide mono_object_new_fast() for faster
30485         allocation in some special cases.
30487 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
30489         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
30490         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
30492 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
30494         * threadpool.c: fix leaks.
30496 2003-07-01  Dick Porter  <dick@ximian.com>
30498         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
30499         using MonoGHashTables.  Fixes threadpool bug posted to list.
30501 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
30503         * image.h, image.c: added support to load an assembly from a byte array.
30504         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
30505         assembly bundle support.
30507 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
30509         * threadpool.c (mono_thread_pool_add): keep a reference to the
30510         AsyncResult to prevent GC
30512 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
30514         * class.c: leak fix.
30516 2003-06-25  Dick Porter  <dick@ximian.com>
30518         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
30519         for the async object, the WaitHandle object will close the handle.
30520         Fixes bug 45321.
30522 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30524         * class.c: in mono_array_class_get (), lookup from the hash with the
30525         same type we insert: this works around a bug in
30526         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
30527         lluis. The real fix will have to wait for after the release.
30529 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
30531         * icall.c: fix memory leak when getting type members.
30533 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30535         * reflection.c: added more pubtoken special cases.
30537 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
30539         * class.c: handle field offset correctly when class size
30540         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
30542 2003-06-20  Martin Baulig  <martin@ximian.com>
30544         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
30545         *image' field.
30547 2003-06-20  Martin Baulig  <martin@ximian.com>
30549         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
30551 2003-06-20  Martin Baulig  <martin@ximian.com>
30553         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
30554         just distinguish between variables in registers and variables at
30555         an offset relative to a register.
30557 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30559         * icall.c: #ifdef out latest changes until mcs is fixed.
30561 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30563         * icall.c: return members in metadata order.
30565 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
30567         * icall.c: avoid infinite loop in GetTimeZoneData.
30569 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
30571         * icall.c: added Marshal.Prelink/All icalls.
30573 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
30575         * object.c, object.h: fix warnings and do some overflow checking
30576         when creating arrays.
30578 2003-06-17  Dick Porter  <dick@ximian.com>
30580         * file-io.h:
30581         * file-io.c: File attributes need to be tweaked slightly when
30582         passed from the managed to the w32 world.
30584 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30585         * profiler.h profiler-private.h profiler.c: Rework last patch
30586         based on suggestion by Paolo.
30587         
30588 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
30590         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
30591         instruction level coverage data collection.
30592         * profiler.h profiler.c (: Added new callback function which can be
30593         used by the profiler to limit which functions should have coverage
30594         instrumentation.
30595         * profiler.c (mono_profiler_load): Call g_module_build_path to
30596         generate the file name of the profiler library.
30598 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
30600         * profiler.c, profiler.h, profiler-private.h: added basic block 
30601         coverage profiling API.
30603 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
30605         * reflection.c (mono_reflection_create_runtime_class): Add support
30606         for events in dynamically generated code.
30608         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
30609         not allocated.
30611 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
30613         * icall.c: when getting timezone info, return reasonable values if we
30614         can't get the actual data.
30616 2003-06-14  Dick Porter  <dick@ximian.com>
30618         * threads.c (start_wrapper): Remove the reference to the thread
30619         object in the TLS data, so the thread object can be finalized.
30620         This won't be reached if the thread threw an uncaught exception,
30621         so those thread handles will stay referenced :-( (This is due to
30622         missing support for scanning thread-specific data in the Boehm GC
30623         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
30625 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
30627         * reflection.c: ensure streams and tables are first allocated with
30628         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
30630 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
30632         * icall.c: fixed GetElementType for byrefs (bug# 44792).
30634 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
30636         * reflection.c (mono_reflection_create_runtime_class): Add support for
30637         properties to dynamically created classes.
30638         * reflection.c: Fix a few places where non-MonoObjects were inserted
30639         into the tokens hashtable.
30641 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30643         * object.c: some support to handle out of memory exceptions.
30645 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
30647         * marshal.c (mono_marshal_get_native_wrapper): support reference
30648         return types
30650 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30652         * object.h, object.c: more portability stuff from Bernie Solomon.
30653         Unexport mono_object_allocate(). Added mono_object_unbox ().
30654         Set exitcode when an unhandled exception is thrown.
30656 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
30658         * marshal.c (mono_marshal_get_native_wrapper): use custom
30659         marshaler for return types.
30661 2003-06-10  Dick Porter  <dick@ximian.com>
30663         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
30664         ip_mreq is available
30666 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
30668         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
30669         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
30670         by Bernie Solomon <bernard@ugsolutions.com>.
30672 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
30674         * gc.c (mono_gc_init): Avoid error message on shutdown when
30675         GC_DONT_GC=1 is used.
30677         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
30678         New icall to return the GUID of a module.
30680 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
30682         * class.c: ensure instance size always includes the parent's size
30683         even whem class size is set explicitly (fixes bug#44294).
30685 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30687         * profiler.h, profiler.c: made the simple profiler thread-safe,
30688         get more accurate timing info. Allow the loading of an
30689         externally-developed profiler module.
30691 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
30693         * marshal.c (mono_marshal_get_native_wrapper): improved
30694         class/byref arguments.
30695         (mono_marshal_get_native_wrapper): better string marshaling support.
30697 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
30699         * class.c: ensure .pack and .size are handled correctly and
30700         simplified layout of static fields.
30702 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
30704         * appdomain.c
30705         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
30707         * loader.c (mono_lookup_pinvoke_call): look for modules in the
30708         current directory (fix bug 44008)
30710 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
30712         * marshal.c (mono_marshal_get_native_wrapper): started support for
30713         custom marshalers.
30714         (mono_delegate_to_ftnptr): consider marshalling specifications
30716 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
30718         * reflection.c, reflection.h: emit custom marshal info.
30720 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30722         * object.c: free the GError.
30723         * icall.c: added CloseEvent_internal.
30724         * threads.[ch]:
30725         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
30726         call.
30728 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
30730         * loader.c (mono_method_get_signature): Add support for dynamic
30731         assemblies.
30733 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
30735         * reflection.c: fixed bug #43905.
30737 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
30739         * class.c, domain.c, icall.c, metadata.h, object.h: support for
30740         handling TypedReference and ArgIterator.
30741         * loader.c, loader.h: added function to get signature at call site.
30743 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
30745         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
30746         data readonly. Buglets and warning fixes. Some MethodSpec support.
30748 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
30750         * class.h, class.c, object.c: remove relative numbering support.
30752 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
30754         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
30755         free the string, until we get a chance to fix Gtk#
30757 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30759         * marshal.c: revert last patch.
30761 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
30763         * icall.c: updates for new mono_class_vtable() not calling
30764         the type constructor anymore.
30766 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
30768         * object.h, object.c: separate vtable creation from type
30769         initialization. Make running the .cctor thread safe.
30771 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
30773         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
30775 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
30777         * loader.c (mono_get_method): consider calling convention
30779 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
30781         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
30782         to return the invisible global type for a module.
30784         * reflection.c (mono_image_build_metadata): Emit global fields too.
30786 2003-05-20  Peter Williams  <peterw@ximian.com>
30788         * loader.c (mono_lookup_internal_call): Add a few newlines.
30790 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
30792         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
30793         literal strings.
30795         * appdomain.c (set_domain_search_path): Recalculate search path when
30796         AppDomainSetup.PrivateBinPath changes.
30798         * object.c (mono_class_compute_gc_descriptor): It turns out some
30799         parts of the class libs (like System.Thread) holds pointers to
30800         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
30801         to treat native int a pointer type here.
30802         
30803 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
30805         * appdomain.h, domain.c: add hashtable for jump target resolution.
30807 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
30809         * reflection.h reflection.c icall.c: Added new icalls 
30810         GetManifestResourceInfoInternal, GetModulesInternal and support
30811         infrastructure.
30813 2003-05-16  Dick Porter  <dick@ximian.com>
30815         * icall.c:
30816         * file-io.h:
30817         * file-io.c: Implement System.IO.MonoIO::GetTempPath
30819 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
30821         * object.c: mono_store_remote_field: little fix to previous patch.
30823 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
30825         * class.c: add constructors to array classes.
30826         * icall.c: special case array construction for InternalInvoke (),
30828 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
30830         * class.h class.c reflection.c object.c: Added support for field
30831         defaults in dynamically generated classes.
30833 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
30835         * reflection.c: properly encode charset for ddlimport.
30837 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
30839         * threads.c: allow compiling without GC.
30841 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
30843         * appdomain.h, object.c, object.h, threads.c, threads.h: added
30844         handling of thread static data.
30846 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
30848         * reflection.h, reflection.c: added mono_custom_attrs_free ().
30850 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
30852         * class.c (mono_array_class_get): always set the serializable flags
30853         (mono_array_class_get): always set the SEALED attribute for array types
30855 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
30857         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
30858         attributes (fix for bug 42021).
30860 2003-05-12  Dick Porter  <dick@ximian.com>
30862         * gc.c: Don't run finalizers when the finalizer thread is
30863         finishing up, because the default domain has already been
30864         destroyed.
30866 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
30868         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
30869         value is null, we should throw an exception.   This is slightly
30870         different than the other conventions used for the constructor.
30872 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30874         * socket-io.c: fixed windows build.
30876 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30878         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
30880 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
30882         * object.c (mono_string_new_wrapper): Compatibility fix for MS
30883         compilers.
30885 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
30887         * class.c (mono_class_layout_fields): Add experimental GC aware
30888         auto layout facility. Requires class library changes to work correctly.
30890         (mono_class_setup_vtable): Avoid overriding explicit interface
30891         method implementations. Fixes iface3.exe test.
30893         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
30894         object reference.
30895         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
30896         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
30898         * metadata.h: Add new type classification macro which determines
30899         whenever the type holds an object reference.
30901 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
30903         * marshal.c (mono_marshal_get_native_wrapper): cleanups
30905 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
30907         * gc.c (finalizer_thread): Work around a GC bug.
30909 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
30911         * marshal.c (emit_struct_conv): allow unions
30913         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
30915 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
30917         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
30919 2003-05-06  Martin Baulig  <martin@ximian.com>
30921         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
30923 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30925         * socket-io.c:
30926         (Select_internal): allow NULLs, don't create arrays if not needed.
30927         Coupled with Socket.cs changes.
30929         * threadpool.c:
30930         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
30931         register a finalizer for it that will close the semaphore handle. This
30932         fixes the leak and make Lupus' test run with > 4080 loops.
30934 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
30936         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
30937         Jerome Laban (bug #42287)
30939 2003-05-02  Martin Baulig  <martin@ximian.com>
30941         * debug-mono-symfile.h
30942         (MonoSymbolFile): Moved declaration into mono-debug.h.
30943         (MonoDebugMethodJitInfo): Likewise.
30944         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
30945         argument.
30946         (_mono_debug_address_from_il_offset): Take a
30947         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
30949         * mono-debug.h
30950         (MonoDebugDomainData): New struct.
30951         (mono_debug_get_domain_data): New function.
30952         (mono_debug_add_method): Take an additional `MonoDomain *'
30953         argument.
30954         (mono_debug_source_location_from_address): Likewise.
30955         (mono_debug_il_offset_from_address): Likewise.
30956         (mono_debug_address_from_il_offset): Likewise.
30958 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
30960         * reflection.c: one more check for null type in custom attrs.
30962 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30964         * reflection.c: avoid warning (comparison is always false due to limited
30965         range of data type).
30967 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30969         * icall.c: throw an exception in Type.GetField if the argument 'name'
30970         is NULL.
30972 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
30974         * reflection.c: fixed handling of enums in named arguments to custom
30975         attributes (bug #42123).
30977 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
30979         * reflection.c: use the right array element type and handle
30980         a null for a Type argument, too.
30982 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
30984         * reflection.c: handle arrays as arguments to custom attributes.
30986 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
30988         * reflection.c: handle a string value in a custom attr
30989         ctor that takes an object.
30991 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
30993         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
30994         (fix bug #42063)
30996 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
30998         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
31000 2003-04-27  Martin Baulig  <martin@ximian.com>
31002         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
31003         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
31004         MONO_DEBUGGER_EVENT_BREAKPOINT.
31005         (mono_breakpoint_trampoline_code): Removed.
31006         (mono_debugger_event_handler): The last argument is now a
31007         `guint32'.
31008         (mono_debugger_insert_breakpoint_full): Removed the
31009         `use_trampoline' argument.
31010         (mono_debugger_method_has_breakpoint): Likewise.
31011         (mono_debugger_trampoline_breakpoint_callback): Renamed to
31012         mono_debugger_breakpoint_callback(); take the method and
31013         breakpoint number as arguments.
31015 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
31017         * metadata.c: fix off by one when loading parameters attributes.
31019 2003-04-24  Martin Baulig  <martin@ximian.com>
31021         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
31023 2003-04-24  Martin Baulig  <martin@ximian.com>
31025         * mono-debug-debugger.c: Moved all code which interacts with the
31026         Mono Debugger here.
31028         * debug-mono-symfile.c: This code now just deals with the symbol
31029         file itself, the debugger code is now in mono-debug-debugger.c.
31031 2003-04-23  Martin Baulig  <martin@ximian.com>
31033         * mono-debug.c (mono_debug_source_location_from_il_offset):
31034         New method; like mono_debug_source_location_from_address(), but
31035         takes an IL offset instead of a machine address.
31037 2003-04-23  Martin Baulig  <martin@ximian.com>
31039         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
31040         `line' field; this is now computed by the debugger.
31042 2003-04-23  Martin Baulig  <martin@ximian.com>
31044         * mono-debug.[ch]: New files.  This is the new debugging interface.
31046         * mono-debug-debugger.[ch]: New files.  Moved all code which
31047         interacts with the Mono Debugger here.
31049 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
31051         * domain.c (mono_init): initialize mono_defaults.monitor_class
31053 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
31055         * reflection.c (method_encode_code): Add a spicy exception to help
31056         future compiler authors.
31058 2003-04-21  Martin Baulig  <martin@ximian.com>
31060         * icall.c
31061         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31062         Make this work with relative pathnames; g_filename_to_uri() needs
31063         an absolute filename.
31065 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
31067         * icall.c: Track name changes in Object and ValueType.
31069 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
31071         * metadata.c (mono_type_stack_size): size should be a multiple of
31072         sizeof (gpointer)
31074 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31076         * gc.c:
31077         (internal_domain_finalize): moved into mono_domain_finalize. No need
31078         to create another thread because the finalizers will be run in the
31079         finalizer thread.
31080         
31081         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
31082         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
31083         to be run (MS does this too).
31085 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
31087         * object.c (mono_class_compute_gc_descriptor): Update comment.
31089         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
31091         * image.h: Add synchronized wrapper cache.
31093         * image.c (do_mono_image_open): Initialize cache.
31095         * reflection.c (create_dynamic_mono_image): Initialize cache.
31097 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31099         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
31100         ves_icall_System_Buffer_ByteLengthInternal.
31102 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31104         * reflection.c: setup klass->nested_in earlier. Allow
31105         a dash in the assembly name.
31107 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
31109         * metadata.c (mono_type_to_unmanaged): dont access
31110         type->data.klass for MONO_TYPE_OBJECT
31111         (mono_type_to_unmanaged): consider System.Delegate class
31113 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
31115         * class.c: just setup supertypes in the proper place instead of
31116         initializing the full element class for arrays.
31118 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31120         * class.c: ensure the element class of arrays is initialized.
31121         Setup the supertype info for array classes, too.
31123 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
31125         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
31127 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31129         * Makefile.am: re-added -m option when running cygpath. This way,
31130         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
31131         separator.
31132         * mono-config.c: same codepath for locating mono config file for WIN32
31133         and the rest.
31134         * assembly.c: if mono_assembly_setrootdir is called, don't override
31135         the value set.
31137 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31139         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
31140         MONO_ASSEMBLIES variable.
31142 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
31144         * icall.c: added Assembly::GetNamespaces() icall.
31146 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31148         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
31150 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
31152         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
31153         * object.c: fixed bug in the construction of vtable for proxies
31155 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
31157         * object.c (mono_array_new): Mark mono_array_new as an icall.
31159 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31161         * class.c: fixed test for public method when overriding interfaces.
31162         Closes bug #40970.
31164 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31166         * appdomain.h, domain.c: added mono_domain_foreach() to
31167         be able to access the currently loaded appdomains.
31168         * object.c: make string interning work across sppdomains.
31169         Mark some functions for use as icalls.
31171 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
31173         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
31175         * reflection.h reflection.c: Allocate long living data using 
31176         GC_MALLOC_ATOMIC so the collector does not need to scan it.
31178         * reflection.c: Double the allocation size in streams instead of
31179         increasing it, to prevent unneccesary copying on large assemblies.
31180         
31181         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
31182         creation if the assembly does not have the Run flag set.
31184 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
31186         * class.h: avoid the C++ keywords in header files (Jerome Laban
31187         spotted and fixed this).
31189 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31191         * object.c:
31192         (mono_unhandled_exception): fill in the arguments for the
31193         UnhandledException event. Only trigger that event for the default
31194         domain (as MS does).
31196 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
31198         * object.c: Improve typed allocation stuff based on suggestions from
31199         Paolo. Also turn it on if the GC library supports it.
31201 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31203         * object.c object.h class.h: Added experimental typed allocation
31204         facility using the interfaces in gc_gcj.h.
31206         * os/gc_wrapper.h: Added new include files.
31207         
31208 2003-04-03  Martin Baulig  <martin@ximian.com>
31210         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
31211         which is not yet enabled by default.
31213         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
31214         functions.
31215         (mono_gc_lock, mono_gc_unlock): New static functions.
31217         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
31218         functions; stop/start the world for the garbage collector.  This
31219         is using the windows API; we need to complete the SuspendThread()/
31220         ResumeThread() implementation in the io-layer to make this work on Unix.
31221         (mono_gc_push_all_stacks): New public function; tells the garbage
31222         collector about the stack pointers from all managed threads.
31224 2003-04-03  Martin Baulig  <martin@ximian.com>
31226         * object.h (MonoThread): Added `gpointer stack_ptr'.
31228         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
31230 2003-04-03  Martin Baulig  <martin@ximian.com>
31232         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
31234 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
31236         * reflection.c (typebuilder_setup_fields): Initialize field.first and
31237         field.last.
31239 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
31241         * loader.c (mono_lookup_internal_call): Report the corlib that is
31242         out of sync.
31244 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
31246         * icall.c (ves_icall_type_GetTypeCode): fixed check for
31247         System.DBNull (it's class not valuetype).
31249 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
31251         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
31252         if the array method was already assigned a token (fixes bug#40646).
31254 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
31256         * reflection.c (mono_reflection_get_type): Attempt type resolve even
31257         if no assembly is given.
31259 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
31261         * metadata.h: Added the new tables.
31263         * row-indexes.h: Added definitions for new tables.
31265         * metadata.c: Add schemas for new tables, and add support for
31266         computing the sizes of them.
31268         * class.c: Update for handling the new type cases.
31270 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
31272         * metadata.h (MONO_TYPE_IS_VOID): new macro
31274 2003-03-31  Martin Baulig  <martin@ximian.com>
31276         * threads.h (MonoThreadCallbacks): Added `thread_created'.
31278         * threads.c (mono_thread_new_init): Call `thread_created' in the
31279         mono_thread_callbacks.
31281 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
31283         * loader.h: added marshalbyrefobject_class to mono_defaults
31284         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
31285         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
31286           generation of output parameters.
31287           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
31288         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
31289           contextbound and the target object belongs to the context of the caller.
31290         * object.h: added context and unwrapped_server variables in MonoRealProxy.
31291         * object.c: Implemented support for interfaces and abstract classes
31292           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
31293           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
31295 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
31297         * class.h class.c (mono_class_is_subclass_of): New function.
31298         
31299         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
31300         routines for most common case (calls from ArrayList::ToArray).
31302         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
31303         routine so programs which call Environment::Exit() can be profiled.
31305         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
31306         Added MONO_ARCH_SAVE_REGS.
31308         * icall.c (ves_icall_type_is_subtype_of): Use new function.
31310 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
31312         * blob.h: Add a couple of new MonoType types definitions.
31314         * tabledefs.h: Add a couple of new call convs.
31316 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
31318         * reflection.h (MonoReflectionDynamicAssembly): track changes in
31319         the layout of the class.
31321         * reflection.c (alloc_table): double the size on overflow to avoid
31322         unnecessary copying.
31324         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
31325         avoid filling out metadata tables and blobs. Also set mb->ilgen to
31326         null so it can be garbage collected.
31327         
31328 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
31330         * reflection.c (mono_reflection_get_type): Return the resolved type
31331         only if it is in the assembly we searched.
31333         * reflection.c (ensure_runtime_vtable): Initialize method slots.
31335         * class.c (mono_class_setup_vtable): Set the slot of the overriding
31336         method.
31338 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31340         * appdomain.c:
31341         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
31342         the right one is 'file:///blah', but MS allows it.
31343         * assembly.c:
31344         (mono_assembly_open): allow 'file://blah'
31346         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
31348 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
31350         * socket-io.c: fixes bug #40310.
31352 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
31354         * reflection.c (mono_reflection_parse_type): handle deeply nested
31355         types correctly.
31357         * reflection.c (mono_image_create_token): Use unique token values
31358         since they will be put into a hash table.
31360         * class.c (mono_class_setup_vtable): If a method occurs in more than
31361         one place in the vtable, and it gets overriden, then change the
31362         other occurances too.
31364         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
31365         object as return type.
31367 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31369         * icall.c: Deleted "ToString" implementation for double and float
31370         because they are full implemented in managed code.
31372 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31374         * reflection.c, reflection.h: implemented and exported functions
31375         to retrieve info about custom attributes.
31377 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31379         * appdomain.c: moved Uri handling to assembly.c
31380         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
31381         work when using a file Uri in *nix and windows.
31383         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
31384         GetReferencedAssemblies.
31386 2003-03-18  Dick Porter  <dick@ximian.com>
31388         * icall.c: Rename a couple of internal calls
31390         * threads.c: Set the thread state to Stopped when a thread exits.
31391         Fixes bug 39377.
31393 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
31395         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
31396         New icall.
31398         * object.c (mono_class_vtable): fix warning.
31400 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
31402         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
31404         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
31405         memory.
31406         (method_encode_clauses): Create exception info structures in the right
31407         order.
31408         (mono_reflection_setup_internal_class): Initialize supertypes field.
31410         * class.c object.c: Handle interfaces which implement other interfaces 
31411         correctly.
31413         * class.h class.c: Move the supertypes array initialization code into 
31414         a separate function so it can be used for dynamic types too. Also call
31415         it earlier, in mono_class_init(), since it can be used before the
31416         type is initialized.
31418 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31420         * Makefile.am:
31421         * assembly.c:
31422         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
31424         * appdomain.c:
31425         * appdomain.h:
31426         * marshal.c:
31427         * object.c: remove warnings.
31429 2003-03-13  Martin Baulig  <martin@ximian.com>
31431         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
31432         (MonoDebugLexicalBlockEntry): New types.
31434         * debug-mono-symfile.c
31435         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
31437 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31439         * process.c: ret can be any non-zero value accroding to MS doc.
31441 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
31443         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
31444         fixing a warning for a miss-used prototype, would have cause
31445         random memory corruption.
31447 2003-03-07  Martin Baulig  <martin@ximian.com>
31449         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
31450         getting really annoying ....
31452 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
31454         * reflection.c (fixup_method): added support for array methods.
31456 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
31458         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
31459         (pointed out by Michael Adams).
31461 2003-03-04  Dick Porter  <dick@ximian.com>
31463         * icall.c: Temporarily reverted the Double and Single ToString()
31464         change, because it broke nunit.
31466 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
31468         * object.h, threads.h: make include files compatible with C++
31469         (patch by Jerome Laban <jlaban@wanadoo.fr>).
31471 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31473         * icall.c: Erased ToString helper functions for Double and Single.
31474         Now, that implementations ar all in managed code (Double and Single
31475         Formatters).
31477 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
31479         * appdomain.c: Added method for initializing the default context of
31480         a domain. Added internal call for getting the default context.
31481         * appdomain.h: Added context variable in MonoDomain struct.
31482         * domain.c: mono_domain_set also sets the default context of the domain
31483         * icall.c: Mapped internal method InternalGetDefaultContext.
31484         * object.c: mono_object_get_virtual_method returns always a remoting
31485         wrapper if the object is a transparent proxy.
31486         mono_runtime_invoke_array: when creating an object by calling the
31487         constructor, if the created object is a proxy, then the constructor should
31488         be called using the a remoting wrapper.
31490 2003-03-03  Dick Porter  <dick@ximian.com>
31492         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
31493         variable so it compiles on solaris.  Problem spotted by
31494         Christopher Taylor <ct@cs.clemson.edu>
31496 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31498         * appdomain.c:
31499         (get_info_from_assembly_name): don't leak value.
31501         * icall.c:
31502         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
31503         result.
31505 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
31507         * assembly.c: export mono_image_load_references ().
31508         * class.c: handle function pointers. mono_class_from_name() now
31509         supports nested type names directly.
31511 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
31513         * reflection.h reflection.c: Encode already created dynamic methods 
31514         and fields correctly as a DEF instead of a REF.
31516         * reflection.c: Get rid of the force_ref argument to 
31517         mono_image_typedef_or_ref since it was wrong in the first place.
31519         * string-icalls.c: add error checking to string constructors according
31520         to the MSDN docs.
31522         * reflection.c: Emit types in the order their TypeBuilders were 
31523         created. Previously, a new table index was assigned to each type before
31524         the tables were emitted. This was wrong because the signature blob
31525         might already refer to a type by its original table index.
31527 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
31529         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
31530         change.
31531         
31532 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31534         * Makefile.am: make assemblies dir have \ instead of / on windows.
31536 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
31538         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
31539         iterate over the NESTEDCLASS table using a linear search since the
31540         table is not guaranteed to be sorted by the secondary key.
31542         * class.c (mono_class_create_from_typedef): fixed up call to
31543         mono_metadata_nesting_typedef.
31544         
31545 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
31547         * marshal.c (mono_string_to_byvalstr): clear the memory as
31548         suggested by Jerome Laban <jlaban@wanadoo.fr>
31550 2003-02-26  Dick Porter  <dick@ximian.com>
31552         * process.c: Cope with padding in .rsrc blocks
31554 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31556         * metadata.h: reverted the filter_len change, it breaks reflection
31557         
31558 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
31560         * metadata.h: added a new field to store the filter_len
31561         
31563 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
31565         * reflection.c: handle custom attributes for types and members
31566         created with Reflection.Emit (bug#38422).
31568 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
31570         * reflection.c: define RTSpecialName automatically for constructors for
31571         compatibility with MS.NET.
31573         * reflection.c (mono_reflection_create_runtime_class): initialize
31574         nested_in field of dynamically created classes.
31576 2003-02-22  Martin Baulig  <martin@ximian.com>
31578         * debug-mono-symfile.h: Incremented version number.
31580 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31582         * object.h icall.c process.c: fix warnings.
31584 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
31586         * appdomain.h appdomain.c:
31587         (mono_domain_try_type_resolve): split the 
31588         name_or_tb argument into a name and a tb argument.
31589         (mono_domain_has_type_resolve): new function to check whenever the
31590         application has registered a TypeResolve event handler.
31591         
31592         * icall.c reflection.h reflection.c: move the type resolve logic into
31593         mono_reflection_get_type () so it will be invoked when 
31594         Assembly::GetType () is called.
31596         * reflection.c:
31597         (mono_reflection_get_type): renamed to get_type_internal.
31598         (mono_reflection_get_type): fixed type name generation so it works 
31599         for nested types too.
31600         (mono_reflection_get_type): call has_type_resolve () to avoid the 
31601         costly type name generation if there is no resolve event handler.
31603 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31605         * class.c, image.c: load exported types from file references.
31607 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
31609         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
31610           used to cache the managed methods used to create proxies and make 
31611           remote invocation of methods.
31612         * class.h: Added in MonoVTable a flag to indicate that a class needs 
31613           to be remotely created.
31614         * object.c: Modified the method mono_class_vtable(). It now initializes 
31615           the remote flag of the vtable. Modified mono_object_new_specific(), 
31616           so now it checks the remote flag.
31617         * icall.c: Added a couple of internal methods, one for enabling instance 
31618           creation interception for a type, and one for creating objects bypassing
31619           the remote check.
31621 2003-02-18  Martin Baulig  <martin@ximian.com>
31623         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
31624         New interncall to get a method's metadata token.
31626         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
31627         New interncall for the debugger.
31629 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
31631         * class.c (mono_class_setup_vtable): allocate supertype array
31633 2003-02-18  Martin Baulig  <martin@ximian.com>
31635         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
31637 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31639         * reflection.c:
31640         (assembly_name_to_aname): jump over unknown properties (i've found
31641         something like: 'type, assembly, version=xxx, custom=null, public...',
31642         so now will ignore custom=null and still get the rest of the values).
31644 2003-02-17  Dick Porter  <dick@ximian.com>
31646         * threads.c: Have Thread.Start() wait for a semaphore to signal
31647         that the thread has set up all its local data.  This fixes bug
31648         34323, where Abort() raced the new thread's TLS data.
31650         Also removes the handle_store() call from start_wrapper, because
31651         threads are now always created suspended and there is no longer a
31652         race between the parent and child threads to store the info.
31654 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
31656         * image.c: explain the #- heap issue in a message, hopefully
31657         avoiding FAQs on mono-list.
31659 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31661         * icall.c:
31662         (GetEntryAssembly): if the domain has not invoked
31663         AppDomain.ExecuteAssembly yet, return the assembly of the default
31664         AppDomain.
31666 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
31668         * class.c (mono_ldtoken): make it work in dynamic assemblies.
31670 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
31672         * metadata.c, reflection.c: simple speedup to type hash
31673         and equals code.
31675 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
31677         * image.c, image.h, class.c, assembly.c: move module loading
31678         to MonoImage. When loading metadata, consider alignemnet from
31679         the start of metadata, not from the metadata address in memory.
31681 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
31683         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
31684         AssemblyBuilder objects. Factored out custom attribute creation into
31685         a separate function.
31686         (create_custom_attr): new function to create custom attributes.
31688 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
31690         * Makefile.am: Got tired of typing the full pathname to pedump.
31691         Until there is another option, am installing this.
31693 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
31695         * class.c (class_compute_field_layout): always set field->parent 
31696         (mono_ldtoken): use mono_defaults.fieldhandle_class;
31698 2003-02-11  Dick Porter  <dick@ximian.com>
31700         * threads-types.h:
31701         * monitor.c: Rewrote Monitor, making lock much faster and
31702         Pulse/Wait work as specified.  Also uses much fewer handles, and only
31703         creates them as needed.
31705         * exception.c: Added SynchronizationLockException
31707         * threads.c: Deleted old Monitor implementation.  The new one is
31708         in a new file.
31710 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
31712         * class.c: handled TypedReference type code. Set the correct size for
31713         class data. Setup interface_offsets for interface classes, too.
31715 2003-02-09  Martin Baulig  <martin@ximian.com>
31717         * debug-mono-symfile.h: Reflect latest symbol writer changes.
31719 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
31721         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
31722         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
31723         * object.c: fixed mono_object_get_virtual_method () for interfaces.
31724         * verify.c: check for code that runs after the end of the method.
31726 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
31728         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
31729         "System.Math::Round2".
31730         * sysmath.h: Added Floor, Round and Round2 definitions.
31731         * sysmath.c: Modified certain functions that were not 100% compliant
31732         with MS.NET (math precision) and added the implementation of Floor,
31733         Round and Round2.
31735 2003-02-07  Martin Baulig  <martin@ximian.com>
31737         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
31739 2003-02-07  Martin Baulig  <martin@ximian.com>
31741         * debug-mono-symfile.c: Reflected latest symwriter changes.
31742         (mono_debug_create_mono_symbol_file): Removed.
31743         (mono_debug_open_mono_symbol_file): Take an argument which
31744         specifies whether to create a dynamic symbol file.
31746 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
31748         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
31750 2003-02-05  Martin Baulig  <martin@ximian.com>
31752         * reflection.c (mono_image_build_metadata): Make this public,
31753         protect it against being called multiple times, don't create
31754         resources and don't build the compressed metadata here.
31755         (mono_image_create_pefile): Do this here.
31757         * icall.c
31758         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
31760 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31762         * socket-io.c: fixed bug #36322.
31764 2003-02-06  Piers Haken <piersh@friskit.com>
31766         * appdomain.[ch]:
31767         * class.h:
31768         * debug-mono-symfile.c:
31769         * icall.c:
31770         * loader.c:
31771         * mono-config.c:
31772         * monosn.c:
31773         * reflection.c:
31774         * socket-io.c: warning cleanups
31776 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
31778         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
31779         function. works like remoting invoke, but does a check for the Proxy first.
31781 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
31783         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
31785 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
31787         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
31788         array of pointers.
31789         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
31790         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
31792         * object.c (mono_store_remote_field_new): used by the new jit
31793         instead of mono_store_remote_field
31794         (mono_load_remote_field_new): used by the new jit
31795         instead of mono_load_remote_field
31797 2003-02-05  Patrik Torstensson
31799         * appdomain.c: changed unload to take the domain id instead
31800         of domain
31801         
31802         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
31805 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31807         * appdomain.c: don't look for assemblies in ApplicationBase if
31808         PrivateBinPathProbe is set.
31810 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31812         * object.c: make the first argument in main_args contain the absolute
31813         path to the assembly. Fixes bug #37511.
31815 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31817         * icall.c: get correct UTC offset for countries not using daylight
31818         time saving. Fixes bug #30030.
31820 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31822         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
31823         and 1 are the family).
31825 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
31827         * icall.c (ves_icall_InternalExecute): removed wrong assertion
31829         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
31831 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
31833         * reflection.c: added support for SignatureHelper tokens, which is
31834         needed by the Calli opcode.
31836         * reflection.h: track changes to SignatureHelper class.
31838         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
31840 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31842         * appdomain.c: fixed loading assemblies from PrivateBinPath.
31844 2003-02-03  Patrik Torstensson
31845         * appdomain.[c|h], domain.c : 
31846          - Added support for getting a domain via domain id
31847          - Support for setting and getting domain from System.AppDomain 
31848            (used in cross appdomain channel)
31849          - Added support for get/set for a MonoAppContext on a thread 
31850            (Context class in System.Runtime.Remoting.Contexts),
31851          - Removed hack in Get/SetData and ExecuteAssembly.
31852         
31853         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
31854         the managed world to get control when a proxy is created.
31856         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
31857         
31858 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
31860         * icall.c
31861         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
31862         Populate the codebase field as well.
31864 2003-02-02  Martin Baulig  <martin@ximian.com>
31866         * debug-mono-symfile.c
31867         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
31868         (mono_debug_symfile_add_method): Allow interncalls.
31870 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31872         * icall.c: throw parse exception if strtod fails or the string is empty.
31874 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
31876         * marshal.c: handle object type separately from defined
31877         class types.
31879 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
31881         * marshal.c: handle NATIVE_LPSTR for strings when it's
31882         explicitly specified.
31884 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
31886         * reflection.c, reflection.h, icall.c: setup the reflection
31887         handle cache for ModuleBuilders and AssemblyBuilders.
31889 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
31891         * reflection.c (reflection_methodbuilder_to_mono_method): set
31892         pinvoke flag
31894 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31896         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
31898 2003-01-29  Dick Porter  <dick@ximian.com>
31900         * threads.c: No need for the fake_thread kludge now that Thread
31901         doesn't run a class constructor
31902         
31903 2003-01-29  Dick Porter  <dick@ximian.com>
31905         * threads.c: Use g_direct_hash instead of the rather bogus
31906         g_int_hash
31908 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
31910         * marshal.c (mono_marshal_get_native_wrapper): add check for null
31911         (fix pinvoke12.exe)
31912         (mono_marshal_get_struct_to_ptr): generate valid IL code
31913         (mono_marshal_get_ptr_to_struct): generate valid IL code
31914         (*): correctly set sig->pinvoke, we need to memdup the signature
31915         to do that
31917 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
31919         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
31920         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
31922 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31924         * profiler.c: provide more callers information.
31926 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
31928         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
31930         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
31932         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
31934 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31936         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
31937         exception instead of going into an infinite loop on dates which it 
31938         can't yet handle.
31940         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
31941         out-of-range exception if needed.
31943         * class.c (mono_class_setup_vtable): allow a virtual method to provide
31944         an implementation for an interface method and to override an inherited
31945         method at the same time. 
31946         Imagine a scenario when a virtual method is used to override a
31947         virtual abstract method in a parent class, and this same method 
31948         provides an implementation for an method inherited from an interface. 
31949         In this case, the interface resolution code will set im->slot, which 
31950         means that the virtual method override pass will skip this method 
31951         which means a pointer to the abstract method inherited from the parent
31952         will remain in the vtable of this non-abstract class.
31954         * class.c: (mono_class_setup_vtable): continue search for a real 
31955         method if only an abstract method is found.     
31957 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
31959         * reflection.c: add size to encoding for ByValStr and ByValArray
31960         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
31962 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31964         * class.c (mono_class_setup_vtable): pass the override info as an
31965         argument.
31967         * class.c (mono_class_setup_vtable): set the slot of overriding methods
31968         correctly.
31969         
31970         * reflection.c (ensure_runtime_vtable); add support for method 
31971         overrides.
31972         
31973 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31975         * reflection.c (resolution_scope_from_image): Hack to work to work with
31976         dynamic assemblies.
31978         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
31979         added a 'force_ref' argument to force this function to allways return 
31980         a TypeRef. This is needed by mono_image_get_memberref_token ().
31981         
31982 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
31984         * reflection.c (mono_image_get_type_info): interfaces really don't have
31985         a parent.
31987         * reflection.c (mono_image_basic_init): fill out missing fields of
31988         image structure.
31990         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
31991         dynamic assemblies. This is required so dynamic assemblies show up in
31992         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
31993         Type::GetType() etc. This is consistent with MS behaviour.
31995         * image.c image.h reflection.c: add newly created classes to the name 
31996         cache so mono_class_get () will find them.      
31998 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
32000         First part of changes to get IKVM.NET running under mono.
32001         
32002         * appdomain.h, appdomain.c: added new function 
32003         mono_domain_try_type_resolve() which will emit TypeResolve events. 
32004         This function will call AppDomain::DoTypeResolve to do the actual work.
32006         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
32007         moved existing code dealing with dynamic tokens to a new function 
32008         called mono_reflection_lookup_dynamic_token (). This function will 
32009         raise TypeResolve events when appropriate. Since reflection.c is not 
32010         part of libmetadata, a new hook function called 
32011         mono_lookup_dynamic_token() is added to class.c which will call this.
32013         * assembly.h assembly.c: make the invoke_load_hook function public,
32014         so it can be called for dynamic assemblies.
32016         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
32018         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
32019         type isn't found.
32021         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
32022         MonoGHashTable, since it contains pointers to objects which the GC 
32023         needs to track.
32025         * assembly.c (search_loaded): remove unused variable.
32026         
32027 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
32029         * object.c: fixed issue exposed by gcc-generated IL programs
32030         that use RVA data for pointers.
32032 2003-01-25  Martin Baulig  <martin@ximian.com>
32034         * threads.c (start_wrapper): Moved the initialization of
32035         `start_func' above the mono_new_thread_init() call to which we
32036         pass it as argument.
32038 2003-01-24  Martin Baulig  <martin@ximian.com>
32040         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
32041         the MonoThread pointer.
32043 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
32045         * icall.c: Rename `PowImpl' to Pow.
32047 2003-01-23  Dick Porter  <dick@ximian.com>
32049         * threads.c (start_wrapper): Create a Thread object if needed, so
32050         the Main() thread can do the class initialisation in a subthread
32051         that has been set up to allow managed code execution.
32053         Pass the thread ID instead of the MonoThread pointer to the thread
32054         start and attach callbacks.  This change is required, because the
32055         jit thread start callback must be called _before_ the Thread
32056         object can be created.
32057         
32058         (mono_thread_init): Removed much object creation code that is no
32059         longer needed.  No managed code is called from here now.
32061         * object.c (mono_runtime_exec_managed_code): Create a subthread
32062         for Main, and call back to the runtime to use it.
32063         Set the exit code when Main exits.
32065         * gc.c: Make sure domain finalisation happens in a subthread.
32066         Re-enable threaded GC, fixing bug 31333 (again).
32068         * environment.c: System.Environment internall calls (so far just
32069         ExitCode is here, the others are still in icall.c)
32071         * appdomain.c (mono_runtime_cleanup): All threads running managed
32072         code should have finished before mono_runtime_cleanup() is
32073         reached, so no need to clean up threads.
32075 2003-01-22  Martin Baulig  <martin@ximian.com>
32077         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
32078         `gpointer func' arguments.      
32079         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
32080         but added `MonoThread *thread' argument.
32081         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
32083         * threads.c (mono_new_thread_init): Added `gpointer func' argument
32084         and pass it to the mono_thread_start_cb callback.
32085         (mono_install_thread_callbacks): New public function to install a
32086         set of callbacks which are set by the debugger.
32087         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
32089 2003-01-22  Martin Baulig  <martin@ximian.com>
32091         * Makefile.am: Install debug-mono-symfile.h.
32093 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
32095         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
32097 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
32099         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
32100         * class.c (mono_ptr_class_get): correctly set access levels of pointers
32101         (mono_array_class_get): correctly set access levels of arrays
32103 2003-01-20      Patrik Torstensson
32104         * image.h (MonoAssemblyName): changed major, minor, build, revision
32105         from signed to unsigned.
32107 2003-01-20  sean kasun <skasun@azstarnet.com>
32109         * reflection.c (load_cattr_value): Now this handles
32110         MONO_TYPE_SZARRAY.  Fixes bug #35629
32112 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
32114         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
32115         integer value
32117 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32119         * decimal.c: fixed bug #26056.
32121 2003-01-17  Martin Baulig  <martin@ximian.com>
32123         * gc.c: Raise an ExecutionEngineException instead of using g_error().
32125 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32127         * exception.[ch]:
32128         (mono_get_exception_type_initialization): new function.
32130         * object.c: throw a TypeInitializationException when an exception is
32131         thrown invoking the class constructor.
32133 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32135         * reflection.c: fixed attribute reading.
32137 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32139         * icall.c:
32140         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
32141         provided, look for the type in the calling assembly and then in
32142         mscorlib; if the assembly name is provided, only try that one.
32144 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
32146         * object.c: register the vtable before there is a chance it's
32147         queried again recursively.
32149 2003-01-13  Duncan Mak  <duncan@ximian.com>
32151         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
32152         gc-internal.h. 
32153         
32154 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
32156         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
32158 2003-01-11  Martin Baulig  <martin@ximian.com>
32160         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
32161         this to 20 for the release.
32163 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
32165         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
32167         * loader.c (mono_method_get_marshal_info): bug fix
32169         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
32170         structures with explicit layout
32172 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32174         * profiler.c: made the output more readable (and sorted). 
32175         Added caller information for the allocation profiler.
32177 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
32179         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
32181 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32183         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
32184         to get value types.
32185         
32186 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
32188         * object.c, profiler.h, profiler.c, profiler-private.h:
32189         Added object allocation profiler.
32191 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
32193         * reflection.h, reflection.c: handle global methods.
32194         Compress blob entries.
32196 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
32198         * marshal.c: fix compilation.
32200 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
32202         * loader.c (mono_method_get_marshal_info): impl.
32204         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
32206 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32208         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
32209         for reference types.
32211 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
32213         * loader.c: fixed off by one error in loaded parameter names.
32215 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
32217         * marshal.c (mono_marshal_get_icall_wrapper): like
32218         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
32219         instead of a MonoMethod.
32221 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32223         * decimal.c: fixed bug #36537.
32225 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
32227         * marshal.c: throw a missing method exception if a
32228         P/Invoke method is not found.
32230 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
32232         * icall.c: allow a null this for constructors.
32234 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
32236         * icall.c: raise the proper exceptions if the arguments to the
32237         internal Invoke are incorrect.
32239 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
32241         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
32243 2003-01-03  Martin Baulig  <martin@ximian.com>
32245         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32247 2002-12-31  Martin Baulig  <martin@ximian.com>
32249         * debug-mono-symfile.c: Completely rewrote the type section.
32250         Instead of using individual malloc()ed fields, we use one big
32251         continuous memory area and offsets into this area.
32252         See the comments in the source code for details.
32254 2002-12-30  Martin Baulig  <martin@ximian.com>
32256         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
32258 2002-12-30  Martin Baulig  <martin@ximian.com>
32260         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
32261         line number table in this data blob instead of using an external
32262         pointer.
32264 2002-12-28  Martin Baulig  <martin@ximian.com>
32266         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
32268 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
32270         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
32271         as a boxed return type.
32273 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
32275         * appdomain.c
32276         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
32277         g_build_filename to properly get separators on the filename created.
32279         * object.h: Small change, introduce MonoMarshalByRefObject to
32280         track the layout of that structure in the C# universe as we make
32281         changes there.
32283 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
32285         * object.c: removed assert to allow static fields on interfaces.
32286         * loader.c: a TypeSpec may be used for any type, not just arrays.
32288 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
32290         * class.c, class.h: added mono_class_array_element_size ().
32291         Ignore static methods in interfaces.
32293 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32295         * threads.c: fixed the build under cygwin.
32297 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
32299         * reflection.c: handle nullref constants. Allocate keys for
32300         reflection handles with the GC.
32302 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32304         * threads.c, threads.h: added mono_thread_get_abort_signal()
32305         to get a suitable signal for thread abort.
32307 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
32309         * metadata.c: fix handling of ExportedType table.
32311 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32313         * icall.c: added WriteWindowsDebugString internal call.
32315 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32317         * reflection.h: added fields to match C# implementation.
32319 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32321         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
32323 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
32325         * gc.h, gc-internal.h: Rename header for GC internal calls to
32326         gc-internal.h from gc.h as to not clash with Boehm GC having its
32327         header installed as <gc.h> in outside include paths.
32328         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
32329         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
32331 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32333         * icall.c: assign minor, build and revision in FillName.
32335 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
32337         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
32338         Added support for running code generated by Reflection.Emit.
32340 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32342         * appdomain.c: check for NULL argument in LoadFrom.
32344 2002-12-10  Dick Porter  <dick@ximian.com>
32346         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
32348 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32350         * appdomain.c: fix buglet when building exe file name.  Handle full
32351         assembly name (needed after latest changes to AssemblyName).
32352         * image.c:
32353         (mono_image_close): free some hashtables.
32355 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
32357         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
32358         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
32359         on some systems (redhat 7.3) 
32361 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
32363         * threads.c: delete the critical section of a sync block,
32364         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
32366 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
32368         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
32370 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32372         * appdomain.[ch]: handle the assembly preload event to try loading the
32373         assemblies using the paths we have in the current domain.
32375         * assembly.[ch]: created an assembly preload hook that is called to try
32376         loading the assembly by other means that the ones provided here.
32378         * domain.c: initialize the domain search path.
32380         From now on, assemblies (TODO: except corlib and System) are loaded
32381         according to these rules when using mono_assembly_load ():
32383                 1. It tries to load the assembly from the ApplicationBase
32384                 of the current domain appending .dll and .exe (TODO: have to
32385                 try loading from name/name.dll and name/name.exe).
32387                 2. It tries the search path specified in PrivateBinPath for the
32388                 current domain (if any).
32390                 3. Previous behavior.
32392 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
32394         * icall.c: implemented GetInterfaceMap() related icall.
32395         * domain.c, loader.h: load MethodInfo in mono_defaults.
32397 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
32399         * gc.c: disable the finalizer thread for now, untill all the issues
32400         with it are resolved.
32402 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
32404         * string-icalls.c: handle embedded nulls in string ctor when the
32405         length is specified.
32407 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
32409         * class.c: look for explicit interface implementation in parent
32410         classes, too.
32412 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
32414         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
32416 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
32418         * gc.c: protect handles with a critical section.
32420 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32422         * icall.c:
32423         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
32424         parameters. If no assembly specified, try getting the type from all
32425         the assemblies in the current domain, else, load the assembly and get
32426         the type from it.
32428 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32430         * marshal.c: applied patch from Aleksey Demakov that fixes
32431         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
32433 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32435         * icall.c: fixed get_location.
32437 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
32439         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
32440         declarations to make it work with older gcc. 
32442         * loader.c (mono_get_method): set signature->pinvoke for native calls
32444 2002-11-20  Dick Porter  <dick@ximian.com>
32446         * threads.c (mono_thread_init): Set the main thread's handle
32448 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
32450         * gc.c: allow compilation without GC support. Changed to match the
32451         mono coding style.
32453 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
32455         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
32457 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
32459         * reflection.c: set a public key token on the core assemblies.
32461 2002-11-18  Dick Porter  <dick@ximian.com>
32463         * threads.c: Split out some thread initialisation so that other
32464         files can set the start callback function.
32466         * gc.c: Run finalisers in a separate thread, to avoid stack
32467         overflow.  Fixes bug 31333.
32469         * appdomain.c: Set up GC finalisation thread.
32471         * reflection.c: 
32472         * object.c: 
32473         * domain.c: Use gc.h macros for GC_malloc
32474         
32475 2002-11-15  Dick Porter  <dick@ximian.com>
32477         * threadpool.c: 
32478         * threads.c:
32479         * appdomain.c: Removed mono_runtime_init_with_attach(),
32480         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
32481         merging the extra parameter with the existing function.  Removed
32482         unneeded code in mono_thread_attach().
32484 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
32486         * image.c (mono_image_loaded_by_guid): a method to get loaded
32487         images by guid. 
32488         (load_metadata_ptrs): we store the guid as string.
32490 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
32492         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
32494         * metadata.c (mono_guid_to_string): imported method form Zoltan
32495         Varga (slightly modified)
32497         * assembly.c (mono_assembly_open): load precompiled code
32499         * loader.h (MonoMethod): we store the method token for use in the
32500         aot compiler. 
32502 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32504         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
32505         the hook function called when an assembly is loaded.
32506         
32507         * domain.c: Modified file.
32508         (mono_domain_assembly_load): removed hash table insertion of assemblies.
32510         Fixes bug #33196.
32512 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
32514         * reflection.c: Map PEFileKind to the value expected by the WinNT
32515         image loader. 
32517 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32519         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
32520         Read until the buffer is filled completely.
32522 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32524         * icall.c: implemented MonoType.InternalGetEvent ().
32526 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32528         * appdomain.c: implemented InitAppDomainSetup. Delayed
32529         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
32530         the entry_assembly.
32532         * assembly.c: base_dir is now an absolute path ending with
32533         G_DIR_SEPARATOR.
32535         * icall.c: modified get_location according to the above changes.
32537         * object.c: init AppDomain.SetupInformation for the default domain after
32538         we have the entry assembly.
32540         * domain.c: when unloading a domain, setup = NULL.
32542 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
32544         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
32546 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
32548         * object.h, object.c: introduced mono_object_get_virtual_method ()
32549         to lookup the method invoked on an object when a callvirt is done on
32550         a method.
32551         * icall.c: make MethodInfo::Invoke() always do a virtual call.
32553 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32555         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
32556         current domain when loaded an assembly and failed to load it.
32558         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
32560 2002-10-31  Dick Porter  <dick@ximian.com>
32562         * icall.c: 
32563         * file-io.h: 
32564         * file-io.c: Return the error status in a parameter, as the
32565         GetLastError() value has long since been blown away if we try and
32566         look it up in a subsequent internal call invocation.  Delete the
32567         GetLastError() internal call, because it's useless.
32569 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
32571         * class.[ch]: added cast_class to fix bug 29517
32573 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
32575         * marshal.c: create valid IL code in the filter clause:
32576         the new JIT is less forgiving:-)
32578 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32580         * icall.c: removed get_property internal call.
32582 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
32584         * appdomain.h domain.c: Added an ID to appdomains.
32585         
32586         * threads.c threads.h icall.c: Implement icall
32587         Thread:GetDomainID(), and remove unused icall 
32588         CurrentThreadDomain_internal.
32590 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32592         * icall.c: Don't recurse through the base types in GetConstructor.
32593         Fixes bug #32063. 
32595 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
32597         * mempool.h, mempool.c: added mono_mempool_empty() and
32598         mono_mempool_stats().
32600 2002-10-23  Dick Porter  <dick@ximian.com>
32602         * file-io.c: 
32603         * file-io.h: 
32604         * icall.c: Added MonoIO.GetFileType internal call
32606 2002-10-17  Dick Porter  <dick@ximian.com>
32608         * appdomain.c (mono_runtime_cleanup): Don't signal the async
32609         delegate semaphore before waiting for all threads to finish,
32610         because new threads can also call async delegates.  Fixes bug
32611         32004.
32613         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
32614         of 3 seconds, in case another async job is queued.  (This part is
32615         needed because the bug fix reintroduced the 3s exit lag.)  This
32616         makes the mono_runtime_shutdown flag superfluous.
32618 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
32620         * reflection.c: include ehader size in method section headers.
32621         Really check for suplicated modules entries.
32623 2002-10-17  Martin Baulig  <martin@gnome.org>
32625         * debug-mono-symfile.c: Added back support for locals.
32627 2002-10-14  Martin Baulig  <martin@gnome.org>
32629         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
32630         MONO_TYPE_VOID.
32632 2002-10-14  Martin Baulig  <martin@gnome.org>
32634         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
32635         mono_class_get() instead of looking in the class cache. 
32637 2002-10-13  Martin Baulig  <martin@gnome.org>
32639         * debug-mono-symfile.c: Set version number to 28, include the
32640         signature in method names.
32642 2002-10-13  Martin Baulig  <martin@gnome.org>
32644         * debug-mono-symfile.h: Set version number to 27.
32646 2002-10-11  Martin Baulig  <martin@gnome.org>
32648         * gc.c: Don't register/unregister NULL pointers as disappearing links.
32650 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
32652         * metadata.c, metadata.h: added helper function to allocate signatures.
32654 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32656         * icall.c: added internal call to get the location of machine.config.
32658 2002-10-08  Martin Baulig  <martin@gnome.org>
32660         * debug-mono-symfile.c: Ignore classes with a pending init for the
32661         moment.
32663 2002-10-03  Dick Porter  <dick@ximian.com>
32665         * threads.c: Freebsd pthread_t is a pointer
32667 2002-10-03  Dick Porter  <dick@ximian.com>
32669         * socket-io.c: Implemented GetHostName_internal
32671 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32673         * mono-config.c:
32674         (mono_config_parse_file): don't leak the text.
32676 2002-10-02  Martin Baulig  <martin@gnome.org>
32678         * debug-mono-symfile.c: Added support for methods.
32680 2002-10-01  Martin Baulig  <martin@gnome.org>
32682         * debug-mono-symfile.c: Don't emit methods and line numbers for
32683         the dynamic symbol file, just write the type table.  We can easily
32684         have an external helper program which creates a symbol file for an
32685         IL file.        
32687 2002-10-01  Dick Porter  <dick@ximian.com>
32689         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
32690         Only add the handle to the cleanup array when we're about to
32691         launch the thread.  Bug 31425 deadlocked when the test was run on
32692         mono under w32.
32694 2002-10-01  Martin Baulig  <martin@gnome.org>
32696         * debug-mono-symfile.c: Added support for properties.
32698 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
32700         * reflection.c: unaligned store fix from Mark Crichton
32701         <crichton@gimp.org>.
32703 2002-09-27  Martin Baulig  <martin@gnome.org>
32705         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
32706         New interncall.
32708 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
32710         * assembly.h, assembly.c: use a sane API to hook into the assembly
32711         loading process instead of a useless special-purpouse hack
32712         (ngen needs a hook, too, for example).
32714 2002-09-27  Dick Porter  <dick@ximian.com>
32716         * threads.c (mono_thread_init): Call GetCurrentProcess() so
32717         io-layer can set up some process handle info.  Not needed on w32,
32718         but doesn't hurt either.
32720         * process.c: Pass the program name in the second parameter to
32721         CreateProcess, so the path is searched.  Include the working
32722         directory. Implemented process name, process enumeration, and some
32723         process detail internal calls.
32724         
32725         * icall.c: Added internal calls for process lookup, and some
32726         process details
32728 2002-09-26  Martin Baulig  <martin@gnome.org>
32730         * assembly.c (mono_install_open_assembly_hook): New global
32731         function to install a function to be invoked each time a new
32732         assembly is loaded.
32733         (mono_assembly_open): Run this callback function if set.
32735         * debug-mono-symfile.c: Put back line numbers for the dynamic
32736         symbol file and also record the .il file as source file.  This
32737         allows us to install the temporary symbol file as `file.dbg' just
32738         like a compiler-generated one.
32740 2002-09-26  Nick Zigarovich <nick@chemlab.org>
32742         * Corrected typo in gc.c (BOHEM vs BOEHM).
32744 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32746         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
32747         GetProperties. Also avoid calling g_slist_length in GetProperties and
32748         GetMethods.
32750 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
32752         * reflection.c: avoid unaligned stores (bug spotted by
32753         Mark Crichton  <crichton@gimp.org>).
32755 2002-09-25  Martin Baulig  <martin@gnome.org>
32757         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
32758         instead of guint64 for addresses and added prologue/epilogue info.
32760 2002-09-25  Martin Baulig  <martin@gnome.org>
32762         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
32763         store line number info.  For the dynamic symbol file, we only need
32764         to provide the JIT generated dynamic line number info for the dynamic
32765         symbol file.
32767 2002-09-25  Martin Baulig  <martin@gnome.org>
32769         * debug-mono-symfile.h: Incremented version number.
32771 2002-09-24  Martin Baulig  <martin@gnome.org>
32773         * class.c (mono_debugger_class_init_func): New global function
32774         pointer variable.
32775         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
32776         call it.
32778         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
32779         function.  This is called via the mono_debugger_class_init_func
32780         hook to add all types to the dynamic type table.
32781         (ves_icall_MonoDebugger_GetType): New interncall to get a class
32782         from its metadata token.
32784         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
32785         New interncall for the debugger.
32787 2002-09-24  Nick Drochak <ndrochak@gol.com>
32789         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
32790         before using it in case it is null.
32791         
32792 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
32794         * metadata.c: allow custom modifiers in local var signatures
32795         (bug spotted by Zoltan Varga).
32797 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
32799         * class.c: deal with the <Module> class that may have a NULL vtable.
32800         Eliminate warnings.
32802 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32804         * image.c, image.h: more strong name helpers.
32805         * monosn.c: more work: convert pem keys to cryptoapi format.
32807 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
32809         * string-icalls.c: speedup IndexOf.
32811 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32813         * icall.c: updates from Zoltan.2.Varga@nokia.com.
32815 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
32817         * icall.c: cleanup: use mono_object_domain ().
32819 2002-09-23  Martin Baulig  <martin@gnome.org>
32821         * debug-mono-symfile.c: Improved type support.
32823 2002-09-22  Martin Baulig  <martin@gnome.org>
32825         * debug-mono-symfile.c: Added support for reference types and strings.
32827 2002-09-22  Martin Baulig  <martin@gnome.org>
32829         * debug-mono-symfile.c: Started to work on the type table.
32831 2002-09-21  Martin Baulig  <martin@gnome.org>
32833         * debug-mono-symfile.c: Largely reworked the symbol table format.
32834         The symbol table is now incrementally updated each time a new
32835         method is added.  We're now also using our own magic and version
32836         so that you don't need to recompile all your classes if the
32837         dynamic table changes.
32838         (mono_debug_update_mono_symbol_file): Removed.
32839         (mono_debug_symfile_add_method): New function to add a method.
32841 2002-09-21  Martin Baulig  <martin@gnome.org>
32843         * icall.c
32844         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
32845         New interncall.
32847         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
32848         New interncall to get a method from its metadata token.
32850 2002-09-21  Martin Baulig  <martin@gnome.org>
32852         * debug-mono-symfile.c: Create type table.
32854 2002-09-20  Martin Baulig  <martin@gnome.org>
32856         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
32858 2002-09-20  Martin Baulig  <martin@gnome.org>
32860         * debug-mono-symfile.c: Provide information about params and locals.
32862 2002-09-20  Martin Baulig  <martin@gnome.org>
32864         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
32865         New interncall.
32867         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
32868         interncall to get a method from its metadata token.
32870 2002-09-20  Martin Baulig  <martin@gnome.org>
32872         * debug-mono-symfile.c: Added a few checks for method->header
32873         being non-NULL.  This should never happen, but for the moment
32874         let's use a g_warning() rather than a g_assert().
32876 2002-09-19  Mark Crichton  <crichton@gimp.org>
32878         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
32879         even if support for it isn't present.  Added an #ifdef to fix this.
32881         * socket-io.c: Added checks back for Solaris support.
32883 2002-09-19  Martin Baulig  <martin@gnome.org>
32885         * debug-mono-symfile.c (read_string, write_string): Reflect latest
32886         changes in the symbol file format.
32888 2002-09-18  Martin Baulig  <martin@gnome.org>
32890         * debug-mono-symfile.c: Set version number to 21.
32892 2002-09-18  Dick Porter  <dick@ximian.com>
32894         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
32895         on netbsd.  Fixes bug 30051.
32897 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32899         * reflection.c:
32900         (set_version_from_string): little fix.
32902 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32904         * monosn.c, Makefile.am: added strong name utility.
32905         * reflection.h, reflection.c: implemented delayed signing,
32906         locale, version and hash id assembly attributes.
32908 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
32910         * loader.c, metadata.c: load param attributes in signatures.
32912 2002-09-16  Martin Baulig  <martin@gnome.org>
32914         * debug-mono-symfile.c: Added string table with all method names.
32916 2002-09-14  Martin Baulig  <martin@gnome.org>
32918         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
32919         fast method lookup.
32921 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32923         * reflection.c: record the public key token of referenced assemblies.
32925 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
32927         * image.c, image.h: added functions to get the strong name and the
32928         public key of an assembly.
32929         * pedump.c: use them.
32931 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
32933         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
32935 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
32937         * marshal.c (mono_marshal_get_managed_wrapper): Added
32938         MONO_TYPE_BOOLEAN 
32940 2002-09-11  Martin Baulig  <martin@gnome.org>
32942         * gc.c: Call GC_unregister_disappearing_link() on all links when
32943         finalizing them, this is necessary to aviod a crash in boehm's
32944         finalize handler.
32946 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
32948         * gc.c: handle GetTarget for finalized objects spotted and fixed by
32949         nick@chemlab.org.
32951 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
32953         * icall.c: implemented MonoType::Module.
32954         * reflection.c, reflection.h: mono_module_get_object () from
32955         Tomi Pakarinen <tomi.pakarinen@welho.com>.
32957 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
32959         * icall.c: ignore overridden methods in GetMethods ().
32960         Fix for FieldInfo::SetValue().
32961         * object.c: handle float/double in runtime invoke.
32963 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
32965         * object.c: allow a constructor to be called again on an object.
32967 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
32969         * class.h, class.c: move field layout code to it's own function and
32970         export it. Get an interface id earlier. Move fields in MonoClass
32971         so they are more cache friendly and align the bitfields.
32972         * loader.c: temporary handle get_param_names() for a runtime method.
32973         * reflection.c, reflection.h: more code to handle runtime creation of
32974         types.
32976 2002-09-09  Martin Baulig  <martin@gnome.org>
32978         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
32979         signature with the pinvoke field being set for the actual call.
32981 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
32983         * icall.c: removed some unused icalls. Start of map of glib charsets
32984         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
32986 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
32988         * debug-helpers.c: break infinite loop (found and fixed by
32989         Holger Arnold <harnold@gmx.de>).
32991 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
32993         * icall.c: target may be null in create_delegate.
32995 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
32997         * marshal.c: handle a boolean return type.
32999 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33001         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
33003 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33005         * gc.c: fix weakreferences.
33007 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33009         * icall.c: added icall to get default codepage.
33011 2002-09-03  Dick Porter  <dick@ximian.com>
33013         * threads.h: 
33014         * threads.c: Use MonoThread instead of MonoObject where
33015         apropriate.
33017         Store running thread objects in a hash table, so that we have all
33018         the info to hand when waiting for them to finish
33019         (means we don't need OpenThread() any more, so mingw builds should
33020         be fully functional again.)
33022         * verify.c:
33023         * object.h: Added thread ID to MonoThread
33025 2002-09-03  Martin Baulig  <martin@gnome.org>
33027         * icall.c (System.Reflection.Assembly::get_location): New interncall.
33029 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33031         * icall.c: fixed leak in get_temp_path. Thanks lupus.
33033 2002-09-03  Martin Baulig  <martin@gnome.org>
33035         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
33036         argument to store the end address of the disassembled instruction.
33038         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
33039         here from debug-symfile.h.
33040         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
33041         JIT into this struct.
33042         (MonoSymbolFile): Added `char *image_file' field.
33043         (MonoDebugGetMethodFunc): Removed.
33044         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
33045         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
33046         (mono_debug_find_method): New method.
33048         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
33049         create a full symbol file.
33050         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
33051         and static symbol files.
33052         (mono_debug_find_method): The symbol file keeps an internal method hash,
33053         call this to get a MonoDebugMethodInfo from a MonoMethod.
33055         * debug-symfile.[ch]: Removed.
33057 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
33059         * image.c (do_mono_image_open): Remove linker version check.
33061 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
33063         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
33064         wrappers for instance methods.
33065         
33066 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33068         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
33070 2002-08-28  Dick Porter  <dick@ximian.com>
33072         * Makefile.am: Export HOST_CC for w32 builds
33074 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33076         * file-io.c process.c: MonoString are null terminated, no
33077         need for mono_string_to_utf16() anymore.
33079 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33081         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
33083 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
33085         * icall.c, reflection.h: speedup System.MonoType.
33087 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
33089         * reflection.c: allow null as the value of a string argument in
33090         custom attributes constructors.
33092 2002-08-27  Martin Baulig  <martin@gnome.org>
33094         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
33095         `trampoline_address' field.
33097 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
33099         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
33100         check (fixes bug #29486) 
33102 2002-08-27  Martin Baulig  <martin@gnome.org>
33104         * debug-mono-symfile.c: Changed the file format in a way that allows us
33105         open it read-only and to use a specially malloced area for all the
33106         dynamic data.  We can now also generate a symbol file on-the-fly if we're
33107         debugging IL code and there is no MCS generated symbol file for it.
33109 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33111         * object.c: added a define for a good string and array
33112         creation speedup (not enabled by default because we need to deal with
33113         the synch stuff).
33115 2002-08-26  Martin Baulig  <martin@gnome.org>
33117         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
33118         function to create a dynamic symbol file.  This is used by the
33119         debugger to create a symbol file for IL code on-the-fly.
33121 2002-08-26  Martin Baulig  <martin@gnome.org>
33123         * loader.c (mono_lookup_pinvoke_call): Include the error message
33124         from g_module_error() in the error message.
33126 2002-08-24  Martin Baulig  <martin@gnome.org>
33128         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
33129         function to update the symbol file.  The symbol file is mmap()ed
33130         writable, but private.  This allows us to install the symbol file
33131         together with the assembly.
33133 2002-08-24  Martin Baulig  <martin@gnome.org>
33135         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
33136         but they can read the new symbol file format which mcs is now creating.
33138         * debug-symfile.c (mono_debug_find_source_location): Moved to
33139         debug-mono-symfile.c; this is now operating on the new symbol file.
33141 2002-08-23  Martin Baulig  <martin@gnome.org>
33143         * debug-helpers.c (mono_method_desc_from_method): New function to get
33144         a MonoMethodDesc from a MonoMethod.
33146 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
33148         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
33149         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
33151 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33153         * string-icalls.[ch]: make helper methods static.
33155 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33157         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
33158         types to it and to SetValueInternal.
33160         * object.c: Moved handle_enum label to its proper place. This was the
33161         f... bug! ;-)
33163         This time i compiled mcs and gtk-sharp and they both work.
33165 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33167         * icall.c: reverted partially my previous patch until 
33168         object.c:set_value handles enums correcly.
33170 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33172         * icall.c:
33173         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
33174         (ves_icall_System_Environment_get_MachineName): removed warning when
33175         compiling under cygwin.
33177 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33179         * object.c: fixed field_get_value() for reference types.
33181 2002-08-22  Dick Porter  <dick@ximian.com>
33183         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
33184         Don't free a buffer while it's still needed.  Patch from Jonathan
33185         Liger <Jonathan.liger@wanadoo.fr>
33187 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
33189         * icall.c (ves_icall_System_Environment_get_Platform): Add new
33190         internal call.
33192 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
33194         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
33195         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
33197         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
33198         we call unmanaged code which throws exceptions.
33200 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33202         * appdomain.h: added per-domain entry_assembly.
33203         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
33204         arguments.
33205         * icall.c: Assembly::GetEntryAssembly icall.
33206         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
33207         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
33209 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33211         * appdomain.h, gc.c: added mono_domain_finalize ().
33213 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33215         * object.c:
33216         (mono_print_unhandled_exception): changed g_warning by g_printerr
33217         because g_log has a 1024 characters limit (yeah, i got a big stack
33218         trace). Don't print exception name, that should be in ToString 
33219         returned string.
33221 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33223         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
33224         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
33226 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33228         * object.c:
33229         (mono_print_unhandled_exception): after previous commit, i realized
33230         that MS calls ToString on the exception. I changed this function to
33231         do that. This way we get stack_trace for free.
33233 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33235         * object.c:
33236         (mono_print_unhandled_exception): invoke Message property instead of
33237         getting 'message' field from Exception. Don't allocate memory for
33238         'trace' and 'message' if not needed.
33240 2002-08-18  Dick Porter  <dick@ximian.com>
33242         * unicode.c: Fix asserts to match Encoder.cs checks
33244 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33246         * marshal.c: fix unaligned store issue and a few wrong
33247         opcode argument types.
33249 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33251         * icall.c: added GetUninitializedObjectInternal internal call.
33253 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
33255         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
33256         to the right domain.
33258 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
33260         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
33262         * class.c (class_compute_field_layout): set blittable to false for Strings
33264         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
33266 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33268         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
33269         first chunk of code to create types at runtime. Code to
33270         handle ReflectedType/DeclaringType. Make reflection handles
33271         domain specific.
33273 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
33275         * class.c: set correct name in arrays.
33277 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
33279         * appdomain.c (mono_domain_transfer_object): make it work with
33280         valuetypes. bug fixes.
33282 2002-08-12  Dick Porter  <dick@ximian.com>
33284         * object.h: Rename some parameters to avoid c++ keywords (Patch
33285         from Joseph Wenninger <kde@jowenn.at>)
33287 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
33289         * icall.c: added icall to implement Assembly.GetFile*.
33291 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33293         * reflection.h, reflection.c: code to embed managed resources.
33295 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
33297         * class.c: move all the type size stuff into
33298         class_compute_field_layout().
33300 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
33302         * class.c: ensure enums have always the correct instance size.
33303         * unicode.c: remove wrong assert.
33305 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33307         * assembly.c: fix mem corruption issue.
33308         * image.h, image.c: added mono_image_get_resource () to access
33309         managed resources.
33310         * icall.c: implemented Assembly.EntryPoint property and some
33311         Managed Resources related internalcalls.
33314 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33316         * image.c, image.h: impemented mono_image_get_entry_point ().
33317         * appdomain.c: use mono_image_get_entry_point.
33319 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33321         * reflection.c: support the object type argument when loading
33322         custom attributes.
33324 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
33326         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
33327         String as return type.
33329 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
33331         * reflection.c: fix encoding of named args for custom attrs to match
33332         the ms implementation. Read them back when instantiating custom
33333         attributes.
33335 2002-08-02  Radek Doulik  <rodo@ximian.com>
33337         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
33338         by Dietmar as quick fix
33339         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
33340         16 as stack size, used on more places as quick fix before Dietmar
33341         will fix it properly
33343 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
33345         * object.h, object.c: added accessors for fields and properties.
33347 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
33349         * class.c, class.h: made mono_class_get_field_from_name ()
33350         loop on parent types.
33351         Added mono_class_get_property_from_name ().
33353 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33355         * class.c, class.h: move the code to setup the type vtable in its own
33356         function so that it can be reused also for types created at runtime.
33357         Eliminate the "class" identifier from the header file.
33358         * reflection.c: setup the vtable for enums so that we can create
33359         objects for use in SetConstant ().
33361 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
33363         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
33364         instead of the delegate itself as this pointer (bug #28383)
33366 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
33368         * marshal.c (mono_marshal_get_managed_wrapper): added return type
33369         conversions.
33371 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33373         * loader.c: don't set the pinvoke bit on icalls.
33375 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
33377         * debug-helpers.c (mono_method_full_name): only print a number to
33378         indicate wrapper type (so that the output is more readable in traces).
33380 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
33382         * class.c (mono_class_init): include method override patch from Paolo
33384 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
33386         * icall.c: fixed GetTypeCode().
33388 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
33390         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
33391         use real delegate invoke function to make it work with multicast
33392         delegates (fix bug# 28291).
33394 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33396         * object.c: load constant strings.
33398 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33400         * reflection.c: no magic numbers.
33401         * tabledefs.h: security action enum.
33403 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33405         * assembly.c: fix possible memory corruption.
33407 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33409         * reflection.h, reflection.c: added support for linking resources.
33410         * verify.c: check we have an updated corlib.
33412 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
33414         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
33415         string arrays.
33416         (mono_marshal_string_array): null terminate unmanaged string arrays.
33417         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
33419 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33421         * icall.c: Type.GetType () can now return also types from the
33422         calling assembly.
33424 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33426         * loader.h, loader.c: stack walking support.
33427         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
33428         GetCallingAssembly.
33430 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
33432         * marshal.c: added optimisations for blittable types 
33434         * class.c (mono_array_class_get): do not set blittable attribute on arrays
33435         (mono_class_setup_mono_type): set blittable attribute for single
33436         and double.
33438         * marshal.c (mono_string_utf8_to_builder): impl.
33439         (mono_string_builder_to_utf8): impl.
33440         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
33442 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
33444         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
33445         (mono_marshal_get_managed_wrapper): impl. byref types
33447 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33449         * icall.c:
33450         (search_method): don't display debug message. 
33452 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33454         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
33456 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
33458         * appdomain.c: set the missing filename when throwing exception.
33460 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
33462         * metadata.c (mono_type_size): code cleanup
33463         (mono_type_stack_size): removed some test code
33465 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
33467         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
33468         mono_get_exception_file_not_found now.
33470         * exception.c (mono_exception_from_name_two_strings): New version
33471         that will call a constructor with two string arguments. 
33472         (mono_get_exception_file_not_found): New helper routine, used to
33473         report file-not-found errors.
33475 2002-07-20  Dick Porter  <dick@ximian.com>
33477         * process.h:
33478         * process.c: Pass file handles to CreateProcess
33479         
33480         * icall.c:
33481         * file-io.h:
33482         * file-io.c: Implemented CreatePipe
33484 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33486         * metadata.c (mono_get_param_info): set alignment for value types
33488 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
33490         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
33491         Constify mono_domain_assembly_open().
33492         * loader.c: handle null namespace in icalls.
33494 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
33496         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
33497         (emit_str_to_ptr_conv): marshal object as structs
33499         * metadata.c (mono_type_to_unmanaged): marshal object as structs
33501         * marshal.c (mono_marshal_get_runtime_invoke): support value types
33503 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
33505         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
33506         (mono_marshal_get_native_wrapper): we an now return value types
33508 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33510         * verify.c: more checks implemented.
33512 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
33514         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
33515         (fix bug #27695)
33516         (mono_marshal_get_native_wrapper): allow byref arguments
33517         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
33518         impl. PtrToStringXXX methods
33519         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
33520         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
33521         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
33522         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
33523         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
33525 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33527         * reflection.c: fix buglet in parsing an assembly name.
33529 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33531         * marshal.c (emit_ptr_to_str_conv): first impl.
33533 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33535         * object.c, class.h: cache the vtable in the class as suggested by
33536         vargaz@freemail.hu (Zoltan Varga).
33538 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33540         * class.h, loader.c: added mono_field_from_token().
33541         * verify.c: first cut of type checking code.
33543 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
33545         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
33547 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
33549         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
33550         (fix bug #27782)
33551         (mono_marshal_get_remoting_invoke): impl.
33552         (mono_delegate_begin_invoke): impl.
33553         (mono_mb_emit_save_args): impl.
33554         (mono_delegate_end_invoke): impl.
33555         (mono_marshal_get_delegate_begin_invoke):
33556         (mono_marshal_get_delegate_end_invoke):
33557         (mono_marshal_get_delegate_invoke): generate a special name for
33558         those methods (including the signature) and associate them whith
33559         the delegate class. 
33561 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
33563         * reflection.[ch]: 
33564         (mono_reflection_type_from_name): now it has a MonoImage parameter
33565         which is used as the default image to search the type in. If the image
33566         is NULL or getting the type from it fails, it defaults to corlib.
33568         * icall.c: changed 1 call to mono_reflection_type_from_name to match
33569         new parameter.
33571 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33573         * reflection.c: update the parameter table index.
33575 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33577         * domain.c: don't include the mark byte in the string hash.
33579 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33581         * icall.cs: icall for Type.GetTypeCode ().
33582         * verify: a couple of fixes and disabled local initialization checks.
33584 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
33586         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
33588         * debug-helpers.c (mono_method_full_name): print the type of the
33589         runtime wrapper
33591         * metadata.c (mono_signature_hash): a hash function for signatures
33592         (mono_signature_hash): better hash algorithm
33594         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
33596         * debug-helpers.c (mono_method_full_name): this can now generate
33597         method names with signatures
33599         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
33600         method dont have this pointers.
33602 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
33604         * reflection.c: fixup typebuilder tokens.
33605         * image.c: fix buglet.
33606         * marshal.h: remove whitespace.
33607         * metadata.h, metadata.c: reinstate code that was removed.
33608         * verify.c: handle catch directives and fix another couple of bugs.
33610 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
33612         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
33613         (mono_marshal_get_native_wrapper): make it comp. with the old code
33614         (mono_marshal_get_native_wrapper): support boolean
33615         (mono_marshal_get_managed_wrapper): support more types
33617 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
33619         * class.c (class_compute_field_layout): compute class->blittable attribute.
33621 2002-07-09  Dick Porter  <dick@ximian.com>
33623         * threads.c: Make the thread cleaning up cope with threads that
33624         call ExitThread()
33626 2002-07-08  Radek Doulik  <rodo@ximian.com>
33628         * reflection.c (method_encode_code): use non-translated values to
33629         compute finally_start, this fixes exception handling on ppc, yay!
33631         * decimal.h (struct signscale): fix endianess
33633 2002-07-07  Radek Doulik  <rodo@ximian.com>
33635         * reflection.c: swap box_val and not val
33637 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
33639         * reflection.c, reflection.h: handle full assembly info in type name.
33640         Handle Type arguments when loading custom attributes.
33641         * icall.c: updated to use new mono_reflection_type_from_name () method.
33643 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33645         * loader.c:
33646         (method_from_memberref): also print assembly name when method not found.
33648 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33650         * icall.c:
33651         (ves_icall_TypeGetProperties): fixed bug #27473. 
33653 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33655         * reflection.c: display image name and token when cannot find the
33656         .ctor for an attribute.
33658 2002-07-05  Martin Baulig  <martin@gnome.org>
33660         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33662 2002-07-04  Dick Porter  <dick@ximian.com>
33664         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
33665         compile on mingw.  This will cause mingw builds to not wait for
33666         subthreads to terminate after the main thread does.  I've lodged a
33667         bug with the mingw developers for them to wrap OpenThread().
33669 2002-07-03  Dick Porter  <dick@ximian.com>
33671         * threads.c: Store thread IDs instead of handles, because
33672         GetCurrentThread() returns a pseudohandle and therefore stores
33673         useless values.  mono_thread_cleanup() continues checking the
33674         array of threads until it is empty, to cope with subthreads
33675         spawning new threads after the main thread has finished.
33677         * profiler.h:
33678         * profiler.c:
33679         * profiler-private.h: Pass the thread ID to thread profiler
33680         functions, instead of a handle
33682 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
33684         * verify.c: fixes to make it more usable.
33685         * pedump.c: added --verify code to verify IL code in an assembly.
33687 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33689         * reflection.c: turn errors into warnings to allow compiling corlib.
33691 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
33693         * reflection.c: add special cases to compile corlib.
33695 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33697         * reflection.c: handle properties with only a set method.
33699 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
33701         * opcodes.h: add enum with opcodes in opval order.
33703 2002-07-01  Dick Porter  <dick@ximian.com>
33704         
33705         * object.h:
33706         * object.c (mono_runtime_run_main): Removed unneeded argument
33708 2002-06-28  Martin Baulig  <martin@gnome.org>
33710         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
33712 2002-06-27  Dick Porter  <dick@ximian.com>
33714         * threads.c: Store the handle in both the parent thread and in the
33715         subthread, to minimise the time between starting a new thread and
33716         storing its ID.
33718 2002-06-26  Dick Porter  <dick@ximian.com>
33720         * appdomain.c (mono_runtime_cleanup): Close the socket library
33721         after all the threads have finished, not before
33723 2002-06-26  Martin Baulig  <martin@gnome.org>
33725         * debug-symfile.c (mono_debug_find_source_location): Added
33726         `guint32 *line_number' argument.  If it's not NULL, store the line number
33727         there and return the file name without the line number.
33729 2002-06-25  Dick Porter  <dick@ximian.com>
33731         * icall.c:
33732         * process.h:
33733         * process.c: Process forking and other support functions
33735 2002-06-25  Dick Porter  <dick@ximian.com>
33737         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
33738         things dont happen when the image is closed.
33739         (mono_image_lookup_resource): Walk the resource section looking
33740         for a particular entry
33742         * cil-coff.h: PE resource section decoding
33744 2002-06-25  Dick Porter  <dick@ximian.com>
33745         
33746         * assembly.h:
33747         * assembly.c: 
33748         (mono_assembly_foreach): Accessor functions to walk the list of
33749         loaded assemblies
33750         (mono_assembly_set_main):
33751         (mono_assembly_get_main): Process methods need to know which
33752         assembly is the "main" one
33754         * object.c (mono_runtime_run_main): Record the main assembly
33756         * debug-helpers.c: Fix typo
33758 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
33760         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
33761         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
33763 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33765         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
33767 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
33769         * image.c (do_mono_image_open): Initialize reference count,
33770         otherwise we leak the MonoImage.
33772 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33774         * reflection.c: small tweak to handle self-hosting.
33776 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
33778         * reflection.c: fix type name parse code.
33780 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33782         * reflection.c: break out of the loop.
33783         * image.c: special case corlib.
33785 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33787         * reflection.c: add all the custom attrs at the end to ensure the
33788         ctors have been properly initialized when the attributes are defined
33789         in the current assembly.
33791 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33793         * reflection.c: handle correctly multiple-nested types.
33795 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33797         * row-indexes.h: fix typos.
33798         * reflection.c: adjust for typos and fix method_def_or_ref
33799         encoding in MethodImpl table.
33801 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33803         * reflection.c: fix entry point patching (thanks Serge!).
33805 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
33807         * verify.c: add check for System.Exception
33809 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
33811         * image.c, class.c: minifix for code just c&p'ed.
33812         * reflection.c: warning fix.
33813         * object.h, loader.h, domain.c: load also StringBuilder.
33815 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
33817         * marshal.h, marshal.c: some support code to handle complex marshaling.
33819 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33821         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
33822         Better signatures with vtable error dump.
33824 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
33826         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
33828 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
33830         * icall.c (ves_icall_Type_GetField): impl.
33832 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33834         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
33835         to retrieve a marshal description blob for a field or param.
33837 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
33839         * reflection.h, reflection.c: change order of nested type emission
33840         to avoid table corruption. The NestedTypes table is sorted.
33841         * icall.c: change order of GetConstructor results to workaround mcs bug.
33843 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
33845         * reflection.h, reflection.c: handle field and param marshal
33846         information.
33848 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
33850         * icall.c, marshal.c marshal.h: more Marshal class implementation.
33852 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33854         * reflection.c: fix call convention.
33856 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33858         * reflection.h, reflection.c: mono_image_get_memberref_token()
33859         takes a type instead of a class, now. Added
33860         mono_image_get_array_token() to create tokens for the special
33861         multi-dim array methods.
33863 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33865         * assembly.c: handle modules (no assembly table). Split
33866         loading references in its own function.
33867         * class.c: handle moduleref resolution scope.
33868         * image.c, image.h: cache module name in image.
33870 2002-06-07  Martin Baulig  <martin@gnome.org>
33872         * reflection.c (mono_image_get_type_info): Only add a class layout entry
33873         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
33875 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33877         * icall.c: more signature fixes that used uint instead of int.
33879 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33881         * reflection.c: fixed signature of field refs.
33883 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
33885         * class.c, reflection.c: handle typerefs of nested types
33886         (both on read and when writing files).
33888 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
33890         * icall.c: fix method signatures that tried to workaround the previous
33891         typo, d'oh!
33893 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
33895         * debug-helpers.c: fix typo.
33897 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
33899         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
33900         rewrote the PE/COFF writing code (our programs are understood by the
33901         ms runtime, now).
33903 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
33905         * gc.c, gc.h, icall.c: weakreference support.
33907 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
33909         * Makefile.am, mono-config.c: use $(sysconfdir).
33911 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
33913         * icall.c: changed default precision of Double.ToString() to 15.
33914         Fixed memory leak. Unified with Single.ToString.
33916 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
33918         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
33920 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
33922         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
33923         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
33924         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
33925         and myself.
33927 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
33929         * debug-symfile.c, sysmath.c: yet more compilation fixes.
33931 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
33933         * reflection.c, socket-io.c: more compilation fixes.
33935 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
33937         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
33938         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
33939         unicode.c: warning and compiler compatibility fixes.
33941 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
33943         * class.h, metadata.c: fixed warnings/compilation errors.
33945 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
33947         * Makefile.am, mono-config.c, mono-config.h: configuration file
33948         support routines.
33949         * loader.c, loader.h: make Dll mapping configurable at runtime in the
33950         config file. Export methods to insert and lookup mappings.
33952 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
33954         * reflection.c: handle types and boxed objects in custom attr
33955         constructors.
33957 2002-05-30  Martin Baulig  <martin@gnome.org>
33959         * debug-symfile.c
33960         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
33962 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
33964         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
33965         to lookup the implmap row for a P/Invoke method.
33966         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
33967         P/Invoke method from the runtime on an as needed basis.
33969 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
33971         * metadata.c (mono_metadata_parse_signature): impl.
33973 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
33975         * class.c: handle .pack directive.
33977 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
33979         * object.c: initialize static fields with RVA data.
33981 2002-05-25  Martin Baulig  <martin@gnome.org>
33983         * debug-symfile.c
33984         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
33986 2002-05-24  Martin Baulig  <martin@gnome.org>
33988         * debug-symfile.c
33989         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
33990         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
33991         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
33993 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
33995         * object.c: special case string ctros in invoke.
33996         * gc.c: silly whitespace changes.
33998 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
34000         * threadpool.[ch]: impl. a threadpool that can
34001         be used by mint and mono.
34003 2002-05-22  Martin Baulig  <martin@gnome.org>
34005         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
34006         The first argument is now a `MonoReflectionModuleBuilder *', the return
34007         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
34008         `methods' field to get the method builder.  The `token' argument is the
34009         unfixed token.
34011         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
34012         invalid characters instead of g_assert_not_reached()ing.  This seems
34013         to be the behaviour of mscorlib.
34015 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
34017         * object.c (mono_runtime_invoke_array): applied patch from Rachel
34018         Hestilow to fix bug #25104
34020 2002-05-21  Martin Baulig  <martin@gnome.org>
34022         * debug-symfile.c (mono_debug_find_source_location): New function.
34023         Looks up an IL offset in the line number table and returns the source
34024         location as a string.
34026 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34028         * icall.c:
34029         (mono_double_ToStringImpl): changed %f by %g until we have something
34030         better.
34032 2002-05-21  Nick Drochak  <ndrochak@gol.com>
34034         * icall.c : Use different name for Math.Pow's icall.  Needed to check
34035         parameters first in C#.
34037 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34039         * icall.c, reflection.h: added icall to get info about an event.
34041 2002-05-20  Radek Doulik  <rodo@ximian.com>
34043         * object.c (mono_value_box): don't use memcpy for boxing on BIG
34044         endian
34045         (mono_value_box): don't use memcpy for small sizes on
34046         architectures with unaligned access
34048 2002-05-20  Martin Baulig  <martin@gnome.org>
34050         * reflection.c (mono_reflection_setup_internal_class): Don't crash
34051         if `tb->parent == NULL'.
34052         (mono_reflection_create_internal_class): New function.  This is
34053         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
34054         for enum types.
34056         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
34057         New interncall.
34059 2002-05-19  Martin Baulig  <martin@gnome.org>
34061         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
34062         argument to get the length, don't default to the array length.
34064 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
34066         * assembly.c (mono_assembly_setrootdir): New function used to
34067         override the MONO_ASSEMBLIES directory.
34069 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34071         * icall.c: ValueType_GetHashCode() initialize local var.
34073 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34075         * reflection.c: sort custom attributes table.
34077 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34079         * reflection.c: support named args in custom attributes (write support).
34081 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34083         * reflection.c: fix finally position calculation.
34085 2002-05-15  Radek Doulik  <rodo@ximian.com>
34087         * reflection.c: fixed endianess at many places
34089         * icall.c (ves_icall_InitializeArray): comment out debug msg
34091 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
34093         * object.c (mono_unhandled_exception): new function to handle
34094         unhandled exceptions.
34095         (mono_unhandled_exception): call the UnhandledException event.
34096         (mono_runtime_delegate_invoke): impl.
34098 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
34100         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
34101         returns the RVA, not the direct pointer to the data. Handle the case
34102         when the class size is fixed.
34104 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34106         * reflection.c: fix some endianess issues.
34108 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
34110         * object.c (mono_runtime_invoke): is now able to catch exceptions.
34112         * threads.c (mono_thread_init): added a callback which is invoked
34113         at thread start.
34115 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34116         
34117         * icall.c: make GetHashCode return non-negative values.
34119 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
34121         * object.c, icall.c, gc.c: revert to address-based hashcode.
34123 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
34125         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
34127 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34129         * icall.c, class.c: special case <Module>.
34131 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
34133         * icall.c: fix bug in GetNow().
34135 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
34137         * object.c (mono_runtime_class_init): make sure that we call all
34138         static class constructors.
34140 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34142         * reflection.c: sort methodsemantics table.
34144 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34146         * reflection.h, reflection.c: honour init locals setting.
34148 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
34150         * icall.c: copied Double ToStringImpl for Single ToStringImpl
34152 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34154         * reflection.c: support ContructorBuilders in attribute blob creation.
34156 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34158         * reflection.c: some changes to build a binary that can be run
34159         directly in windows.
34161 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34163         * loader.c: print a big message when an icall can't be found.
34165 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34167         * string-icalls.c: fix bug 24248.
34169 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34171         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
34172         icall.c, reflection.h: separate assembly loading by pathname and by
34173         assembly name. Use the MONO_PATH env var to search for assemblies.
34175 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34177         * assembly.c, image.h: add some support for assemblies
34178         with multiple modules.
34179         * class.c, class.h: export mono_class_from_typeref().
34180         * loader.c: remove duplicated code and use mono_class_from_typeref(),
34181         instead.
34183 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34185         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
34186         documentation says (the ECMA one is correct).
34188 2002-05-02  Dick Porter  <dick@ximian.com>
34190         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
34191         Don't name the synchronisation mutex.
34193 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
34195         * rand.c
34196         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
34197         Make the prototypes match.
34198         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
34199         Same.
34201         * icall.c
34202         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
34203         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
34204         all systems have tm.tm_zone, so use strftime() with %Z to print
34205         the timezone abreviation into a temp string.
34207         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
34208         rather than mono_array_addr() on a MonoString on Big Endian
34209         machines.
34211 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
34213         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
34214         fix bug 24041
34216 2002-04-30  Dick Porter  <dick@ximian.com>
34218         * socket-io.c: Cope with SOCKET being an integer rather than a
34219         pointer now.
34221         * threads.c: Added Thread_free_internal, to deal with thread
34222         handle cleanup.  Moved calls to handle_store() and handle_remove()
34223         to start_wrapper(), so each can only be called once.  Allocate
34224         synchronisation blocks with GC_malloc(), and use GC finalisation
34225         to close the handles.
34227         * icall.c: added System.Threading.Thread::Thread_free_internal
34229 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34231         * icall.c: support Environment.Exit, CommandLineArgs().
34233 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34235         * object.c, object.h: added mono_runtime_run_main () and
34236         mono_runtime_get_main_args () for use in System.Environment.
34238 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34240         * gc.c: fix thinko, enable actual finalization since the jit is now
34241         fixed.
34243 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34245         * gc.c, object.c: take into account that an object may be offset wrt the address
34246         returned by GC_malloc().
34248 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
34250         * image.c: handle files without entries in the assembly table (modules).
34252 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
34254         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
34255         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
34256         allowed to be null when it's System.Object class setup.
34258 2002-04-27  Martin Baulig  <martin@gnome.org>
34260         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
34261         if `tb->parent == NULL' rather than crashing.
34263 2002-04-28  Nick Drochak  <ndrochak@gol.com>
34265         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
34266         calling acos() where asin() should have been called.
34268 2002-04-26  Martin Baulig  <martin@gnome.org>
34270         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
34271         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
34272         there's a subdirectory called `System', but we don't want to read that
34273         subdirectory as an assembly.
34275 2002-04-25  Martin Baulig  <martin@gnome.org>
34277         * debug-symfile.c: Reflect latest MonoString changes.
34279 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34281         * rand.c, rand.h: instance method icalls need to have an explicit
34282         this pointer as first argument in the C implementation.
34284 2002-04-25  Nick Drochak <ndrochak@gol.com>
34286         * icall.c: Fix typo in map for GetNonZeroBytes
34288 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34290         * string-icalls.c : String does now passes unit tests without any 
34291         errors, the following changes has been made:
34292         
34293         Implemented replace methods.
34294         Renaming of methods to (try) follow the standard.
34295         Fixed compare ordinal
34296         Made all memory allocated directly to function instead of via icall function.
34297         Small performance fix in is_in_array function
34298                         
34299  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
34301         c (mono_string_Internal_ctor_charp_int_int):
34302         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
34303         sindex < 0, throw ArgumentOutOfRangeException instead of
34304         ArgumentNullException.
34306         Added new check for length == 0, however
34307         I need to make it return String.Empty from the C code.
34308         
34309         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
34310         that calculate the length for us here.
34311         
34312         (mono_string_Internal_ctor_sbytep_int_int): Replaced
34313         mono_string_new_utf16 with mono_string_new, since value is utf8.
34315 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34317         * object.c: register the object for finalization if needed.
34318         Allocate one more char in the string for the terminating 0 char.
34320 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34322         * class.c, class.h, image.c: check if a type implemenst a destructor.
34323         Use the proper key for array class lookups.
34324         * icall.c: register the icalls in the System.GC class.
34325         * gc.c, gc.h: GC-related functions and icalls.
34327 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34329         * icall.c:
34330         * socket-io.c:
34331         * unicode.c: free some strings gotten from mono_string_to_utf8 and
34332         changed a couple of free () by g_free ().
34334         * decimal.c: one-liner in the comments for decimal2string ().
34336 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34338         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
34340 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
34342         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
34343         * object.c (mono_runtime_invoke_array) : handle null in params
34345 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34347         * string-icalls.c: fixed bug in split (one off bug)
34349 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34351         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
34352         * icalls.c: added String::Equals as internal method
34354 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
34356         * threads.c: fixed bug in the double interlocked functions
34358 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
34360         * threads.c: implemented all of the new interlocked icalls.
34361         * string-icalls.c: fix a bug in insert.
34362         * icalls.c: added the icalls for interlocked, removed old string functions.
34363         
34364 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34366         * loader.c: fix off-by-one error when reading argument names.
34368 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34370         * profiler.c: win32 counter implementation (untested).
34371         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
34372         (the latter needs testing and more complete impl. from win32 folks).
34374 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
34376         * object.c: mono_array_new_full workaround mono_array_class_get
34377         problem.
34379 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34381         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
34382         * object.h (mono_string_chars): Changed casting type.
34384 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34386         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
34387                            method signatures to use gunichar2 instead of gint16.
34389 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
34391         * object.h, object.c: domain-specific versions of mono_object_new and
34392         mono_array_new.
34394 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
34396         * object.c: changed String layout
34398         * string-icalls.c (mono_string_Internal_ctor_chara): added
34399         internal string constructors.
34401 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
34403         * threads.c: pass 'this' to the thread start routine.
34405 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34407         * string-icalls.c: fix IndexOf and LastIndexOf. Now
34408         InternalCompareStr don't call twice mono_string_cmp_char for the last
34409         character. Improved performance in mono_string_cmp_char.
34411 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34413         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
34414         code into its own library: libmonoruntime.
34416 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
34418         * object.h, object.c: changed array format so that szarrays do not
34419         require a bounds structure.
34420         * icall.c, appdomain.c: support for new szarray format.
34422 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
34424         * metadata.c: compare also the retuns type when comparing signatures:
34425         we didn't do this as an optimization since really overloaded methods
34426         must differ also in the arguments, but this doesn't work with
34427         low-level IL code (or when using explicit conversion operators: see
34428         bug#23498 for an example).
34430 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34432         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
34434 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34436         * icall.c: make MonoType::GetElementType its own icall.
34438 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
34440         * icall.c: remove MonoMethod_get_Name().
34441         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
34442         object.
34444 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34446         * string-icalls.c: optimized a few methods.
34448 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
34450         * icall.c: added all new string internal calls
34451         * string-icalls.c: added, new string internal call implementation.
34452         * object.c: added mono_string_new_size for allocating a string a size
34454 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
34456         * object.c (mono_object_isinst): use the same code as in the
34457         optimized x86 version.
34459 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34461         * profiler.c: TSC-based timer code (faster and more accurate).
34462         Not hooked up in configure, yet (set USE_X86TSC to 1).
34464 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
34466         * profiler.c, profiler.h: track time spent compiling methods.
34467         * threads.c: track thread creation/destruction.
34469 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
34471         * profiler.c, profiler.h, profiler-private.h: profiling interface
34472         and sample implementation. Moved here so that it can be used also by
34473         the jit.
34475 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
34477         * reflection.c, reflection.h: keep types and other handles separate in
34478         the hash tables for referred tokens. Add guid for modules.
34480 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34482         * assembly.c: fix bugs found with valgrind.
34483         * metadata.h, metadata.c: added mono_metadata_guid_heap().
34485 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
34487         * threads: added icall support for getting current domain for
34488                    the thread.
34490 2002-04-13  Martin Baulig  <martin@gnome.org>
34492         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
34493         (MonoDebugVarInfo): Added `index' field for register based addresses.
34494         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
34495         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
34496         `MonoDebugVarInfo *params' and `guint32 this_offset' with
34497         `MonoDebugVarInfo *this_var'.
34499         * debug-symfile.c (relocate_variable): New static function to write
34500         a location description for a local variable or method parameter.
34502 2002-04-12  Martin Baulig  <martin@gnome.org>
34504         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
34505         stack offset and begin/end scope address of a local variable.
34506         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
34507         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
34508         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
34510         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
34511         Added new relocation types for start/end scope of a local variable.
34513 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34515         * object.h: add mono_object_domain() macro.
34516         * reflection.c: handle typespecs.
34517         * icall.c: MonoMethod::get_Name() implementation.
34519 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34521         * icall.c: String::GetHashCode() icall implementation.
34523 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34525         * icall.c: String::IndexOfAny icall.
34526         * object.c, object.h: make array->max_length more useful.
34527         Intrduced mono_object_class() and mono_string_length() macros.
34529 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34531         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
34532         instead of g_unichar_isdigit.
34534 2002-04-11  Nick Drochak  <ndrochak@gol.com>
34536         * icall.c: Implement a simple Double.ToString().
34538 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34540         * appdomain.h: only io-layer.h is supposed to be included.
34541         * icall.c: explicitly import environ. Fix warning.
34543 2002-04-10  Nick Drochak  <ndrochak@gol.com>
34545         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
34546                 return true even if it's not Daylight Savings time.
34547                 Only return false for the case where the function isn't
34548                 implemented for a plaform (read Windows).
34550 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34552         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
34553         data with a mutex.
34555 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
34557         * mempool.c (mono_mempool_alloc): only use g_malloc when
34558         absolutely necessary.
34560 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34562         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
34564         * class.c (mono_class_vtable): use domain mempool to allocate vtable
34565         (mono_class_proxy_vtable): use domain mempool
34567 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34569         * appdomain.h, appdomain.c: split initialization that requires the
34570         execution engine support into mono_runtime_init().
34572 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
34574         * class.c (mono_class_init): don't include vtable inside MonoClass
34575         to save some memory, gather some statistics.
34576         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
34578 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34580         * icall.c: internalcall implementation for ValueType.Equals().
34582 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
34584         * object.c (mono_message_init): moved 
34585         (mono_runtime_exec_main): new arch. independent impl.
34586         (mono_runtime_invoke_array): new method - like
34587         mono_runtime_invoke, but you can pass an array of objects.
34588         (mono_remoting_invoke): new arch. independent impl.
34589         (mono_message_invoke): new arch. independent impl.
34590         (mono_runtime_class_init): new arch. independent impl.
34591         (mono_runtime_object_init): new arch. independent impl.
34593 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34595         * metadata.c, object.c, reflection.c: documented the exported
34596         functions.
34598 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34600         * icall.c: simpler code to pass the assembly builder data to corlib.
34601         Implement GetNestedTypes() internalcall.
34603 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34605         * class.c: warn if a type can't be loaded.
34607 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
34609         * image.h: typedef MonoImageOpenStatus
34610         * types.h: removed unused file
34611         
34612 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
34614         * icall.c: Enum_ToObject accepts enum value arguments.
34616 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34618         * class.c: move initialization of properties, events and nested
34619         classes, so that they happen for interfaces, too.
34621 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34623         * icall.c: cleanup some ugly casts in Array_SetValue*.
34625 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34627         * icall.c: the values array fro enums is of the correct type, now.
34628         Implement (correctly) getFullName instead of assQualifiedName for
34629         MonoType.
34630         * reflection.h, reflection.c: added mono_type_get_name ().
34632 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34634         * assembly.c, image.h: for each MonoImage, record from wich assembly
34635         it was loaded.
34636         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
34637         Make Type.Assembly work.
34639 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
34641         * debug-symfile.h: use char* instead of gpointer to avoid
34642         unnecessary casts.
34644         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
34646         * icall.c (ves_icall_InternalExecute): impl. FielSetter
34647         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
34649 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
34651         * icall.c (mono_message_init): impl. (code cleanup)
34652         (ves_icall_InternalExecute): impl. FieldGetter
34654         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
34655         defined we call all (non-static)methods through the vtable. 
34657 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
34659         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
34660         finalizer even though the memory is still referenced (and the chunk of
34661         memory is not freed).
34663 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
34665         * assembly.c: fix brokeness.
34667 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
34669         * class.c: kill some warnings. Check explicit interface method
34670         implementation also without considering the namespace.
34671         Load also literal strings in static class data.
34673 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
34675         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
34676         (default_assembly_name_resolver): Make the resolver take the
34677         "base" directory where the assembly was originally defined, so we
34678         can load DLLs that are in the same directory as the assembly that
34679         is being referenced.
34681 2002-03-28  Dick Porter  <dick@ximian.com>
34683         * file-io.h: 
34684         * file-io.c:
34685         * socket-io.c: 
34686         * unicode.h: 
34687         * unicode.c: Warning cleanups
34689 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
34691         * object.h, reflection.h: use the correct type instead of MonoObject.
34693 2002-03-28  Martin Baulig  <martin@gnome.org>
34695         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
34696         (mono_debug_update_symbol_file): Initialize classes if necessary.
34698 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
34700         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
34701         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
34703 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
34705         * assembly.h: fix function prototype.
34706         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
34707         * mono-endian.h: use const cast.
34709 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34711         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
34713 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
34715         * loader.c: don't assert when a typeref can't be loaded, give
34716         a chance to the runtime to trow an exception instead.
34717         * loader.h: fix warning.
34719 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
34721         * class.c (mono_class_proxy_vtable): added proxy support
34723 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
34725         * icall.c: removed last of PAL calls, added System.Environment
34726         * file-io.h, file-io.c: MonoIO implementation
34727         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
34729 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
34731         * appdomain.c: do not use the byte marker in ldstr table lookup.
34732         * debug-helpers.c: allow two ':' to separate class and method name.
34733         * object.c: allocate arrays bounds with the GC, too.
34734         * verify: add a few more checks.
34736 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
34738         * reflection.c: output also literal strings. Allocate parameter data
34739         with GC_malloc() (thanks, Martin, for catching this!).
34741 2002-03-26  Martin Baulig  <martin@gnome.org>
34743         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
34744         include the `this' offset in the `param_offsets'.
34746 2002-03-25  Martin Baulig  <martin@gnome.org>
34748         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
34749         mono_debug_get_class() function to get the classes. Added new
34750         relocation types for arrays and strings.
34751         (mono_debug_get_class): New static function to search in all
34752         referenced assemblies for a metadata token.
34754         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
34756 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
34758         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
34759         hold gc-allocated objects. Make the string heap a stream like the
34760         others. Removed duplicated code when writing stream info.
34761         Added asserts to catch possible buffer overflows. Set the sorted map
34762         for tables that need sorting. Added some documentation.
34764 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
34766         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
34767         for interned strings and vtables.
34769 2002-03-24  Martin Baulig  <martin@gnome.org>
34771         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
34772         it in the array since it was created with g_slist_prepend().
34774 2002-03-24  Martin Baulig  <martin@gnome.org>
34776         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
34777         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
34778         (mono_debug_method_from_token): Renamed to
34779         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
34780         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
34782         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
34783         relocation types.
34785         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
34787 2002-03-24  Martin Baulig  <martin@gnome.org>
34789         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
34790         (mono_debug_method_from_token): New func.
34792         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
34793         New interncall, calls mono_debug_local_type_from_signature().
34794         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
34795         calls mono_debug_method_from_token().
34797 2002-03-23  Martin Baulig  <martin@gnome.org>
34799         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
34800         specifies the number of bytes to be converted, not the array size.
34801         Return the number of chars, not the number of bytes.
34802         (ves_icall_iconv_get_chars): The `byteCount' argument
34803         specifies the number of bytes to be converted, not the array size.
34805 2002-03-23  Martin Baulig  <martin@gnome.org>
34807         * reflection.h (MonoReflectionSigHelper): New type.
34809         * reflection.c (mono_reflection_sighelper_get_signature_local),
34810         (mono_reflection_sighelper_get_signature_local): New functions.
34812         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
34813         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
34814         interncalls.
34816 2002-03-23  Martin Baulig  <martin@gnome.org>
34818         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
34819         is_writeable is set.
34820         (mono_raw_buffer_update): New function to write the modified map
34821         back to disk.
34823         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
34825         * debug-symfile.c (mono_debug_update_symbol_file): Call
34826         mono_raw_buffer_update() when done writing.
34828 2002-03-23  Martin Baulig  <martin@gnome.org>
34830         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
34832         * debug-symfile.c: Added support for arguments and local variables.
34834 2002-03-23  Dick Porter  <dick@ximian.com>
34836         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
34837         protected by ifdefs, hence breaking the w32 build.
34839 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34841         * object.c: implement is_interned() the right way.
34843 2002-03-21  Martin Baulig  <martin@gnome.org>
34845         * debug-symfile.[ch]: New files to handle debugging information
34846         files. There's also support to dynamically update these symbol
34847         files to include machine dependent information.
34849 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
34851         * threads.c (mono_thread_create): new function to create thread
34852         from C
34854 2002-03-20  Martin Baulig  <martin@gnome.org>
34856         * icall.c (ves_icall_InternalInvoke): Create a new object if the
34857         method is a constructor.
34858         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
34859         points to ves_icall_InternalInvoke().
34861 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
34863         * file-io.c: Flush shouldn't throw exceptions.
34865 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
34867         * file-io.c: FileStream flush support; FileSetLength now
34868         restores file pointer.
34870 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
34872         * class.c: set image for pointer classes.
34874 2002/03/19  Nick Drochak <ndrochak@gol.com>
34876         * sysmath.c: Forgot one.
34878 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
34880         * sysmath.c: Avoid redefining existing names.
34882 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
34884         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
34885         handled by runtime as icall rather than dllimport from libm.so
34886         * file-io.c, file-io.h: fixed handle argument type.
34888 2002-03-18  Dick Porter  <dick@ximian.com>
34890         * reflection.c (mono_image_get_type_info): rename interface to
34891         iface, because of "#define interface struct" on windows.
34893 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
34895         * class.c, class.h: rename and export mono_ptr_class_get().
34896         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
34897         * reflection.c, reflection.h, icall.c: better/saner type name
34898         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
34899         method signatures.
34901 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
34903         * class.c (mono_class_init): removed hardcoded GHC_SLOT
34905         * icall.c (ves_icall_InternalInvoke): impl.
34907 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
34909         * reflection.c: output the interface map table, too.
34911 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34913         * class.c (class_compute_field_layout): separate computation of 
34914         static field layout
34916 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
34918         * icall.c: added System.Buffer support.
34919         * file-io.c: moved file icalls from PAL to FileStream.
34921 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
34923         * icall.c (ves_icall_System_Object_GetHashCode): impl.
34925 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
34927         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
34929 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
34931         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
34933 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
34935         * debug-helpers.{c,h}: moved here from monograph some useful functions
34936         to locate a method by name/signature in a class or image. Included
34937         also a small and flexible IL disassembler.
34939 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
34941         * reflection.c: fixup tokens in methods with small header size, too.
34943 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
34945         * object.c (mono_string_to_utf8): remove assert(!error), instead
34946         print a warning. 
34948 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
34950         * icall.c: update to the new mono_Array_class_get interface.
34952 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
34954         * appdomain.c, object.c: Boehm-GC enable.
34955         * icall.c: make get_data_chunk() support split data requests.
34956         Ensure a class is initialized in more cases. Return only the first
34957         property found in GetProperties() or the compiler gets confused. 
34958         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
34959         * reflection.h, reflection.c: add fixup mechanism for field and method
34960         tokens. Initialize assembly->typeref in a single place. Output
34961         properties after events. Support custom attributes for events, too.
34962         Typo fix for paramter custom attrs.
34964 2002-03-07  Martin Baulig  <martin@gnome.org>
34966         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
34968 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
34970         * class.c (mono_array_class_get): fix. for multi. dim. arrays
34972 2002-03-06  Martin Baulig  <martin@gnome.org>
34974         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
34975         non-zero lower bounds. See testcases #F10-#F13.
34977 2002-03-05  Martin Baulig  <martin@gnome.org>
34979         * exception.c (mono_get_exception_argument_out_of_range): New exception.
34981         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
34982         ves_icall_System_Array_GetValue(), only calculate the absolute array position
34983         here.
34984         (ves_icall_System_Array_SetValue): Likewise.
34985         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
34986         as argument and does the actual work. This function is used when copying a
34987         multi-dimensional array.
34988         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
34989         now do all the widening conversions of value types.
34990         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
34992 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
34994         * class.c: remove some magic numbers and use the smbolic names,
34995         instead. Added init_events() to load event info at class init time.
34996         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
34997         and mono_metadata_methods_from_event().
34998         * reflection.h, reflection.c: added support for writing out the evnets
34999         related information.
35001 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
35003         * reflection.h, icall.c: use a different method (GetInterfaces)
35004         to gather interface info and add isbyref, isprimitive and
35005         ispointer to the ves_icall_get_type_info() return value.
35007 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
35009         * class.h: stared adding support for events.
35010         * icall.c: split find_members implementation. Added debug icall to get
35011         the address of an object.
35012         * reflection.c: handle TypeBuilders in mono_type_get_object().
35014 2002-03-01  Martin Baulig  <martin@gnome.org>
35016         * icall.c (ves_icall_System_Array_GetLength): This must throw an
35017         ArgumentOutOfRangeException(), not an ArgumentException().
35018         (ves_icall_System_Array_GetLowerBound): Likewise.
35019         (ves_icall_System_Array_GetValue): Improved argument checking.
35020         (ves_icall_System_Array_SetValue): Improved argument checking.
35022 2002-03-01  Martin Baulig  <martin@gnome.org>
35024         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
35025         called with invalid arguments rather than just dying with g_assert().
35026         (ves_icall_System_Array_SetValue): Likewise.
35027         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
35028         raise a NotImplementedException instead.
35029         (ves_icall_System_Array_GetLength): Added argument checking.
35030         (ves_icall_System_Array_GetLowerBound): Added argument checking.
35032 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
35034         * object.h (mono_assert): new macros mono_assert and
35035         mono_assert_not_reached
35037 2002-02-28  Martin Baulig  <martin@gnome.org>
35039         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
35040         and "System::String::IsInterned" to "System::String::_IsInterned".
35042 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
35044         * icall.c: remove hacks for typebuilder. Added icall to create a
35045         modified type from a tybebuilder.
35046         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
35047         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
35048         to create a backing MonoClass for a TypeBuilder.
35050 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35052         * class.c, class.h: more refactoring of class init.
35053         Export mono_class_setup_mono_type() and mono_class_setup_parent().
35055 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
35057         * marshal.c, marshal.h: start of marshaling interface.
35059 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35061         * icall.c: fix order in assembly qualified name icall.
35063 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35065         * class.c: do not free str, since we store it in the hash table.
35066         * reflection.h: add label field to MonoILExceptionInfo.
35067         * reflection.c: handle references to more than one assembly. Handle
35068         case when there isn't a module created in the assembly.
35070 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
35072         * class.c: Fix typo. Start refactoring of class init code.
35074 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
35076         * appdomain.c: exit with 1 on error.
35077         * class.c: we already have the name in MonoClassField.
35078         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
35079         MonoStreamHeader instead of an offset of image->raw_metadata.
35081 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
35083         * appdomain.c (mono_init): Be even more descriptive about the error.
35085 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
35087         * appdomain.c: give the user an informative message when corlib can't
35088         be loaded.
35090 2002-02-26  Martin Baulig  <martin@gnome.org>
35092         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
35093         New icall to get the time zone data.
35095 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35097         * reflection.c: set virtual and raw size of section correctly.
35098         * threads.c: transfer domain information to newly created threads.
35100 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35102         * class.c: when instancing a class in a domain, load the default
35103         vaules for static fields from the constant table. Fix System.Enum to
35104         not be an enum.
35105         * icall.c: implement Object::GetType() internalcall. Implemented
35106         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
35107         Fixed checking of binding flags in find_members().
35108         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
35109         * reflection.c: handle enumerations when writing to the constant
35110         table. Use a different object cache for types.
35113 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
35115         * object.c (mono_object_isinst): fix for arrays
35117         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
35119 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35121         * object.c: don't use mprotect ()  and fix intern pool hash table
35122         lookup for big endian systems.
35124 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35126         * icall.c: change type_is_subtype_of () signature.
35128 2002-02-21  Mark Crichton  <crichton@gimp.org>
35130         * rand.c, rand.h: Added random number generator for
35131         System.Security.Cryptography classes.
35133         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
35135         * icall.c: Added System.Security.Cryptography calls.
35137 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
35139         * class.c, icall.c, metadata.c: better support for pointer types.
35140         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
35141         * reflection.c: Add support for getting custom attrs for properties
35142         and simplify some code.
35144 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
35146         * icall.c: change getToken () and add custom attribute GetBlob()helper
35147         method.
35148         * reflection.h: add custom attrs array to the reflection builder structures.
35149         * reflection.c: encode and emit custom attributes for all the relevant
35150         reflection objects. Cache fieldref and methodref tokens. Change
35151         mono_image_create_token() interface to take a MonoDynamicAssembly.
35152         More complete custom attributes decoder. Load custom attributes for
35153         Assembly, Field, Method and Constructor objects, too. Make the
35154         returned array an Attribute[] one, not object[]. Added
35155         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
35156         custom attribute constructor.
35158 2002-02-20  Dick Porter  <dick@ximian.com>
35160         * icall.c:
35161         * rawbuffer.c:
35162         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
35163         problem code out for now).
35165 2002-02-19  Radek Doulik  <rodo@ximian.com>
35167         * object.c (mono_ldstr): use hash table to avoid multiple swapping
35169 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
35171         * icall.c: register the GetCustomAttributes method.
35172         * object.c, object.h: add mono_string_new_len ().
35173         * reflection.h, reflection.c: added mono_runtime_invoke(),
35174         mono_install_runtime_invoke(). Added
35175         mono_reflection_get_custom_attrs () to load custom attributes and
35176         create the attribute objects.
35178 2002-02-19  Dick Porter  <dick@ximian.com>
35179         * threads-dummy-types.c:
35180         * threads-dummy-types.h:
35181         * threads-dummy.c:
35182         * threads-dummy.h:
35183         * threads-pthread-types.c:
35184         * threads-pthread-types.h:
35185         * threads-pthread.c:
35186         * threads-pthread.h:  Deleted obsolete files
35188 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
35190         * class.c (mono_class_vtable): runtime init the class when we
35191         allocate static class data.
35193         * icall.c (ves_icall_System_Array_SetValue): check for null values.
35195         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
35196         and String - but we will need generic marshalling support in the
35197         future. 
35198         (mono_init): set the domain name in a ms compatible way
35200         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
35201         String[].
35203 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
35205         * object.c (mono_array_clone): use alloca() instead of g_malloc  
35206         for sizes
35208         * appdomain.c (mono_domain_unload): impl.
35210 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35212         * appdomain.c, object.c: fix intern pool implementation.
35213         * class.c: fix alignment code.
35215 2002-02-16  Radek Doulik  <rodo@ximian.com>
35217         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
35218         and s2 > s1, just copy lower bytes to be compatible with little
35219         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
35220         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
35222         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
35223         force big_endian to be 1 for big endian machines 
35224         (ves_icall_iconv_new_decoder): ditto
35226 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
35228         * socket-io.c (convert_sockopt_level_and_name): If the system
35229         doesn't define SOL_IP or SOL_TCP, get them by hand using
35230         getprotobyname() and caching the values (because this could be a
35231         slow operation).
35232         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
35233         Use the appropriate struct when the system does support it. Ie,
35234         not all systems have struct ip_mreqn so use struct ip_mreq when
35235         appropriate.
35237 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
35239         * reflection.c: handle finally clauses.
35241 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
35243         * socket-io.c: use g_snprintf() instead of snprintf.
35245 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35247         * reflection.c (mono_param_get_objects): Cast second argument to
35248         mono_method_get_param_names to a const char** to silence the
35249         compiler warning.
35251         * appdomain.c (mono_domain_assembly_open): Put parens around the
35252         truth statement in the for-loop.
35254         * unicode.c (iconv_convert): Got rid of a compiler warning about
35255         int i being unused when the system has a new iconv.
35256         (iconv_get_length): Same.
35258         * image.c (load_class_names): Cast the second argument to
35259         g_hash_table_insert() to char* to hush compiler warnings about the
35260         arg being a const.
35261         (mono_image_open): Same here.
35263         * socket-io.c: Don't conditionally include sys/filio.h or
35264         sys/sockio.h here anymore since we now get them from
35265         io-layer/io-layer.h
35266         (inet_pton): If the system doesn't support inet_aton, implement
35267         using inet_addr and also #define INADDR_NONE if it isn't defined
35268         by the system.
35270 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
35272         * metadata.c, metadata.h: added function to get packing and size info
35273         of a typedef.
35274         * reflection.h, reflection.c: handle field RVA data. Save info about
35275         the table layout if needed. Assign typedef indexes to all the types
35276         before dumping the info about them to avoid forward reference problems.
35278 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
35280         * socket-io.c (convert_sockopt_level_and_name): ifdef
35281         SO_ACCEPTCONN because it is not defined on my system (old debian)
35283 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
35285         * opcode.c: use stddef.h to get NULL.
35287 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
35289         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
35290         for FIONBIO, FIONREAD and SIOCATMARK.
35291         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
35292         define INADDR_NONE and besides, inet_addr() is deprecated and
35293         should not be used. Use inet_pton() instead - it also has the
35294         added bonus that it can easily handle IPv6 addresses as well.
35295         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
35297 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
35299         * decimal.c: remove _MSC_VER conditional.
35301 2002-02-13  Dick Porter  <dick@ximian.com>
35303         * socket-io.c: 
35304         * icall.c: Internal calls for Blocking, Select, Shutdown,
35305         GetSocketOption and SetSocketOption
35307 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35309         * assembly.cs: better resolver: use it instead of some kludgy
35310         code.
35312 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
35314         * reflection.c: the best way to speed-up the compiler is to avoid
35315         infinite loops.
35317 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
35319         * class.c (mono_class_vtable): changed the object layout
35320         (obj->vtable->class). 
35321         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
35323 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
35325         * assembly.c: look for assemblies in the assembly dir, too.
35327 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35329         * class.c: fix thinko in mono_class_from_type().
35331 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
35333         * exception.h, exception.c: added TypeLoadException.
35334         * object.h, object.c: added mono_array_clone ().
35335         * icall.c: handle throwOnError in AssemblyGetType().
35336         Added Array.Clone().
35337         * opcode.h, opcode.c: use a single value for the opcode val.
35338         Compile fix for non-gcc compilers.
35340 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
35342         * opcodes.c, opcodes.h: export interesting info about opcodes.
35344 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
35346         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
35347         icalls. 
35349         * class.c (class_compute_field_layout): set element_class for enums
35350         (mono_class_create_from_typedef): set element_class for normal classes
35352         * icall.c (ves_icall_System_Enum_get_value): impl.
35354         * class.c (mono_class_create_from_typedef): do not set valuetype
35355         flag for System.ValueType and System.Enum
35357 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
35359         * unicode.c (iconv_convert): fix big endian problem.
35361 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
35363         * class.c: add asserts if we are ever going to scribble over memory.
35364         * socket-io.c: not all systems have AF_IRDA defined.
35366 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
35368         * class.c (class_compute_field_layout): do not consider static
35369         fields to compute alignment
35371 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
35373         * appdomain.c (mono_appdomain_get): impl.
35374         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
35376 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
35378         * icall.c: ignore "file://" prefix when loading an assembly.
35380 2002-01-23  Dick Porter  <dick@ximian.com>
35382         * socket-io.c:
35383         * icall.c:
35384         * Makefile.am: Added socket support
35386 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35388         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
35389         code back.  This should return the assemblies that are loaded by
35390         the runtime on behalf of an application domain. 
35392         The current implementation is still broken, it just returns every
35393         assembly loaded, but until we get real applications domain this
35394         will do.
35396 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
35398         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
35399         AppDomain object.
35401 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
35403         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
35404         the mono_class_from_name lookup.
35405         (ves_icall_get_parameter_info): ditto.
35406         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
35407         method.
35408         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
35410 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
35412         * class.c: load also nested classes on class init.
35413         System.ValueType instance methods gets passed boxed
35414         values, unless methods in derived classed that get a pointer to the
35415         data.
35416         * icall.c: use better name parsing code in GetType().
35417         * image.c, image.h: add mono_image_loaded ().
35418         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
35419         * reflection.c, reflection.h: added mono_reflection_parse_type().
35421 2002-01-22  Veronica De Santis <veron78@interfree.it>
35423         * icall.c : Added mapping of internal calls for Manual and Auto reset events
35424         * threads.c : Added the implementation of internal calls for events
35425         * threads.h : Added prototypes of internal calls for events
35426         
35427 2002-01-21  Radek Doulik  <rodo@ximian.com>
35429         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
35431 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
35433         * class.c (mono_class_init): set min_align to 1 (instead of 0)
35434         (mono_class_value_size): use min_align
35436 2002-01-20  Dick Porter  <dick@ximian.com>
35438         * threads.h:
35439         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
35440         so it compiles on w32.
35442 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
35444         * metadata.c (mono_type_stack_size): impl.
35446         * class.c (mono_class_get_field): impl. memberref token
35448 2002-01-16 Veronica De Santis <veron78@@interfree.it>
35450         * icall.h : Added the internal calls mapping for CreateMutex_internal
35451                     and ReleaseMutex_internal.
35452         * threads.h : Added the prototype of mutexes internal calls.
35453         * threads.c : Added the implementations of mutexes internal calls.
35455 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
35457         * metaparse.h: removed unused file.
35458         * reflection.c, reflection.h: added stream_data_align () function 
35459         to align data in streams and keep stream aligned. Add support for
35460         exception support in method headers.
35462 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
35464         * unicode.c: make iconv_convert () return the number of bytess written
35465         in the output buffer.
35467 2002-01-15  Dick Porter  <dick@ximian.com>
35468         * threads.c: Make the runtime's idea of infinite timeouts coincide
35469         with the class library's
35471         Fix a particularly egregious bug in mono_thread_cleanup(). That
35472         code was so utterly bogus it must have been written on a Monday.
35474 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
35476         * reflection.h: add subtypes field to TypeBuilder.
35477         * reflection.c: encode constants for literal fields.
35478         Handle subtypes. Fix user string token (and add a zero byte)
35479         at the end.
35480         
35481 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
35483         * class.c (mono_class_init): bug fix: assign slot numbers for
35484         abstract methods.
35486 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
35488         * reflection.c: don't try to output a code RVA for abstract methods.
35489         Small fixes for method header format. Output parameter info to the
35490         ParamDef table. Save method overriding info to MethodImpl table.
35491         Fix property support. Allow typedef.extends to be a type in the
35492         building assembly.
35493         * verify.c: fix off-by-one error.
35495 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
35497         * class.c: fix mono_class_from_mono_type () for szarray types.
35498         Remove unused cache check in mono_class_from_type_spec().
35499         * icall.c: *type_from_name () functions handle simple arrays and byref.
35500         * reflection.c: handle byref and szarray types. Handle methods without
35501         body (gets P/Invoke compilation working). Handle types and fields in
35502         get_token ().
35503         * reflection.h: add rank to MonoTypeInfo.
35505 2002-01-10  Dick Porter  <dick@ximian.com>
35507         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
35508         internal calls
35510 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
35512         * icall.c: initialize class in type_from_handle ().
35513         Loop also in parent classes for get_method ().
35514         * reflection.c: properly encode class and valuetype types.
35515         Start on encoding TypeBuilder types. Handle fieldrefs.
35516         Use correct length when registering a user string.
35517         Handle ConstructorBuilder and MonoMethod in get_token ().
35518         Make mono_type_get_object () aware of cached types.
35519         * object.c: back out change to mono_string_new ().
35521 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
35522         * object.c: mono_string_new should return a NULL when the string 
35523         passed in is NULL -- not try to deference it.
35524         
35525 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35527         * icall.c: hack to make IsSubType work for TypeBuilders.
35528         * reflection.c: emit constructors before methods.
35529         Retrieve param names in mono_param_get_objects().
35531 2002/01/05  Nick Drochak  <ndrochak@gol.com>
35533         * Makefile.am: fix list of headers and sources so automake 1.5
35534         doesn't complain. Removed \# at end of list.
35536 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
35538         * reflection.c: get token for a method ref. Set return type of
35539         constructor to void.
35540         * loader.c: debug message.
35541         * class.c: typo fix.
35543 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
35545         * icall.c: fix array init with rank > 1. FindMembers
35546         loops in parent class as well.
35547         * image.c: do not insert nested types in name cache.
35548         * reflection.c: warning fix.
35549         * reflection.h: add override method (for interface impl).
35551 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
35553         * metadata.c: fix customattr decoding.
35555 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
35557         * rawbuffer.cs: Added native Win32 implementation, avoids using
35558         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
35560 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
35562         * class.c: make the low-level routines handle the cache.
35564 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
35566         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
35568 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
35570         * class.c: fix mono_array_element_size() for objects.
35571         * class.h, class.c: add properties to MonoClass and load them
35572         at init time.
35573         * icall.c: check with isinst() when assigning a value to an array
35574         instead of requiring the classes to match exactly.
35575         Implemented icall for System.Type::GetType().
35576         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
35577         enums. Handle bindingflags when looking for methods and fields.
35578         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
35579         and mono_metadata_methods_from_property().
35580         * reflection.h, reflection.c: added structures for propreties,
35581         parameters and enums. Implemented mono_property_get_object() and
35582         mono_param_get_objects().
35584 2001-12-18  Dick Porter  <dick@ximian.com>
35586         * file-io.c: Use mono_string_to_utf16() instead of
35587         mono_string_chars()
35589         * object.c: Added mono_string_to_utf16(), which copies the non
35590         NULL-terminated MonoString into a new double-null-terminated
35591         buffer.
35593 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
35595         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
35597 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
35599         * file-io.c: raise exceptions if handle is invalid.
35601 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
35603         * assembly.c: yet another check for mscorlib.
35604         * class.c, class.h: load nesting info for classes.
35605         * icall.c: many new functions to support the Reflection classes.
35606         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
35607         * reflection.h, reflection.c: mono_image_create_token(),
35608         mono_assembly_get_object(), mono_type_get_object(),
35609         mono_method_get_object(), mono_field_get_object(): methods to return
35610         objects that parallel the C representation of assemblies, types,
35611         methods, fields.
35613 2001-12-11  Dick Porter  <dick@ximian.com>
35615         * icall.c:
35616         * file-io.c: Internal calls for file IO.
35618 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
35620         * tabledefs.h: missing FileAttributes.
35621         * verify.h, verify.c: use is_valid_string () to simplify and check for
35622         valid strings more correctly. Fix warnings and speeling.
35623         Check more tables: Filed, File, ModuleRef, StandAloneSig.
35624         Check code: branches, maxstack, method calls.
35626 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
35628         * object.c (mono_object_allocate): removed static, so that the jit
35629         can allocate value types.
35631         * icall.c (ves_icall_System_DateTime_GetNow): impl.
35633 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35635         * class.c: init enum types right away and register the
35636         token->MonoClass map in mono_class_create_from_typedef ().
35637         * verify.h, verify.c: first cut of the verifier.
35638         * pedump.c: add --verify switch to verify metadata tables.
35639         * tabledefs.h: add some missing enums.
35641 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
35643         * class.c (mono_install_runtime_class_init): impl.
35644         (mono_class_init): renamed mono_class_metadata_init to
35645         mono_class_init, also removed the metadata_inited flag
35647         * object.c (mono_object_isinst): use faster algorithm
35649 2001-11-30  Radek Doulik  <rodo@ximian.com>
35651         * mono-endian.h: reverted last change
35652         added function prototypes
35654         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
35655         add mono-endian.c back
35657         * mono-endian.c: returned back, as Paolo pointed out, it's needed
35658         for unaligned access, I've mistaked it with endianess. I am
35659         sorry.
35660         (mono_read16): fix reverted endianess
35661         (mono_read64): ditto
35662         (mono_read32): ditto
35664 2001-11-30  Dick Porter  <dick@ximian.com>
35666         * exception.c: Implement mono_exception_from_name()
35668 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35670         * metadata.h, metadata.c: remove params_size and locals_size and their
35671         calculation from the metadata code: they are only usefult to the
35672         interp.
35674 2001-11-29  Radek Doulik  <rodo@ximian.com>
35676         * object.c (mono_ldstr): swap bytes here, it's probably not the
35677         best place, but works for me now, I'll redo it once I know mono
35678         better, also note that I add PROT_WRITE and don't reset back, also
35679         note that it's only affects big endians, so x86 should be OK
35681         * mono-endian.h (read16): use just glib macros for both endians
35683         * mono-endian.c: removed as glib macros are used in in
35684         mono-endian.h so we don't need to care about endianess for read
35685         macros as glib does that for us already
35687 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
35689         * class.h, class.h: take minimum alignment into consideration so
35690         that the fields of a class remain aligned also when in an array.
35692 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35694         * loader.h, loader.c: add mono_method_get_param_names().
35695         * class.c: 0-init class fields.
35697 2001-11-26  Dick Porter  <dick@ximian.com>
35699         * icall.c:
35700         * threads-types.h:
35701         * threads.c: New file that handles System.Threading on all platforms
35703         * object.c: 
35704         * object.h: Remove the synchronisation struct from MonoObject,
35705         replace it with a pointer that gets initialised on demand
35707         * Makefile.am: Replace all the system-specific threading code with
35708         a single file that uses the new wrapper library
35710 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
35712         * class.c, class.h: add mono_install_trampoline() so that the runtime
35713         can register a function to create a trampoline: removes the ugly
35714         requirement that a runtime needed to export arch_create_jit_trampoline.
35715         * object.h, object.c: added mono_install_handler() so that the runtime
35716         can install an handler for exceptions generated in C code (with
35717         mono_raise_exception()). Added C struct for System.Delegate.
35718         * pedump.c: removed arch_create_jit_trampoline.
35719         * reflection.c: some cleanups to allow registering user strings and
35720         later getting a token for methodrefs and fieldrefs before the assembly
35721         is built.
35722         * row-indexes.h: updates and fixes from the new ECMA specs.
35724 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
35726         * class.h, class.c: add enum_basetype field to MonoClass.
35727         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
35728         to get index in the constant table reated to a field, param or
35729         property.
35730         * reflection.h, reflection.c: handle constructors. Set public-key and
35731         version number of the built assembly to 0.
35732         * row-indexes.h: update from new ECMA spec.
35734 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35736         * class.h, class.c: add a max_interface_id to MonoClass.
35737         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
35738         since it's used to do that. Added mono_type_type_from_obj().
35739         Make GetType() return NULL instead of segfaulting if the type was not
35740         found. Handle simple arrays in assQualifiedName.
35741         * object.h: add a struct to represent an Exception.
35742         * reflection.c: output call convention in method signature.
35743         Add code to support P/Invoke methods and fixed offsets for fields.
35745 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
35747         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
35748         the value.
35749         * icall.c: use mono_array_addr instead of array->vector: fixes the
35750         reflection image writing.
35751         * reflection.c: init call convention byte to 0 in method signature.
35752         Encode the property signature. Don't output property-related methods
35753         twice. Really process the properties for a type (don't cast a field to
35754         a property, my mom always told me that).
35755         Fix 64 bit issues in pointer alignment in a different and more
35756         readable way.
35758 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
35760         * loader.h: Removed type class from MonoDefaults, added monotype
35762         * loader.c: Loaded MonoType, removed loading of Type
35764         * icall.c (my_mono_new_object): Now returns a System.MonoType,
35765         and fills in System.Type._impl with a RuntimeTypeHandle rather
35766         than the actual MonoClass *
35768         (ves_icall_type_from_handle): change from type_class to
35769         monotype_class
35771         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
35772         implemented
35774         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
35775         implemented
35777         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
35779         (ves_icall_System_Reflection_Assembly_GetType): implemented
35781         (ves_icall_System_MonoType_assQualifiedName): implemented
35783         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
35785 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
35787         * assembly.c (mono_assembly_open): Implement a cache for the
35788         assemblies. 
35790         (mono_assembly_close): only destroy the assembly when the last
35791         reference is gone.
35792         
35793 2001-11-09  Dick Porter  <dick@ximian.com>
35795         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
35797 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
35799         * class.c (mono_class_metadata_init): bug fix: compute the right slot
35801 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
35803         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
35804         from Martin Weindel.
35805         * object.h: add mono_string_chars ().
35807 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
35809         * reflection.c (build_compressed_metadata): Eliminates warnings
35810         and uses 64-bit clean code.
35812         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
35813         (mono_type_equal): Change signature to eliminate warnings.
35815 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
35817         * icall.c, loader.c: remove the internalcall array constructors.
35818         Changes to match the new MonoArray structure.
35819         * object.h, object.c: an array object doesn't allocate an extra
35820         vector. Add mono_array_new_full () to create jagged arrays easily.
35822 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
35824         * metadata.h, metadata.c: add mono_metadata_field_info () to
35825         retreive all the info about a field from vairous tables.
35826         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
35827         * class.h, class.c: augment MonoClassField with more info.
35828         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
35829         policy and load a field's RVA if needed.
35831 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
35833         * class.c (mono_class_metadata_init): create a trampoline for all
35834         virtual functions instead of actually compiling them.
35836 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
35838         * class.h, class.c: include name in MonoClassField.
35839         * class.c: fix fundamental type of System.Object and System.String.
35840         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
35841         tokens in ldtoken.
35842         * icall.c: remove internalcalls for the Reflection stuff that is now
35843         done in C# code.
35844         * loader.c: mono_field_from_memberref () implementation.
35845         * mono-endian.c: thinko (s/struct/union/g).
35846         * object.c, object.h: make the mono_string_* prototypes actually use
35847         MonoString instead of MonoObject.
35848         * reflection.c, reflection.h: updates for changes in the reflection
35849         code in corlib: we use C structures that map to the actual C# classes.
35850         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
35851         fat method header if needed and use the info from the ILGenerator for
35852         methods. Handle fields in types. Misc fixes.
35854 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
35856         * class.c (mono_class_metadata_init): bug fix: always allocate
35857         space for static class data
35859 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
35861         * class.c (mono_compute_relative_numbering): use relative
35862         numbering to support fast runtime type checks.
35864 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
35866         * class.c (mono_class_create_from_typeref): added debugging output
35867         to print class name when MonoDummy is returned instead of real class
35869 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
35871         * class.c (mono_class_metadata_init): interface offset table now
35872         contains pointers into the vtable - this is more efficient for the jit
35874 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
35876         * class.c (mono_class_metadata_init): use a temporary vtable (the
35877         old algorithm only worked for the interpreter, but not for the jit)
35879 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
35881         * loader.c (method_from_memberref): use mono_class_get to get the
35882         class of an array instead of using System.Array directly.
35883         (mono_get_method): also add MEMBERREF methods to the method cache
35884         which usefull for arrays.
35886 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
35888         * pedump.c (arch_compile_method): added to compute vtable entry
35890         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
35891         number of interfaces.
35892         
35893         * class.h: merged MonoArrayClass into MonoClass
35895         * class.c (mono_class_create_from_typedef): compute the vtable size and
35896         allocate space to include the vtable inside MonoClass
35897         (mono_class_metadata_init): initialize the vtable
35899 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
35901         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
35902         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
35903         * image.c: endian fixes by Laurent Rioux.
35904         * object.h, object.c: rename MonoStringObject to MonoString and
35905         MonoArrayObject to MonoArray. Change some function names to conform to
35906         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
35907         guint16* as first argument, so don't use char*.
35908         Provide macros to do the interesting things on arrays in a portable way.
35909         * threads-pthread.c: updates for the API changes and #include <sched.h>
35910         (required for sched_yield()).
35911         * icall.c: updates for the API changes above.
35912         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
35913         platforms that need them.
35915 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
35917         * class.c: set the correct type for all the fundamental
35918         type when loading the class.
35920 2001-10-05  Dick Porter  <dick@ximian.com>
35922         * threads-pthread.c (pthread_mutex_timedlock): Simple
35923         compatibility version for C libraries that lack this call.
35925 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35927         * class.c: MonoTypes stored in MonoClass are stored as
35928         fundamental MonoTypes when the class represents a
35929         fundamental type (System.Int32, ...).
35930         The TypeHandle return by ldtoken is a MonoType*.
35931         * icall.c: ves_icall_get_data_chunk () write out all the
35932         PE/COFF stuff. Implement ves_icall_define_method (),
35933         ves_icall_set_method_body (), ves_icall_type_from_handle ().
35934         * image.c: properly skip unknown streams.
35935         * loader.h, loader.c: add type_class to mono_defaults.
35936         * metadata.c, metadata.h: export compute_size () as
35937         mono_metadata_compute_size () with a better interface.
35938         Typo and C&P fixes.
35939         * pedump.c: don't try to print the entry point RVA if there is no entry point.
35940         * reflection.c, reflection.h: many cleanups, fixes, output method
35941         signatures and headers, typedef and typeref info, compress the metadata
35942         tables, output all the heap streams, cli header etc.
35943         * row-indexes.h: typo fixes.
35945 2001-10-04  Dick Porter  <dick@ximian.com>
35947         * object.h: Add a synchronisation mutex struct to MonoObject
35949         * object.c (mono_new_object): Initialise the object
35950         synchronisation mutexes
35952         * icall.c: System.Threading.Monitor internal calls
35953         
35954         * threads-pthread.h:
35955         * threads-pthread.c: System.Threading.Monitor internal calls
35957         * threads-types.h: New file, includes the system-specific thread
35958         structures
35959         
35960         * threads-pthread-types.h:
35961         * threads-pthread-types.c: New files, handle pthread-specific
35962         synchronisation types
35964         * threads-dummy-types.h: 
35965         * threads-dummy-types.c: New files of dummy support for
35966         thread-specific types
35968         * metadata.c:
35969         * image.c:
35970         * pedump.c: include mono-endian.h not endian.h
35971         
35972         * Makefile.am: More threads files.
35973         Name mono-endian.h not endian.h
35975 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
35977         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
35978         stuff and implement a few more bits.
35979         * icall.c: a field needs to be dereferenced twice. Do not use the same
35980         name for two variables in the same scope.
35981         * image.c, image.h: cleanups.
35983 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
35985         * class.c (mono_class_metadata_init): bug fix: compute the right size
35987 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
35989         * icall.c: implemented some of the Reflection internalcalls.
35990         * image.c, image.h: start writing out the PE/COFF image.
35991         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
35992         that does the reverse than decode_blob_size ().
35993         * object.c: use mono_metadata_encode_value (). Move here
35994         temporary implementation of mono_string_to_utf8 ().
35995         * rawbuffer.c: make malloc_map static.
35997 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
35999         * metadata.c: fix type comparison for arrays.
36000         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
36001         Added a couple of new classes to monodefaults.
36002         * icall.c: added a couple of Reflection-related internalcalls.
36003         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
36004         Added a byval_arg MonoType to MonoClass.
36006 2001-09-28  Dick Porter  <dick@ximian.com>
36008         * icall.c:
36009         * threads-pthread.h: 
36010         * threads-pthread.c: Implemented internal calls for
36011         LocalDataStoreSlot operations.  Applied mutexes around all shared
36012         data.  Reworked the thread creation and Start() operations to
36013         avoid a race condition.
36014         
36015         * threads-dummy.h:
36016         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
36018 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
36020         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
36022 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
36024         * class.c, loader.c: warn and return NULL instead of erroring out.
36025         * icall.c: added System.AppDomain::getCurDomain().
36026         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
36028 2001-09-25  Dick Porter  <dick@ximian.com>
36030         * threads-pthread.h:
36031         * threads-pthread.c: Implemented timed thread joining and added
36032         System.Threading.Thread::Join_internal internal call
36034         * icall.c: Added System.Threading.Thread::Join_internal internal call
36036         * threads-dummy.h:
36037         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
36039 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
36041         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
36042         mono_string_intern () to implement the semantics of the ldstr opcode
36043         and the interning of System.Strings.
36044         * icall.c: provide hooks to make String::IsIntern and String::Intern
36045         internalcalls.
36047 2001-09-23  Dick Porter  <dick@ximian.com>
36049         * threads-dummy.c: 
36050         * threads-dummy.h: New files of dummy threading routines
36052         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
36053         support code based on system specifics
36055         Rename PTHREAD_LIBS to THREAD_LIBS
36056         
36057 2001-09-23  Dick Porter  <dick@ximian.com>
36059         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
36060         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
36061         internal calls.
36062         (mono_thread_init): Set up a Thread object instance to return when
36063         the main thread calls Thread.CurrentThread
36064         (mono_thread_cleanup): Wait for all subthreads to exit
36066         * icall.c: New internal calls for System.Threading.Thread::Sleep
36067         (including Schedule) and CurrentThread
36069         * threads.h: New file, to insulate thread-specific stuff from the
36070         rest of the code
36072 2001-09-21  Dick Porter  <dick@ximian.com>
36074         * threads-pthread.h: 
36075         * threads-pthread.c: New file, for handling pthreads-style
36076         threading support.  Start() now starts a new thread and executes
36077         the ThreadStart delegate instance.
36079         * icall.c: Added the internalcall for
36080         System.Threading.Thread::Start_internal
36082         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
36084 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
36086         * loader.c: work around the different signatures for delegates
36087         constructors csc generates in compiled code vs the ones compiled in mscorlib.
36089 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36091         * class.h, class.c: add mono_class_get_field_from_name ().
36092         * *: Fix C comments and other ANSI C issues.
36094 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
36096         * endian.h, assembly.c: fix some endianness issues.
36098 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
36100         * loader.h, load.c: add delegate_class to mono_defaults.
36101         Handle runtime provided methods in mono_get_method ().
36103 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
36105         * loader.c (mono_get_method): use pinvoke for internal call
36107         * icall.c: use pinvoke for internal call
36109         * loader.c (method_from_memberref): set the method name
36111 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
36113         * metadata.c: help the compiler generate better code for
36114         mono_class_from_mono_type ().
36116 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
36118         * class.c (mono_class_metadata_init): delayed computing of the
36119         class size to mono_class_metadata_init ()
36121 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
36123         * class.c, class.h: add an interfaces member to MonoClass.
36124         * image.c, image.h: add assembly_name field to MonoImage
36125         from the assembly table.
36126         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
36128 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36130         * class.c: Handle Array in mono_class_from_mono_type ().
36131         * metadata.c, pedump.c: some endian fixes.
36133 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
36135         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
36136         * metadata.c: fix small problem introduced with the latest commit.
36138 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
36140         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
36141         We don't need a MonoMetadata pointer anymore to compare signatures in
36142         mono_metadata_signature_equal (), update callers.
36143         Reduced memory usage an number of allocations for MonoMethodHeader and
36144         MonoMethodSignature.
36146 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
36148         * metadata.c: added compare for szarray.
36150 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
36152         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
36153         and add a couple more types to it and mono_defaults. Give an hint on
36154         classes that need implementing in our corlib and are referenced
36155         in mscorlib.
36157 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
36159         * class.h, class.c: keep track if a class is also an Enum.
36160         * loader.c: Implement a couple more types for use in libffi
36161         marshalling. Gives better diagnostics when failing to dlopen
36162         a library. Set method->klass for P/Invoke methods, too.
36164 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
36166         * class.c, class.h: add a MonoType this_arg to MonoClass that
36167         represents a pointer to an object of the class' type that
36168         can be used by the interpreter and later the type cache.
36169         Add best guess alignment info for valuetype objects.
36171 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
36173         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
36174         into MonoType: one less level of indirection and allocation and
36175         simplifies quite a bit of code. Added cache for MonoTypes that are
36176         used frequently, so that we don't need to allocate them all the time.
36178 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
36180         * class.c (mono_class_create_from_typedef): System.Enum is also a
36181         value type, although it does not derive from System.ValueType
36182         (maybe a bug in the ms compiler?)
36184         * metadata.c (mono_type_size): return the right size for value types
36186         * loader.c (mono_get_method): only initialize method header if not abstract
36188         * class.c (mono_class_from_mono_type): use mono_default values. 
36190 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
36192         * *: use MonoClass pointers instead of <type_tokens>
36193         
36194         * class.h: new flag: metadata_inited.
36196         * class.c (mono_class_metadata_init): impl.
36197         (mono_class_instance_size): impl.
36198         (mono_class_data_size): impl.
36200 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
36202         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
36203         MonoClass now has the name and name_space fields. 
36204         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
36205         mono_get_method () takes and optional MonoClass as argument.
36206         Removed mono_typedef_from_name() and added mono_class_token_from_name()
36207         instead that takes advantage of a map from class names to typedef
36208         tokens in MonoImage.
36210 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
36212         * metadata.c: zero is not a valid alignment boundary.
36213         Merge MONO_TYPE_VOID in default decoding code.
36215 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
36217         * image.h: merged MonoMetadata into MonoImage
36219         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
36220         identify the type of elements.
36222 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
36224         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
36225         * cil-coff.h: split MonoMSDOSHeader and add size info.
36226         * image.c: add some consistency checks.
36227         * metadata.c: fix row size computation: one programmer
36228         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
36229         add explanation for the locator routine.
36230         Fix decoding of size in method header.
36231         
36232 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
36234         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
36235         (g_concat_dir_and_file): Bring g_concat_dir_and_file
36236         function from gnome-libs.  This uses the right path separator
36237         based on the OS, and also works around a bug in some systems where
36238         a double slash is not allowed. 
36239         (default_assembly_name_resolver): Use g_concat_dir_and_file
36240         (mono_assembly_open): ditto.
36242 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
36244         * metadata.c (mono_metadata_signature_equal): impl.
36246         * *: void is now a realy MonoType (instead of using NULL)
36247         
36248         * metadata.c (do_mono_metadata_parse_type): use
36249         mono_metadata_parse_type to parse void value.
36251 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
36253         * metadata.c, metadata.h: in the signature and method header store
36254         only the space required for holding the loca vars and incoming arguments.
36256 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
36258         * metadata.c (do_mono_metadata_parse_type): treat void like any
36259         other type (instead of assigning NULL);
36261 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
36263         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
36265 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
36267         * image.c (do_mono_image_open): added a cache for arrays.
36269 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36271         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
36272         decode a single column from a row in a metadata table and changes
36273         to take advantage of it in the typedef locator (gives a nice speed up).
36274         Store offset info for function params.
36276 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
36278         * image.h (MONO_IMAGE_IS_CORLIB): removed 
36280 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
36282         * assembly.c: how could mono_assembly_close () had ever worked?
36283         * metadata.c, metadata.h: provide offset info for local vars.
36284         Implement mono_type_size () to take care of alignment as well
36285         as size (it was mono_field_type_size in cli/class.c before).
36287 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
36289         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
36291         * assembly.h (CORLIB_NAME): set to corlib.dll
36293         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
36295 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
36297         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
36298         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
36299         tokentype.h: massive namespace cleanup.
36301 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
36303         * metadata.h, metadata.c: decode exception clauses when parsing method header.
36305 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
36307         * metadata.c (mono_metadata_free_type): added check for type !=
36308         NULL (void) before calling mono_metadata_free_type()
36310 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
36312         * metadata.h, row_indexes.h: added header with enumerations to use
36313         to index in the columns from tables in metadata and to decode coded
36314         tokens: we should start using this instead of embedding magic numbers
36315         all over the code.
36317 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
36319         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
36320         Move metadata_t info from cli_image_info_t to MonoImage, where
36321         it's easily accessible. Changed all the uses accordingly.
36322         Added the method and class caches to MonoImage.
36323         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
36324         and mono_metadata_decode_value () signature to be more consistent
36325         with the other parse functions (and simplify code). Taken advantage
36326         of zero-length array allocation with GCC. Removed reduntant (and
36327         wrong) MonoFieldType struct and use MonoParam instead. Changed
36328         mono_metadata_parse_field_type () to use common code for parsing.
36329         Added mono_metadata_typedef_from_field () and
36330         mono_metadata_typedef_from_method () to lookup a typedef index from a
36331         field or method token.
36332         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
36334 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
36336         * metadata.c (mono_metadata_parse_field_type): Implement. 
36337         (do_mono_metadata_parse_type): Split engine from
36338         mono_metadata_parse_type, so that we can create smaller structures
36339         for things that just have one pointer to the MonoType (look at
36340         the MonoFieldType)
36342 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
36344         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
36345         as Jan Gray found out, it is incorrect. 
36347 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
36349         * assembly.c: Implement asssembly loading.  This loads an image
36350         and loads all the referenced assemblies.  Come to think of it, we
36351         could always do lazy loading of the assemblies. 
36353         * image.c (mono_image_open): Keep loaded images in a hashtable.
36355         * image.h (MonoImage): Add reference count.
36357 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
36359         * assembly.c (mono_assembly_open): Keep track of the file name in
36360         case the assembly has no ASSEMBLY table.
36362         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
36363         from get.c here.
36365 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
36367         * metadata.c, metadata.h: decode local vars in method header
36368         parse function. Change callers accordingly.
36370 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
36372         * metadata.h, cil-coff.h: protect against multiple inclusion.
36373         Added some new structures to hold information decoded from metadata:
36374         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
36375         and relevant decoding/free functions.
36376         * metadata.c: implement decoding functions. Add warning for out of bounds
36377         index in mono_metadata_locate(). Implement mono_get_method () to retreive
36378         all the info about a method signature and invocation. Remove check on
36379         uninitialized local var in parse_mh() and fix memory leak.
36381 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
36383         * metadata.h: More macros.
36385         * tokentype.h: New file.
36387 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
36389         * assembly.c: added a consistency check and initialize
36390         some structures with g_new0().
36391         * metadata.c: fixed a couple more bugs in table size computation
36392         and add other checks for out-of bound access to metadata.
36394 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
36396         * metatada.c: fix bugs computing table sizes. Spew a
36397         warning when index in string heap is out of bounds.
36399 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
36401         * metadata.h: Add a couple of macros to manipulate tokens. 
36403 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
36405         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
36406         cli_section_tables).
36408 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
36410         * metadata.c (mono_metadata_user_string): New function, provides
36411         access to the UserString heap. 
36413 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
36415         * metadata.c: Add inline documentation.
36417 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
36419         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
36420         files. 
36422 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
36424         * typeattr.h: New file, TypeAttribute flags. 
36426 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
36428         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
36429         mono_assembly_ensure_section): Section loading code.
36430         (load_section_tables): Load the sections.
36432         * mono/metadata/metadata.c (mono_metadata_locate_token,
36433         mono_metadata_locate): Functions to locate the information
36434         definition given a token or a table and an index.
36435         (mono_metadata_compute_table_bases): New.
36436         (compute_size): New function to compute the sizes of the various
36437         tables.
36439         * mono/metadata/metadata.h: Finish listing the different index
36440         types. 
36442         * mono/metadata/pedump.c: Improve to dump new information.
36444 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
36446         * mono/metadata/metadata.c: Entered all the tables matching
36447         Beta2. 
36449         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2