1 2009-03-10 Zoltan Varga <vargaz@gmail.com>
3 * reflection.c (ensure_complete_type): New helper function to call
4 type resolve handlers for unfinished dynamic types.
5 (resolve_object): Call it for MonoClassFields. Fixes #483852.
7 2009-03-09 Zoltan Varga <vargaz@gmail.com>
9 * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
12 2009-03-08 Rodrigo Kumpera <rkumpera@novell.com>
14 * appdomain.c (get_shadow_assembly_location): Fix memleak.
16 2009-03-08 Zoltan Varga <vargaz@gmail.com>
18 * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
19 between GCHandles of type WeakTrackResurrection and the objects they
22 * gc.c: Partly implement the sematics of GCHandles of type
23 WeakTrackResurrection: these handles should only be cleared after the
24 finalizer of the object they are pointing to has ran.
26 2009-03-06 Mark Probst <mark.probst@gmail.com>
28 * icall.c: Partially revert r126631 because using the jump
29 trampolines for generic shared methods makes it superfluous.
31 2009-03-06 Zoltan Varga <vargaz@gmail.com>
33 * threads.c (handle_store): Create the 'threads' hash table with the proper
34 MONO_HASH_VALUE_GC type.
36 2009-03-05 Zoltan Varga <vargaz@gmail.com>
38 * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
41 * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
42 and LAST_GC_TRACKED as a GC root.
44 * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
46 * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
47 the static data even if it consists of 1 reference.
49 * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
50 if there is a GC descriptor.
52 * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
53 instead of through the GC since they contain no object references.
55 2009-03-05 Mark Probst <mark.probst@gmail.com>
57 * generic-sharing.c (instantiate_other_info): Always return a jump
58 trampoline for method code.
60 2009-03-05 Marek Habersack <mhabersack@novell.com>
62 * culture-info-tables.h: generated to include the en-tt culture.
64 2009-03-04 Rodrigo Kumpera <rkumpera@novell.com>
66 * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
67 capture the thread context.
69 * object.c (mono_async_result_new): Cache the invoke wrappers to
70 ExecutionContext::Capture.
72 2009-03-04 Rodrigo Kumpera <rkumpera@novell.com>
74 * marshal.h: Add a prototype for what mono_compile_method returns
77 * gc.c: Use the new prototype declaration.
79 2009-03-04 Geoff Norton <gnorton@novell.com>
81 * boehm-gc.c: Add some MONO_LOG tracing for the GC
83 * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
85 2009-03-04 Martin Baulig <martin@ximian.com>
88 (mono_debugger_runtime_invoke): Removed.
90 * mono-debug-debugger.c
91 (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
93 2009-03-02 Martin Baulig <martin@ximian.com>
96 (mono_debugger_unhandled_exception): Removed.
97 (mono_debugger_handle_exception): Removed.
98 (mono_debugger_throw_exception): Removed.
101 (mono_debug_debugger_version): Bump to 5.
103 * mono-debug-debugger.c: Moved the exception handling code to
106 2009-03-03 Zoltan Varga <vargaz@gmail.com>
108 * domain-internals.h (struct _MonoDomain): Add a separate lock for the
109 finalize_objects_hash.
111 * gc.c: Use the separate lock to access the finalize_objects_hash field.
113 * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
116 * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
119 * image.c (mono_image_close): Free it.
121 * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
122 allowing a creation of a wrapper which invokes its method using a CALLVIRT
123 on the this argument.
125 * gc.c (run_finalize): Optimize the calling of the finalizers.
127 2009-03-03 Martin Baulig <martin@ximian.com>
129 * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
130 of the `MonoGenericInst' changes.
132 2009-03-03 Rodrigo Kumpera <rkumpera@novell.com>
134 * icall.c (ves_icall_MonoType_GetGenericArguments): Use
135 mono_array_class_get_cached to reduce locking contention. Extract
138 * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
139 intermediary managed arrays. Use caching version of mono_array_new
140 to allocate the result array.
142 * icall.c (ves_icall_Type_GetEvents_internal): Same.
144 * icall.c (ves_icall_Type_GetNestedTypes): Same.
146 * locales.c (create_names_array_idx): Use mono_array_new_cached
147 to reduce locking contention.
149 2009-03-03 Zoltan Varga <vargaz@gmail.com>
151 * object.c (mono_method_add_generic_virtual_invocation): Put back the
152 thunk builder code for the non-interface case.
154 2009-03-02 Zoltan Varga <vargaz@gmail.com>
156 * object.c (get_generic_virtual_entries): New helper function to collect
157 the virtual generic method instances which need to be added to an IMT
159 (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
160 Instead of creating a new IMT thunk, reset the vtable slot to the
161 trampoline, the thunk will be created the next time the trampoline is called.
162 (build_imt_slots): Add support for virtual generic methods in interfaces by
163 adding to the IMT thunk all the methods registered using
164 mono_method_add_generic_virtual_invocation ().
166 * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
167 (struct _MonoIMTCheckItem): Ditto.
169 * object.c (mono_method_add_generic_virtual_invocation): Take a
170 MonoMethod argument instead of a MonoGenericInst. Fix the construction of
171 the IMT thunk to include all items.
173 * object.c (mono_class_create_runtime_vtable): Add a missing
174 mono_loader_unlock ().
176 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
178 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
180 * object-internals.h (MonoReflectionEvent): Add cached_add_event.
182 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
184 * object-internals.h: Rename _MonoReflectionEvent to
185 MonoReflectionMonoEvent so it reflects the right managed type.
186 Add a MonoReflectionEvent that correctly represents System.EventInfo.
189 * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
192 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
194 * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
195 intermediary managed arrays. Use caching version of mono_array_new
196 to allocate the result array.
198 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
200 * reflection.c: Use cached version of mono_array_new alongside
201 the mono_reflection_get_custom_attrs_by_type call path.
203 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
205 * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
206 intermediary managed arrays. Use caching version of mono_array_new
207 to allocate the result array.
209 * icall.c (ves_icall_Type_GetConstructors_internal): Same.
211 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
213 * icall.c: Add small implementation of a growable stack bound array.
215 * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
217 * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
218 intermediary managed arrays. Use caching version of mono_array_new
219 to allocate the result array.
221 2009-02-27 Rodrigo Kumpera <rkumpera@novell.com>
223 * icall.c: New icall ves_icall_System_Enum_compare_value_to that
224 helps Enum::CompareTo to be implemented without reboxing all enums
225 to their underlying type.
226 2009-02-27 Zoltan Varga <vargaz@gmail.com>
228 * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
229 since it acquires a global lock leading to scalability problems.
231 * profiler.c: Make the stat profiler work with multiple appdomains, this
232 currently only works when no appdomains are unloaded.
234 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
236 * appdomain.c: make the check to avoid copying when the assembly is
237 already shadow copied actually work.
239 2009-02-26 Zoltan Varga <vargaz@gmail.com>
241 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
243 * object-internals.h (struct _MonoReflectionGenericClass): Sync with
244 changes to the managed side.
246 2009-02-25 Zoltan Varga <vargaz@gmail.com>
248 * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
249 classes + a separate lock for it, as it is used frequently at runtime, not
250 just during metadata loading/JIT compilation.
252 * class.c (mono_bounded_array_class_get): Use the separate cache + lock
255 * object-internals.h (mono_class_from_name_cached): New macro to cache
256 the results of the lookup locally without having to declare a static
258 (mono_class_get_field_from_name_cached): Ditto.
259 (mono_array_class_get_cached): Ditto.
261 * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
264 * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
265 slower search in metadata.
267 * pedump.c: Fix a warning.
269 2009-02-23 Zoltan Varga <vargaz@gmail.com>
271 * reflection.c (encode_locals): Add checks for user types.
272 (method_encode_clauses): Ditto.
273 (method_encode_code): Ditto.
274 (mono_image_create_token): Ditto.
276 * object-internals.h: Change the type of more fields from MonoReflectionType*
279 2009-02-22 Zoltan Varga <vargaz@gmail.com>
281 * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
282 the a thread does not suspend within 100ms.
284 * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
285 in addition to StopRequested as well.
287 * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
289 * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
290 search the method_hash before inserting a new entry, to avoid crashes when
291 the same method is inserted multiple times, causing the old
292 MonoDebugMethodInfo structure to be freed by the value dtor function.
294 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
296 * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
297 SO_EXLUSIVEADDRUSE where available.
299 2009-02-21 Zoltan Varga <vargaz@gmail.com>
301 * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
302 runtime invoke wrappers, this time it is string ctor wrappers, which
303 pass a dummy string as 'this' instead of their obj argument. Fixes
306 2009-02-21 Jb Evain <jbevain@novell.com>
308 * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
309 only get create_culture once.
311 2009-02-20 Zoltan Varga <vargaz@gmail.com>
313 * reflection.c (mono_reflection_setup_internal_class): Move the user type
314 check before the locking.
316 * reflection.c (mono_reflection_setup_internal_class): Check for user types.
317 (mono_reflection_create_runtime_class): Ditto.
318 (mono_reflection_sighelper_get_signature_local): Ditto.
319 (mono_reflection_sighelper_get_signature_field): Ditto.
321 * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
322 is a System.MonoType object or similar.
323 (monotype_cast): New helper function to cast a MonoObject to a
324 MonoReflectionType object.
326 * object-internals.h: Change MonoReflectionType* members in structures to
327 MonoObject* members to force the usage of the monotype_cast () function.
329 * reflection.c icall.c: Use monotype_cast () for accessing Type members of
330 structures/arrays. This causes us to assert instead of crashing when
331 instances of user defined subclasses of System.Type are encountered.
333 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
337 * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
338 win32 resource loaded from a PE file.
340 * image.c: fix mono_image_lookup_resource.
342 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
346 * threads.c: added internal call for WaitHandle.SignalAndWait.
348 2009-02-19 Bill Holmes <billholmes54@gmail.com>
350 * cominterop.c : Adding cominterop_type_from_handle and
351 registering it as an icall. Replacing all references
354 Code is contributed under MIT/X11 license.
356 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
358 * Makefile.am: Add lock-tracer.h and lock-trace.c.
360 * appdomain.c: Call the tracer init function.
362 * domain-internals.h: Enable the tracer for the domain locks.
364 * image.c: Enable the tracer for image locks.
366 * loader.c: Enable the trace for the loader lock.
369 * lock-tracer.c: Initial implementation of the lock trace utility.
370 The tracer requires a compile time define to be enabled and a env var
371 to be enabled at runtime.
373 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
375 * domain.c (mono_domain_code_foreach): Improve documentation.
377 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
382 * reflection.c: Adjust locking order to the new semantics where the loader lock
385 2009-02-18 Rodrigo Kumpera <rkumpera@novell.com>
387 * domain.c: Add mono_domain_code_* functions that perform locking
388 around the domain codeman.
390 * domain-internals.h: Export those functions.
392 * object.c: Use new functions instead of acquiring the domain lock.
394 2009-02-19 Zoltan Varga <vargaz@gmail.com>
396 * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
397 delegate. Fixes #477396.
399 2009-02-18 Zoltan Varga <vargaz@gmail.com>
401 * reflection.c (create_custom_attr): Get rid of alloca.
403 2009-02-18 Bill Holmes <billholmes54@gmail.com>
405 * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
406 Adding exception handling for all CCW calls.
408 Code is contributed under MIT/X11 license.
410 2009-02-18 Zoltan Varga <vargaz@gmail.com>
412 * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
414 * marshal.c (emit_marshal_boolean): Add null checks to the new
415 native->managed marshalling code. Fixes #476247.
417 2009-02-17 Zoltan Varga <vargaz@gmail.com>
419 * class.c (mono_class_get_vtable_entry): Move the addition of
420 static rgctx invoke wrappers for vtable methods here, this simplifies
421 a lot of code and causes fewer rgctx wrappers to be created.
423 * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
424 name of the statistics to begin with an uppercase.
426 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
428 * reflection.c: Revert previous change as it breaks the build.
430 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
432 * verify.c: Properly handle SZARRAY element type.
436 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
438 * reflection.c (mono_image_create_method_token): Correctly encode
439 MethodDef MemberRefParent token.
443 2009-02-17 Zoltan Varga <vargaz@gmail.com>
445 * image.c (mono_image_close): Delete the critical section before
446 freeing the memory holding it.
448 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
450 * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
453 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
455 * pedump.c (main): Call mono_marshal_init so pedump
458 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
460 * loader.c (method_from_memberref): Properly fix #474271 and
461 don't break the runtime bad.
463 2009-02-16 Zoltan Varga <vargaz@gmail.com>
465 * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
466 (mono_domain_alloc0): Ditto.
468 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
470 * loader.c (method_from_memberref): Don't abort if the array
471 method is not found. A regular loader failure is more informative
476 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
478 *loader.c: Guard MonoImage::method_cache/methodref_cache
479 using the image lock instead of the loader lock.
481 * metadata.h: Add comments about which fields are protected by
484 2009-02-16 Zoltan Varga <vargaz@gmail.com>
486 * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
488 * generic-sharing.c (mono_method_construct_object_context): Remove the
489 wrapper_type == NONE assert, it is not needed.
491 2009-02-15 Zoltan Varga <vargaz@gmail.com>
493 * reflection.c (clear_cached_object): New helper function.
494 (mono_method_clear_object): New function to clear the cached reflection
495 objects for a dynamic method.
497 * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
498 Partly fixes # 463323.
500 2009-02-14 Rodrigo Kumpera <rkumpera@novell.com>
504 * reflection.c: Remove all explicit uses of MonoImage::property_hash.
506 2009-02-14 Rodrigo Kumpera <rkumpera@novell.com>
508 * image.c: Add mono_image_property_(lookup,insert,remove) functions that
509 take the image lock instead of the loader lock.
511 * metadata-internals.h: Export new functions.
513 2009-02-12 Miguel de Icaza <miguel@novell.com>
515 * domain.c (app_config_parse): Remove another use of stat that is
516 not necessary as g_file_get_contents already does the presence
519 2009-02-13 Zoltan Varga <vargaz@gmail.com>
521 * cominterop.c icall-def.h: Fix the DISABLE_COM build.
523 * marshal.c: Move the bstr handling code to cominterop.c.
525 * marshal.c: Remove some COM interop code missed previously.
527 2009-02-12 Miguel de Icaza <miguel@novell.com>
529 More Paolo patches from the Wii port:
531 * security.c: Remove ves_icall_System_Environment_get_UserName
534 * icall.c: And put ves_icall_System_Environment_get_UserName
537 * appdomain.c (mono_set_private_bin_path_from_config): Remove
538 redundant call to stat that was only used to test for the file
539 existence. Patch from Paolo.
541 * gc.c (run_finalize): If COM is disabled, do not link in
542 mono_marshal_free_ccw.
544 * generic-sharing.c: Use alloca.h here as well.
546 2009-02-13 Rodrigo Kumpera <rkumpera@novell.com>
548 * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
550 2009-02-13 Zoltan Varga <vargaz@gmail.com>
552 * cominterop.c cominterop.h: New files.
554 * marshal.c: Move the COM interop related code to cominterop.c. Make a few
555 function/typedefs which are needed by cominterop.c global.
557 2009-02-12 Mark Probst <mark.probst@gmail.com>
559 * generic-sharing.c: Don't take the loader lock to guard image
562 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
564 * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
565 called without the loader lock which is required to guard MonoImage:tokens.
567 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
573 * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
575 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
577 * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
578 Rework the code to use regular mono_image_alloc/0.
580 * loader.c: Rework the code to use regular mono_image_alloc/0.
582 * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
584 2009-02-12 Bill Holmes <billholmes54@gmail.com>
586 * object-internals.h : Fixing a typo in the
587 MonoReflectionComVisibleAttribute struct.
589 * marshal.c (cominterop_com_visible): Check the implemented
590 interfaces for ComImport.
592 * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls
593 assume that bools should be treated as VARIANTBOOLs.
595 * marshal.c (emit_marshal_boolean): Adding cases for
596 MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
598 * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to
599 emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
601 * marshal.c (cominterop_get_ccw): For COM calls assume that bools
602 should be treated as VARIANTBOOLs.
604 Code is contributed under MIT/X11 license.
606 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
608 * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
609 allocation with the image lock.
611 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
613 This patch is the last of a series to remove explicit reference of MonoImage::mempool
614 and use mono_image_alloc set of functions instead. This time we finish with reflection.c
616 * object.c: Add mono_string_to_utf8_image.
618 * object-internals.h: Export mono_string_to_utf8_image.
620 * reflection.c: Rework all explicit references to the the image mempool to go thought
621 the mono_image_alloc set of functions.
623 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
625 This patch is the third of a series to remove explicit reference of MonoImage::mempool
626 and use mono_image_alloc set of functions instead. This time we finish with marshal.c
627 and generics-sharing.c.
629 * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
630 as first argument. Note that this function remains broken as it doesn't perform locking around the
633 * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
635 * image.c: Add g_slist_append_image.
637 * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
638 the supplied image for allocation. Move code into mono_metadata_field_info_full.
640 * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
641 Fix all related code to do the same.
643 * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
645 * metadata-internals.h: Fix the signatures.
647 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
649 This patch is the second of a series to remove explicit reference of MonoImage::mempool
650 and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
651 and similar to work using MonoImage.
653 * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
656 * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
658 * class.c (mono_metadata_signature_deep_dup): Same.
660 * class.c (inflate_generic_type): Same.
662 * class.c (mono_class_inflate_generic_type_with_mempool): Same.
664 * metadata.c (mono_metadata_signature_dup_full): Same.
666 * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from
667 mono_metadata_signature_dup_full.
669 * metadata.c (mono_metadata_type_dup): Same.
671 * marshal.c: Pass the image to calls to mono_metadata_type_dup.
673 * reflection.c: Same.
675 * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
677 * metadata-internals.h: Fix the signatures.
679 * class-internals.h: Same.
681 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
683 This patch is the first of a series to remove explicit reference of MonoImage::mempool
684 and use mono_image_alloc set of functions instead.
686 * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
687 Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
690 * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
692 * class.c (g_list_prepend_mempool): Removed.
694 * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
696 * image.c: Add g_list_prepend_image.
698 * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
700 * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
703 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
705 * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
708 * image.c (mono_image_init): Init the lock field.
710 * image.c (mono_image_init): Cleanup the lock field.
712 * image.c: Add mono_image_(un)lock functions.
714 2009-02-11 Mark Probst <mark.probst@gmail.com>
716 * class.c, class-internals.h: mono_method_get_context_general()
717 combines the functionality of mono_method_get_context() and
718 mini_method_get_context().
720 * generic-sharing.c, domain-internals.h:
721 mono_method_construct_object_context() and
722 mono_domain_lookup_shared_generic() moved from mini.
724 * icall.c (ves_icall_InternalInvoke): Handle the case where the
725 method doesn't have the correct instantiation because it's shared
726 generic code. Fixes #473999.
728 2009-02-11 Zoltan Varga <vargaz@gmail.com>
730 * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
732 * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
734 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
736 * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
738 * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
740 * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
741 and recheck the cache for dups after it.
743 * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
745 Fixes one of the deadlocks found in #473150.
747 2009-02-11 Bill Holmes <billholmes54@gmail.com>
749 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
750 For Win32, add additional break conditions for accept.
752 Code is contributed under MIT/X11 license.
754 2009-02-10 Zoltan Varga <vargaz@gmail.com>
756 * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
757 lazily initialize the native wrapper cache.
758 (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
759 cache, since they are different from the normal wrappers.
761 * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
763 * metadata-internals.h (struct _MonoImage): Add a new wrapper for
764 AOT compiled native wrappers.
766 2009-02-09 Geoff Norton <gnorton@novell.com>
769 * security-core-clr.c: Allow enabling core-clr from the embedding
772 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
774 * socket-io.c: when requesting all the local ips, if there are no
775 interfaces up and running, MS returns 127.0.0.1.
777 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
779 * mono-perfcounters-def.h: processor time is an inverse time.
782 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
784 * socket-io.c: an empty host name returns the list of local IPs.
785 Fixes bug #386637 part 1/2.
787 2009-02-07 Zoltan Varga <vargaz@gmail.com>
789 * verify.c (mono_class_interface_implements_interface): Call
790 mono_class_setup_interfaces ().
791 (merge_stacks): Ditto.
793 2009-02-06 Zoltan Varga <vargaz@gmail.com>
795 * class.c (mono_class_setup_interfaces): New function to lazily initalize
797 (mono_generic_class_get_class): Don't initalize klass->interfaces.
798 (mono_generic_class_get_class): Ditto.
800 2009-02-06 U-QUACK\miguel <miguel@quack>
802 * icall-defs.h: Include also the Encrypt/Decrypt string methods as
803 they live in security.c
805 * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
806 another bit from Paolo's code.
808 2009-02-06 Zoltan Varga <vargaz@gmail.com>
810 * object.c (build_imt_slots): Add a small optimization to avoid inflating
811 methods which will be discarded by add_imt_builder_entry ().
813 * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
816 * loader.c: Add a statistics for the size of the memberref signature cache.
818 * loader.c (find_cached_memberref_sig): New helper function.
819 (cache_memberref_sig): Ditto.
821 * loader.c: Cache the result of parsing memberref signatures, since otherwise
822 they will be parsed again for every generic instantiation, leading to unbounded
825 2009-02-05 Zoltan Varga <vargaz@gmail.com>
827 * loader.c (mono_get_method_from_token): Avoid creating class for the generic
828 parameters of generic methods.
830 * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
831 after the original method is copied to the inflated method.
832 (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
834 * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
835 field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
837 * class.c metadata.c: Update after the changes above.
839 2009-02-05 Rodrigo Kumpera <rkumpera@novell.com>
841 * metadata-verify.c: Simplified error handling and added
842 section table validation.
844 2009-02-05 Zoltan Varga <vargaz@gmail.com>
846 * class-internals.h (MonoClassExt): New structure containing rarely used
848 (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
849 through a new 'ext' field.
851 * class.c (mono_class_alloc_ext): New helper function to allocate
854 * class.c metadata.c reflection.c: Update after MonoClass structure changes.
856 2009-02-05 Mark Probst <mark.probst@gmail.com>
858 * object.c (mono_object_get_virtual_method): Properly inflate
859 generic methods. Fixes #472692.
861 2009-02-05 Rodrigo Kumpera <rkumpera@novell.com>
863 * class.c (mono_class_create_from_typedef): The CLR supports SystemF
864 recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
865 for the parent type, the created type must be ready to be used on a generic
867 We fill this_arg/byval_arg if the parent is a generic instance to make sure
868 we won't have duplicated entries in generic_inst_cache.
872 2009-02-05 Miguel De Icaza <miguel@novell.com>
874 * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
875 replace with plain BSD per the comments on the bug MONO77637.
877 2009-02-05 Zoltan Varga <vargaz@gmail.com>
879 * class.c (mono_class_get_generic_class): New accessor function.
880 (mono_class_get_generic_container): Ditto.
882 * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
883 fields, similar to the ones in MonoMethod.
885 * class.c (mono_generic_class_get_class): Set klass->is_inflated.
886 (mono_class_create_from_typedef): Set klass->is_generic if needed.
888 * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
890 * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
891 the same information as element_class->byval_arg.
893 * class.c reflection.c: Remove references to class->byval_arg.
895 * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing
896 klass->enum_basetype directly.
898 * verify.c metadata.c object.c icall.c reflection.c: Use
899 mono_class_enum_basetype () instead of accessing klass->enum_basetype
902 2009-02-04 Miguel de Icaza <miguel@novell.com>
904 * icall-def.h: Remove internal calls for sockets when
905 DISABLE_SOCKET is defined, file system writing features when the
906 OS only support reading and not writing data and Policy support if
907 the Policy is disabled.
909 * image.c (do_mono_image_open): Apply Paolo's patches for using
910 mono_file_map_ APIs here.
912 * assembly.c: Add support for platforms to avoid prefix
915 2009-02-04 Zoltan Varga <vargaz@gmail.com>
917 * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
920 * class.c (mono_class_inflate_generic_class): New helper function.
922 * class.c: Use mono_class_inflate_generic_class in a few places. Add
923 statistics for inflated methods/classes.
925 * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
927 * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
928 the call is made from Delegate.CreateDelegate () for the invoke method of
931 * loader.c: Add a statistics for the memory occupied by inflated signatures.
933 * metadata.c (mono_metadata_signature_size): New helper function.
935 * class.c (mono_class_get_method_from_name_flags): Add an optimization for
938 * metadata.c (inflated_method_in_image): Avoid calling
939 mono_method_signature () if the method does not already have a signature.
941 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
943 * verify.c (is_compatible_boxed_valuetype): When checking if the boxed
944 valuetype is compatible with target type, check by inheritance as a
945 VT is not really compatible with System.ValueType, for example.
947 * verify.c (do_invoke_method): Improve error message.
949 * verify.c (do_box_value): If boxing a nullable, use the type argument
952 * verify.c (do_newobj): Improve error message.
956 2009-02-03 Miguel de Icaza <miguel@novell.com>
958 * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
960 2009-02-03 Mark Probst <mark.probst@gmail.com>
962 * generic-sharing.c: Don't hold domain lock when calling
963 instantiate_other_info(). Fixes #471958.
965 * domain-internals.h, loader.c: Describe locking policy of domain
968 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
970 * verify.c (mono_delegate_signature_equal): Make it possible to check
971 first-arg-bound delegates to static method.
973 * verify.c (verify_delegate_compatibility): Correctly verify delegates to
974 static methods with the first arg bound.
978 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
980 * verify.c: Added stack_slot_full_name to provide decent and more meanfull
983 * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
984 under strict mode. Any type, when boxed can be seen as a reference type.
988 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
990 * object.h: The lower bound of an array is a signed integer value.
991 Introduce mono_array_lower_bound_t typedef. It should be used instead of
992 gint32 as under MONO_BIG_ARRAYS it will be a gint64.
994 * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
995 calculate the upper bound.
999 2009-02-02 Miguel de Icaza <miguel@novell.com>
1001 From Paolo's work, refactored, cleared up:
1003 * threadpool.c, icall.c: ifdef code that requires a working socket
1006 * metadata.c (mono_metadata_field_info): Do not attempt to return
1007 a value from a function declared as void.
1009 * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
1010 from the console stack.
1012 * assembly.c: use strrchr instead of rindex.
1014 * class.c, object.c, marshal.c, icall.c, reflection.c: include
1015 alloca.h on systems that have it.
1017 * environment.c: Avoid code that uses stuff from
1020 * appdomain.c: Include sys/time.h.
1022 * console-io.c: include sys/ioctl.h if it is available.
1024 2009-02-03 Zoltan Varga <vargaz@gmail.com>
1026 * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
1028 * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
1031 * marshal.c: Set mb->skip_visibility instead of setting it on the method
1032 after it was created and cached, as the later is not thread safe.
1034 2009-02-02 Zoltan Varga <vargaz@gmail.com>
1036 * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
1037 called while the debugging module is not initialized. Fixes #471669.
1039 2009-02-02 Rodrigo Kumpera <rkumpera@novell.com>
1041 * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
1045 2009-02-02 Mark Probst <mark.probst@gmail.com>
1047 * generic-sharing.c (lookup_or_register_other_info): Make sure the
1048 loader lock is not taken while the templates lock is held. Fixes
1051 2009-02-02 Mark Probst <mark.probst@gmail.com>
1053 * metadata.c (type_in_image): Added a check to fix a monodis
1056 2009-02-02 Zoltan Varga <vargaz@gmail.com>
1058 * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
1061 * object.c (mono_runtime_invoke_array): Ditto.
1063 * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
1064 freeing wrappers of dynamic methods.
1066 * loader.c (mono_free_method): Call it. Fixes #463323.
1068 * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
1069 methods taking vtype/byref arguments, to fix yet another bug caused by
1070 the sharing of runtime invoke wrappers. Partly fixes #471259.
1072 2009-02-01 Zoltan Varga <vargaz@gmail.com>
1074 * debug-mono-symfile.c (check_line): Return NULL instead of returning
1075 <first file in file table>:1 when the IL offset does not have an associated
1078 2009-01-31 Zoltan Varga <vargaz@gmail.com>
1080 * mono-debug.c (mono_debug_lookup_locals): New function to return local
1081 variable info for a method.
1083 * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
1085 2009-01-30 Jb Evain <jbevain@novell.com>
1087 * pedump.c: reuse code from monodis to make sure pedump honors
1088 MONO_PATH, which is needed to verify net_2_1 assemblies.
1090 2009-01-29 Zoltan Varga <vargaz@gmail.com>
1092 * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
1093 there is no line number info.
1095 2009-01-29 Raja R Harinath <harinath@hurrynot.org>
1097 Avoid some MonoType allocations
1098 * reflection.c (mono_reflection_initialize_generic_parameter):
1099 Reuse MonoType from param->pklass rather than allocating one.
1100 (mono_dynamic_image_free): Update to changes.
1102 2009-01-28 Raja R Harinath <harinath@hurrynot.org>
1104 Rearrange some code to improve consistency
1105 * reflection.c (mono_reflection_setup_generic_class): Move body ...
1106 (mono_reflection_initialize_generic_parameter): ... here.
1108 2009-01-28 Zoltan Varga <vargaz@gmail.com>
1110 * generic-sharing.c (has_constraints): Enable gshared for methods/classes
1111 with type constraints as an experiment.
1113 * boehm-gc.c (on_gc_notification): Update mono_stats.
1115 2009-01-28 Raja R Harinath <harinath@hurrynot.org>
1117 Avoid some allocations
1118 * class-internals.h (_MonoGenericInst::type_argv): Convert from
1119 pointer to tail array to avoid extra allocation.
1120 * metadata.c (free_generic_inst): Update to changes.
1121 (mono_metadata_get_generic_inst): Likewise. Use alloca instead of
1124 2009-01-27 Zoltan Varga <vargaz@gmail.com>
1126 * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
1127 return TRUE if the two type objects are the same.
1129 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1131 * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
1132 (mono_class_native_size): Use klass->marshal_info->min_align instead of
1133 klass->min_align, since klass->min_align contains the managed alignment,
1134 while the native alignment can be different, like for longs on x86.
1137 * class-internals.h (MonoMarshalType): Add a min_align field.
1139 2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
1141 * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
1144 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1146 * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
1147 some comments about the usage of the used_regs field.
1149 * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
1152 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
1154 * appdomain.c: return NULL instead of throwing FileNotFoundException
1155 when LoadAssembly() fails.
1157 2009-01-23 Mark Probst <mark.probst@gmail.com>
1159 * metadata.c (mono_metadata_generic_param_equal): Only compare the
1160 image if the owner is NULL. Fixes the AOT failures.
1162 2009-01-23 Zoltan Varga <vargaz@gmail.com>
1164 * metadata.c (mono_metadata_load_generic_params): Initialize the
1165 MonoGenericParam structure using memset so the image field is initialized
1168 2009-01-21 Rodrigo Kumpera <rkumpera@novell.com>
1170 * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
1173 2009-01-21 Zoltan Varga <vargaz@gmail.com>
1175 * class.c (mono_class_setup_vtable_general): In the generic instance
1176 optimization, set method->slot for abstract virtual methods. Fixes part of
1179 2009-01-21 Rodrigo Kumpera <rkumpera@novell.com>
1181 * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
1182 which signals that the unloading has started but all appdomain services must
1185 * appdomain.c (mono_domain_unload): The initial state for unloading now
1186 is unloading_start and we switch to unloading after the managed call to
1187 AppDomain::DomainUnload has finished.
1189 The new unloading state has to be created because managed code in the
1190 DomainUnload event can depend on things like the threadpool still working.
1191 The domain must remain fully functional while the event executes.
1193 This shown as an issue due to Process::WaitForExit, which waits for
1194 async reads of stdout and stderr to complete. Since those are processed
1195 in the threadpool the code deadlocks because the DomainUnload callback
1196 waits for the async read finished event, which should have been set by a
1197 threadpool job but has been discarded due to the domain been in unload
1200 2009-01-21 Mark Probst <mark.probst@gmail.com>
1202 * metadata.c (mono_metadata_generic_param_equal): Owner as well as
1205 2009-01-21 Mark Probst <mark.probst@gmail.com>
1207 * reflection.c (resolve_object): For fields, inflate the class and
1208 then get the field in the inflated class.
1210 2009-01-20 Mark Probst <mark.probst@gmail.com>
1212 * object-internals.h (struct _MonoException): Added a comment
1213 explaining the new use of trace_ips.
1215 2009-01-20 Mark Probst <mark.probst@gmail.com>
1217 * generic-sharing.c (inflate_other_data): Inflate array methods
1220 * loader.c, class-internals.h: Rename search_in_array_class() to
1221 mono_method_search_in_array_class() and make it non-static.
1223 2009-01-19 Zoltan Varga <vargaz@gmail.com>
1225 * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
1226 Hopefully fixes #458168.
1228 2009-01-19 Christian Hergert <christian.hergert@gmail.com>
1230 * object.c (mono_raise_exception): Remove call to InterlockedIncrement
1231 as it is performed elsewhere.
1233 Code is contributed under MIT/X11 license
1235 2009-01-19 Christian Hergert <christian.hergert@gmail.com>
1237 * mono-perfcounters-def.h: Add counters for asp.net requests total and
1239 * object.c (mono_raise_exception): Increment the exceptions total
1240 counter when an exception is thrown.
1241 * class-internals.h: Add a location for storing the total number of
1242 asp.net requests served.
1243 * mono-perfcounters.c: Implement update support for asp.net counters
1244 from the class libraries. Implement read support for asp.net counters
1245 and exceptions total counter.
1247 2009-01-19 Zoltan Varga <vargaz@gmail.com>
1249 * loader.c (search_in_array_class): Call mono_class_setup_methods () before
1250 accessing klass->methods. Fixes #467385.
1252 2009-01-18 Zoltan Varga <vargaz@gmail.com>
1254 * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
1255 for byval arguments without an [Out] attribute. Fixes #467212.
1257 * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com).
1258 Fix compilation under android.
1260 * sgen-gc.c: Instead of scanning gray objects after all roots have been
1261 processed, scan them directly after they are copied, to achieve better locality
1264 * socket-io.c: Applied patch from Koushik Dutta
1265 (koush@koushikdutta.com). Disable IPV6 when running under android.
1267 2009-01-18 Zoltan Varga <vargaz@gmail.com>
1269 * icall.c (ves_icall_InternalExecute): Add write barriers.
1271 * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
1274 * sgen-gc.c: Implement write barriers in IL code.
1276 2009-01-17 Geoff Norton <gnorton@novell.com>
1278 * image.c: Avoid trying to walk the reference table of dynamic assemblies.
1280 2009-01-17 Geoff Norton <gnorton@novell.com>
1282 * image.c: When unloading the image->references table, there can be gaps
1283 in it. Ensure that we iterate every entry to avoid leaking assembly references
1284 when unloading an appdomain.
1286 2009-01-16 Zoltan Varga <vargaz@gmail.com>
1288 * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
1289 speed up ptr-in-nursery checks.
1291 * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
1292 threads_lock () to prevent deadlocks.
1294 * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
1295 does not need to be scanned during minor collections, since writes to it
1296 must use write barriers.
1298 2009-01-15 Rodrigo Kumpera <rkumpera@novell.com>
1300 * metadata-verify.c: Add pe nt header verification.
1302 2009-01-15 Zoltan Varga <vargaz@gmail.com>
1304 * gc.c: Fix a few warnings when using SGEN.
1306 2009-01-14 Rodrigo Kumpera <rkumpera@novell.com>
1308 * metadata-verify.c: Add pe optional header verification.
1310 2009-01-15 Zoltan Varga <vargaz@gmail.com>
1312 * sgen-gc.c: Add support for user defined marker functions, used by
1313 MonoGHashTable to avoid registering a GC root for every hash node.
1315 2009-01-14 Zoltan Varga <vargaz@gmail.com>
1317 * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
1318 non-pinned roots into separate hashes to avoid having to traverse them
1319 in functions which are only interested in one kind.
1321 2009-01-13 Rodrigo Kumpera <rkumpera@novell.com>
1323 * metadata-verify.c: Add pe header machine field verification.
1325 2009-01-13 Rodrigo Kumpera <rkumpera@novell.com>
1327 * metadata-verify.c: Add pe header size verification.
1329 2009-01-14 Zoltan Varga <vargaz@gmail.com>
1331 * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
1332 using the GC, they don't contain references.
1334 * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
1336 2009-01-13 Geoff Norton <gnorton@novell.com>
1338 * appdomain.c|h: Expose mono_domain_unload to the embedding api so that
1339 AppDomains created on the native side can be cleaned up on the native side.
1341 2009-01-13 Geoff Norton <gnorton@novell.com>
1343 * appdomain.c: Ensure that we call mono_context_init for the embedding api
1344 as well as the managed api.
1346 2009-01-13 Geoff Norton <gnorton@novell.com>
1348 * appdomain.h|c: New API for creating a MonoDomain in the embedding api
1349 with a MonoAppDomain initialized against it.
1351 2009-01-13 Zoltan Varga <vargaz@gmail.com>
1353 * reflection.c (MOVING_GC_REGISTER): Fix a warning.
1355 * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
1357 * marshal.c: Avoid setting the exception clauses after a method has been entered
1358 into the wrapper caches. Fixes #465700.
1360 * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
1362 (mono_mb_create_method): Set the clauses from the method builder.
1364 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1366 * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
1367 Patch from Makoto Kishimoto.
1369 2009-01-13 Zoltan Varga <vargaz@gmail.com>
1371 * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by
1372 encoding them as ROOT_DESC_COMPLEX.
1373 (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
1375 2009-01-12 Zoltan Varga <vargaz@gmail.com>
1377 * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
1378 no longer point to the nursery.
1380 * sgen-gc.c: Add a few comments/FIXMEs.
1382 * sgen-gc.c: Implement scanning of the alloc_pinned objects.
1384 * marshal.c (mono_marshal_get_synchronized_wrapper): Make the
1385 initialization of the various _method variables thread safe. Fixes
1388 2009-01-12 Mark Probst <mark.probst@gmail.com>
1390 * domain.c, domain-internals.h: Remove the shared_generics_hash
1391 and its lookup functions.
1393 2009-01-12 Bill Holmes <billholmes54@gmail.com>
1395 * socket-io.c: Fixing the MSVC build.
1397 Code is contributed under MIT/X11 license.
1399 2009-01-12 Rodrigo Kumpera <rkumpera@novell.com>
1401 * metadata-verify.c: Add pe header watermark verification.
1403 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
1405 * metadata-verify.c: Add lfanew verification.
1407 2009-01-12 Jb Evain <jbevain@novell.com>
1409 * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
1410 METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
1412 2009-01-10 Zoltan Varga <vargaz@gmail.com>
1414 * socket-io.c: Fix the build.
1416 * environment.c: Fix an #ifdef.
1418 2009-01-09 Zoltan Varga <vargaz@gmail.com>
1420 * threadpool.c (async_invoke_thread): Handle the wait function returning
1421 WAIT_IO_COMPLETION as well.
1422 (async_invoke_io_thread): Ditto.
1424 2009-01-09 Bill Holmes <billholmes54@gmail.com>
1426 * threads.c: Fixing the Windows build.
1428 Code is contributed under MIT/X11 license.
1430 2009-01-09 Zoltan Varga <vargaz@gmail.com>
1432 * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
1434 (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
1435 the thread to wait again.
1437 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
1439 * metadata-verify.c: Initial skeleton of the metadata verifier.
1441 * pedump.c: Add support for the metadata verifier.
1443 * verify-internal.h: Export the whole assembly metadata verifier function.
1445 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
1447 * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
1449 2009-01-09 Zoltan Varga <vargaz@gmail.com>
1451 * Makefile.am: Upgrade dtrace-prelink.sh location.
1453 2009-01-08 Rodrigo Kumpera <rkumpera@novell.com>
1455 * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
1456 well. Otherwise the shutdown deadlock that happens on unix will can happen
1458 If the main thread code finishes too fast it's possible that the finalizer
1459 thread won't have executed yet, won't record itself as the finalizer thread
1460 and the shutdown sequence will wait on it forever.
1462 2009-01-08 Rodrigo Kumpera <rkumpera@novell.com>
1464 * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
1467 2009-01-08 Miguel de Icaza <miguel@novell.com>
1469 * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
1470 Robert Jordan for pointing this out.
1472 2009-01-08 Christian Prochnow <cproch@seculogix.de>
1475 * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
1476 ves_icall_System_IO_DriveInfo_GetDriveType.
1478 2009-01-07 Miguel de Icaza <miguel@novell.com>
1480 * icall.c: Wrap calls to mono_strtod in CriticalSection
1481 invocations when using eglib, to work around #464316.
1483 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
1485 * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
1486 return value of GetCurrentDirectory to never access unitialized memory.
1488 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
1490 * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
1491 return value of GetCurrentDirectory and expand the buffer if needed.
1495 2009-10-07 Tom Hindle <tom_hindle@sil.org>
1497 * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) :
1498 Adding a call to mono_init_com_types.
1500 Code is contributed under MIT/X11 license.
1502 2009-01-07 Geoff Norton <gnorton@novell.com>
1504 * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on
1505 darwin. Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
1506 ai_canonname can be null in some cases on darwin, where the runtime assumes it will
1507 be the value of the ip buffer.
1509 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
1511 * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
1512 interfaces_packed here.
1514 Fixes part of #463294.
1516 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
1518 * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
1520 Fixes part of #463294.
1522 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
1524 * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
1525 is a boxed complex as well.
1527 Fixes part of #463294.
1529 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
1531 * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
1532 control if a methodspec should be created for the generic method definition from external assemblies.
1533 Caching of methodspec is done using the handleref hash table.
1537 2009-01-05 Rodrigo Kumpera <rkumpera@novell.com>
1539 * loader.c (find_method): When searching the interfaces of a class
1540 check the transitive closure of implemented interfaces.
1544 2009-01-03 Rodrigo Kumpera <rkumpera@novell.com>
1546 * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
1548 2009-01-03 Rodrigo Kumpera <rkumpera@novell.com>
1550 * class.c (get_implicit_generic_array_interfaces): Extract valuetype
1551 interfaces calculation to fill_valuetype_array_derived_types.
1553 * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
1554 ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
1557 * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
1558 interfaces for valuetypes if needed.
1560 * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
1561 for their basetype as well. Types are array expanded if rank is > 0.
1565 2008-12-30 Bill Holmes <billholmes54@gmail.com>
1567 * socket-io.h : Changing the signature of
1568 ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
1571 * icall-def.h : Changing the signature of
1572 System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
1574 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
1575 For Windows only. Avoid blocking when calling accept by
1576 querying for a connection via select. The loop also queries
1577 the thread state every 1000 micro seconds for the thread
1578 stop state. This will avoid the process hanging on shutdown
1579 when using a TcpChannel that is never connected to.
1581 Code is contributed under MIT/X11 license.
1583 2008-12-30 Marek Safar <marek.safar@gmail.com>
1585 * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
1587 2008-12-26 Rodrigo Kumpera <rkumpera@novell.com>
1589 * class.c (get_implicit_generic_array_interfaces): Extract common
1590 code to a helper function making it a lot easier on the eyes.
1592 2008-12-26 Rodrigo Kumpera <rkumpera@novell.com>
1594 * class.c (get_implicit_generic_array_interfaces): If the internal
1595 enumerator is an interface inflate System.Object instead of itself.
1599 2008-12-24 Rodrigo Kumpera <rkumpera@novell.com>
1601 * object.c (mono_runtime_invoke_array): Don't assert with
1602 byref nullable types.
1604 * marshal.c (mono_marshal_get_runtime_invoke): To handle
1605 byref nullables we unbox the object and store it on the
1607 We can't use the boxed object since it is the T of Nullable<T>
1608 and the boxed representation of a nullable it's underlying type
1610 We could cheat and create a boxed nullable and use the same
1611 machinery of other byref VTs but this feels like a hack and
1612 using the stack has the bonus of reducing heap pressure.
1616 2008-12-23 Rodrigo Kumpera <rkumpera@novell.com>
1618 * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
1623 2008-12-19 Bill Holmes <billholmes54@gmail.com>
1625 * icall-def.h : Adding an internal call definition for
1626 System.Environment.internalBroadcastSettingChange.
1628 * icall.c : Adding a Windows only implementation to broadcast a
1629 WM_SETTINGCHANGE when an environment variable has changed.
1631 Code is contributed under MIT/X11 license.
1633 2008-12-19 Mark Probst <mark.probst@gmail.com>
1635 * class.c, class-internals.h: Made
1636 mono_class_has_parent_and_ignore_generics() non-static.
1638 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
1640 * image.c: deal with the mmap failing when loading an image.
1642 2008-12-17 Geoff Norton <gnorton@novell.com>
1644 * threadpool.c: Ensure that the io_queue_lock is initialized
1645 in all circumstances, as we always attempt to cleanup against it.
1647 2008-12-17 Miguel de Icaza <miguel@novell.com>
1649 * icall.c (ves_icall_System_Environment_get_Platform): For
1650 compatibility reasons for existing client code we will keep
1651 returning 4 for a while.
1653 For how long will depend on the documentation being updated, and
1654 for us to give client code a chance to be updated.
1656 This reverts the original decison on #433108 since we did not
1657 catch roughly 33 instances of the broken code in our own source
1658 code base, we did not catch failures on the buildbots, and QA did
1659 not bring this as a problem.
1661 Only today I found some customer's code breaking due to our own
1662 class libraries not being fully updated and tracked it down to
1663 this change. I am reverting it because if we could not even get
1664 our story straight in our own code base, how can we hope that our
1665 end user code be fixed?
1667 As of this morning, our Wiki page that documents how to detect
1668 Unix had not been fixed.
1670 2008-12-16 Zoltan Varga <vargaz@gmail.com>
1672 * metadata.c (inflated_method_in_image): Add a workaround for #458168.
1674 * class.c (mono_class_get_fields): Handle loading errors.
1676 2008-12-12 Mark Mason <mmason@upwardaccess.com>
1678 * 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.
1680 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
1682 * mono-perfcounters.c: avoid warning.
1684 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
1686 * reflection.c (ensure_runtime_vtable): Work on generic instances and
1687 make sure all interfaces have MonoClass::interface_id set.
1689 * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
1690 method table is property set.
1692 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
1694 * class.c: New function mono_class_setup_interface_id that setup
1695 MonoClass::interface_id if needed.
1697 * class-internals.h: Export new function.
1699 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
1701 * class.c: Add code to sanity check the vtable after setup_vtable_general
1704 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
1706 * icall.c: make Assembly.GetExecutingAssembly work properly when
1707 reflection is used to invoke the method.
1710 2008-12-11 Mark Probst <mark.probst@gmail.com>
1712 * metadata/generic-sharing.c: Look for constraints in all type
1713 arguments, not just the first one.
1715 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
1717 * appdomain.c: return the correct CodeBase for an Assembly instance
1718 that was loaded from the shadow-copy directories.
1721 2008-12-10 Zoltan Varga <vargaz@gmail.com>
1723 * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
1725 * sgen-gc.c (check_object): New debugging helper function.
1727 * object.c: Fix calls to mono_value_copy_array ().
1729 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
1731 * class.c (mono_class_setup_fields): If working on an inflated class
1732 first check if the generic definition did init with success.
1736 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
1738 pedump.c (main): Fix a warning.
1740 2008-12-10 Bill Holmes <billholmes54@gmail.com>
1742 * object-internals.h : Adding a definition for
1743 MonoReflectionComVisibleAttribute.
1745 * marshal.c (cominterop_com_visible) : Method added to check the
1746 ComVisible attribute of a class.
1748 * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :
1749 cominterop_raise_hr_exception added to consolidate common code
1750 to raise hr exceptions.
1752 * marshal.c (cominterop_can_support_dispatch) : Method added to determine
1753 if a managed class should support IDispatch.
1756 (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :
1757 Added additional checks for managed object when getting
1758 an IDispatch interface.
1760 Code is contributed under MIT/X11 license.
1762 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
1764 pedump.c (main): Handle mono_get_method () returning NULL.
1766 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1768 * marshal.h: Fix a warning.
1770 2008-12-09 Bill Holmes <billholmes54@gmail.com>
1772 * marshal.c : Adding cominterop_release_all_rcws to release all
1773 runtime callable wrappers held by the runtime.
1775 * marshal.h : Adding declaration for cominterop_release_all_rcws.
1777 Code is contributed under MIT/X11 license.
1779 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1781 * metadata.c (mono_image_alloc_lock): New helper function.
1782 (mono_image_alloc0_lock): Ditto.
1784 * metadata.c: Use the alloc_lock () helper functions for allocating
1785 memory from the image mempool.
1787 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1789 * class.c (mono_class_from_generic_parameter): Document it's
1790 locking behavior. Fix double checked locking here, we stored in
1791 param->pklass a partially initialized MonoClass and no membar was used.
1793 2008-12-05 Marek Habersack <mhabersack@novell.com>
1795 * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
1796 (3) functions are present in the C library use them to do the
1797 job. If they are absent, make sure that the sum of int_part and
1798 dec_part is rounded before returning. This is necessary due to the
1799 division of dec_part by the power of 10 before the final addition
1800 is performed - if the result is not rounded in some cases it will
1801 yield invalid results.
1803 2008-12-04 Zoltan Varga <vargaz@gmail.com>
1805 * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
1806 wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR
1807 instruction instead of a pointer constant.
1809 2008-12-03 Zoltan Varga <vargaz@gmail.com>
1811 * loader.c (mono_method_get_header): Do most of the work outside the
1812 loader lock, to avoid assembly load hook deadlocks.
1814 * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
1815 (mono_metadata_parse_type_full): Ditto.
1817 2008-12-02 Rodrigo Kumpera <rkumpera@novell.com>
1819 * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
1820 Make the stack depth fixed. Ensure proper argument passing to the backtrace
1821 funtions. Finally, use a lock to produce well ordered output.
1823 The lock looks silly, as all calls to the corlib mempool should be guarded
1824 with the loader lock, but for some reason this fact doesn't help.
1826 * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
1828 2008-12-02 Mark Probst <mark.probst@gmail.com>
1830 * socket-io.c: 64 bit big-endian fixes.
1832 2008-12-01 Rodrigo Kumpera <rkumpera@novell.com>
1834 * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
1835 targets that require strict compatibility between the types.
1837 * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
1838 to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
1839 Kill the strict argument and create a new one valuetype_must_be_boxed.
1841 * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
1842 state that all valuetypes must be boxed.
1846 2008-11-29 Kornél Pál <kornelpal@gmail.com>
1848 * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
1849 IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
1851 Contributed under MIT/X11 license.
1853 2008-11-28 Rodrigo Kumpera <rkumpera@novell.com>
1855 * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
1856 the inflate_generic_type machinery should handle it.
1858 This avoids a crash when the field's flags is zero and it's type is
1860 What happens is that mono_metadata_parse_type_full will see that opt_attrs
1861 is zero and will return one of the cached built-in primitive types. Since
1862 those types live in read-only memory, the code that copies it crashes.
1864 2008-11-28 Mark Probst <mark.probst@gmail.com>
1866 * object.c: Don't put function descriptors into generalized IMT
1869 2008-11-28 Mark Probst <mark.probst@gmail.com>
1871 * class.c: Enable generic code sharing on PPC64.
1873 2008-11-27 Mark Probst <mark.probst@gmail.com>
1875 * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
1878 * generic-sharing.c: Allocate the method template slists from the
1879 image mempool so it doesn't leak.
1881 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
1883 * class.c (generic_array_methods): Release the linked list.
1885 2008-11-27 Mark Probst <mark.probst@gmail.com>
1887 * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
1888 invocation to g_utf16_to_utf8().
1890 2008-11-26 Mark Probst <mark.probst@gmail.com>
1892 * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
1893 arguments on big endian archs.
1895 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1897 * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
1898 the type name (test added in corlib).
1900 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1902 * pedump.c: initialize perf. counters. Fixes a segv.
1904 2008-11-25 Martin Baulig <martin@ximian.com>
1906 * mono-debug-debugger.c
1907 (mono_debugger_runtime_invoke): Return the exception object if an
1908 exception was thrown. Visual Studio displays the exception object
1909 in the locals window.
1911 2008-11-24 Mark Probst <mark.probst@gmail.com>
1913 * mini-trampolines.c (mono_delegate_trampoline): Don't return a
1916 2008-11-24 Mark Probst <mark.probst@gmail.com>
1918 * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
1919 MONO_TYPE_U are sizeof (gpointer), too.
1921 2008-11-24 Mark Probst <mark.probst@gmail.com>
1923 * marshal.c (mono_type_native_stack_size): Fixed size and
1924 alignment for reference types.
1926 2008-11-23 Mark Probst <mark.probst@gmail.com>
1928 * class.c (mono_class_generic_sharing_enabled): Disable generic
1929 code sharing for PPC64.
1931 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
1933 * icall.c (mono_method_get_equivalent_method): Make sure
1934 method->klass->methods is inited before looping over it.
1936 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
1938 * object.c: when calling ExecuteAssembly in a newly created domain,
1939 the configuration file and application base are already set up.
1940 Bug #446353 take 2 fixed.
1942 2008-11-20 Zoltan Varga <vargaz@gmail.com>
1944 * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
1945 Fixes #444715. Fix a warning.
1947 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1949 * appdomain.c: write the full path of the assembly to the .ini file
1950 created when "shadow-copying"
1953 2008-11-18 Zoltan Varga <vargaz@gmail.com>
1955 * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
1956 if signature==FALSE.
1958 2008-11-17 Bill Holmes <billholmes54@gmail.com>
1960 * marshal.h : Fix the cygwin build.
1961 marshal.c:12442: undefined reference to `_IID_IMarshal'
1963 Code is contributed under MIT/X11 license.
1965 2008-11-17 Bill Holmes <billholmes54@gmail.com>
1967 * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
1968 free threaded marshaler when QueryInterface is called on a COM callable
1969 wrapper requesting the IMarshal interface.
1971 Code is contributed under MIT/X11 license.
1973 2008-11-14 Zoltan Varga <vargaz@gmail.com>
1975 * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
1977 * reflection.c (mono_type_get_object): Special case the very common
1980 * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
1983 2008-11-13 Bill Holmes <billholmes54@gmail.com>
1985 * process.h : Adding method declaration for
1986 ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1988 * process.c : Adding implementation for
1989 ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1991 * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
1992 to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
1994 Code is contributed under MIT/X11 license.
1996 2008-11-10 Rodrigo Kumpera <rkumpera@novell.com>
1998 * appdomain.c (unload_thread_main): Clean up threadpool by
1999 calling mono_thread_pool_remove_domain_jobs.
2001 * domain-internals.h (struct _MonoDomain): Add new fields to
2002 help coordinate the cleanup of the threadpool.
2004 * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
2005 that cleans up the threadpool of all jobs associated with an appdomain.
2006 It does that by cleaning up the queues and making sure all active
2007 threads are accounted.
2009 * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
2010 unloaded or in the process of. Take this is such way that there is
2011 no race condition between another thread starting the unload and the
2012 current thread acknowledging it.
2014 * threadpool.c (async_invoke_thread): Same.
2016 * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
2017 firing the new thread.
2019 * threadpool.c (start_tpthread): Same.
2021 * theadpool.c (append_job): Increment threadpool_jobs before queueing.
2023 * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
2025 2008-11-06 Jonathan Chambers <joncham@gmail.com>
2027 * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle):
2028 Add support for DuplicateHandle.
2030 * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle):
2031 Add support for DuplicateHandle.
2033 * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle):
2034 Add support for DuplicateHandle.
2036 Code is contributed under MIT/X11 license.
2038 2008-11-06 Mark Probst <mark.probst@gmail.com>
2040 * class-internals.h: Make min_align into a whole byte.
2042 * class.c: Set min_align for SIMD types to 16.
2044 2008-11-05 Geoff Norton <gnorton@novell.com>
2046 * attach.c: Default the attacher to enabled for all cases including
2049 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2051 * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
2054 2008-11-04 Mark Probst <mark.probst@gmail.com>
2056 * monitor.c, monitor.h: New function for querying offsets of
2057 members of MonoThreadsSync.
2059 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2061 * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
2062 to speed up this function and to avoid the boundless memory growth caused by
2063 the signature_dup () calls.
2065 2008-11-02 Zoltan Varga <vargaz@gmail.com>
2067 * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
2070 * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
2073 * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
2075 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2078 * domain-internals.h: made mono_set_private_bin_path_from_config()
2080 * object.c: call the above function after setting the configuration
2081 file path for the root domain.
2084 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
2086 * assembly.c: when the assembly is loaded from an absolute path, end
2087 basedir with a directory separator.
2090 2008-10-30 Mark Probst <mark.probst@gmail.com>
2092 * monitor.c (mono_monitor_get_fast_enter_method): If
2093 CompareExchange is not available, don't create the fastpath
2094 instead of asserting. (The method is missing in the 1.1 profile.)
2096 2008-10-30 Mark Probst <mark.probst@gmail.com>
2098 * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
2100 * monitor.c, monitor.h: Code for generating Monitor.Enter and
2101 Monitor.Exit IL fastpaths.
2103 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2105 * class.c (mono_class_create_from_typedef): Added Vector2ul.
2107 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2109 * class.c (mono_class_create_from_typedef): Added Vector2l.
2111 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2113 * class.c (mono_class_create_from_typedef): Added Vector2d.
2115 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
2117 * appdomain.c: translate \ into / for cache_path.
2118 * domain-internals.h: new mono_is_shadow_copy_enabled().
2119 * icall.c: (fill_reflection_assembly_name) do the same path
2120 manipulations that get_code_base does.
2121 (get_code_base) use mono_is_shadow_copy_enabled.
2123 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
2125 * appdomain.c: shadow-copied assemblies go to CachePath +
2126 ApplicationName when both are set. DynamicBase has nothing to do with
2130 2008-10-26 Zoltan Varga <vargaz@gmail.com>
2132 * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
2133 STANDALONESIG table.
2135 * metadata-internals.h (struct _MonoDynamicImage): Add cache for
2136 standalone signatures.
2138 * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature
2139 comparison code: instead of comparing the signatures using a custom
2140 equals function, transform them to a common signature and compare that. This
2141 works better with AOT.
2143 2008-10-25 Zoltan Varga <vargaz@gmail.com>
2145 * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
2147 * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
2148 call for generic instances.
2149 (mono_class_setup_properties): Call setup_properties () before accessing
2152 * class.c (mono_class_get_virtual_methods): New helper function to iterate
2153 over the virtual methods of a class using metadata if possible, avoiding the
2154 creation of MonoMethod's for non-virtual methods.
2156 * class.c (mono_class_setup_vtable_general): Rewrite this to use
2157 get_virtual_methods () to iterate over the virtual methods of classes.
2159 2008-10-25 Martin Baulig <martin@ximian.com>
2161 * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
2163 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
2165 * class.c (mono_class_create_from_typedef): Added Vector4i.
2167 2008-10-24 Mark Probst <mark.probst@gmail.com>
2169 * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
2170 ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
2171 special-casing applies to eliminate the call completely.
2173 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
2175 * class.c (mono_class_create_from_typedef): Added Vector8s.
2177 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
2179 * class.c (mono_class_create_from_typedef): Added Vector16sb.
2181 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2183 * icall.c: get rid of annoying warning.
2185 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
2187 * threadpool.c: in 1.x, if you change the background status of the
2188 threadpool thread, it's not reset.
2189 Remove unnecessary calls to SetState.
2191 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2193 * threadpool.c: asynchronously create a set of idle threads upon first
2194 use of the threadpool. SetMinThreads will now start the appropriate
2195 number of idle threads if they are not already running. The default is
2196 1 threadpool thread per CPU. Increased the maximum number of threads
2199 2008-10-22 Martin Baulig <martin@ximian.com>
2201 Revert r116521 from Zoltan, it breaks the debugger:
2203 * class.c (mono_class_get_virtual_methods): New helper function to iterate
2204 over the virtual methods of a class using metadata if possible, avoiding the
2205 creation of MonoMethod's for non-virtual methods.
2207 * class.c (mono_class_setup_vtable_general): Rewrite this to use
2208 get_virtual_methods () to iterate over the virtual methods of classes.
2210 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2212 * threads.c: when creating a threadpool thread, set its state to
2214 * threadpool.c: reset the background state of a threadpool thread
2215 after finishing each work item
2218 2008-10-22 Zoltan Varga <vargaz@gmail.com>
2220 * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
2222 * class.c (mono_class_setup_vtable_general): Add an optimized version for
2223 generic instances which works by inflating the methods in the container
2226 * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
2227 variant which doesn't make a copy if no inflation was done.
2228 (mono_class_setup_fields): Use it.
2230 * metadata.c (mono_metadata_get_shared_type): New helper function to
2231 return a shared instance of a given MonoType.
2233 * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
2234 a copy of most non-generic types.
2236 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
2238 * threadpool.c: remove one more GetSystemInfo () call.
2240 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
2242 * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
2243 use the code in mono-proclib.h to get processor information.
2245 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
2247 * appdomain.c: fixed the logic that determines whether assemblies in a
2248 directory are "shadow-copied" or not. Bug #433483 fixed.
2250 2008-10-22 Zoltan Varga <vargaz@gmail.com>
2252 * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
2255 2008-10-21 Zoltan Varga <vargaz@gmail.com>
2257 * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
2260 * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
2261 reflection.c: Use mono_field_get_name () for accessing a field's name.
2263 * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
2266 * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
2269 * loader.c (find_method_in_class): Reenable the metadata optimization by
2270 not using it for generic instances.
2272 * class-internals.h (MonoFieldDefaultValue): Extract the rarely used
2273 data/def_type fields from MonoClassField into a separate structure.
2274 (struct MonoClassField): Remove data/def_type fields.
2275 (struct _MonoClass): Add a 'field_def_values' array to store the default
2276 values/RVA for fields.
2278 * class.c reflection.c: Update after the changes.
2280 * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
2281 for accessing field->data.
2283 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
2285 * loader.c (find_method_in_class): Revert the last change for now as
2286 it breaks Mono.C5 unit tests.
2288 * class-internals.h (struct _MonoDynamicGenericClass): Add fields
2289 'field_generic_types' and 'field_objects' which contain the information
2290 previously stored in MonoInflatedField.
2291 (MonoInflatedField): Delete.
2292 (struct _MonoClassField): Delete 'generic_info' field.
2294 * reflection.c: Store the information which was previously in
2295 field->generic_info in MonoDynamicGenericClass instead.
2297 * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
2298 MonoClassField changes.
2300 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
2302 * marshal.c, method-builder.c: get rid of wrapper_hash and instead
2303 store the value inside the data array of the MonoMethodWrapper.
2304 This saves memory, is faster and fixes the lifetime issues (methods
2305 were never removed from the hash previously). May also fix bug#436996.
2307 2008-10-21 Zoltan Varga <vargaz@gmail.com>
2309 * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic
2310 generic instances, compute the type from the generic definition instead of
2311 looking in field->generic_info.
2313 * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
2314 for inflated fields, the only user was get_fieldref_token () which no
2317 * class.c (mono_class_init): Revert the last change as it seems to cause
2320 * class-internals.h (struct _MonoClassField): Reorder fields to save 4
2321 bytes on 64 bit platforms.
2323 * object.c (mono_class_create_runtime_vtable): Fix a warning.
2325 * object.c (mono_class_create_runtime_vtable): Don't initalize
2326 field->data/field->def_type here, it is done lazily by
2327 mono_class_get_field_default_value ().
2329 * icall.c (ves_icall_get_enum_info): Call
2330 mono_class_get_field_default_value () instead of directly accessing
2331 field->data and field->def_type.
2333 * object.c (get_default_field_value): Ditto.
2335 * class.c (mono_field_get_data): Ditto.
2337 * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
2338 call for generic instances.
2340 * loader.c (find_method_in_class): If klass != from_class, then inflate
2341 the method with the context of from_class, since the caller assumes this.
2343 2008-10-20 Zoltan Varga <vargaz@gmail.com>
2345 * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
2346 for accessing method->slot.
2348 2008-10-20 Cedric Vivier <cedricv@neonux.com>
2350 * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
2352 2008-10-19 Zoltan Varga <vargaz@gmail.com>
2354 * class.c (mono_method_get_vtable_index): Use
2355 mono_method_get_vtable_slot () for accessing method->slot.
2357 * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
2358 accessing klass->methods.
2360 * class.c (mono_method_get_vtable_slot): New helper function.
2361 (mono_class_get_vtable_entry): Ditto.
2362 (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
2363 accessing method->slot.
2365 * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
2366 method to get_inflated_method ().
2368 * class.c (mono_class_get_inflated_method): New helper method to obtain
2369 a method of an inflated class without calling setup_methods ().
2370 (mono_class_get_cctor): Use get_inflated_method.
2372 * generic-sharing.c (mono_class_get_method_generic): Ditto.
2374 * marshal.c image.c: Lazily create all the marshal caches.
2376 * image.c (mono_image_init): Move initialization of runtime_invoke
2377 caches to marshal.c.
2379 * marshal.c (get_cache): New helper function to lazily initialize a
2381 (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
2383 * debug-helpers.c (mono_method_full_name): Include generic arguments.
2385 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
2387 * loader.c: fixed check for interface type.
2389 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
2391 * appdomain.c: check for NULL setup before it's referenced.
2394 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
2396 * class.c: remove the unused old vtable setup code.
2398 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
2400 * class.c: don't depend on interface order in
2401 setup_interface_offsets (bug #435777).
2402 * reflection.c: sort the InterfaceImpl table (patch from
2403 Jb Evain <jbevain@novell.com>).
2405 2008-10-13 Zoltan Varga <vargaz@gmail.com>
2407 * assembly.c (mono_assembly_open_full): Avoid loading images while holding
2408 the low level assemblies lock.
2410 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
2412 * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
2413 object.c, reflection.c, socket-io.c, threads.c: introduced
2414 mono_framework_version () to return the major framewrok version,
2415 changed the code that was using more complex patterns to use it.
2416 Return the correct value for PlatformID for OSX.
2418 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
2420 * icall-def.h, process.h, process.c: added an icall to get info about
2421 processes using mono-proclib.
2423 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
2425 * mono-perfcounters.c: use the mono-proclib functions to
2426 access process information.
2428 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
2430 * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
2431 monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
2432 reflection.c: remove rawbuffer usage: mmap support is more sanely
2433 provided by utils/mono-mmap.
2435 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
2437 * gc.c: use posix semaphores when possible so that
2438 mono_gc_finalize_notify() is signal safe.
2440 2008-10-11 Zoltan Varga <vargaz@gmail.com>
2442 * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
2443 #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
2444 be #ifdef-ed out, the linker will remove the rest.
2446 * marshal.c: Implement DISABLE_COM.
2448 * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
2450 2008-10-11 Miguel de Icaza <miguel@novell.com>
2452 * locales.c (string_invariant_compare_char): Optimization: do not
2453 call g_unichar_type unless we actually need the information.
2455 2008-10-10 Mark Probst <mark.probst@gmail.com>
2457 * object.c, class-internals.h: Also create remoting trampolines
2458 for generic methods. Pass the domain to the remoting trampoline
2459 creation function, too.
2461 2008-10-10 Zoltan Varga <vargaz@gmail.com>
2463 * class.c (mono_class_init): Fix+re-enable the finalize optimization.
2465 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
2467 * class.c (mono_class_create_from_typedef): Vector4u was renamed to
2470 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
2473 * locales.c: remove the use of g_strdown. Fixes bug #322313.
2475 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
2477 * assembly.c: in mono_assembly_load_friends() take the assemblies lock
2478 for the least possible amount of time (extending the fix in r113458).
2480 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
2482 * class.c (mono_class_create_from_typedef): Retrofit to new type names.
2484 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
2486 * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
2487 as possible simd intrinsic types.
2488 Optimized the test to check for the common prefix first.
2490 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
2492 * class.c: back out part of a broken optimization committed on
2493 May 23th (bug #433908).
2495 2008-10-09 Mark Probst <mark.probst@gmail.com>
2497 * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
2498 Win32. Should fix #432388 for most cases until we have the new
2501 2008-10-08 Zoltan Varga <vargaz@gmail.com>
2503 * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
2504 instead of using inst->id so the hash is stable for AOT.
2506 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2509 * icall.c: create a .ini file for shadow-copied assemblies that
2510 contains the location of the original assembly. Use this to return the
2511 proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
2512 Also fix the number of '/' for windows when returning the CodeBase.
2515 2008-10-07 Bill Holmes <billholmes54@gmail.com>
2517 * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
2519 Code is contributed under MIT/X11 license.
2521 2008-10-07 Bill Holmes <billholmes54@gmail.com>
2523 * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
2524 if if the class vtable needs initialized.
2526 Code is contributed under MIT/X11 license.
2528 2008-10-07 Bill Holmes <billholmes54@gmail.com>
2530 * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) :
2531 Adding default MonoMarshalSpecs for COM methods. OBJECT->STRUCT,
2532 STRING->BSTR, and CLASS->INTERFACE.
2534 Code is contributed under MIT/X11 license.
2536 2008-10-07 Marek Habersack <mhabersack@novell.com>
2538 * sysmath.h: changed the declaration of the
2539 ves_icall_System_Math_Round2 icall by adding an extra
2540 away_from_zero parameter.
2542 * sysmath.c (ves_icall_System_Math_Round2): added support for
2543 away from zero rounding. The icall now takes an extra boolean
2544 parameter to signal that away from zero operation is requested.
2546 2008-10-06 Zoltan Varga <vargaz@gmail.com>
2548 * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
2549 the delegate klass so it can work with full-aot.
2550 (mono_marshal_get_delegate_end_invoke): Ditto.
2551 (mono_marshal_get_delegate_invoke): Ditto.
2553 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
2555 * gc.c, attach.h, attach.c: remove a bad pattern:
2556 add_finalizer_callback () is not implemented correctly, it can't
2557 without adding more overhead to the finalizer loop and it's not
2558 even needed, since we know exactly what we need to call, so there is
2559 no need to do so through an expensive function pointer.
2561 2008-10-04 Zoltan Varga <vargaz@gmail.com>
2563 * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
2565 * attach.c (mono_attach_init): Remove the #ifdef.
2567 2008-10-04 Andreas Färber <andreas.faerber@web.de>
2569 * attach.c (mono_attach_init): Don't use
2570 mono_gc_add_finalizer_thread_callback when compiling without GC.
2573 Code is contributed under MIT/X11 license.
2575 2008-10-03 Zoltan Varga <vargaz@gmail.com>
2577 * class.c (mono_class_create_from_typedef): Remove the
2578 #ifndef DISABLE_SIMD stuff.
2580 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
2582 * class-internals.h (MonoClass): Added simd_type bit field.
2584 * class.c (mono_class_create_from_typedef): Check if type is a simd
2587 2008-10-03 Mark Probst <mark.probst@gmail.com>
2589 * object.c (mono_method_add_generic_virtual_invocation): Only add
2590 instantiations to the thunk whose count is at least as large as
2593 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
2595 * icall.c: changed the Type of the exception thrown when trying to
2596 invoke a constructor on an abstract class. Part of the fix for bug
2599 2008-10-02 Mark Probst <mark.probst@gmail.com>
2601 * class.c, class-internals.h (mono_method_get_vtable_index): New
2602 function which returns the index into the vtable and properly
2603 handles inflated virtual generic methods.
2605 2008-10-01 Mark Probst <mark.probst@gmail.com>
2607 * object.c, domain.c, object-internals.h, domain-internals.h:
2608 Generalize IMT thunk machinery to also handle thunks for virtual
2609 generic method invokes. When a virtual generic method is invoked
2610 more than a number of times we insert it into the thunk so that it
2611 can be called without lookup in unmanaged code.
2613 * generic-sharing.c, class-internals.h: Fetching a
2614 MonoGenericInst* for a method from an (M)RGCTX.
2616 2008-10-01 Zoltan Varga <vargaz@gmail.com>
2618 * marshal.c (emit_marshal_string): Applied a variant of a patch by
2619 tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
2620 marshalling. Fixes #431304.
2622 2008-10-01 Bill Holmes <billholmes54@gmail.com>
2624 * marshal.c (emit_marshal_variant) : Change the attribute checks to
2625 handle when ref is specified without In or Out.
2627 Code is contributed under MIT/X11 license.
2629 2008-09-30 Mark Probst <mark.probst@gmail.com>
2631 * loader.c (mono_get_method_constrained): Don't expand method with
2632 the class's context, because it's already a method of that class.
2634 2008-09-30 Atsushi Enomoto <atsushi@ximian.com>
2636 * attach.c : should be correct build fix.
2638 2008-09-29 Zoltan Varga <vargaz@gmail.com>
2640 * attach.c: Fix the previous change.
2642 2008-09-29 Atsushi Enomoto <atsushi@ximian.com>
2644 * attach.c : quick w32 build fix.
2646 2008-09-27 Miguel de Icaza <miguel@novell.com>
2648 * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
2649 crashes MonoDevelop: #430455.
2651 2008-09-27 Zoltan Varga <vargaz@gmail.com>
2653 * domain-internals.h (struct _MonoDomain): Move most fields used only by
2654 the JIT do MonoJitDomainInfo in ../mini/mini.h.
2656 * domain.c: Remove initialization/cleanup of the removed fields.
2658 2008-09-27 Mark Probst <mark.probst@gmail.com>
2660 * class.c (mono_class_generic_sharing_enabled): Enable generic
2661 code sharing for PPC.
2663 2008-09-26 Bill Holmes <billholmes54@gmail.com>
2665 * attach.c : Fixing the Windows builds.
2667 Code is contributed under MIT/X11 license.
2669 2008-09-25 Zoltan Varga <vargaz@gmail.com>
2671 * class.c (mono_class_generic_sharing_enabled): Experimentally change
2672 the default generic sharing mode to 'all'.
2674 2008-09-25 Mark Probst <mark.probst@gmail.com>
2676 * generic-sharing.c, class-internals.h: New function for checking
2677 whether a method needs a static RGCTX invoke wrapper. A few
2678 funtions moved from mini/generic-sharing.c.
2680 * icall.c: New function used.
2682 2008-09-25 Mark Probst <mark.probst@gmail.com>
2684 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
2685 Static RGCTX invoke wrapping applies to value type methods, too.
2687 * class.c (mono_class_setup_vtable_general): In generic-shared
2688 value types, wrap methods with a static RGCTX invoke wrapper.
2690 2008-09-25 Zoltan Varga <vargaz@gmail.com>
2692 * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
2695 2008-09-24 Zoltan Varga <vargaz@gmail.com>
2697 * gc.c (mono_gc_add_finalizer_thread_callback): New function to
2698 register a callback which is called when the finalizer thread is woken
2700 (finalizer_thread): Call the callback if it exists.
2702 * attach.h attach.c: New files, implementing the attach mechanism.
2704 * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
2706 * object.c (mono_object_get_virtual_method): Fix an assertion introduced
2707 by the previous change.
2709 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
2711 * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
2712 loader.c, marshal.c, metadata-internals.h, metadata.c,
2713 method-builder.c, object.c, reflection.c: introduced specific functions
2714 to allocate from the domain and image mempools and cleaned up most of
2715 the code to use them (still missing a few in reflection.c).
2716 Keep the loader bytes counter updated.
2718 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
2720 * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
2721 loader-related counters.
2723 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
2725 * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
2726 added more MS-compatible counters.
2728 2008-09-22 Zoltan Varga <vargaz@gmail.com>
2730 * class.c (mono_class_setup_fields): Call setup_fields before accessing
2731 class->blittable. Fixes #428217.
2733 2008-09-21 Zoltan Varga <vargaz@gmail.com>
2735 * reflection.c (mono_image_get_field_on_inst_token): Call
2736 field_encode_signature () since that handles custom modifiers too.
2739 2008-09-20 Zoltan Varga <vargaz@gmail.com>
2741 * reflection.c (add_custom_modifiers): New helper function to merge custom
2742 modifiers stored in objects to a MonoType.
2743 (fieldref_encode_signature): Encode custom modifiers.
2744 (mono_image_get_generic_field_token): Call add_custom_modifiers ().
2745 (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
2747 2008-09-19 Kornél Pál <kornelpal@gmail.com>
2749 * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
2750 calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
2751 64-bit IL only images because imports are not resolved for IL only images.
2752 Special thanks to Bill Holmes for finding this bug and testing the patch.
2753 Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
2755 Contributed under MIT/X11 license.
2757 2008-09-19 Miguel de Icaza <miguel@novell.com>
2759 * mono-config.c (dllmap_start): Add support for the bits keyword
2760 on dllentry and dllmap to easily detect 32 vs 64 bit systems.
2762 2008-09-19 Mark Probst <mark.probst@gmail.com>
2764 * reflection.c (inflate_mono_method): When the class the method is
2765 to be inflated for is itself not inflated, just return the method.
2767 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
2769 * mono-perfcounters.c: use more user friendly process instance names.
2771 2008-09-18 Bill Holmes <billholmes54@gmail.com>
2773 * marshal.c (emit_marshal_variant) : Change the attribute checks to
2774 handle "[in] ref" and "[in][out] ref" cases.
2776 * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
2777 to mono_mb_create_method. This was causing problems calling native to
2778 managed passing Variants by value.
2780 Code is contributed under MIT/X11 license.
2782 2008-09-18 Zoltan Varga <vargaz@gmail.com>
2784 * class.c (can_access_internals): Call mono_assembly_load_friends ()
2785 before accessing the friend_assembly_names field.
2787 * assembly.c (mono_assembly_load_friends): Make this callable multiple
2789 (mono_assembly_load_from_full): Avoid calling load_friends (), it is
2790 called lazily when it is needed.
2792 * metadata-internals.h (struct _MonoAssembly): Add
2793 'friend_assembly_names_inited' flag.
2795 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
2797 * mono-perfcounters-def.h: fix the types of a few counters.
2798 * mono-perfcounters.c: implemented the instance names getter
2801 2008-09-18 Atsushi Enomoot <atsushi@ximian.com>
2803 * culture-info-table.h : regenerated.
2805 2008-09-17 Robert Jordan <robertj@gmx.net>
2807 * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
2808 context bound objects. Fixes #415577.
2810 Code is contributed under MIT/X11 license.
2812 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
2814 * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
2815 implementation (bug #423582).
2817 2008-09-16 Zoltan Varga <vargaz@gmail.com>
2819 * object.c (mono_object_get_virtual_method): Handle the case method->slot
2820 is not set. Fixes #426309.
2822 2008-09-16 Jb Evain <jbevain@novell.com>
2824 * class.c (mono_class_from_name): fix the exported type look up
2825 when the type is defined in a referenced assembly.
2827 2008-09-16 Jb Evain <jbevain@novell.com>
2829 * reflection.c (mono_image_fill_export_table_from_type_forwarders):
2830 increment the next index counter on each iteration to make that work
2831 for more than one type forwarder. Unmanaged part to fix #422929.
2833 2008-09-15 Mark Probst <mark.probst@gmail.com>
2835 * object-internals.h: enum ComInterfaceType in
2836 MonoInterfaceTypeAttribute is guint32, not guint16.
2838 2008-09-12 Mark Probst <mark.probst@gmail.com>
2840 * cil-coff.h, image.c, reflection.c: Endianness fixes in image
2843 2008-09-11 Mark Probst <mark.probst@gmail.com>
2845 * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
2848 2008-09-11 Mark Probst <mark.probst@gmail.com>
2850 * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
2851 Endianness fixes for MonoSymbolFileOffsetTable.
2853 2008-09-10 Bill Holmes <billholmes54@gmail.com>
2855 * process.c (complete_path) : Removing quotes from the
2856 input path. The glib file routines do not handle file paths
2857 that have quotes around them.
2859 Code is contributed under MIT/X11 license.
2861 2008-09-10 Bill Holmes <billholmes54@gmail.com>
2863 * socket-io.h : Adding a comment to provide locations where
2864 changes to MonoSocketAsyncResult need to be synced.
2866 Code is contributed under MIT/X11 license.
2868 2008-09-10 Zoltan Varga <vargaz@gmail.com>
2870 * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out
2871 parameters as well. Fixes #425001.
2873 2008-09-08 Miguel de Icaza <miguel@novell.com>
2875 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
2878 2008-09-07 Miguel de Icaza <miguel@novell.com>
2880 * console-io.c: Add support for tracking the window size if it
2883 The setup is very simple: the TtySetup function will now return a
2884 pointer to a location in memory that tracks the current console
2885 size. The managed code checks its current value every time its
2886 queried against the last value set, and updates accordingly.
2888 With this setup we can work with multiple consoles, and we do not
2889 require to poke into managed code from a signal handler.
2891 Additionally, the environment for COLUMNS and LINES is now handled
2894 (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
2896 2008-09-07 Mark Probst <mark.probst@gmail.com>
2898 * marshal.c (mono_type_native_stack_size): Treat
2899 MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
2901 2008-09-04 Jb Evain <jbevain@novell.com>
2903 * class.c (mono_class_is_assignable_from): fix assignability of nullables
2906 2008-09-03 Rodrigo Kumpera <rkumpera@novell.com>
2908 * verify.c (verify_type_compatibility_full): Revert change
2909 to allow converting a native int to unmanaged pointer be verifiable
2910 under non-strict mode.
2911 It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
2913 * verify.c: Added some TODOs.
2915 2008-09-02 Bill Holmes <billholmes54@gmail.com>
2917 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
2918 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
2919 Changed to use GlobalAlloc for the memory returned on Windows platforms.
2921 Code is contributed under MIT/X11 license.
2923 2008-09-02 Jb Evain <jbevain@novell.com>
2925 * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
2927 2008-09-02 Rodrigo Kumpera <rkumpera@novell.com>
2929 reflection.c (typebuilder_setup_fields): Handle classes with
2932 2008-09-01 Rodrigo Kumpera <rkumpera@novell.com>
2934 class.c (mono_class_setup_events): Add memory barrier due to
2935 double checked locking.
2937 class.c (mono_class_setup_properties): Same.
2939 2008-08-31 Zoltan Varga <vargaz@gmail.com>
2941 * class.c (mono_class_is_assignable_from): Fix the build.
2943 * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
2944 before accessing klass->interface_bitmap. Fixes #421744.
2946 2008-08-28 Zoltan Varga <vargaz@gmail.com>
2948 * appdomain.c (mono_runtime_set_no_exec): New internal function setting
2949 the runtime into no-exec mode, useful when running the AOT compiler.
2951 * appdomain.c gc.c object.c: Avoid executing managed code when running
2954 * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
2956 * reflection.c (_mono_reflection_get_type_from_info): Handle the
2957 special case when the mono_assembly_loaded () returns NULL because the
2958 search hook is not installed.
2960 2008-08-25 Zoltan Varga <vargaz@gmail.com>
2962 * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
2963 crashes in bstr marshalling on linux.
2965 2008-08-24 Zoltan Varga <vargaz@gmail.com>
2967 * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
2968 with more than one parameter.
2970 2008-08-24 Miguel de Icaza <miguel@novell.com>
2972 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
2973 start/stop flow control as well when turning off ICANON (allows
2974 C-s and C-q to be read by Console.ReadKey).
2976 2008-08-24 Zoltan Varga <vargaz@gmail.com>
2978 * class.c (mono_class_init): Move the initialization of nested classes
2979 into mono_class_get_nested_types (). Fixes #418433.
2981 * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
2984 * class.c reflection.c icall.c: Use mono_class_get_nested_types () for
2985 iterating tough the nested classes of a class.
2987 2008-08-23 Zoltan Varga <vargaz@gmail.com>
2989 * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
2992 2008-08-22 Miguel de Icaza <miguel@novell.com>
2994 * console-io.c (sigcont_handler): Support signal chaining for
2997 (console_set_signal_handlers): Use best practices with sigaction,
2998 clear the structure before using it.
3000 2008-08-22 Robert Jordan <robertj@gmx.net>
3002 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
3003 Fix the Windows build.
3005 2008-08-22 Zoltan Varga <vargaz@gmail.com>
3007 * class.c (mono_class_generic_sharing_enabled): Make the default
3008 sharing mode 'corlib'.
3010 2008-08-21 Zoltan Varga <vargaz@gmail.com>
3012 * console-io.c (console_set_signal_handlers): Fix a warning.
3014 * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
3015 method normally, the JIT will take care of avoiding recursion.
3017 2008-08-20 Bill Holmes <billholmes54@gmail.com>
3019 * console-io.c : Fixing builds for platforms that do not have <termios.h>.
3021 Code is contributed under MIT/X11 license.
3023 2008-08-20 Miguel de Icaza <miguel@novell.com>
3025 * console-io.c (sigcont_handler): We need to restore the entire
3026 termios state, not only the original settings, as things like echo
3027 can be controlled after this (Booish exposes this issue with its
3028 own ReadLine implementation).
3030 Additionally, we need to set the terminal back into keypad_xmit
3033 (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
3034 string as a paramter as well. Otherwise we get different
3037 2008-08-20 Zoltan Varga <vargaz@gmail.com>
3039 * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
3040 delegates with byref out parameter passing. Fixes #351520.
3042 * debug-helpers.c (mono_context_get_desc): New helper function to stringify
3044 (mono_type_get_desc): Add the type arguments for GENERICINST.
3045 (mono_method_full_name): Stringify the class name using mono_type_full_name
3046 so it picks up generic arguments.
3048 2008-08-19 Gert Driesen <drieseng@users.sourceforge.net>
3050 * console-io.c: Removed debug output.
3052 2008-08-19 Rodrigo Kumpera <rkumpera@novell.com>
3054 reflection.c (mono_reflection_create_runtime_class): Alloc
3055 the nested classes linked list using the dynamic image mempool.
3056 Fixes leak in corlib compilation.
3058 2008-08-19 Miguel de Icaza <miguel@novell.com>
3060 * console-io.c: Fix incredibly annoying behavior on the console
3061 after resuming execution after control-z. This affected every
3062 console application.
3064 2008-08-18 Rodrigo Kumpera <rkumpera@novell.com>
3066 * mempool-internals.h: Header for mono private mempool functions. The first
3067 two function are for allocating glib linked lists using pools.
3069 * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
3071 * Makefile.am: Added mempool-internals.h.
3073 2008-08-16 Zoltan Varga <vargaz@gmail.com>
3075 * domain.c (mono_domain_create): Call the JIT domain hook if installed.
3076 (mono_domain_free): Ditto.
3078 * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
3079 be used by the JIT to store its domain-specific information, instead of putting
3080 it directly into MonoDomain.
3082 * domain.c (mono_install_create_domain_hook): New helper function to install
3083 a hook which initializes domain->runtime_info.
3085 * domain.c (mono_install_free_domain_hook): Ditto.
3087 2008-08-15 Zoltan Varga <vargaz@gmail.com>
3089 * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
3090 asserting if the ares parameter is null.
3092 * mono-perfcounters.c: Fix warnings.
3094 * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
3095 is not needed, don't check for interruptions either.
3096 (mono_marshal_get_delegate_end_invoke): Ditto.
3098 2008-08-15 Marek Habersack <mhabersack@novell.com>
3100 * mono-perfcounters.c (predef_readonly_counter): added support for
3101 reading the ASP.NET Requests Queued counter from another process.
3103 2008-08-12 Zoltan Varga <vargaz@gmail.com>
3105 * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
3106 MonoImage to simplify the AOT code.
3108 2008-08-10 Zoltan Varga <vargaz@gmail.com>
3110 * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
3111 marshalling. Fixes #416078.
3113 2008-08-08 Zoltan Varga <vargaz@gmail.com>
3115 * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
3116 it is set, looking up the icall address is deferred to the JIT, since
3117 in embedded scenarios, the icall might not be registered in the runtime
3118 doing the AOT compilation. Backported from the 2.0 branch.
3120 2008-08-08 Zoltan Varga <vargaz@gmail.com>
3122 * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
3125 2008-08-05 Marek Habersack <mhabersack@novell.com>
3127 * Makefile.am: added support for cross-compilation.
3129 2008-08-04 Zoltan Varga <vargaz@gmail.com>
3131 * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
3133 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
3135 * mono-perfcounters.c: jitted methods and jitted bytes counters.
3137 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
3139 * class-internals.h, icall-def.h, mono-perfcounters-def.h,
3140 mono-perfcounters.c: performance counters implementation.
3142 2008-07-31 Zoltan Varga <vargaz@gmail.com>
3144 * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
3145 to gpointer, letting the AOT code decide what to store in it.
3147 2008-07-31 Bill Holmes <billholmes54@gmail.com>
3149 * marshal.c (cominterop_get_native_wrapper) : Adding a call to
3150 mono_class_setup_methods if the methods are not initialized.
3152 Code is contributed under MIT/X11 license.
3154 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
3156 * verify.c: Remove some debug code I commited by accident.
3158 * verify.c (mono_method_is_valid_in_context): Change the return value
3159 to make possible to distinguish between invalid and unverifiable.
3161 * verify.c (verifier_load_method): Don't return NULL for unverifiable
3164 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
3166 * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
3167 constraints. Fixes regression in gtest-253.
3169 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
3171 * verify.c (mono_verifier_verify_class): Don't allow generic types
3172 with explicit layout.
3174 * verify.c (mono_method_verify): Check locals and argument types.
3176 2008-07-29 Zoltan Varga <vargaz@gmail.com>
3178 * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
3179 wait if the thread is in StopRequested state.
3181 * class.c (mono_class_from_name): Refactor the module searching code into
3182 a separate function so it can be reused in the AOT case too.
3184 2008-07-28 Rodrigo Kumpera <rkumpera@novell.com>
3186 * verify.c (mono_type_is_valid_in_context): Improve the error message.
3187 Check both the type and it's generic type definition for loader errors.
3189 * verify.c (mono_method_is_valid_in_context): Don't generate another
3190 error when a type errors occur, this leads to the wrong exception been
3193 2008-07-28 Dick Porter <dick@ximian.com>
3197 (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
3198 New internal calls to duplicate and close a process handle.
3200 2008-07-27 Andreas Färber <andreas.faerber@web.de>
3202 * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
3204 2008-07-27 Zoltan Varga <vargaz@gmail.com>
3206 * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
3208 2008-07-27 Robert Jordan <robertj@gmx.net>
3210 * class.c (mono_class_init): Don't compute class.has_finalize for
3211 valuetypes. Fixes #412477.
3213 2008-07-25 Rodrigo Kumpera <rkumpera@novell.com>
3215 * verify.c: Implement constraint equivalence checking.
3216 This is required when a generic parameter is used as
3217 argument to a constrained one.
3221 2008-07-24 Zoltan Varga <vargaz@gmail.com>
3223 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3225 * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
3227 * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
3228 synch with managed object layout.
3230 2008-07-24 Rodrigo Kumpera <rkumpera@novell.com>
3232 * verify.c (do_branch_op): Handle valuetypes and generic
3235 * verify.c (do_cmp_op): Same.
3239 2008-07-24 Mark Probst <mark.probst@gmail.com>
3241 * generic-sharing.c: Fix memory leaks.
3243 * class.c, class-internals.h: Make
3244 mono_class_inflate_generic_type_with_mempool() non-static.
3246 2008-07-24 Rodrigo Kumpera <rkumpera@novell.com>
3248 * pedump.c (dump_verify_info): Dump full class name.
3250 2008-07-24 Mark Probst <mark.probst@gmail.com>
3252 * generic-sharing.c: Removed some old code that didn't do anything.
3254 2008-07-24 Massimiliano Mantione <massi@ximian.com>
3255 * profiler.c: Added runtime_initialized_event,
3256 mono_profiler_install_runtime_initialized and
3257 mono_profiler_runtime_initialized. This new hook tells the profiler
3258 when the runtime is sufficiently initialized to be able to call
3259 mono_thread_attach on the root appdomain.
3260 * profiler.h, profiler-private.h: Likewise.
3262 2008-07-23 Rodrigo Kumpera <rkumpera@novell.com>
3264 * verify.c (do_cast): Do boxing for generic arguments as well.
3266 * class.c (is_nesting_type): Drop generic instantiations before
3267 checking for nesting.
3269 * class.c (can_access_instantiation): Allow access to generic
3272 2008-07-23 Rodrigo Kumpera <rkumpera@novell.com>
3274 * verify.c (verify_class_for_overlapping_reference_fields):
3275 On some cases, the field size might be zero, guard against that.
3276 Fix the explicit layout check to work as expected.
3278 2008-07-23 Zoltan Varga <vargaz@gmail.com>
3280 * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling
3281 mono_thread_resume () during shutdown, since the thread we want to abort
3284 2008-07-22 Zoltan Varga <vargaz@gmail.com>
3286 * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a
3289 * debug-mono-symfile.c: Fix a warning.
3291 * mono-perfcounters.c (get_cpu_times): Fix a warning.
3293 * object.c (mono_class_vtable): Check if exception_type is set, and return
3294 NULL as defined by the function comments.
3296 2008-07-22 Mark Probst <mark.probst@gmail.com>
3298 * mempool.c: Use malloc for every single mempool allocation if the
3299 configure option is set. This makes it easier to track mempool
3300 allocations with tools like Valgrind.
3302 2008-07-22 Jb Evain <jbevain@novell.com>
3304 * reflection.c (create_dynamic_mono_image): emit the same
3305 metadata version that SL2 does when creating a SL2 image.
3307 2008-07-21 Rodrigo Kumpera <rkumpera@novell.com>
3310 * icall.c: New icall System.Enum:get_hashcode. This function
3311 avoids the overhead of boxing the enum to the underlying type.
3313 2008-07-21 Mark Probst <mark.probst@gmail.com>
3315 * reflection.c (mono_method_get_object): Don't let static RGCTX
3316 invoke wrappers get into MonoReflectionMethods.
3318 2008-07-17 Rodrigo Kumpera <rkumpera@novell.com>
3320 * object-internals.h:
3321 * object.c: New mono_runtime_class_init_full function
3322 that makes throwing the exception optinal.
3324 * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
3325 for the case where the exception object is supplied.
3327 2008-07-16 Kornél Pál <kornelpal@gmail.com>
3329 * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
3332 Contributed under MIT/X11 license.
3334 2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
3336 * string-icalls.c (ves_icall_System_String_InternalSplit):
3337 Optimize array allocation by caching the MonoClass of the
3340 * icall.c (ves_icall_Type_GetMethodsByName): Same.
3342 * reflection.c (mono_param_get_objects): Same.
3344 2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
3347 * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
3348 It inflates the given type using the class context.
3350 2008-07-15 Rodrigo Kumpera <rkumpera@novell.com>
3352 * object.c (mono_class_try_get_vtable): New function. Tries to fetch
3353 the vtable if it already exists.
3355 * object-internals.h: Add mono_class_try_get_vtable as part of the
3358 * reflection.c (mono_type_get_object): Use the MonoObject from the
3359 vtable when possible. Reduces locking contention on reflection heavy
3362 2008-07-15 Zoltan Varga <vargaz@gmail.com>
3364 * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
3365 g_bit_nth_msf () since that macro is not implemented in eglib.
3367 2008-07-13 Zoltan Varga <vargaz@gmail.com>
3369 * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
3370 on platforms which do not support it.
3372 2008-07-12 Zoltan Varga <vargaz@gmail.com>
3374 * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
3376 2008-07-11 Martin Baulig <martin@ximian.com>
3378 * mono-debug-debugger.h
3379 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
3381 * mono-debug-debugger.c
3382 (_mono_debugger_interruption_request): New global volatile variable.
3383 (mono_debugger_check_interruption): New public function.
3386 (mono_thread_current_check_pending_interrupt): Call
3387 mono_debugger_check_interruption().
3388 (mono_thread_interruption_checkpoint_request): Likewise.
3390 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
3392 * verify.c: Add more type checks for loaded types. Verify the result
3393 handle from ldtoken.
3395 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
3397 * loader.c (field_from_memberref): Don't crash if the field
3400 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
3402 * verify.c: Verify if type and method instantiations
3403 don't have invalid VAR or MVAR arguments.
3405 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
3407 * verify.c: Fix double free of function pointer list.
3409 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
3411 * object.c (mono_string_to_utf8): Comment the new code as it
3414 2008-07-08 Rodrigo Kumpera <rkumpera@novell.com>
3416 * object.c (mono_string_to_utf8): Avoid allocating a temp array.
3418 2008-07-07 Bill Holmes <billholmes54@gmail.com>
3420 * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
3421 is not throw too many times.
3423 Code is contributed under MIT/X11 license.
3425 2008-07-07 Zoltan Varga <vargaz@gmail.com>
3427 * mono-debug.c (mono_debug_find_method): Allow this to be called even when
3428 debugging is turned off.
3430 2008-07-06 Zoltan Varga <vargaz@gmail.com>
3432 * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
3434 2008-07-04 Mark Probst <mark.probst@gmail.com>
3436 * class-internals.h, class.c: Added new generic sharing option:
3437 Share only stuff in System.Collections.Generic, which is now the
3440 2008-07-04 Mark Probst <mark.probst@gmail.com>
3442 * generic-sharing.c, class-internals.h: New function for getting a
3443 generic method in a generic class given the corresponding method
3444 for a different instantiation of the class. Partly refactored
3445 from mini-trampolines.c.
3447 * class.c: Make sure generic methods have a class_inst if they are
3448 part of a generic class.
3450 * metadata.c (mono_type_stack_size_internal): Handle type
3453 2008-07-04 Mark Probst <mark.probst@gmail.com>
3455 * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
3456 Signifies whether information on the this/vtable/mrgctx variable
3459 2008-07-04 Mark Probst <mark.probst@gmail.com>
3461 * object.c, object-internals.h, icall.c: New function
3462 mono_delegate_ctor_with_method(), which does the same as
3463 mono_delegate_ctor(), but takes an explicit method argument
3464 instead of taking the method from the jit info.
3466 * marshal.c: When creating a delegate with an inflated method take
3467 the "this" argument as the target class for the castclass.
3469 2008-07-03 Mark Probst <mark.probst@gmail.com>
3471 * domain.c (mono_jit_info_table_find): Fixed a bug that caused
3472 mono_jit_info_table_find() to perform very badly in some cases.
3474 2008-07-02 Zoltan Varga <vargaz@gmail.com>
3476 * icall.c (type_from_typename): Handle 'string'.
3478 * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
3479 wrappers into the wrapper_hash, since the key is not a MonoMethod.
3481 2008-07-01 Zoltan Varga <vargaz@gmail.com>
3483 * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
3485 * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
3486 number of available managed allocator types.
3488 * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
3489 (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
3491 2008-06-30 Zoltan Varga <vargaz@gmail.com>
3493 * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
3494 which is a low level lock protecting just the 'jit_code_hash' hash table.
3496 * domain.c: Initialize+cleanup jit_code_hash_lock.
3498 2008-06-30 Kornél Pál <kornelpal@gmail.com>
3500 * coree.c (mono_load_coree): Set coree_module_handle global variable only
3501 after initialization.
3503 * coree.h: Make MonoFixupExe internal.
3505 Contributed under MIT/X11 license.
3507 2008-06-30 Kornél Pál <kornelpal@gmail.com>
3509 * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
3510 because that is platform independent. Check NumberOfRvaAndSizes in PE32
3512 (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
3513 image being loaded is a CLI image and _CorValidateImage gets called.
3515 * coree.h: Add MonoLoadImage.
3517 * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
3518 instead of LoadLibrary.
3520 Contributed under MIT/X11 license.
3522 2008-06-29 Rodrigo Kumpera <rkumpera@novell.com>
3524 * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
3525 for any primitive type.
3527 2008-06-29 Zoltan Varga <vargaz@gmail.com>
3529 * object.c (mono_array_new_specific): Optimize this and the other allocation
3532 * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
3533 domains too if mono_dont_free_domains is set.
3535 * domain-internals.h (mono_dont_free_domains): New internal option controlling
3536 whenever to free appdomain data after it has been unloaded.
3538 * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
3540 2008-06-28 Zoltan Varga <vargaz@gmail.com>
3542 * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
3543 (mono_method_get_equivalent_method): Fix a warning.
3545 * object.c (mono_message_init): Avoid looking up array types for each call.
3547 2008-06-27 Zoltan Varga <vargaz@gmail.com>
3549 * object.c (mono_message_invoke): Avoid looking up the object[] type for each
3552 * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
3555 * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
3558 * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
3561 2008-06-26 Rodrigo Kumpera <rkumpera@novell.com>
3563 * object.c (mono_value_box): Fix boxing of nullables.
3565 2008-06-26 Kornél Pál <kornelpal@gmail.com>
3567 * assembly.c (mono_set_rootdir): Use __ImageBase instead of
3568 mono_module_handle that is defined by the linker; no initialization required.
3569 * coree.h: Remove mono_module_handle, add __ImageBase, update
3570 mono_image_open_from_module_handle.
3571 * coree.c (_CorValidateImage): Convert platform independent PE32 images to
3572 PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
3573 (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
3574 memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
3575 to 4 GB away from image base address. IA64 version is not tested but was very
3576 easy to implement and should work if we ever need it.
3577 * domain.c (mono_init_internal): Avoid system error message boxes.
3578 * image.c (mono_image_open_from_module_handle): Replace ref_count argument
3579 with has_entry_point. Handle do_mono_image_load fauilre correctly.
3580 (mono_image_open_full, mono_image_close): Use has_entry_point instead of
3581 coff_attributes that is a more reliable way to detect if _CorDllMain was called.
3582 * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
3584 Contributed under MIT/X11 license.
3586 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
3588 * class.c, class-internals.h: Export mono_class_get_generic_type_definition
3589 as part of the private mono API.
3591 * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
3592 Do proper argument checking for methods that belong to generic classes.
3593 Do proper type resolution for GMFH/2.
3596 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
3598 * verify.c (do_switch): Fix a memory corruption bug with
3599 the jump index is out of bound.
3601 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
3603 * verify.c: Disable debug code.
3605 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
3607 * reflection.c (mono_image_get_methodbuilder_token): Use
3608 mono_image_get_methodspec_token_for_generic_method_definition
3609 instead of mono_image_get_memberref_token. We cache more memberef
3612 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
3614 * verify.c: Inflate exception clause types.
3617 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
3619 * reflection.c (mono_image_get_methodbuilder_token): Don't leak
3622 * reflection.c (mono_image_get_ctorbuilder_token): Same.
3624 * reflection.c (mono_image_create_method_token): Same.
3626 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
3628 * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
3629 It does the same as mono_image_get_methodref_token but works on
3632 * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
3633 and always generate a methodspec. This follows the old behavior and fixes
3634 the regressions in System.Core.
3636 2008-06-24 Zoltan Varga <vargaz@gmail.com>
3638 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where
3639 don't event mono_class_get () succeeds. Fixes #402182.
3641 2008-06-20 Rodrigo Kumpera <rkumpera@novell.com>
3643 * metadata-internals.h: Added MonoDynamicImage::methodspec
3644 hashtable to store methodspec tokens created for MethodBuilders.
3646 * reflection.c (mono_image_get_methodbuilder_token): Encode generic
3647 MethodBuilders as open instantiations if a methodspec was requested.
3649 * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
3651 * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
3653 * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
3657 2008-06-20 Rodrigo Kumpera <rkumpera@novell.com>
3659 * loader.c (method_from_methodspec): Avoid crashing if the
3660 method lookup fails.
3662 2008-06-20 Dick Porter <dick@ximian.com>
3664 * socket-io.c (get_socket_assembly): Cope with Moonlight network
3665 classes being in a different assembly. Fixes bug 399184.
3667 2008-06-20 Zoltan Varga <vargaz@gmail.com>
3669 * loader.c (mono_loader_init): Make this callable multiple times.
3670 (mono_dllmap_insert): Call mono_loader_init () so this works even before
3671 the runtime is initialized. Fixes #401755.
3673 2008-06-19 Dick Porter <dick@ximian.com>
3675 * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
3678 2008-06-19 Dick Porter <dick@ximian.com>
3681 * icall-def.h: Implement Socket generic Send() and Receive()
3682 methods. Fixes bug 395168.
3684 2008-06-19 Kornél Pál <kornelpal@gmail.com>
3686 * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
3688 Contributed under MIT/X11 license.
3690 2008-06-18 Martin Baulig <martin@ximian.com>
3692 * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
3693 `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
3694 set to 80.0. The debugger <-> runtime interface is now frozen as
3698 (mono_debug_debugger_version): Bump to 4.
3700 2008-06-18 Martin Baulig <martin@ximian.com>
3702 * debug-mono-symfile.c
3703 (load_symfile): Don't check the minor version.
3705 * debug-mono-symfile.h: Bump the version number to 50.0.
3707 2008-06-18 Martin Baulig <martin@ximian.com>
3709 * debug-mono-symfile.c
3710 (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
3711 minimum required version.
3713 2008-06-17 Rodrigo Kumpera <rkumpera@novell.com>
3715 * reflection.c (mono_custom_attrs_from_property): Fix support for
3716 retriveving cattrs of dynamic inflated generic types.
3718 * reflection.c (mono_custom_attrs_from_event): Same.
3720 * reflection.c (mono_custom_attrs_from_field): Same;
3722 * reflection.c (typebuilder_setup_events): Same cattrs of events.
3724 * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
3725 Moved to metadata.c.
3727 * metadata.c: New functions to retrive the equivalent field, event
3728 of property from the generic type definition.
3730 * metadata-internals.h: Added new functions from metadata.c.
3732 2008-06-17 Rodrigo Kumpera <rkumpera@novell.com>
3734 * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
3735 to cached in a mempool is used.
3737 * metadata.c (free_generic_class): In some situations field generic_info type
3738 is not properly dup'ed and leads to double free'ing.
3742 2008-06-17 Mark Probst <mark.probst@gmail.com>
3744 * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
3745 this arguments (will be needed later for generic methods).
3748 2008-06-17 Mark Probst <mark.probst@gmail.com>
3750 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
3751 Create a static RGCTX invoke wrapper for methods which require it.
3753 2008-06-17 Mark Probst <mark.probst@gmail.com>
3755 * object.c, class-internals.h: New function for checking whether
3756 an individual field is special static.
3758 2008-06-15 Zoltan Varga <vargaz@gmail.com>
3760 * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
3761 linear search since the table is sorted.
3763 * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
3766 2008-06-14 Zoltan Varga <vargaz@gmail.com>
3768 * appdomain.c (unload_thread_main): Applied patch from Tim Howard
3769 (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
3771 * gc.c (mono_domain_finalize): Allow an infinite timeout.
3773 * threads.c (mono_threads_abort_appdomain_threads): Ditto.
3775 * threads.c (mono_thread_request_interruption): Get rid of locking, use
3776 InterlockedCompareExchange to query and modify
3777 thread->interruption_requested.
3779 * object-internals.h (struct _MonoThread): Change interruption_requested
3780 to a gint32 so it can be modified by atomic operations. Add
3781 'critical_region_level' from the managed side, change small_id to a guint32,
3782 add new set of 'unused' fields.
3784 * appdomain.c: Bump corlib version.
3786 2008-06-13 Zoltan Varga <vargaz@gmail.com>
3788 * class.c (mono_class_from_name): Search modules as well. Fixes
3791 2008-06-13 Mark Probst <mark.probst@gmail.com>
3793 * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
3794 templates. Templates are generalized with an additional type_argc
3795 argument. RGCTX templates have type_argc==0, MRGCTX templates
3798 * domain-internals.h, domain.c: New hash table for looking up
3801 * metadata.c, metadata-internals.h: Rename hash and equal
3802 functions for MonoGenericInst's and make them public.
3804 * class-internals.h: New data structures for the MRGCTX. Macros
3805 for distinguishing slots in the RGCTX and the MRGCTX.
3807 2008-06-13 Mark Probst <mark.probst@gmail.com>
3809 * object.c (mono_method_get_imt_slot): Put the same methods of
3810 different instantiations of the same generic interface in the same
3811 IMT slots, to make generic sharing simpler.
3813 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
3815 * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
3817 * metadata.c (mono_metadata_field_info_with_mempool): Added.
3818 This function works just like mono_metadata_field_info, but
3819 accept a mempool as argument to be used allocating memory.
3821 * marshal.c (mono_marshal_load_type_info): Use new function
3822 to load marshal data into image mempool.
3824 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
3826 * class.c (mono_class_inflate_generic_type_with_mempool):
3827 This function allows to inflate a generic type using
3830 * class.c (inflate_generic_type): Take a mempool as argument
3831 and use it to do type dup'ing.
3833 * class.c (mono_class_setup_fields): Field type for generic
3834 generic classes are allocated from the image mempool.
3836 * metadata.c (free_generic_class): Inflated field type is
3837 now allocated in the image mempool.
3839 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
3841 * threads.c (thread_cleanup): Free MonoThread::name.
3843 2008-06-12 Marek Habersack <mhabersack@novell.com>
3845 * appdomain.c (ensure_directory_exists): avoid unnecessary
3846 mkdir(2) calls when the shadow directory already exists.
3847 (mono_make_shadow_copy): copy also satellite assemblies from the
3848 private bin directories.
3850 2008-06-11 Zoltan Varga <vargaz@gmail.com>
3852 * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
3854 * threads.c (mono_thread_get_stack_bounds): Align the stack address to
3855 a page boundary. Fixes #396219.
3857 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3859 * marshal.c (mono_marshal_load_type_info): Add a memory barrier
3860 due to double-checked locking.
3862 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3864 * assembly.c (build_assembly_name): Release memory on failure.
3866 * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
3868 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3870 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
3873 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3875 * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
3878 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3880 * loader.c (field_from_memberref): Check if field signature type is equal
3881 to the non-inflated type of the field. Fixes #398980.
3883 2008-06-11 Zoltan Varga <vargaz@gmail.com>
3885 * assembly.c (mono_assembly_load_from_full): Call
3886 mono_assembly_load_friends () outside the assemblies lock, since it can
3887 acquire the loader lock. Fixes #323696.
3889 * reflection.c (resolve_object): Inflate the inst with the context for
3890 FieldOnTypeBuilderInst. Fixes #399010.
3892 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3894 * reflection.c (mono_image_get_field_on_inst_token): Don't
3895 inflate the field to encode it's signature. If it's a
3896 VAR or MVAR it should stay that way in the signature.
3899 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3901 * reflection.c (resolve_object): Release memory of inflated types.
3903 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3905 * loader.c (mono_method_get_signature_full): Remove assert about
3906 loading a methodspec to a generic method. We have such methods, such as
3907 System.Threading.Interlocked::CompareExchange<T>.
3908 This assert was removed since it crashes the verifier when it checks
3909 methods calling CompareExchange<T>.
3911 2008-06-10 Marek Safar <marek.safar@gmail.com>
3913 * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
3914 of Type array and not MonoType.
3916 2008-06-10 Marek Habersack <mhabersack@novell.com>
3918 * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
3921 2008-06-10 Martin Baulig <martin@ximian.com>
3923 * debug-mono-symfile.h
3924 (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6. There were no
3925 changes to the file format, but we were generating incorrect
3926 source file indices in the line number table due to a bug, which
3927 made backtraces report an incorrect source file.
3929 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
3931 * mono-debug.c: Moved mono_debug_free_method_jit_info from
3932 mini/debug-mini.c to here.
3934 * mono-debug.c (il_offset_from_address): Free memory from find_method.
3936 * mono-debug.h: Export mono_debug_free_method_jit_info, users should
3937 use it to release structs returned by mono_debug_find_method.
3939 2008-06-10 Zoltan Varga <vargaz@gmail.com>
3941 * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
3942 since it needs to set method->slot for all interface methods.
3944 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
3946 * class-internals.h: Forgot to add.
3948 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
3950 * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
3952 * reflection.c (lookup_custom_attr): Added a MonoImage argument.
3953 Lookup the custom attributes from property_hash.
3955 * reflection.c (mono_save_custom_attrs): Save the custom attributes
3956 in property_hash. Allocate all data using the image mempool.
3958 * reflection.c: Removed dynamic_custom_attrs. Changed all checks
3959 for dynamic_custom_attrs to checks if the image is dynamic.
3961 2008-06-09 Zoltan Varga <vargaz@gmail.com>
3963 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
3966 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
3967 runtime functions while holding the domain assemblies lock.
3969 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
3971 * verify.c: Reapplied the last bit of the reverted changes.
3973 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
3975 * verify.c: Reapplied more of the reverted changes.
3977 2008-06-09 Martin Baulig <martin@ximian.com>
3979 * debug-mono-symfile.c (load_symfile): Check the major version
3980 first; if it's wrong, don't print the minor version in the error message.
3982 2008-06-09 Zoltan Varga <vargaz@gmail.com>
3984 * appdomain.c (set_domain_search_path): Make this use the domain assemblies
3985 lock instead of the domain lock to avoid deadlocks, since the thread might
3986 already hold the loader lock.
3988 * threads.c (start_wrapper): Call mono_monitor_init_tls ().
3989 (mono_thread_attach): Ditto.
3991 * monitor.c: Use a TLS variable for holding the current thread id instead
3992 of calling pthread_self ().
3993 (mono_monitor_init_tls): New internal function to initialize the TLS
3995 (mono_monitor_try_enter_internal): Put the owner == id check after the
3998 * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
3999 missed optimizations when using gcc-4.3.
4001 2008-06-08 Rodrigo Kumpera <rkumpera@novell.com>
4003 * reflection.c (mono_dynamic_image_free): Free the memory
4004 used by MonoGenericParam in MonoDynamicImage::gen_param.
4006 * reflection.c (mono_reflection_setup_generic_class): Allocate
4007 container from mempool.
4009 * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
4010 container from mempool.
4012 2008-06-07 Zoltan Varga <vargaz@gmail.com>
4014 * threads.c (mono_set_pending_exception): New internal function to set the
4015 pending exception of the current thread.
4016 (mono_thread_get_and_clear_pending_exception): Check for
4017 thread->pending_exception as well.
4019 * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
4021 * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
4022 it can trigger a collection.
4024 2008-06-06 Martin Baulig <martin@ximian.com>
4026 Merged the `debugger-kahalo' branch.
4029 (MONO_DEBUGGER_VERSION): Bumped to 72.
4031 * debug-mono-symfile.h
4032 (MonoSymbolFileMethodIndexEntry): Removed.
4033 (MonoSymbolFileMethodEntry): New public typedef.
4034 (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
4035 (MonoSymbolFileSourceEntry): Remove everything except `index' and
4037 (MonoSymbolFileMethodEntry): Removed.
4038 (MonoSymbolFileLexicalBlockEntry): Removed.
4039 (MonoSymbolFileLineNumberEntry): Removed.
4040 (MonoDebugLexicalBlockEntry): Removed.
4041 (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
4042 removed `num_il_offsets' and `il_offsets'.
4043 (MonoSymbolFile): Replace `version' with `major_version' and
4045 (MONO_SYMBOL_FILE_VERSION): Replace with
4046 `MONO_SYMBOL_FILE_MAJOR_VERSION' and
4047 `MONO_SYMBOL_FILE_MINOR_VERSION'.
4049 * debug-mono-symfile.c
4050 (mono_debug_symfile_lookup_location): Add support for the new line
4051 number table format.
4053 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
4055 * metadata.c (free_generic_class): Release the inflated
4056 MonoClass of dynamic generic classes if it's not a generic
4059 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
4061 * verify.c: Reapplied more of the reverted changes.
4063 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
4065 * reflection.c (lookup_custom_attr): Clean the cached flag or
4066 nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
4069 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
4071 * verify.c: Reapplied a small part of the reverted changes.
4073 2008-06-07 Zoltan Varga <vargaz@gmail.com>
4075 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4077 * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was
4078 previously in managed code.
4079 (mono_monitor_exit): Ditto.
4080 (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
4082 * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
4083 the managed definition.
4085 2008-06-06 Rodrigo Kumpera <rkumpera@novell.com>
4087 * verify.c: Revert changes to see if it helps with weird buildbot crashes.
4089 2008-06-06 Zoltan Varga <vargaz@gmail.com>
4091 * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
4093 * monitor.c: Add some micro optimizations.
4095 * icall.c (type_from_typename): Handle 'bool'.
4097 2008-06-06 Rodrigo Kumpera <rkumpera@novell.com>
4099 * verify.c: Implement constructor verification per P III 1.8.1.4.
4102 2008-06-06 Zoltan Varga <vargaz@gmail.com>
4104 * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
4105 holding the assemblies lock here too.
4107 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
4109 * verify.c: Kill stack_top function.
4111 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
4113 * verify.c: Kill stack_get function.
4115 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
4117 * verify.c (mono_method_verify): Last change broke the build. Fixed.
4119 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
4121 * verify.c (verify_type_compatibility_full): Make SZARRAY checks
4124 * verify.c (mono_method_verify): Inflate params and locals to avoid
4125 mismatch when checking for compatibility.
4127 2008-06-05 Jonathan Chambers <joncham@gmail.com>
4129 * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
4130 Length prefix should be size in bytes. Fix bug #339530.
4132 * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
4133 Length prefix should be size in bytes. Fix bug #339530.
4135 Code is contributed under MIT/X11 license.
4137 2008-06-05 Bill Holmes <billholmes54@gmail.com>
4139 * decimal.c: Adding MSVC implementation to my_g_bit_nth_msf.
4141 Contributed under MIT/X11 license.
4143 2008-06-05 Martin Baulig <martin@ximian.com>
4145 * mono-debug-debugger.c
4146 (mono_debugger_check_breakpoints): Reflect latest runtime changes.
4148 2008-06-05 Zoltan Varga <vargaz@gmail.com>
4150 * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
4151 while holding the assemblies lock to prevent deadlocks. Handle the case
4152 where the search hook returns NULL but the assembly was still loaded.
4155 * appdomain.c (set_domain_search_path): Acquire the domain lock since we
4156 modify domain state.
4158 2008-06-05 Andreas Färber <andreas.faerber@web.de>
4160 * boehm-gc.c: Add DTrace probes gc-{begin,end}.
4161 * Makefile.am (pedump_LDADD): Post-process object files and
4162 add dtrace-generated object file, if necessary.
4164 Code is contributed under MIT/X11 license.
4166 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
4168 * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
4170 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
4172 * class.c (mono_type_get_full): Add a work-around for generic type definitions.
4174 2008-06-04 Mark Probst <mark.probst@gmail.com>
4176 * threads.c: Try to free everything from the delayed free table
4177 when shutting down threads, and set the variable to NULL after the
4178 table is freed so that calling
4179 mono_thread_hazardous_try_free_all() when shutting down the root
4180 domain doesn't crash.
4182 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
4184 * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
4185 the caller if resulting type was inflated.
4187 * class.c (mono_class_create_from_typespec): Free the MonoType if it
4190 * class.c (mono_type_get_full): Free the MonoType if it was inflated.
4193 2008-06-04 Zoltan Varga <vargaz@gmail.com>
4195 * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
4196 class library tests.
4198 * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume
4199 (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
4202 2008-06-04 Mark Probst <mark.probst@gmail.com>
4204 * domain.c, domain-internals.h: The JIT infos are now freed by the
4205 JIT info table code. They are freed immediately if there only a
4206 single JIT info table in circulation. If there is more, the free
4207 is delayed via a queue.
4209 * threads.c, threads-types.h: New hazard pointer function for
4210 freeing all freeable delayed items in one sitting.
4212 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4214 * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
4216 * reflection.c (typebuilder_setup_properties): Same.
4218 * reflection.c (typebuilder_setup_events): Same.
4220 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4222 * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
4223 and use it for allocating memory.
4225 * reflection.c (mono_marshal_spec_from_builder): Same.
4227 * reflection.c: Change code to use new signatures.
4229 * metadata.c (mono_metadata_type_dup): Add a FIXME note.
4231 2008-06-03 Zoltan Varga <vargaz@gmail.com>
4233 * decimal.c (rescale128): Put back one line which was accidently commented
4236 * decimal.c (rescale128): Disable the code added by the last patch, as it seems
4239 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4241 * reflection.c (mono_reflection_generic_class_initialize): Name must
4242 be always malloc'ed so we can free it later on. Do this for field, property
4245 * metadata.c (free_generic_class): Free field, property and event names.
4247 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4249 * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
4250 instead of g_memdup.
4252 * reflection.c (typebuilder_setup_fields): Same.
4254 2008-06-03 Zoltan Varga <vargaz@gmail.com>
4256 * decimal.c (rescale128): Optimize this function a bit more.
4258 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4260 * metadata.c (free_generic_class): Release some memory from
4261 SRE generic classes.
4263 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
4265 * reflection.c (mono_image_get_generic_field_token): No reference
4266 to name is kept, free it.
4268 * reflection.c (mono_reflection_generic_class_initialize): Free
4269 more memory of the inflated field.
4271 2008-06-03 Zoltan Varga <vargaz@gmail.com>
4273 * decimal.c (mono_decimalDiv): Moved equality checks here from managed
4276 2008-06-02 Rodrigo Kumpera <rkumpera@novell.com>
4278 * reflection.c (mono_dynamic_image_free): Release memory used by
4279 MonoDynamicImage::array_methods elements.
4281 * reflection.c (assembly_add_win32_resources): Release memory after
4284 2008-06-02 Zoltan Varga <vargaz@gmail.com>
4286 * decimal.c (log2_32): Use an optimized version for this function too.
4288 * decimal.c (log2_64): Fix this on 32 bit machines.
4290 2008-06-02 Rodrigo Kumpera <rkumpera@novell.com>
4292 * class.c (mono_dup_array_type): Implement allocation using a mempool.
4294 * class.c (mono_metadata_signature_deep_dup): Same.
4296 * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
4299 * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
4301 * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
4303 * metadata-internals.h: Added mono_metadata_signature_dup_full.
4305 * class-internals.h: Update signatures to take a MonoMemPool.
4307 2008-06-02 Dick Porter <dick@ximian.com>
4309 * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage):
4311 System.ComponentModel.Win32Exception.W32ErrorMessage, using the
4312 FormatMessage API to get the error text. Fixes bug 321827.
4314 2008-06-02 Zoltan Varga <vargaz@gmail.com>
4316 * decimal.c: Add some micro optimizations to make decimal operations faster.
4318 2008-06-01 Rodrigo Kumpera <rkumpera@novell.com>
4320 * reflection.c (method_encode_clauses): Take a mempool
4321 as parameter and use it to allocate the clause array.
4323 * reflection.c (mono_image_get_field_on_inst_token): Free
4324 the inflated type after encoding it.
4326 * reflection.c (mono_dynamic_image_free): Free each element
4327 of MonoDynamicImage::gen_params.
4329 * reflection.c (reflection_methodbuilder_to_mono_method):
4330 Allocate the generic param array from the mempool.
4331 Allocate signature params from the mempool.
4333 * reflection.c (mono_reflection_generic_class_initialize):
4334 Free inflated fields after been used.
4336 2008-05-30 Rodrigo Kumpera <rkumpera@novell.com>
4338 * icall.c: Reapply the memory leak fixes as they no
4339 longer make mono crash.
4341 2008-05-30 Rodrigo Kumpera <rkumpera@novell.com>
4343 * reflection.c (mono_type_get_object): Don't store the suplied
4344 MonoType with type_hash. A caller which pass a type that
4345 was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
4346 might end with a pointer to freed memory.
4347 The solution is to use byval_arg or this_arg from the associated
4348 MonoClass of the supplied type.
4350 2008-05-29 Zoltan Varga <vargaz@gmail.com>
4352 * icall.c: Revert the rest of the last change as it breaks the build too.
4354 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
4356 * icall.c: Revert a leak fix as it's breaking the build.
4358 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
4360 * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
4362 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
4364 * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
4366 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
4368 * icall.c: Fix some memory leaks.
4370 2008-05-29 Dick Porter <dick@ximian.com>
4372 * threadpool.c (mono_thread_pool_remove_socket): Always remove the
4373 async socket operations from the pending list when a socket
4374 closes. Leaving it until the threadpool services the event
4375 exposes a race condition when a socket descriptor is reused.
4378 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4380 * object.c: Fix negative index check for array alocation.
4382 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4384 * icall.c, marshal.c: Delegate wrappers should skip visibility.
4385 This check is performed by the verifier for IL created delegates
4386 and by Delegate::CreateDelegate for programatically created ones.
4389 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4391 * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
4392 Fix code to use mono_array_size_t instead of int.
4394 Based on patch by Luis F. Ortiz.
4395 Contributed under X11 license.
4396 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4398 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4400 * icall.c: Added ves_icall_System_Array_GetLongLength and
4401 ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
4404 * icall.h: Export both new functions.
4406 Based on patch by Luis F. Ortiz.
4407 Contributed under X11 license.
4408 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4410 2008-05-28 Martin Baulig <martin@ximian.com>
4412 The debugger now requires exactly r103463.
4414 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
4415 This version is not supported by the debugger, wait for 72.
4417 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4419 * object.h: Changed array related functions to use
4420 mono_array_size_t instead of guint32. Forgot to commit this file.
4422 Patch by Luis F. Ortiz.
4423 Contributed under X11 license.
4424 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4427 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
4429 * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
4430 don't define it. Use the number literal instead.
4432 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
4434 * icall.c: Changed array related functions to use
4435 mono_array_size_t instead of guint32.
4437 * icall.c (ves_icall_System_Array_GetLength): Check for length
4438 overflow under MONO_BIG_ARRAYS.
4440 Based on patch by Luis F. Ortiz.
4441 Contributed under X11 license.
4442 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4444 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
4446 * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
4448 Based on patch by Luis F. Ortiz.
4449 Contributed under X11 license.
4450 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4452 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
4454 * object.c, object.h: Changed array related functions to use
4455 mono_array_size_t instead of guint32.
4457 Patch by Luis F. Ortiz.
4458 Contributed under X11 license.
4459 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4461 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
4463 * object.h: Introduced mono_array_size_t typedef. This must be used
4464 in all places an array length is expected. This is 64bits wide if
4465 MONO_BIG_ARRAYS is enabled.
4467 Patch by Luis F. Ortiz.
4468 Contributed under X11 license.
4469 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
4471 2008-05-27 Zoltan Varga <vargaz@gmail.com>
4473 * security-manager.c class.c: Set the class exception info by calling
4474 mono_class_set_failure ().
4476 * class.c (mono_class_get_exception_data): New accessor function.
4477 (mono_class_set_failure): Store exception_data in the property hash.
4479 * class-internals.h (struct _MonoClass): Store 'exception_data' outside
4480 the struct as a property.
4482 * loader.c (mono_get_method_full): Store the lookup result for method
4483 tokens in method_cache, the others in methodref_cache to decrease the memory
4484 usage of hash tables.
4486 * image.c (mono_image_close): Destroy method_cache and methodref_cache.
4487 (mono_image_init): method_cache is lazy inited now.
4489 * metadata-internals.h (struct _MonoImage): Change method_cache to
4490 a MonoValueHashTable, add a separate methodref_cache.
4492 2008-05-27 Eyal Alaluf <eyala@mainsoft.com>
4494 * number-formatter.h: Fix tables to avoid arithemtic overflow in
4495 Double.ToString as exposed by Bug #383531.
4497 2008-05-26 Zoltan Varga <vargaz@gmail.com>
4499 * number-formatter.h: Make some tables static.
4501 * class.c (mono_method_set_generic_container): New accessor function.
4502 (mono_method_get_generic_container): Ditto.
4504 * class-internals.h (struct _MonoMethod): Remove rarely used
4505 'generic_container' field, store it in the property hash instead. Add
4506 'is_generic' boolean field instead.
4508 * image.c (mono_image_init): Initialize property_hash.
4509 (mono_image_close): Destroy property_hash.
4511 * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
4512 hold rarely used fields of runtime structures belonging to this image.
4514 * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
4515 to get/set method->generic_container.
4517 * loader.c (mono_get_method_from_token): Avoid loading the method header for
4520 2008-05-25 Zoltan Varga <vargaz@gmail.com>
4522 * class.c (mono_class_inflate_generic_method_full): Don't increase
4523 mono_stats.inflated_method_count for methods found in the cache.
4525 * threads.c (mono_thread_request_interruption): Add a comment about
4528 2008-05-24 Zoltan Varga <vargaz@gmail.com>
4530 * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
4531 interface_offsets_packed table.
4533 * class.c (mono_class_init): Remove some dead code.
4535 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
4536 mono_class_setup_vtable () when CAS is active to detect security problems.
4538 2008-05-23 Rodrigo Kumpera <rkumpera@novell.com>
4540 * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
4542 * verify.c (mono_delegate_signature_equal): Don't compar number of generic
4543 parameters as it's irrelevant for delegate checking.
4545 2008-05-23 Zoltan Varga <vargaz@gmail.com>
4547 * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
4549 * class.c (mono_class_init): Control the creation of a generic vtable using
4550 a global which is true by default, but set to false by the runtime startup code.
4552 * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
4553 Disabled for now since it breaks the embedding API.
4554 Move the setup of class->methods for arrays to mono_class_setup_methods ().
4555 (mono_class_setup_methods): Add a memory barrier.
4557 * object.c (mono_class_create_runtime_vtable): Add code to handle the case
4558 when mono_class_init () doesn't compute the generic vtable.
4560 2008-05-23 Massimiliano Mantione <massi@ximian.com>
4561 * profiler.c: Added mono_profiler_install_statistical_call_chain,
4562 mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
4563 to support call chains (backtrace) in the stat profiler.
4564 * profiler.c, profiler-private.h: Likewise.
4566 2008-05-22 Mark Probst <mark.probst@gmail.com>
4568 * generic-sharing.c: Init generic class when a method of it is
4569 requested via a runtime generic context.
4571 2008-05-22 Zoltan Varga <vargaz@gmail.com>
4573 * class.c (mono_class_init): Add a comment about trying to avoid calling this.
4575 * reflection.c (mono_type_get_object): Add a FIXME.
4577 * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
4579 * class.c (mono_class_get_method_by_index): New helper function, returning an
4580 entry in the class->methods array.
4582 2008-05-21 Zoltan Varga <vargaz@gmail.com>
4584 * class.c (mono_class_init): Only do the array optimization for szarrays.
4585 Avoid creating a generic vtable for generic instances as well.
4586 (mono_class_get_method_from_name_flags): Don't search in the metadata for
4589 2008-05-21 Rodrigo Kumpera <rkumpera@novell.com>
4591 * loader.c (mono_get_method_constrained): Inflate the signature
4592 with class context. Fix #325283.
4594 2008-05-21 Zoltan Varga <vargaz@gmail.com>
4596 * object.c (mono_class_create_runtime_vtable): Add a comment.
4598 * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
4600 (setup_interface_offsets): Handle the case when this is called twice for arrays.
4601 (mono_class_setup_vtable_general): Add an assert.
4602 (mono_class_init): Avoid creating a generic vtable for arrays.
4604 * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
4605 here, let mono_class_init () do that.
4607 * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
4608 interfaces in mscorlib.
4610 * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
4611 interfaces. Add some comments.
4612 (mono_class_init): Call mono_class_setup_methods () here since it is no
4613 longer called by mono_class_setup_vtable ().
4615 * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
4616 not set in class->vtable.
4617 (mono_class_create_runtime_vtable): Reenable the disabled code.
4619 * object.c (mono_class_create_runtime_vtable): Disable the last change for
4620 now as it causes some test failures.
4622 * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
4623 if using the vtable trampoline. Also remove some strange code which put the
4624 generic methods themselves into the vtable slots. Remove the AOT init_vtable
4625 stuff as it is no longer needed.
4627 2008-05-19 Rodrigo Kumpera <rkumpera@novell.com>
4629 * pedump.c: Give make --verify all option check code as well.
4630 Using --verify code won't check for metadata now.
4632 2008-05-19 Martin Baulig <martin@ximian.com>
4634 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
4637 (_mono_debug_using_mono_debugger): New global variable; it's set
4638 directly by the debugger, so mono_debug_using_mono_debugger() also
4639 works after attaching.
4641 2008-05-18 Rodrigo Kumpera <rkumpera@novell.com>
4643 * object.c (mono_class_create_runtime_vtable): Use memory barriers
4644 as we do double checked locking on MonoClass::runtime_info and
4645 MonoClassRuntimeInfo::domain_vtables.
4647 2008-05-18 Zoltan Varga <vargaz@gmail.com>
4649 * debug-helpers.c (print_field_value): Fix a warning.
4651 2008-05-16 Zoltan Varga <vargaz@gmail.com>
4653 * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
4654 set in the AOT case.
4656 2008-05-16 Rodrigo Kumpera <rkumpera@novell.com>
4658 * class.c (mono_class_setup_vtable_general): Use memory barriers
4659 as we do double checked locking on MonoClass::vtable.
4661 2008-05-16 Rodrigo Kumpera <rkumpera@novell.com>
4663 * reflection.c (resolve_object): Inflate only if the generic context
4664 is not null. Fixes #389886.
4666 2008-05-15 Jonathan Chambers <joncham@gmail.com>
4668 * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
4671 Code is contributed under MIT/X11 license.
4673 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
4675 * class.c: Revert unrelated change.
4677 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
4679 * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
4680 a generic instantiation, use mono_class_from_mono_type instead of playing
4681 with MonoType directly.
4683 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
4685 * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
4686 checks must ignore generic instantiations, so mono_class_has_parent is not
4687 suitable. Fixes #390128.
4689 2008-05-14 Zoltan Varga <vargaz@gmail.com>
4691 * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
4692 it to avoid registering tokens during metadata generation. Fixes #390023.
4694 2008-05-14 Kornél Pál <kornelpal@gmail.com>
4696 * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
4699 Contributed under MIT/X11 license.
4701 2008-05-14 Kornél Pál <kornelpal@gmail.com>
4703 * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
4704 even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
4705 to fixup the EXE image.
4706 (mono_cleanup): Use mono_close_exe_image.
4707 (mono_close_exe_image): New function.
4708 * image.c: Include "marshal.h".
4709 (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
4710 (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
4711 counting when the image is loaded outside of mono_image_open_full. Set status
4712 based on GetLastError.
4713 * coree.c: Include required headers. Add init_from_coree.
4714 (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
4715 mono_assembly_open only when the image has vtfixups. Set init_from_coree.
4716 (_CorExeMain): Set init_from_coree.
4717 (CorExitProcess): Only call ExitProcess for now.
4718 (CorBindToRuntimeEx): New stub implementation.
4719 (CorBindToRuntime): New function.
4720 (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
4721 (MonoFixupExe): ILONLY executables require no fixups.
4722 (mono_set_act_ctx): New function to set activation context.
4723 (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.
4724 * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
4725 Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
4726 mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
4728 * domain-internals.h: Add mono_close_exe_image.
4730 Contributed under MIT/X11 license.
4732 2008-05-13 Rodrigo Kumpera <rkumpera@novell.com>
4734 * metadata.c (mono_metadata_compute_size): Correctly calculate field
4735 size for generic param and event tables. Fixes #388977.
4737 2008-05-13 Zoltan Varga <vargaz@gmail.com>
4739 * loader.c (mono_method_signature): Use memory barriers because of the double
4740 checked locking pattern.
4742 * threads.c (remove_and_abort_threads): Stop and wait for threads which are
4743 aborting or aborted as well. Fixes #376391.
4745 * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
4746 existing runtime state in the Suspend handler during shutdown.
4748 2008-05-12 Zoltan Varga <vargaz@gmail.com>
4750 * threads.c (mono_thread_request_interruption): Add some FIXMEs.
4752 * threads.c (mono_thread_suspend_all_other_threads): Add support for threads
4753 which are starting up or shutting down.
4755 * threads.c (mono_threads_set_shutting_down): Don't return a value since
4756 this function never returns if the runtime is already shutting down.
4758 * icall.c (ves_icall_System_Environment_Exit): Update after
4759 mono_threads_set_shutting_down () signature change.
4761 2008-05-09 Rodrigo Kumpera <rkumpera@novell.com>
4763 * class.c: Added can_access_instantiation to verify if the instantiation
4764 is visible. Fix access check for nested types as they returned TRUE
4765 before doing type and generic instantiation visibility checks.
4767 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
4769 * reflection.c (mono_reflection_create_generic_class): The created type
4770 must have a different container from its TypeBuilder. Otherwise they
4771 will end sharing generic arguments, which is wrong.
4773 Due to the sharing, making a generic instance of the created type using
4774 the TypeBuider generic arguments resulted in the generic type definition
4775 been returned, which is wrong as well.
4777 As a bonus the code was leaking the type_params array. This memory should
4778 be allocated from the image mempool.
4780 This fixes bug #354047.
4782 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
4784 * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
4785 to here as they are now used in assembly.c new code.
4786 Added a skipverification flag to MonoAssembly.
4787 New internal function mono_assembly_has_skip_verification.
4789 * assembly.c: New function mono_assembly_has_skip_verification. It checks
4790 if an assembly has a version 2.0 SkipVerification security attribute. Fixes
4793 2008-05-07 Zoltan Varga <vargaz@gmail.com>
4795 * object.c (mono_object_get_virtual_method): Inflate the resulting method if
4796 needed. Fixes #387034.
4798 * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
4800 2008-05-06 Miguel de Icaza <miguel@novell.com>
4802 * assembly.c (mono_assembly_load_reference): Prevent crash while
4803 disassembling Silverlight 2.0 executables while we still do not
4804 have GACed libraries.
4806 2008-05-07 Zoltan Varga <vargaz@gmail.com>
4808 * reflection.c: Special case generic type definitions as well. Fixes #383444.
4810 2008-05-06 Zoltan Varga <vargaz@gmail.com>
4812 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
4813 of the dynamic case. Fixes #387404.
4815 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
4817 *verify.c (mono_verifier_is_class_full_trust): If under
4818 verify_all and the verifier mode was not set, only
4819 gac and corlib types are fulltrust. This makes --verify-all
4820 usable to detect unverifiable code, which is the expected
4823 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
4825 * verify.h: Ops, commited the header with debug
4828 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
4830 * verify.c (merge_stack): Use the new value on unverifiable
4833 * verify.c (verify_type_compatibility_full): Comparison
4834 of nullable types can't use mono_class_is_assignable_from.
4836 * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
4837 that makes all verification errors be reported.
4839 * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
4842 2008-05-05 Robert Jordan <robertj@gmx.net>
4844 * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
4845 support for value types. See #386415.
4847 * object.c: comments.
4849 Code is contributed under MIT/X11 license.
4851 2008-05-05 Martin Baulig <martin@ximian.com>
4853 * debug-mono-symfile.h
4854 (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
4855 for old pre-terrania symbol files.
4857 2008-05-05 Andreas Färber <andreas.faerber@web.de>
4859 * mono-config.c: Add ppc64 architecture.
4861 Code is contributed under MIT/X11 license.
4863 2008-05-05 Andreas Färber <andreas.faerber@web.de>
4865 * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
4866 PPC64 uses function descriptors as well.
4868 Code is contributed under MIT/X11 license.
4870 2008-05-04 Zoltan Varga <vargaz@gmail.com>
4872 * object.c (compute_class_bitmap): Ignore literal static fields.
4874 * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
4875 var has an invalid format.
4876 (describe_ptr): Add some sanity checks for the vtable.
4877 (add_nursery_frag): Clear unused nursery fragments.
4878 (major_collection): Clear all remaining nursery fragments.
4880 2008-05-03 Robert Jordan <robertj@gmx.net>
4882 * image.c, metadata-internals.h: add thunk_invoke_cache.
4884 * marshal.c, marshal.h: implement
4885 mono_marshal_get_thunk_invoke_wrapper ().
4887 * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
4889 Code is contributed under MIT/X11 license.
4891 2008-05-02 Rodrigo Kumpera <rkumpera@novell.com>
4893 * verify.c (do_leave): Empty the stack.
4895 2008-05-02 Rodrigo Kumpera <rkumpera@novell.com>
4897 * class.c (mono_class_is_assignable_from): Variance
4898 doesn't work between reference and value types. For example,
4899 given type C<T+>, C<int32> is not assignable to C<object>.
4900 Break the argument checking loop on first error.
4902 2008-05-02 Atsushi Enomoto <atsushi@ximian.com>
4904 * icall.c : base64_to_byte_array() needs some more strict
4905 check for sequence of '=' characters. Patch by Santa
4906 Marta (http://deee.g.hatena.ne.jp/santamarta).
4908 Contributed under MIT/X11 license.
4909 (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
4911 2008-05-02 Jonathan Chambers <joncham@gmail.com>
4913 * domain.c: Disable LoadLibrary support to fix Win32 build.
4915 Code is contributed under MIT/X11 license.
4917 2008-05-02 Zoltan Varga <vargaz@gmail.com>
4919 * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
4920 to help with cache behaviour.
4922 2008-05-01 Miguel de Icaza <miguel@novell.com>
4924 * appdomain.c (mono_domain_from_appdomain): Add new accessor
4927 2008-05-01 Zoltan Varga <vargaz@gmail.com>
4929 * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
4931 2008-05-01 Dick Porter <dick@ximian.com>
4933 * process.c (process_get_fileversion): Only pass 16 bits of
4934 language ID to VerLanguageName. Fixes bug 381204.
4936 2008-04-30 Rodrigo Kumpera <rkumpera@novell.com>
4938 * verify.c (mono_method_verify): Fix the comparison
4939 operator for code bounds check.
4941 2008-04-30 Rodrigo Kumpera <rkumpera@novell.com>
4943 * verify.c (mono_method_verify): Check the bounds of
4944 all access of the code array.
4946 2008-04-29 Kornél Pál <kornelpal@gmail.com>
4948 * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
4950 2008-04-28 Zoltan Varga <vargaz@gmail.com>
4952 * image.c (mono_image_strong_name_position): Fix return value when the rva is
4955 2008-04-28 Kornél Pál <kornelpal@gmail.com>
4957 * loader.c (mono_get_method_from_token, mono_method_signature): Add
4958 support for METHOD_IMPL_ATTRIBUTE_NATIVE.
4959 * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
4960 fixup main EXE images when using mono.exe for mixed-mode assembly support.
4961 * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
4963 * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
4964 runtime initialization from metadata.
4965 * assembly.c: Remove obsolete ceGetModuleFileNameA.
4966 (mono_set_rootdir): Use mono_get_module_file_name.
4967 (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
4969 * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
4970 * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
4971 * image.c (mono_cli_rva_image_map): Use MonoImage instead of
4972 MonoCLIImageInfo. Add support for module handles.
4973 (load_cli_header): Update mono_cli_rva_image_map signature.
4974 (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
4975 (mono_image_strong_name_position): Use mono_cli_rva_image_map.
4976 (mono_image_rva_map): Add support for module handles.
4977 (mono_image_ensure_section_idx): Add support for module handles.
4978 (mono_image_close): Add support for module handles.
4979 (do_load_header): Add support for module handles.
4980 (mono_image_open_from_module_handle): New function for internal use.
4981 (mono_image_open_full): Load normal images using LoadLibrary on Windows.
4982 (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
4983 (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
4985 (mono_image_fixup_vtable): New function for mixed-mode assembly support.
4986 * image.h: Add mono_image_fixup_vtable.
4987 * coree.c: New file for mscoree.dll functions and mixed-mode assembly
4989 * coree.h: New file.
4990 * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
4991 unsupported native code.
4992 (mono_marshal_set_callconv_from_modopt): New function splitted from
4993 mono_marshal_get_managed_wrapper.
4994 (mono_marshal_get_managed_wrapper): Use
4995 mono_marshal_set_callconv_from_modopt.
4996 (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
4997 * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
4998 * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
4999 that results in a deadlock when the runtime is loaded in _CorDllMain.
5000 * Makefile.am: Add coree.c and coree.h.
5002 Contributed under MIT/X11 license.
5004 2008-04-28 Mark Probst <mark.probst@gmail.com>
5006 * generic-sharing.c: Search for type arguments in array element
5009 2008-04-28 Mark Probst <mark.probst@gmail.com>
5011 * class-internals.h, generic-sharing.c: New, small runtime generic context.
5013 * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
5015 * object.c: Don't setup the RGCTX when the vtable is created,
5016 because we're setting it up lazily now.
5018 2008-04-26 Zoltan Varga <vargaz@gmail.com>
5020 * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix
5023 2008-04-24 Rodrigo Kumpera <rkumpera@novell.com>
5025 * verify.c (verify_class_for_overlapping_reference_fields):
5026 If class is under fulltrust allow reference types to overllap
5027 if they have the same RVA.
5029 2008-04-24 Rodrigo Kumpera <rkumpera@novell.com>
5031 * pedump.c: Added new flag valid-only, that makes the verifier
5032 behaves just like --security=validil. It won't fail type load
5033 due to unverifiable restrictions.
5035 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
5037 * class-internals.h (struct MonoMethod): Added a verification_success
5038 field to cache verifier executions. Reduced MonoMethod:slot size by
5041 2008-04-23 Zoltan Varga <vargaz@gmail.com>
5043 * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
5044 instead of a 'vt' argument to save an indirection and to allow these to be used
5046 (scan_vtype): New helper function to scan an area using a gc descriptor.
5047 (mono_gc_wbarrier_value_copy): Implement this.
5048 (handle_remset): Add support for REMSET_VTYPE.
5049 (find_in_remset_loc): Ditto.
5050 (mono_gc_base_init): Allow some debugging options to be controlled through the
5051 use of the MONO_GC_DEBUG env variable.
5052 (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
5053 (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
5055 2008-04-23 Martin Baulig <martin@ximian.com>
5057 * domain.c (mono_domain_create): Move the call to
5058 mono_debug_domain_create() down, after allocating the domain id.
5060 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
5062 verify.c (verify_class_for_overlapping_reference_fields): Skip
5063 static fields while verifying for overlapping fields as they
5064 don't matter at all.
5066 2008-04-23 Marek Habersack <mhabersack@novell.com>
5068 * domain-internals.h: added a declaration of
5069 mono_make_shadow_copy.
5071 * assembly.c (mono_assembly_open_full): shadow copying of
5072 assemblies moved to here, so that all the assemblies within the
5073 application domain's private binary directories can be
5074 processed. Fixes bug #380546
5076 * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
5077 mono_make_shadow_copy and made non-static. The decision whether
5078 to shadow-copy an assembly is made based on its location - it's
5079 copied if it's in one of the private application domain binary
5080 directories and its different to the target file in the shadow
5081 directory. Fixes bug #380546
5083 2008-04-22 Zoltan Varga <vargaz@gmail.com>
5085 * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
5087 * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
5090 * reflection.c (mono_image_create_token): Handle
5091 Method/ConstructorOnTypeBuilderInst.
5092 (resolve_object): Ditto.
5093 (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
5094 so it can be called from resolve_object. Also handle the case when the inflated
5095 class already has its methods setup.
5097 2008-04-21 Martin Baulig <martin@ximian.com>
5099 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
5101 2008-04-20 Geoff Norton <gnorton@novell.com>
5103 * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
5104 pointer dereference.
5106 2008-04-15 Marek Habersack <mhabersack@novell.com>
5108 * appdomain.c (try_load_from): if IOMAP is in effect, call the
5109 portability API to look up the assembly file. Fixes behavior in
5110 situations when the application has a bin/ directory, but the
5111 assembly search patch refers to Bin/ (and thus the requested file
5112 name is Bin/SomeLibrary.dll). Fixes bug #379888
5114 2008-04-15 Rodrigo Kumpera <rkumpera@novell.com>
5116 verify.c (mono_type_is_generic_argument): Extracted this check
5117 from a dozen places to here.
5119 verify.c: Fixed all issues related to boxing generic arguments
5120 and their constraints.
5122 2008-04-14 Rodrigo Kumpera <rkumpera@novell.com>
5124 verify.c (mono_class_interface_implements_interface): Fix win32 build.
5126 2008-04-14 Zoltan Varga <vargaz@gmail.com>
5128 * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
5129 isn't finished yet. Fixes #363447.
5131 2008-04-13 Zoltan Varga <vargaz@gmail.com>
5133 * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
5136 2008-04-13 Jb Evain <jbevain@novell.com>
5138 * domain.c: update the 2.1 profile versions.
5139 Merged from the Moonlight 2 branch.
5141 2008-04-12 Zoltan Varga <vargaz@gmail.com>
5143 * assembly.c (mono_assembly_load_from_full): Do the check for loading other
5144 mscorlibs for the non-refonly case as well.
5146 * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
5147 in mono_assembly_load_from_full (). Fixes #378924.
5149 2008-04-11 Geoff Norton <gnorton@novell.com>
5151 * icall.c: The global extern environ doesn't exist on Mac. We
5152 need to call NSGetEnviron instead.
5154 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
5156 verify.c: Add generic method constraint verification.
5158 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
5160 class.c (mono_class_inflate_generic_method_full): Add a long
5161 explanation to the is_mb_open hack. Remove the FIXME.
5163 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
5165 * verify.c (mono_method_verify): Mark all unknown opcodes
5166 as invalid. Mark jmp as unverifiable.
5168 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
5170 * verify.c: Add code to do type constraint verification on class instances.
5172 * verify.c (mono_verifier_verify_class): Use the type constraint
5175 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
5177 * class.c (mono_class_get_field_default_value): Don't pass cindex
5178 as hint to mono_metadata_get_constant_index. The local is not initialized
5179 and should contain garbage most of the time. This could only work
5182 2008-04-09 Rodrigo Kumpera <rkumpera@novell.com>
5184 * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
5186 2008-04-09 Rodrigo Kumpera <rkumpera@novell.com>
5188 * class-internals.h: Add generic_param_token to MonoClass::sizes union.
5190 * class.c (mono_class_from_generic_parameter): Save the token of the
5191 generic param in MonoClass::sizes.generic_param_token.
5193 * reflection.c (mono_custom_attrs_from_class): If the class type is
5194 VAR or MVAR retrieve the attributes of the generic param.
5196 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
5198 * class.c (mono_class_init): Do class verification if the verifier
5201 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
5203 * verify-internal.h: Added mono_verifier_verify_class.
5205 * verify.c: Added mono_verifier_verify_class. It checks for
5206 classes with explicit layout that have overlapping reference fields.
5208 * pedump.c: Init the verifier state prior to verification. Fixed
5209 command line arguments.
5211 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
5213 * Makefile.am: Added verify-internals.h, hopefully fix the build.
5215 2008-04-08 Zoltan Varga <vargaz@gmail.com>
5217 * verify-internals.h: Fix a warning.
5219 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
5221 * verify-internals.h: New header with the verifier configuration
5222 extracted from mini.c.
5224 * verify.c: Implemented the new functions exported by verify-internals.h.
5226 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
5228 * verify.c: Add proper verification of ckfinite.
5230 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
5232 * verify.c (do_conversion): Improved error message to something
5235 * verify.c (check_is_valid_type_for_field_ops): Fix to work
5236 with primitive types.
5238 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
5240 * verify.c: Added tail prefix checking. Marked icall
5243 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
5245 * verify.c: Fix the detection of branches to the middle
5248 2008-04-03 Rodrigo Kumpera <rkumpera@novell.com>
5250 * verify.c: Implemented verification of volatile. and
5251 unaligned. prefix. Check if a type is valid after retrieving it.
5253 2008-04-01 Dick Porter <dick@ximian.com>
5255 * process.c (process_get_fileversion): If there's no string block,
5256 set the file language to en_US. Fixes the other new part of bug
5259 2008-03-29 Rodrigo Kumpera <rkumpera@novell.com>
5261 * class.c: New functions mono_method_can_access_field_full and
5262 mono_method_can_access_method_full. They perform type visibility
5263 and type site check.
5265 * class-internal.h: Added exported functions.
5267 * verify.c: Use new functions to implement proper visibility checks.
5269 2008-03-29 Zoltan Varga <vargaz@gmail.com>
5271 * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
5273 2008-03-28 Dick Porter <dick@ximian.com>
5275 * process.c (process_get_fileversion): Use the first language ID
5276 we see, rather than insisting on an invariant language. Fixes bug
5279 2008-03-28 Zoltan Varga <vargaz@gmail.com>
5281 * reflection.c (calc_section_size): Use add_stream_zero to align the size of
5282 the streams to fix reading of invalid memory later.
5284 * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
5287 2008-03-26 Zoltan Varga <vargaz@gmail.com>
5289 * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
5290 (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
5292 2008-03-26 Massimiliano Mantione <massi@ximian.com>
5293 * threads.h: Added MonoThreadManageCallback type and
5294 mono_thread_set_manage_callback prototype
5295 * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
5296 (used to store the mono_thread_manage callback).
5297 * threads.c: Added mono_thread_set_manage_callback, and handle
5298 "MonoThread->manage_callback" in build_wait_tids.
5300 2008-03-26 Dick Porter <dick@ximian.com>
5302 * process.c (process_get_fileversion): Set FileVersionInfo strings
5303 to Empty when the resource doesn't have the particular info.
5306 2008-03-25 Rodrigo Kumpera <rkumpera@novell.com>
5308 * verify.c (mono_method_verify): Proper prefix validation.
5310 2008-03-25 Zoltan Varga <vargaz@gmail.com>
5312 * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
5313 itself in a separate argument instead of throwing them. Fixes #373448.
5315 * appdomain.c: Bump corlib version.
5317 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
5319 * verify.c: Implemented readonly prefix and verify controled mutability pointers.
5321 2008-03-20 Kornél Pál <kornelpal@gmail.com>
5323 * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
5326 2008-03-20 Mark Probst <mark.probst@gmail.com>
5328 * generic-sharing.c, class-internals.h: Code for putting
5329 reflection types into the runtime generic context.
5331 2008-03-19 Rodrigo Kumpera <rkumpera@novell.com>
5333 * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
5337 2008-03-17 Rodrigo Kumpera <rkumpera@novell.com>
5339 * verify.c (VerifyContext): Added instruction prefix data to the struct.
5341 * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
5343 * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
5345 * verify.c (do_cast): Let the result value keep the boxed status.
5347 * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
5349 2008-03-17 Jb Evain <jbevain@novell.com>
5351 * reflection.c: when running on a 2.0 runtime, emit
5352 unconditionally the #~ header version as 2.0, and the
5353 CLI header version as 2.5, for symmetry's sake with csc.
5355 2008-03-16 Zoltan Varga <vargaz@gmail.com>
5357 * class.c: Remove the unused cache_interface_offsets stuff.
5359 * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
5360 profiler.c: Fix warnings.
5362 2008-03-16 Mark Probst <mark.probst@gmail.com>
5364 * generic-sharing.c, class-internals.h: Support for putting
5365 methods into the runtime generic context.
5367 2008-03-16 Zoltan Varga <vargaz@gmail.com>
5369 * class.c (mono_class_setup_fields): Ignore calls made to this function for
5370 classes which are generic instances of not-yet finished typebuilders. Fixes
5373 * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
5375 2008-03-15 Zoltan Varga <vargaz@gmail.com>
5377 * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
5379 * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
5380 field, replace it with a hash table in MonoDynamicImage.
5382 * reflection.c (inflate_mono_method): Access the generic definition object from
5383 image->generic_def_objects instead of imethod->reflection_info.
5385 * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto.
5387 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
5389 * image.c (mono_image_close): Move the dynamic image freeing code to a separate
5390 function in reflection.c so it is easier to keep in sync with the dynamic image
5393 * reflection.c (mono_dynamic_image_free): New internal function, extracted from
5394 mono_image_close ().
5396 2008-03-15 Mark Probst <mark.probst@gmail.com>
5398 * class.c (mono_class_generic_sharing_enabled): Disable generic
5399 sharing for all architectures except AMD64 and x86 to fix build.
5401 2008-03-14 Rodrigo Kumpera <rkumpera@novell.com>
5403 * verify.c: Use the generic definition MonoGenericContext when available.
5404 Remove code for checking generics instance compatibility in favor of
5405 mono_class_is_assignable_from.
5407 2008-03-14 Mark Probst <mark.probst@gmail.com>
5409 * marshal.c, marshal.h, metadata-internals.h, image.c,
5410 wrapper-types.h: New wrapper for invoking a shared static method
5411 without having to pass the runtime generic context argument.
5413 2008-03-14 Rodrigo Kumpera <rkumpera@novell.com>
5415 * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
5417 2008-03-14 Zoltan Varga <vargaz@gmail.com>
5419 * reflection.c (mono_image_get_field_on_inst_token): Add caching.
5421 * reflection.c (mono_image_get_field_on_inst_token): New helper function to
5422 create a token from a FieldOnTypeBuilderInst.
5423 (mono_image_create_token): Handle FieldOnTypeBuilderInst.
5424 (resolve_object): Ditto.
5426 * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
5427 mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
5429 2008-03-14 Martin Baulig <martin@ximian.com>
5431 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
5433 * debug-mono-symfile.h
5434 (MONO_SYMBOL_FILE_VERSION): Bump to 41.
5435 (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
5437 2008-03-10 Martin Baulig <martin@ximian.com>
5439 * debug-mono-symfile.h
5440 (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
5441 `lexical_block_table_offset'.
5442 (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
5444 (MonoSymbolFile): Added `version'.
5447 (MonoDebugLexicalBlockEntry): Removed.
5448 (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
5451 * mono-debug.c (mono_debug_add_method): Don't compute lexical
5452 blocks here; the debugger now does this internally.
5454 2008-02-27 Martin Baulig <martin@ximian.com>
5456 * object.c (mono_runtime_exec_main): Call
5457 `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
5458 `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
5460 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
5462 * verify.c (verify_type_compatibility_full): Allow native int to be converted
5463 to native pointer in non-strict mode. Required to "(IntPtr)null" work.
5465 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
5467 * verify.c (verify_ldftn_delegate): Accept a sealed type when using
5468 ldftn with a virtual method.
5470 2008-03-13 Geoff Norton <gnorton@novell.com>
5472 * decimal.c: Only include memory.h if the platform has it.
5474 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
5476 * assembly.c, class.c, metadata-internals.h: make sure public key
5477 tokesns are compared in a case-insensitive way. Also, all
5478 the lookups in the GAC use a lowercase public key token
5479 (gaacutil already does the lowercasing on install). Fixes
5482 2008-03-11 Rodrigo Kumpera <rkumpera@novell.com>
5484 * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
5487 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
5489 * image.c: when someone loads a mscorlib from a file, return the
5490 currently loaded mscorlib (fixes bug #369253).
5492 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
5494 * class.c: handle types with no parents by forcing them to have
5495 System.Object as a parent and marking them as broken (this currently
5496 allows the first part of bug #369173 to work as well, likely because
5497 we don't check for typeload exceptions everywhere yet).
5499 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
5501 * class.c: more complete check that types belong to corlib
5502 (fixes second part of bug #369173).
5504 2007-03-10 Bill Holmes <billholmes54@gmail.com>
5506 * generic-sharing.c: Including glib.h for the MSVC builds to define
5507 "inline" to "__inline" before including mono-membar.h.
5509 * mono-perfcounters.c: Adding HAVE_SYS_TIME_H check for MSVC builds.
5510 Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for
5513 Contributed under MIT/X11 license.
5515 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
5517 * verify.c (do_invoke_method): Remove return type validation.
5519 * verify.c (do_ret): Do return type validation at return site instead of
5522 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
5524 * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
5526 * verify.c: Some todos cleaned and improved a few error messages.
5528 2008-03-08 Zoltan Varga <vargaz@gmail.com>
5530 * class.c (mono_class_setup_mono_type): Improve the test for corlib.
5532 2008-03-07 Zoltan Varga <vargaz@gmail.com>
5534 * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
5535 system types correctly.
5537 * exception.h exception.c (mono_exception_from_token_two_strings): New helper
5540 2008-03-06 Zoltan Varga <vargaz@gmail.com>
5542 * assembly.c (build_assembly_name): Fix a warning.
5544 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
5546 * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
5547 the called function takes an object type argument. Fixes storing or
5548 valuetypes across remoting as well as reducing memory usage.
5549 * image.c, metadata-internals.h: remove now unused ldfld_remote and
5550 stfld_remote wrapper caches.
5552 2008-03-06 Zoltan Varga <vargaz@gmail.com>
5554 * icall.c (mono_lookup_internal_call): Update the exception message when an icall
5557 * reflection.c (mono_image_register_token): New helper function to save
5558 a token->object mapping.
5560 * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
5563 * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
5564 one dimension arrays. Fixes #367670.
5565 (mono_reflection_get_type_internal): Ditto.
5567 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
5569 * marshal.c: mono_load_remote_field_new() always returns object.
5570 so use the proper signature (fixes bug #366445).
5572 2008-03-04 Zoltan Varga <vargaz@gmail.com>
5574 * class-internals.h (MonoMethod): Remove unused uses_this flag,
5575 add an 'inline_failure' flag instead.
5577 2008-03-04 Mark Probst <mark.probst@gmail.com>
5579 * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
5580 with a new structure, MonoGenericJitInfo, in the MonoJitInfo. It
5581 contains the location of "this", used for exception handling.
5583 2008-03-04 Zoltan Varga <vargaz@gmail.com>
5585 * class.c (mono_class_layout_fields): Set the min alignment of small structs to
5586 their size on all platforms for perf reasons.
5588 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
5590 * reflection.h: Move mono_reflection_is_valid_dynamic_token to
5593 * object-internal.h: Same.
5595 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
5597 * reflection.h: Fix the build I just broke.
5599 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
5601 * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
5602 Test if a token is valid, this remove explicit usage of
5603 MonoDynamicImage::tokens from the verifier code.
5605 * reflection.h: Added mono_reflection_is_valid_dynamic_token.
5607 * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
5608 instead of direct access to MonoDynamicImage::tokens.
5610 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
5612 * verify.c (token_bounds_check): Fix the build I just broke.
5614 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
5616 * verify.c (token_bounds_check): Fix bounds check for dynamic images.
5618 * verify.c (verifier_load_method): Fixed the errors message.
5620 * verify.c (mono_method_verify): Fixed a debug message.
5622 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
5624 * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
5625 mono-perfcounters.h, class-internals.h: support for predefined
5626 writable counters, query of categories and counters, bugfixes.
5628 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
5630 * verify.c (do_refanytype): Verify the refanytype opcode.
5632 * verify.c (mono_method_verify): Use do_refanytype.
5634 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
5636 * verify.c (do_mkrefany): Verify the mkrefany opcode.
5638 * verify.c (mono_method_verify): Use do_mkrefany.
5640 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
5642 * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
5643 mono-perfcounters.c, mono-perfcounters.h: basic performance counter
5646 2008-02-27 Zoltan Varga <vargaz@gmail.com>
5648 * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
5649 the type load exception.
5651 2008-02-27 Rodrigo Kumpera <rkumpera@novell.com>
5653 * verify.c: Added a few FIXME for method signatures
5655 * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
5656 of mono_method_get_signature and get vararg call working. Removed unused
5657 checks for return value.
5659 * verify.c (do_refanyval): Verify the refanyval opcode.
5661 * verify.c (mono_method_verify): Implemented verification of arglist and
5664 2008-02-27 Zoltan Varga <vargaz@gmail.com>
5666 * class.c (mono_class_setup_methods): Move the check for synchronized methods on
5667 vtypes to marshal.c.
5669 * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
5670 it works for AOT as well.
5672 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
5674 * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
5675 with mono_msec_ticks () which is monotonic and doesn't cause bugs when
5676 the system time is adjusted.
5678 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
5680 * icall.c, icall-def.h: use the new time functions (fixes the
5681 non-monotonic behaviour of TickCount).
5683 2008-02-26 Zoltan Varga <vargaz@gmail.com>
5685 * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
5686 it breaks the build.
5688 * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
5689 cattr is not finished yet.
5691 2008-02-25 Rodrigo Kumpera <rkumpera@novell.com>
5693 * verify.c: Proper token validation for field, method and type.
5695 2008-02-25 Rodrigo Kumpera <rkumpera@novell.com>
5697 * loader.c (field_from_memberref): Generate a loader error if the type is not found.
5699 * loader.c (method_from_memberref): Generate type load error instead of method missing
5700 if the type is not found.
5702 2008-02-23 Zoltan Varga <vargaz@gmail.com>
5704 * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
5705 some of the conversions caused the generation of a marshal directive exception.
5707 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
5709 verify.c: Report which exception should be thrown by the JIT.
5710 Added a lot of FIXME notes.
5712 2008-02-22 Mark Probst <mark.probst@gmail.com>
5714 * generic-sharing.c: Runtime generic context slots are not
5715 instantiated on init anymore. Instead, provide function to do the
5716 instantiating on demand.
5718 * class-internals.h: Added vtable to runtime generic context.
5719 Macros for encoding direct and indirect slot offsets in one
5722 2008-02-21 Mark Probst <mark.probst@gmail.com>
5724 * object.c, generic-sharing.c: Moved some generic sharing code
5725 from object.c to generic-sharing.c.
5727 * generic-sharing.c: Added support for extensible runtime generic
5730 * metadata-internals.h: Two new hash tables in MonoImage for
5731 extensible runtime generic context support.
5733 * domain.c: Unregister generic vtables upon domain unloading.
5735 * image.c: Destroy new hash tables upon image unloading.
5737 * metadata.c: Unregister generic subclasses upon image unloading.
5739 * class-internals.h: New data structure for runtime generic
5740 context template. New fields in the runtime generic context for
5743 * Makefile.am: Added generic-sharing.c.
5745 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
5747 icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
5748 there is a pending loader exception, raise it.
5750 icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken):
5753 icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken):
5758 2008-02-20 Zoltan Varga <vargaz@gmail.com>
5760 * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
5762 * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
5764 * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
5765 ref-only requests for compatibility with MS.
5767 2008-02-20 Raja R Harinath <harinath@hurrynot.org>
5769 * reflection.c (mono_custom_attrs_from_method): Don't silently
5770 return an empty list for generic method instances.
5771 (mono_custom_attrs_from_param): Likewise.
5773 2008-02-20 Rodrigo Kumpera <rkumpera@novell.com>
5774 Raja R Harinath <harinath@hurrynot.org>
5777 * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
5778 * class.c (mono_class_inflate_generic_method_full): Initialize it
5779 when a fully-open method is instantiated.
5780 * metadata.c (inflated_method_equal, inflated_method_hash): Update
5782 * reflection.c (inflate_mono_method): Don't create a temporary context.
5784 2008-02-20 Raja R Harinath <harinath@hurrynot.org>
5786 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
5787 Compute correct value, to prepare for imethod->reflection_info going away.
5789 2008-02-19 Zoltan Varga <vargaz@gmail.com>
5791 * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
5793 2008-02-18 Rodrigo Kumpera <rkumpera@novell.com>
5795 * verify.c: Implement skip visibility flag.
5797 2008-02-18 Rodrigo Kumpera <rkumpera@novell.com>
5799 * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
5800 which contains an extra field to tell the kind of exception that should be thrown.
5802 * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
5804 2008-02-17 Raja R Harinath <harinath@hurrynot.org>
5806 * loader.c (mono_method_get_param_names): Initialize 'klass' after
5807 'method' is updated.
5809 2008-02-11 Zoltan Varga <vargaz@gmail.com>
5811 * class.c (mono_class_layout_fields): Set class->min_align for classes using
5812 explicit layout as well. Fixes #360375.
5814 2008-02-11 Geoff Norton <gnorton@novell.com>
5816 * loader.c: Guard and dereference against inflated generic methods
5818 2008-02-10 Gert Driesen <drieseng@users.sourceforge.net>
5820 * class.c: Include Retargetable spec in assembly name.
5821 * assembly.c: Always include PublicKeyToken spec in assembly name
5822 (with value "null" if assembly is not signed), and include
5824 * icall-def.h: Added icall for Assembly.get_fullname.
5825 * icall.c: Added icall returning the fullname of an assembly.
5827 2008-02-09 Zoltan Varga <vargaz@gmail.com>
5829 * class.c (mono_class_setup_vtable_general): Add a missing call to
5830 mono_class_setup_methods () which is needed in the AOT case.
5832 2008-02-08 Rodrigo Kumpera <rkumpera@novell.com>
5834 * verify.c (mono_type_get_stack_name): Added. Return the name for the
5835 stack type of the given MonoType.
5837 * verify.c (verify_type_compatibility_full): Handle the void type.
5839 * verify.c (is_compatible_boxed_valuetype): Changed to fit the
5840 way stack merging works.
5842 * verify.c (store_local): Improved verification message.
5844 * verify.c (do_branch_op): If the merging is invalid, the method
5845 is unverifiable and not invalid. Improved error message.
5847 * verify.c (merge_stacks): Properly merge a boxed valuetype and
5848 a reference type diferent than System.Object. Improved error
5851 2008-02-07 Rodrigo Kumpera <rkumpera@novell.com>
5853 * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
5855 * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
5856 type of an enum even if the argument is byref.
5858 * verify.c: Replace all explicit uses of enumtype and enum_basetype
5859 to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
5861 * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
5863 *verify.c (verify_type_compatibility_full): Make enum types
5864 compatible with their base types.
5866 * verify.c (is_compatible_boxed_valuetype): Added. Check if both
5867 types are compatible for the special case of a boxed valuetype and
5870 * verify.c (verify_stack_type_compatibility): The function
5871 is_compatible_boxed_valuetype was extracted from here.
5873 * verify.c (push_arg): Only set ctx->has_this_store if the method
5876 * verify.c (do_ldelem): Fixed a typo in an error message and added
5877 strict check for mixing int32 and native int as the array type
5880 * verify.c (merge_stacks): Consider boxed valuetypes in the
5881 compatibility checks.
5883 2008-02-07 Massimiliano Mantione <massi@ximian.com>
5884 * profiler.h: (MonoGCEvent): Added start-stop the world events.
5886 2008-02-06 Massimiliano Mantione <massi@ximian.com>
5887 *class.c: use_new_interface_vtable_code: renamed the env var to have
5888 a "MONO_" prefix, and fix the logic to enable it by default.
5890 2008-02-06 Massimiliano Mantione <massi@ximian.com>
5892 mono_class_setup_vtable_general: rewrote the way in which interface
5893 methods are added to vtables. Makes bug-77127.exe pass, and hopefully
5894 makes the code more maintainable.
5895 For now the old code is still there, and can be activated setting
5896 the env var "USE_NEW_INTERFACE_VTABLE_CODE".
5898 2008-02-06 Rodrigo Kumpera <rkumpera@novell.com>
5900 * verify.c: guarded some debug functions around and #ifdef.
5902 * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
5904 2008-02-06 Zoltan Varga <vargaz@gmail.com>
5906 * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
5907 changes for now since they seem to break too many things.
5909 2008-02-05 Mark Probst <mark.probst@gmail.com>
5911 * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
5912 mono_marshal_find_nonzero_bit_offset): Added macro and function
5913 for finding the byte- and bit-offset of a bitfield within a
5916 2008-02-05 Zoltan Varga <vargaz@gmail.com>
5918 * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
5919 (mono_marshal_get_struct_to_ptr): Ditto.
5921 * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of
5924 2008-02-03 Zoltan Varga <vargaz@gmail.com>
5926 * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
5927 between methods for non-corlib types.
5929 2008-02-02 Geoff Norton <gnorton@novell.com>
5931 * loader.c (mono_method_get_param_names): Populate the parameter name for
5932 generic parameters as well. (Fixes #342536)
5934 2008-01-31 Rodrigo Kumpera <rkumpera@novell.com>
5936 * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
5938 * verify.c (do_invoke_method): Fix for calling with byref structs.
5940 * verify.c (do_cast): push a boxed value type based on the type token and not
5943 2008-01-31 William Holmes <billholmes54@gmail.com>
5945 * process.c (process_module_string_read): Check the size returned form
5946 VerQueryValue to avoid out of memory exception.
5948 2008-01-30 Zoltan Varga <vargaz@gmail.com>
5950 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
5951 Handle properly modules which are not in the moduleref table. Fixes
5954 2008-01-29 Zoltan Varga <vargaz@gmail.com>
5956 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
5957 the dynamic case which is now in managed code.
5958 (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
5960 * marshal.c (mono_string_to_bstr): Fix a warning.
5961 (init_com_provider_ms): Ditto.
5963 * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
5965 * exception.c (mono_get_exception_out_of_memory): New helper function.
5967 2008-01-28 Jonathan Chambers <joncham@gmail.com>
5969 * marshal.c: Add support for BSTR marshalling
5970 using other COM systems.
5972 Code is contributed under MIT/X11 license.
5974 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
5976 * object.c (mono_runtime_invoke_array): reverted previous
5977 commit as it breaks the build.
5979 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
5981 * object.c (mono_runtime_invoke_array): Verify arguments for
5982 invalid types. Fixes #348522.
5984 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
5986 * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
5987 non-final virtual calls using call.
5989 * verify.c (do_invoke): fixed some TODOs.
5991 * verify.c (push_arg): set has_this_store for "ldarga 0".
5993 2008-01-27 Zoltan Varga <vargaz@gmail.com>
5995 * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
5996 which belong to an inflated class. Fixes #356531.
5998 2008-01-26 Robert Jordan <robertj@gmx.net>
6000 * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
6001 which resort to FindFirstFile when a certain error condition
6002 (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
6003 Code is contributed under MIT/X11 license.
6005 2008-01-24 Jonathan Chambers <joncham@gmail.com>
6007 * marshal.c (emit_marshal_string): Fix out string marshalling
6008 to use specified encoding. Fixes #323900.
6010 Code is contributed under MIT/X11 license.
6012 2008-01-24 Raja R Harinath <harinath@hurrynot.org>
6014 * class.c (mono_class_inflate_generic_method_full): Don't modify
6015 iresult->context after cache check.
6017 2008-01-23 Zoltan Varga <vargaz@gmail.com>
6019 * class.c (mono_class_inflate_generic_method_full): Change the
6020 struct assignments to memcpy for better visibility and add some comments.
6022 2008-01-23 Dick Porter <dick@ximian.com>
6024 * threads.c (mono_threads_set_shutting_down): Simplify shutdown
6025 procedure, and make it work on windows.
6027 2008-01-22 Zoltan Varga <vargaz@gmail.com>
6029 * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
6030 a MonoReflectionTypeBuilder since it is always of that type.
6032 * reflection.c (mono_type_get_object): Remove an unneccesary check.
6034 * reflection.c (mono_generic_class_get_object): Simplify this a bit.
6036 * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
6038 * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
6040 * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
6042 * reflection.c (mono_reflection_create_runtime_class): Remove already created
6043 instantiations from the type cache.
6045 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
6047 * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
6049 * verify.c (do_unbox_value): push a controled mutability managed pointer.
6051 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
6053 * verify.c (do_ldstr): added, verifies if the #US token is valid.
6055 * verify.c (mono_method_verify): removed old TODO
6057 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
6059 * verify.c (do_newobj): add visibility check.
6061 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
6063 * verify.c (do_load_function_ptr): add visibility check.
6065 2008-01-21 Massimiliano Mantione <massi@ximian.com>
6067 mono_generic_class_get_class: hook profiler events.
6068 mono_field_get_offset: added to support heap-shot in the new profiler.
6069 *class.h: exported mono_field_get_offset.
6071 mono_reflection_setup_internal_class: hook profiler events.
6073 2008-01-20 Zoltan Varga <vargaz@gmail.com>
6075 * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions'
6076 argument here too and use it to avoid checking for pending exceptions if
6079 2008-01-20 Gert Driesen <drieseng@users.sourceforge.net>
6081 * assembly.c (build_assembly_name): add arg for passing the assembly
6082 flags. Do not consider a PublicKey with value "null" valid.
6083 (mono_assembly_name_parse_full): added boolean argument that will be
6084 set if the assembly name contains a PublicKeyToken spec. Added support
6085 for the Retargetable spec for which only Yes or No are allowed as valid
6086 value. Consider assembly name invalid if Retargetable spec is set, but
6087 either version, culture or public key (token) are not specified.
6088 * metadata-internals.h: sync signature of mono_assembly_name_parse_full
6089 with implementation in assembly.c.
6090 * icall.c (fill_reflection_assembly_name): also copy assembly flags
6091 from MonoAssemblyName.
6092 (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
6093 introduced argument for mono_assembly_name_parse_full to know if the
6094 assembly name has a PublicKeyToken spec, and if it has instruct
6095 fill_reflection_assembly_name to use default value for keyToken (if
6096 PublicKeyToken is null).
6098 2008-01-18 Rodrigo Kumpera <rkumpera@novell.com>
6100 * verify.c (mono_method_verify): fixed ovf ops with
6101 float values. They are unverifiable now.
6103 2008-01-18 Rodrigo Kumpera <rkumpera@novell.com>
6105 * class.c (set_failure_from_loader_error): add BadImageException to the
6106 list of exceptions that can cause a type to fail to load.
6108 * class.c (mono_class_get_exception_for_failure): same.
6110 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
6112 * verify.c (in_any_exception_block): added, check if offset
6113 is part of any exception handling clause.
6115 * verify.c (get_stack_type): added VAR and MVAR types.
6117 * verify.c (do_stobj): better error messages.
6119 * verify.c (do_cpobj): added, check cpobj.
6121 * verify.c (do_initobj): added, check initobj.
6123 * verify.c (do_sizeof): added, check sizeof.
6125 * verify.c (do_localloc): added, check localloc.
6127 * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
6129 2008-01-17 Zoltan Varga <vargaz@gmail.com>
6131 * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
6132 save_lmf/restore_lmf opcodes.
6134 * threads.c (mono_threads_install_notify_pending_exc): New function to
6135 install a callback notifying the JIT there is a pending exception on a thread.
6136 (mono_thread_request_interruption): Call the new callback.
6137 (mono_thread_get_and_clear_pending_exception): New function to return the
6138 exception pending on a thread.
6140 * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
6141 to turn off checking for pending exceptions.
6142 (mono_marshal_get_native_wrapper): Ditto.
6144 2008-01-16 Zoltan Varga <vargaz@gmail.com>
6146 * threads-types.h: Get rid of the unnecessary extern declarations.
6148 2008-01-16 Gert Driesen <drieseng@users.sourceforge.net>
6150 * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
6151 return field from parent class if not private.
6152 (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
6153 returns fields from parent class if they are not private.
6154 (method_nonpublic): added function to determine if a given method
6155 should be considered non-public. Returns false for private methods
6156 on parent class, and internal methods from parent on the 1.0 profile.
6157 (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
6158 use method_nonpublic function to determine whether method should be
6160 (property_accessor_public): use newly introduced method_nonpublic
6161 function to determine whether accessor is non-public.
6162 (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
6163 event from parent class if not private. Only return static event if
6164 Static flag is set, and only return static event from parent class if
6165 FlattenHierarchy flag is set.
6166 (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
6167 include non-private events from parent class.
6169 2008-01-16 Zoltan Varga <vargaz@gmail.com>
6171 * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
6174 2008-01-16 Wade Berrier <wberrier@novell.com>
6176 * security.c: Add assembly.h header to appease some warnings
6178 2008-01-16 Dick Porter <dick@ximian.com>
6180 * process.c (process_module_string_read): Remove trailing null
6183 2008-01-16 Mark Probst <mark.probst@gmail.com>
6185 * class-internals.h: A new data structure describing the layout of
6186 a runtime generic context (MonoRuntimeGenericContextTemplate).
6188 * metadata-internals.h: Added a hash table to MonoDomain that maps
6189 from open generic classes to their runtime generic context
6192 * object.c: Building of the runtime generic context, including
6193 proper handling of generic type arguments of superclasses.
6194 Building of the runtime generic context according to the template.
6196 2008-01-15 Zoltan Varga <vargaz@gmail.com>
6198 * class.c (mono_class_setup_fields): Set field.count for generic instances.
6201 * image.c (do_mono_image_open): Pass TRUE as last_exists to
6202 mono_portability_find_file (). Fixes #325466.
6203 (mono_image_get_public_key): Fix a warning.
6205 2008-01-14 Zoltan Varga <vargaz@gmail.com>
6207 * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
6209 (mono_class_from_name_case): Ditto.
6211 2008-01-13 Eyal Alaluf <eyala@mainsoft.com>
6213 * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
6214 common storage for the tables used in the System/NumberFormatter class.
6216 2008-01-13 Zoltan Varga <vargaz@gmail.com>
6218 * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
6220 2008-01-11 Rodrigo Kumpera <rkumpera@novell.com>
6222 * verify.c (get_boxable_mono_type): check if the token is valid.
6224 * verify.c (set_stack_value): changed to add an error if an
6225 invalid type is set on stack. Changed all callers due to signature change.
6227 * verify.c (do_stobj): implement stobj validation.
6229 2008-01-11 Zoltan Varga <vargaz@gmail.com>
6231 * reflection.c (reflection_methodbuilder_to_mono_method): No need to
6232 set container->is_method, it was set earlier.
6234 * metadata.c (type_in_image): Handle MVARs which belong to not finished
6237 * reflection.c (mono_reflection_initialize_generic_parameter): Set
6238 is_method of the generic container to TRUE for methods.
6240 2008-01-10 Zoltan Varga <vargaz@gmail.com>
6242 * metadata.c (type_in_image): Handle type parameters properly.
6244 * class-internals.h (MonoGenericParam): Add an 'image' argument to track
6245 memory ownership of this structure.
6247 2008-01-10 Rodrigo Kumpera <rkumpera@novell.com>
6249 * verify.c (get_boxable_mono_type): make typedref types been just
6250 unverifiable. check for void type.
6252 * verify.c (do_unbox_any): added, verify opcode unbox.any.
6254 * verify.c (do_load_function_ptr): accept method spec tokens.
6256 2008-01-10 Zoltan Varga <vargaz@gmail.com>
6258 * marshal.c (mono_class_native_size): Always set *align even if this is called
6261 2008-01-09 Zoltan Varga <vargaz@gmail.com>
6263 * verify.c (mono_verify_corlib): Remove this as it was not used and was
6266 2008-01-09 Rodrigo Kumpera <rkumpera@novell.com>
6268 * verify.c: removed some old unused tables. A huge bunch of small fixes
6269 to things found while testing the verifier with mono basic.
6271 * verify.c (dump_stack_value): dump null literal flag to.
6273 * verify.c (verify_type_compatibility_full): fix comparison
6274 for types that have a generic super type.
6276 * verify.c (verify_stack_type_compatibility): fix compatibility
6277 between null literals and reference types. fix compatibility between
6278 boxed valuetypes and object. fix corner case test for enums.
6280 * verify.c (do_cmp_op): proper verification of cgt.un in case
6283 * verify.c (do_invoke_method): fix error message.
6285 * verify.c (do_store_indirect
6287 * verify.c (check_is_valid_type_for_field_ops): proper verification
6288 of managed pointers to valuetypes and boxed valuetypes. proper verification
6291 * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
6292 allow token to be a reference type.
6294 * verify.c (do_cast): proper handling of boxes valuetypes.
6296 * verify.c (do_stelem): proper handling of storing a boxed valuetype
6299 * verify.c (mono_method_verify): pass the opcode to do_cmp_op
6300 to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
6301 fixed the decoding of unbox_any
6303 2008-01-08 Zoltan Varga <vargaz@gmail.com>
6305 * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
6307 2008-01-08 Rodrigo Kumpera <rkumpera@novell.com>
6309 * verify.c (do_newobj): do delegate verification.
6311 * verify.c (verify_delegate_compatibility): perform delegate
6314 * verify.c (verify_ldftn_delegate): perform tests related to
6317 * verify.c (mono_delegate_signature_equal): perform the
6318 slightly diferent signature comparison required by delegates.
6320 * metadata.c (mono_metadata_type_equal_full): added and exported
6321 as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
6322 allows signature only comparison.
6324 * metadata-internal.h (mono_metadata_type_equal_full): added and exported
6327 2008-01-07 Rodrigo Kumpera <rkumpera@novell.com>
6329 * verify.c: added a bunch of stack_slot_* functions to
6330 make access to stack slot type easier. This is required to
6331 allow optional flags, like null literal, boxed value and
6333 All access paths to IlStackDesc::stype have been changed
6334 to use these new funcions.
6335 Removed a bunch of unused functions and cleared all warnings.
6336 This patch introduces the usage of the this pointer and
6339 2008-01-07 Zoltan Varga <vargaz@gmail.com>
6341 * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
6343 2008-01-06 Zoltan Varga <vargaz@gmail.com>
6345 * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
6346 match managed version.
6348 * appdomain.c: Bump corlib version.
6350 * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
6353 2008-01-06 Gert Driesen <drieseng@users.sourceforge.net>
6355 * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
6356 Set public key token to zero-length byte array if assembly is not
6359 2008-01-05 Zoltan Varga <vargaz@gmail.com>
6361 * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
6362 writing a vtype array elem.
6364 2007-01-05 Gert Driesen <drieseng@users.sourceforge.net>
6366 * assembly.c (build_assembly_name): return FALSE if length of token is
6367 not 16 (if not "null").
6368 (mono_assembly_name_parse_full): return FALSE if value of version,
6369 culture, token or key is 0.
6370 * icall.c (fill_reflection_assembly_name): add boolean arguments to
6371 specify whether public key and public key token must be set to default
6372 value (zero-length byte array) if not available. Set versioncompat to
6373 SameMachine. If public key is available or the default is set, then
6375 (ves_icall_System_Reflection_Assembly_FillName): if no public key
6376 is available, use empty byte array as default value. On the 2.0
6377 profile, use default value for public key token if not set.
6378 (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
6379 profile, use default value for public key if not set. On the 2.0
6380 profile, use default value for public key token if not set.
6381 (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
6382 default values for public key and public key token.
6384 2008-01-05 Zoltan Varga <vargaz@gmail.com>
6386 * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
6387 field to keep it in synch with the managed object.
6389 * marshal.c (emit_marshal_object): Add support for byref marshalling of
6390 delegates. Fixes #351520.
6392 * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
6393 contains defined memory.
6395 * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
6397 * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
6399 * sgen-gc.c (check_consistency): New helper function to do a consistency check
6400 of the GC data structures.
6402 * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
6404 * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
6406 * object.c (mono_array_full_copy): Fix detection of whenever to use a write
6408 (mono_array_clone_in_domain): Ditto.
6409 (mono_array_clone_in_domain): Ditto.
6411 * threads.c (start_wrapper): Register the thread start argument as a GC root.
6412 (cache_culture): Use a write barrier.
6414 * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
6415 (ves_icall_get_property_info): Ditto.
6417 * object.h (MONO_STRUCT_SETREF): New macro.
6419 * class-internals.h (MonoStats): Add some GC statistics.
6421 * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
6423 2008-01-04 Andreas Faerber <andreas.faerber@web.de>
6425 * exception.c (mono_exception_from_name_two_strings):
6426 Break from loop after method is found.
6428 2008-01-04 Dick Porter <dick@ximian.com>
6430 * process.c (process_module_string_read): Rename variable to
6431 reflect correct usage, after fixing bug 345972.
6433 2008-01-03 Rodrigo Kumpera <rkumpera@novell.com>
6435 * verify.c (mono_type_create_fnptr_from_mono_method):
6436 created a MonoType function pointer instance to be used during
6437 verification. The verifier releases this memory at end.
6439 * verify.c (mono_method_is_constructor): extracted repeated
6440 checks for constructor into a single class.
6442 * verify.c (do_push_field): use new extracted method
6443 for constructor check.
6445 * verify.c (do_newobj): same.
6447 * verify.c (do_ldftn): renamed to do_load_function_ptr
6448 and make it verify ldvirtftn too.
6450 * verify.c (mono_method_verify: proper verification
6451 of ldvirtftn. release created MonoMethod instances.
6453 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
6455 * verify.c (token_bounds_check): added.
6457 * verify.c (do_ldftn): added.
6459 * verify.c (mono_method_verify): proper verificartion of ldftn.
6461 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
6463 * metadata.c (mono_metadata_decode_row): Assert if index is bigger
6464 than the table row count. It's the resposibility of the caller to
6465 make the bounds check and raise the correct error.
6467 * metadata.c (mono_metadata_decode_row_col): Same.
6469 * loader.c (mono_get_method_from_token): perform bounds check
6470 on token for methoddef table.
6472 2007-12-29 Miguel de Icaza <miguel@novell.com>
6475 (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
6476 assert into a negative result, the managed code already coped with
6479 Some folks on Windows reported this error.
6481 2007-12-28 Gert Driesen <drieseng@users.sourceforge.net>
6483 * appdomain.c: Bump corlib version.
6485 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
6486 CultureInfo.CreateCulture to create CultureInfo for name.
6487 (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
6488 create CultureInfo for name. Fixes bug #347174.
6490 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
6492 * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
6495 * verify.c (is_valid_branch_instruction): allow branching to the
6496 first instruction of the protected block.
6498 * verify.c (is_valid_cmp_branch_instruction): same.
6500 * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
6501 avoid double initialization.
6503 * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
6504 detect which cases the eval stack should just be copied.
6506 * verify.c (mono_method_verify): check if the eval stack
6507 is empty when entering a protected block.
6509 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
6511 * verify.c: added is_clause_in_range, is_clause_inside_range,
6512 is_clause_nested and verify_clause_relationship. They perform
6513 the verifications stated in P1 12.4.2.7.
6515 * verify.c (mono_method_verify): remove some unused variables,
6516 add the new exception clause checks, add instruction border
6517 checks for protected block start/end, improved some error
6518 messages and fixed a bug in the way invalid instruction access
6521 2007-12-26 Zoltan Varga <vargaz@gmail.com>
6523 * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
6524 from GC 7.0 if available.
6526 * object.c: Remove an unused define.
6528 * object.c (mono_class_compute_gc_descriptor): Fix a warning.
6530 * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
6532 * null-gc.c (mono_gc_make_descr_for_array): Implement.
6534 * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
6536 * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
6537 to take the same arguments as the other make_descr functions.
6539 * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
6541 * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
6544 * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
6547 * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc ()
6550 * boehm-gc.c (mono_gc_register_root): Fix a warning.
6552 * null-gc.c (mono_gc_register_root): Fix a warning.
6554 * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
6556 * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
6557 (mono_gc_base_init): Call GC_init ().
6559 * null-gc.c: Define mono_gc_register_root () as a no-op.
6561 * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
6563 2007-12-24 Rodrigo Kumpera <rkumpera@novell.com>
6565 * verify.c: add prototype for merge_stacks at top
6567 * verify.c (do_switch): added.
6569 * verify.c (merge_stacks): on some cases the stack merging
6570 was not happening properly. Unequal stack sizes at merge
6571 points should be invalid.
6573 * verify.c (mono_method_verify): added more debug info on stack state.
6574 verify switch properly.
6576 2007-12-24 Zoltan Varga <vargaz@gmail.com>
6578 * method-builder.h: New file, moved the mono_mb_ declarations here from
6581 * boehm-gc.c marshal.c: Include method-builder.h.
6583 * marshal.c: Use mono_mb_emit_branch_label () in a few places.
6585 * marshal.c: Remove some code which is now in method-builder.c.
6587 2007-12-23 Zoltan Varga <vargaz@gmail.com>
6589 * method-builder.c: New file, extraction of the method builder functionality
6592 * marshal.c: Move the mb functions into method-builder.c.
6594 * marshal.h marshal.c: Export some mono_mb_... functions.
6596 * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
6598 * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
6601 * class.c (mono_class_get_full): Check the token type in the dynamic case.
6603 * loader.c (mono_field_from_token): Ditto.
6605 * loader.c (mono_get_method_from_token): Change the check so it checks memberref
6608 * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
6611 * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
6612 a helper function for setting it.
6614 * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
6617 * assembly.c: Significally simplify code now that referenced assemblies are
6618 loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
6620 * threads.h: Don't include the internal threads-types.h header file. Fixes
6623 2007-12-21 Rodrigo Kumpera <rkumpera@novell.com>
6625 * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
6626 instructions that were target of branches or are at protected block boundaries.
6628 * verify.c (in_same_block): handle filter clauses.
6630 * verify.c (is_valid_branch_instruction): added. checks the target of
6631 instructions br or brtrue/false.
6633 * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
6634 binary branch instructions such as beq and bge.
6636 * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
6637 and made it pin the instruction as been part of the exception block.
6639 * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
6642 * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
6645 * verify.c (do_ret): ret from a protected block is unverifiable and
6648 * verify.c (do_static_branch): verify br and br.s instructions.
6650 * verify.c (merge_stacks): add extra param to support detection
6651 of branches in the middle of instructions.
6653 * verify.c (mono_method_verify): verify branches and exception blocks
6654 that target the middle of instructions. Proper verification of br and br.s.
6656 2007-12-21 Zoltan Varga <vargaz@gmail.com>
6658 * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
6659 skip_visibility field.
6660 (reflection_methodbuilder_from_dynamic_method): Ditto.
6662 * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
6663 registrations. Fixes #348193.
6665 * threads.h: Move the internal mono_thread_get_pending_exception () to
6666 threads-types.h and rename it to mono_thread_get_undeniable_exception ().
6668 2007-12-20 Zoltan Varga <vargaz@gmail.com>
6670 * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
6671 icall registration. Fixes #348193.
6673 * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
6674 for corlib classes into object. Fixes #349621.
6676 2007-12-20 Gert Driesen <drieseng@users.sourceforge.net>
6678 * icall.c (property_accessor_nonpublic): new function to determine
6679 whether an accessor allows a property to be considered non-public.
6680 Returns false for private accessor(s) from parent class, and internal
6681 accessor(s) from parent on 2.0 profile (and higher).
6682 (ves_icall_Type_GetPropertiesByName): Use newly introduced function
6683 to determine whether property should be included if NonPublic flag
6684 is set. Fixes bug #349078.
6686 2007-12-20 Rodrigo Kumpera <rkumpera@novell.com>
6688 * verify.c (init_stack_with_value): added.
6690 * verify.c (mono_method_verify): extracted common
6691 code for exception initialization into init_stack_with_value.
6693 * verify.c (mono_method_verify): initialize the exception
6694 for handler clauses as well.
6696 * verify.c (mono_method_verify): fix the exception clause
6697 ordering rules, it should use handler end offset and not
6700 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
6702 * rawbuffer.c: remove useless warning.
6704 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
6706 * threads.h, threads-types.h: move functions to the correct header
6709 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
6711 * verify.c (mono_method_verify): proper verification
6712 of exception handling clauses ranges and fallthru in
6713 and out of protected blocks.
6715 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
6717 * verify.c (mono_method_verify): fixed compilation issue.
6719 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
6721 * verify.c (mono_method_verify): a printf slipped in, changed
6722 to use verifier debug macro.
6724 2007-12-18 Rodrigo Kumpera <rkumpera@novell.com>
6726 * verify.c (is_correct_leave): check for filter clauses.
6728 * verify.c (do_filter): added.
6730 * verify.c (mono_method_verify): property verification of leave.
6733 2007-12-18 Mark Probst <mark.probst@gmail.com>
6735 * threads.c: Disable calls to _wapi_thread_signal_self() to fix
6736 Win32 build, until we figure out how to do the proper thing on
6739 2007-12-17 Zoltan Varga <vargaz@gmail.com>
6741 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
6742 by the previous patch.
6744 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
6745 the assembly resolve handler for refonly assemblies.
6747 2007-12-17 Mark Probst <mark.probst@gmail.com>
6749 * threads.c, thread-types.h, icall.c: New shutdown safeguards.
6750 Make sure only one thread is allowed to commence shutdown, and
6751 don't allow new threads to be started once shutdown is in
6754 2007-12-14 Rodrigo Kumpera <rkumpera@novell.com>
6756 * verify.c (is_correct_endfilter): added.
6758 * verify.c (is_unverifiable_endfilter): added.
6760 * verify.c (do_endfilter): added.
6762 * verify.c (mono_method_verify): property verification of endfilter
6763 and fixed a corner case or endfinally.
6765 2007-12-13 Rodrigo Kumpera <rkumpera@novell.com>
6767 * verify.h: new flags to support fail fast of unverifiable code and
6768 do non-strict verification. Non-strict verification is required to
6769 have MS runtime compatibility. There are a huge amount of unverifiable
6770 code that it accepts as verifiable. The strict mode verifies the code
6772 Non-strict mode will be required in cases where code needs to be
6773 accepted as verifiable but fails under strict mode.
6775 * pedump.c: added support to fail fast and non-strict verification.
6777 * verify.c: added support for both fail fast and non-strict verification.
6779 2007-12-12 Rodrigo Kumpera <rkumpera@novell.com>
6781 * verify.c (is_correct_endfinally): added.
6783 * verify.c (mono_method_verify): property verification of endfinally.
6785 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
6787 * verify.c (in_any_block): check for filter clauses.
6789 * verify.c (is_correct_rethrow): added.
6791 * verify.c (mono_method_verify): property verification of rethrow.
6793 * metadata.h: added MONO_OFFSET_IN_FILTER macro.
6795 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
6797 * verify.c (do_throw): added.
6799 * verify.c (mono_method_verify): property verification of throw
6801 2007-12-11 Zoltan Varga <vargaz@gmail.com>
6803 * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
6804 assemblies. Fixes #346425.
6806 2007-12-10 Zoltan Varga <vargaz@gmail.com>
6808 * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
6811 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
6813 * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
6814 prevent asserts when this is called with a token which might not be valid.
6816 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
6817 lookup_dynamic_token_class with valid_token == FALSE.
6819 * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
6821 * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
6823 * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
6825 2007-12-10 Mark Probst <mark.probst@gmail.com>
6827 * gc.c: Don't delay threadpool thread finalization unless Mono is
6830 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
6832 * threads.c: turn an assert into a non-fatal warning.
6834 2007-12-09 Robert Jordan <robertj@gmx.net>
6836 * icall.c (GetVirtualMethod): Add missing argument validation.
6838 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
6840 * verify.c (do_cast): added.
6842 * verify.c (mono_method_verify): property verification of castclass and isinst.
6845 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
6847 * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
6849 * verify.c (do_stelem): added.
6851 * verify.c (mono_method_verify): property verification of stelem.X.
6853 2007-12-07 Mark Probst <mark.probst@gmail.com>
6855 * class.c, class-internals.h: Introduce an environment variable
6856 (MONO_GENERIC_SHARING) through which the extent of generic code
6857 sharing can be controlled (share all classes, share only corlib
6858 classes, or share nothing).
6860 * object.c: Only create runtime generic context for classes for
6861 which sharing is enabled.
6863 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
6865 * verify.c (do_ldelem): refactor it to work with ldelem.any.
6867 * verify.c (mono_method_verify): property verification of ldelem.any.
6869 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
6871 * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
6872 added ldelem.X opcodes.
6874 * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
6876 * verify.c: proper verification of ldelem.X
6878 2007-12-06 Zoltan Varga <vargaz@gmail.com>
6880 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
6882 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
6884 * verify.c (mono_method_verify): null literal requires special handling,
6885 the value pushed on stack need to be flagged as so.
6887 * verify.c (do_ldelema): Verify ldelema properly.
6889 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
6891 * verify.c: Verify ldlen properly.
6893 2007-12-05 Zoltan Varga <vargaz@gmail.com>
6895 * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
6896 to the target object's type. Fixes #346160.
6898 2007-12-05 Dick Porter <dick@ximian.com>
6900 * threadpool.c (socket_io_add_poll): Asynchronous connect() on
6901 Solaris needs the same workaround as BSD-derived systems. Fixes
6902 bug 323524, patch by Burkhard Linke
6903 <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
6905 2007-12-04 Gert Driesen <drieseng@users.sourceforge.net>
6907 * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
6908 handle to use when error dialog is shown; otherwise, update mask
6909 to show no error dialog when an error occurs.
6911 2007-12-03 Zoltan Varga <vargaz@gmail.com>
6913 * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
6915 * class.c (mono_class_get_field_default_value): New helper function to initialize
6916 field->def_type and field->data.
6918 2007-11-30 Zoltan Varga <vargaz@gmail.com>
6920 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
6923 * object.c (mono_runtime_create_delegate_trampoline): New helper function.
6925 * marshal.c: Avoid depending on delegate->method_info being set.
6927 * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
6929 * object.c (mono_delegate_ctor): Set delegate->method.
6931 * object-internals.h (struct _MonoDelegate): Add 'method' field.
6933 * appdomain.c: Bump corlib version.
6935 2007-11-27 Raja R Harinath <harinath@gmail.com>
6937 * metadata.c (mono_generic_inst_equal_full): Short-circuit
6938 equality check if we're comparing canonicalized MonoGenericInsts.
6940 2007-11-23 Zoltan Varga <vargaz@gmail.com>
6942 * class.c (generic_array_methods): Call mono_class_setup_methods () before
6943 accessing class->methods.
6945 2007-11-22 Dick Porter <dick@ximian.com>
6947 * threads.c: Ensure that the synch_cs is set before trying to use
6950 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
6952 * profiler.c: r89126 broke the statistial profiler, unbreak.
6954 2007-11-22 Martin Baulig <martin@ximian.com>
6956 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
6959 (mono_debug_debugger_version): Bump to 3.
6960 (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
6961 -> mono_debugger_class_initialized().
6963 * mono-debug-debugger.c
6964 (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
6967 (mono_debugger_start_class_init_func): Removed.
6968 (mono_debugger_class_loaded_methods_func): Added.
6969 (mono_class_setup_methods): Call it here.
6971 2007-11-22 Martin Baulig <martin@ximian.com>
6974 (mono_debug_add_delegate_trampoline): New public method.
6975 (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
6978 (MonoSymbolTable): Added `global_data_table'.
6979 (MonoDebuggerTypeKind): Removed.
6981 2007-11-21 Zoltan Varga <vargaz@gmail.com>
6983 * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
6986 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6988 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
6990 * object.c: some fields don't have a valid rva: ignore them (bug #343083).
6992 2007-11-20 Martin Baulig <martin@ximian.com>
6994 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
6996 * mono-debug-debugger.c
6997 (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
6998 (mono_debugger_remove_breakpoint): Likewise.
6999 (mono_debugger_check_breakpoints): Likewise.
7000 (mono_debugger_register_class_init_callback): New public method.
7001 (mono_debugger_remove_class_init_callback): Likewise.
7002 (mono_debugger_add_type): Likewise.
7004 * mono-debug-debugger.h
7005 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
7007 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
7009 * class.c: more interface implementations needed for the
7010 array enumerator (fixes bug #341112).
7012 2007-11-18 Gert Driesen <drieseng@users.sourceforge.net>
7014 * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
7015 fix ParamName of ArgumentNullExceptions.
7017 2007-11-17 Miguel de Icaza <miguel@novell.com>
7019 * reflection.c (mono_reflection_encode_sighelper): Generate the
7020 modopts and modreqs. I have a useless test that crashes monodis,
7021 but that shows the code working.
7023 2007-11-17 Zoltan Varga <vargaz@gmail.com>
7025 * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
7026 (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
7028 2007-11-15 Dick Porter <dick@ximian.com>
7030 * threads.c (ves_icall_System_Threading_Thread_Join_internal):
7031 When joining a thread, it's the thread that's calling Join that
7032 gets WaitSleepJoin state not the target. Fixes the standalone
7033 test case in bug 334740, and hopefully the whole bug too.
7035 2007-11-15 Dick Porter <dick@ximian.com>
7037 * process.c: Read file version info from the files pointed at by
7038 process modules, not the current process. Fixes bug 315969.
7040 Use windows typedef names in some places to fix warnings on the
7043 2007-11-15 Mark Probst <mark.probst@gmail.com>
7045 * image.c, metadata-internals.h: Added a generic_class_cache hash
7046 to MonoImage for looking up generic classes when sharing generics.
7048 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
7050 * sgen-gc.c: warning cleanups.
7052 2007-11-15 Zoltan Varga <vargaz@gmail.com>
7054 * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
7055 inherited properties.
7057 2007-11-14 Mark Probst <mark.probst@gmail.com>
7059 * object.c, class-internals.h: Added more information to the
7060 runtime generic context.
7062 2007-11-13 Zoltan Varga <vargaz@gmail.com>
7064 * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
7065 instead of just the target method. Generalize the abstract method handling to
7066 handle any non-static method.
7068 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
7069 mono_marshal_get_delegate_invoke () signature change.
7071 2007-11-13 Mark Probst <mark.probst@gmail.com>
7073 * class.c, class-internals.h: Made
7074 mono_type_get_basic_type_from_generic () public. Fixed member
7075 access check for shared generics.
7077 * loader.c: Don't insert field into field cache if it's part of a
7078 non-inflated generic class.
7080 * domain.c, domain-internals.h: The generic sharing context is now
7081 part of the jit info data structure. Added two accessor
7084 2007-11-12 Zoltan Varga <vargaz@gmail.com>
7086 * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
7087 the array Get/Set/Address methods, since the JIT inlines them.
7089 * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
7091 * image.c (mono_image_close): Free runtime_invoke_direct_cache.
7092 (mono_image_init): Initialize runtime_invoke_direct_cache.
7094 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
7095 mono_marshal_get_delegate_invoke signature change.
7097 * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
7098 an additional argument. Add support for invoking abstract methods.
7100 * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
7102 * image.c (mono_image_close): Free delegate_abstract_invoke_cache.
7104 2007-11-09 Mark Probst <mark.probst@gmail.com>
7106 * class.c: Do field layout for open generic classes as well.
7108 2007-11-09 Mark Probst <mark.probst@gmail.com>
7110 * gc.c, gc-internal.h: Don't finalize threadpool threads with
7111 other objects, because the threadpool is still around. Put them
7112 in a list instead and after finalizing all other objects in the
7113 root domain shut down the thread pool and then finalize the
7114 threads. Fixes bug #337383.
7116 * threads.c, thread-types.h: New mono_thread_create_internal()
7117 function for marking a thread with the threadpool flag before it
7118 started. Set synch_cs to NULL after freeing it.
7120 * threadpool.c: Mark threadpool threads before they start.
7122 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
7124 * reflection.h, reflection.c: don't export random functions
7125 and lazy load dbnull and missing objects.
7127 2007-11-07 Jonathan Chambers <joncham@gmail.com>
7129 * class.c: Initialize COM types if COM interfaces
7130 are present (not just COM classes).
7132 Code is contributed under MIT/X11 license.
7134 2007-11-07 Massimiliano Mantione <massi@ximian.com>
7136 create_dynamic_mono_image: hook module profiler events (dynamic case).
7137 mono_image_basic_init: hook assembly profiler events (dynamic case).
7139 2007-11-07 Massimiliano Mantione <massi@ximian.com>
7141 simple_appdomain_unload: completely terminate the profiler
7142 instead of only processing the statistical samples.
7143 simple_shutdown: make sure this is really called exactly once,
7144 even in multithreaded applications, and always listen to
7146 * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
7147 here, the "[un]load" functions will do it.
7148 Fixes bugs #333791 and #325261.
7150 2007-11-07 Geoff Norton <gnorton@novell.com>
7152 * socket-io.c: Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
7153 rather than depend on __APPLE__.
7155 2007-11-07 Mark Probst <mark.probst@gmail.com>
7157 * icall.c: Safety checks in InitializeArray. Fixes bug #324535.
7159 2007-11-06 Sebastien Pouliot <sebastien@ximian.com>
7161 * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
7162 UTF16 MonoString. Fix the crash from bug #335488
7164 2007-11-06 Sebastien Pouliot <sebastien@ximian.com>
7166 * marshal.c: Correct (for non-Win32 OS) length != size in
7167 mono_string_from_bstr. Fix #339530.
7169 2007-11-06 Geoff Norton <gnorton@novell.com>
7171 * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
7174 2007-11-05 Kornél Pál <kornelpal@gmail.com>
7176 * process.c: Added run-time GetProcessId API detection for Windows.
7178 2007-11-04 Miguel de Icaza <miguel@novell.com>
7180 * reflection.c (mono_param_get_objects): If a parameter has the
7181 attribute [System.Runtime.InteropServices.Optional] we should
7182 set the DefaultValue of the ParameterInfo to be
7183 System.Reflection.Missing instead of DBNull.
7187 (mono_get_reflection_missing_object): New method,
7188 returns the System.Reflection.Missing.Value singleton instance.
7190 2007-11-03 Atsushi Enomoto <atsushi@ximian.com>
7192 * culture-info-table.h : regenerated.
7194 2007-11-02 Jonathan Chambers <joncham@gmail.com>
7196 * icall.c: Use GetEnvironmentStrings on windows
7197 so we are using the same environment block as
7198 GetEnvironmentVariable/SetEnvironmentVariable. Fixes
7201 Code is contributed under MIT/X11 license.
7203 2007-10-31 Martin Baulig <martin@ximian.com>
7205 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
7207 * mono-debug-debugger.h
7208 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
7210 2007-10-30 Zoltan Varga <vargaz@gmail.com>
7212 * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated
7215 2007-10-30 Atsushi Enomoto <atsushi@ximian.com>
7217 * culture-info-table.h : regenerated.
7219 2007-10-30 Robert Jordan <robertj@gmx.net>
7221 * icall-def.h, icall.c:
7222 Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
7224 Code is contributed under MIT/X11 license.
7226 2007-10-29 Zoltan Varga <vargaz@gmail.com>
7228 * class.c (mono_class_setup_vtable): Find the inflated methods in the
7229 inflated class instead of inflating them again.
7231 * class.c (mono_class_setup_vtable): Inflate the override methods in the
7234 * class.c (mono_generic_class_get_class): Set klass->property.count as well.
7235 Call setup_supertypes () after klass->parent is set.
7236 (mono_class_setup_properties): Enable this to work on dynamic generic classes.
7238 * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
7239 for inflated instances of not yet created dynamic generic classes.
7240 (ctorbuilder_to_mono_method): Handle the case when this is called multiple
7241 times from inflated_method.
7242 (methodbuilder_to_mono_method): Ditto.
7244 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
7246 * gc.c: code cleanup and removed old untested option of not creating the
7249 2007-10-29 Zoltan Varga <vargaz@gmail.com>
7251 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
7252 creating a jump trampoline for dynamic methods.
7254 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
7256 * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
7257 generic TypeBuilders when called from another method of the same type (bug #335131).
7260 2007-10-27 Zoltan Varga <vargaz@gmail.com>
7262 * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
7263 doesn't seem to work perfectly.
7265 * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
7266 called multiple times.
7267 (methodbuilder_to_mono_method): Ditto.
7268 (resolve_object): Inflate FieldBuilder's.
7270 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7272 * string-icalls.c, string-icalls.h, appdomain.c: patch from
7273 Tyler Larson <mono-devel@tlarson.com> to fix the handling of
7274 RemoveEmptyEntries in the string.Split implementation (bug #322375).
7276 2007-10-26 Dick Porter <dick@ximian.com>
7278 * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
7279 Thread initialisation changes
7281 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
7283 * verify.c: fix compatibility check between arrays and System.Array
7285 2007-10-26 Zoltan Varga <vargaz@gmail.com>
7287 * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
7290 2007-10-25 Zoltan Varga <vargaz@gmail.com>
7292 * object.c (mono_value_box): Use typed allocation here.
7294 2007-10-23 Zoltan Varga <vargaz@gmail.com>
7296 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
7297 trampoline instead of compiling the method right away.
7299 * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
7301 2007-10-21 Zoltan Varga <vargaz@gmail.com>
7303 * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
7304 related fields for dynamic classes. Fixes #334493.
7306 2007-10-20 Zoltan Varga <vargaz@gmail.com>
7308 * class.c (mono_generic_class_get_class): Set klass->field.count as well.
7310 * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
7312 * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
7313 (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
7315 * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
7317 * reflection.c (create_generic_typespec): Initialize klass->generic_container
7319 (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
7321 2007-10-18 Jonathan Chambers <joncham@gmail.com>
7323 * marshal.c: Use correct key when removing item
7326 Code is contributed under MIT/X11 license.
7328 2007-10-17 William Holmes <billholmes54@gmail.com>
7330 *marshal.c: Adding a case to marshal booleans to U1
7332 Code is contributed under MIT/X11 license.
7334 2007-10-18 Zoltan Varga <vargaz@gmail.com>
7336 * class.c (mono_class_from_name): Search the modules compromising dynamic
7337 assemblies. Fixes #331601.
7339 2007-10-16 Zoltan Varga <vargaz@gmail.com>
7341 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
7342 exception if the type name contains an assembly component. Fixes #334203.
7344 * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
7345 modules inside dynamic assemblies. Fixes #334200.
7347 * reflection.c: Set image->public_key and image->public_key_length;
7349 * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
7352 * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.
7354 2007-10-16 Mark Probst <mark.probst@gmail.com>
7356 * metadata.c: Implemented correct comparing of generic classes.
7357 An inflated generic class can be equal to a non-inflated one if it
7358 is inflated with generic type variables as type arguments. Fixes
7361 2007-10-15 Dick Porter <dick@ximian.com>
7363 * monitor.c (mono_monitor_try_enter_internal): Set thread state to
7364 WaitSleepJoin while it is waiting to acquire a lock. Fixes bug
7367 * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
7368 instead of a monitor lock. This means that monitor_try_enter and
7369 co can set the thread state safely.
7370 (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
7371 thread_interrupt_requested, so interrupt actually works.
7373 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
7374 ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
7375 state accessor function
7377 2007-10-15 Martin Baulig <martin@ximian.com>
7380 (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
7381 the debugger with the current runtime.
7383 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
7385 * object.c, object-internals.h: added the ability to set a single
7386 trampoline for all the slots in a vtable.
7388 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
7390 * marshal.c: deal with a possible race condition during multicast
7391 delegate invocation.
7393 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
7395 * class.c: ensure value type methods don't have the synchronized
7398 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
7400 * string-icalls.c, string-icalls.h: reverted unapproved patch that
7403 2007-10-11 Joel Reed <joelwreed@comcast.com>
7405 * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
7406 to take an options parameter so that empty entries can be removed during
7407 the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
7409 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
7411 * marshal.c: make sure we don't store the signature from a dynamic
7412 method into the runtime invoke cache (bug #327189).
7414 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7416 * marshal.c: make sure the wrapper methods are properly initialized.
7418 2007-10-11 Mark Probst <mark.probst@gmail.com>
7420 * metadata.c, metadata-internals.h: Generalized
7421 mono_type_stack_size() to mono_type_stack_size_internal() which
7422 takes an additional argument specifying whether it allows open
7425 2007-10-10 Rodrigo Kumpera <rkumpera@novell.com>
7427 * verify.c (do_invoke_method): handle typedbyref params
7428 correctly and check for unverifiable return values.
7430 * verify.c (do_newobj): fix a warning.
7432 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
7434 * verify.c: don't tread typedbyref as allways unverifable,
7435 so uses, like (ld/st)loc.0 are valid. verify for the cases
7436 that it matters, like boxing related operations.
7438 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
7440 * verify.c: add verification of the newobj opcode. verification
7441 of delegate instantation still missing due ldftn and virldftn not
7442 pushing the function type on stack
7444 2007-10-08 Mark Probst <mark.probst@gmail.com>
7446 * class-internals.h: Runtime generic context data structure
7449 * object.c: Initialization of runtime generic context at runtime
7450 vtable creation time.
7452 2007-10-08 Massimiliano Mantione <massi@ximian.com>
7453 * class.c (mono_class_create_from_typedef,
7454 mono_class_from_generic_parameter, mono_ptr_class_get,
7455 mono_fnptr_class_get, mono_bounded_array_class_get)
7456 * domain.c (mono_domain_create, mono_domain_free)
7457 * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
7458 * image.c (do_mono_image_load, mono_image_close):
7459 Hooked up load-unload profiler events.
7461 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
7463 * domain.c: track statistics about the actual amount of native code
7466 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
7468 * class.c: the valuetype enumerators don't have the additional
7469 supertypes interfaces.
7471 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7473 * class.c: need more interfaces setup for the IEnumerator<T>
7474 object created for arrays (tests/ienumerator-interfaces.2.cs).
7476 2007-10-05 Zoltan Varga <vargaz@gmail.com>
7478 * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
7480 2007-10-05 Alp Toker <alp@atoker.com>
7482 * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
7483 rather than the underlying type. Based on a patch by Ben Maurer. Fixes
7486 2007-10-04 Rodrigo Kumpera <rkumpera@novell.com>
7488 * verify.c (verify_type_compatibility_full): verification of
7489 compatibility improved, validates correctly non-strict checks between
7490 native int and I4 types different than (unsigned)int32.
7492 * verify.c (do_store_indirect): added, do all verification of
7495 * verify.c (get_load_indirect_mono_type): renamed to
7496 get_indirect_op_mono_type, as it now returns the MonoType for
7497 ldind.X and stind.X opcodes.
7499 2007-10-04 Rodrigo Kumpera <rkumpera@novell.com>
7501 * reflection.c: Fix the encoding of generic type definition for
7504 * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
7505 mono_image_typedef_or_ref but allows to specify if typespec lookups should
7506 be made. Typespec check is done prior to typeref cache lookup.
7508 * reflection.c (mono_image_typedef_or_ref): now just delegate to
7509 mono_image_typedef_or_ref_full.
7511 * reflection.c (encode_generic_class): encode the generic class
7512 directly instead of calling encode_type.
7514 * reflection.c (encode_type): encode the generic type definition
7515 MonoClass as a generic instantiation.
7517 * reflection.c (create_typespec): cache typespec tokens in
7518 the assembly->typespec cache. Don't create typespec for a generic
7519 instance MonoClass. Create typespec for the generic type defintion.
7521 * reflection.c (create_generic_typespec): encode the generic
7522 class directly instead of calling encode_type.
7524 * reflection.c (mono_image_create_token): encode the generic
7525 type definition not using a typespec for MonoType instances.
7528 2007-10-04 Raja R Harinath <rharinath@novell.com>
7531 * class.c (mono_image_init_name_cache): Don't return nested
7532 'protected internal' classes.
7533 (mono_class_from_name_case): Likewise.
7535 2007-10-04 Atsushi Enomoto <atsushi@ximian.com>
7537 * icall-def.h, icall.c : get_bundled_machine_config() is now the
7538 common function used by both DefaultConfig in System.dll and
7539 InternalConfigurationHost in System.Configuration.dll.
7541 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
7543 * class.c: automatically add to vectors only a few essential explicit
7544 generic interfaces. The rest of the interfaces that arrays should
7545 provide are currently implicitly added (but still not lazily, see the
7546 design in the discussion of bug#325495 for the details of what is
7547 needed for that). Additionally, implicit interfaces are assigned the
7548 same vtable slot as the explicit interfaces (as they are compatible):
7549 this enables huge memory savings since we don't need to instantiate
7550 as many memthods and as large vtables anymore. Also, Since
7551 GetEnumerator<T> returns an instance of a type that is required to
7552 support a similarly large set of interfaces as arrays, we add
7553 implicit interfaces and interface offset sharing support to those
7554 types, too. This change adds all the required interfaces so that
7555 the anonarray.cs test case in the bug report works (we don't add
7556 all the interfaces to arrays of arrays 3-level deep and more because
7557 of the memory requirements explained in the bug and since they are much
7558 less common: the lazy-loading support will enabled them to work, too).
7560 2007-10-02 Rodrigo Kumpera <rkumpera@novell.com>
7562 * verify.c (merge_stacks): major clean up, all type compatibility
7563 checks are done by verify_type_compatibility. This fix my earlier lack
7564 of understanding of the CLR type system and merge_stacks no longer looks
7567 * verify.c: fixed some bad spelling.
7569 2007-10-02 Rodrigo Kumpera <rkumpera@novell.com>
7571 * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
7572 a given stack slock.
7574 * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
7575 verify_type_compatibility_full. This removed a near indentical function and fixed
7576 handling of Int32 and IntPtr across all opcodes.
7578 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
7580 * class.c: only vectors have the additional generic interfaces.
7582 2007-10-01 Jonathan Chambers <joncham@gmail.com>
7584 * mono-config.c: Use g_strcasecmp instead of
7585 strcasecmp like everywhere else to fix
7586 compilation with MSVC.
7588 Code is contributed under MIT/X11 license.
7590 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
7592 * object.c, object-internals.h: refactored the IMT code to enable
7593 building a single slot at a time and lazily creating the IMT trampolines
7596 2007-09-29 Zoltan Varga <vargaz@gmail.com>
7598 * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
7600 * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
7603 2007-09-29 Raja R Harinath <harinath@gmail.com>
7605 * loader.c (method_from_methodspec): Rearrange to avoid
7606 un-necessary exposition. Don't assert out if the method's
7607 declaring type is a generic type definition.
7609 2007-09-28 Martin Baulig <martin@ximian.com>
7611 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
7613 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
7615 * class-internals.h: optimize field layout of MonoClass to
7616 requires less cachelines at runtime and save a few bytes on 64 bit
7619 2007-09-28 Jb Evain <jbevain@novell.com>
7621 * reflection.c: when encoding type names in custom attributes,
7622 if the type is a closed generic type, its generic arguments
7623 have to be serialized as AssemblyQualifiedName, so that when
7624 they are deserialized, it's possible to re-create them properly.
7628 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
7630 * object.c, class-internals.h: added delegate-creation counter.
7632 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
7634 * class.c: cleanup of the code that synthetizes interfaces for
7635 arrays in 2.0: saves quit a bit of corlib mempool memory.
7636 Code to fix bug #325495 ifdeffed out for now until the issues
7637 with memory usage and O(n^2) behaviour are fixed.
7639 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
7641 * marshal.c: when possible, do not duplicate the name of the methods
7642 in the method builder and in the generated MonoMethod.
7644 2007-09-27 Rodrigo Kumpera <rkumpera@novell.com>
7645 * verify.c: added support for type checking ldind_* opcodes.
7647 2007-09-27 Rodrigo Kumpera <rkumpera@novell.com>
7649 * class-internals.h (struct _MonoGenericClass): new field is_tb_open
7650 which is used to distinguish the fully open instantiation of a TypeBuilder
7651 with the rest. This temporary hack is required to restore the property that
7652 the fully open instantiation is the same type of the generic type definition.
7654 * class-internals.h (mono_generic_class_is_generic_type_definition):
7655 new function as part of the internal API.
7657 * class.c (inflate_generic_type): return NULL when the generic inst is
7658 fully open. The fully open generic type is now the same as the generic type
7659 definition for non TypeBuilder types.
7661 * class.c (mono_generic_class_get_class): removed assert since it is
7662 no longer valid, gklass->cached_class can point to the generic type definition.
7664 * class.c (mono_generic_class_is_generic_type_definition): new.
7666 * metadata.c (mono_generic_class_hash): added is_tb_open field
7667 to the hash calculation.
7669 * metadata.c (free_generic_class): if the generic class is associated
7670 with the generic type definition, its field will come from the mempool and
7673 * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
7674 new, this function identifies the corner case of a TypeBuilder fully open
7677 * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
7678 for lookup. Set gclass->cached_class to be the container class in case of
7679 the fully open instantiation of non TypeBuilder types.
7681 * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
7682 to compare generic classes.
7684 * reflection.c (method_encode_methodspec): remove assert that
7687 * reflection.c (mono_reflection_generic_class_initialize): add
7688 an aditional assert to ensure the proper type is used.
7690 2007-09-26 Rodrigo Kumpera <rkumpera@novell.com>
7692 * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
7695 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
7697 * verify.c (push_arg): Fixed support for ldarga
7698 * verify.c (set_stack_value): Removed superfluous parameter, fixed the
7699 MonoType used as first arg in case of instance calls.
7701 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
7703 * verify.c: Support for verifying VAR and MVAR types,
7705 2007-09-25 Zoltan Varga <vargaz@gmail.com>
7707 * icall.c (ves_icall_get_property_info): Set the reflected type of the
7708 accessors correctly.
7710 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
7712 * threads.c: support OSX and other systems in
7713 mono_thread_get_stack_bounds (bug #328026).
7715 2007-09-25 Martin Baulig <martin@ximian.com>
7718 (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
7720 2007-09-24 Martin Baulig <martin@ximian.com>
7723 (MonoDebugClassEntry): Moved the definition of this struct into
7724 mono-debug.c to make it private.
7727 (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
7728 type table per symbol file, we don't need to store the symfile id
7731 2007-09-24 Martin Baulig <martin@ximian.com>
7733 Create one type table per symbol file, since a `MonoClass *' gets
7734 invalid when its image is unloaded.
7736 * mono-debug.h (MonoSymbolTable): Removed `type_table'.
7737 (MonoDebugHandle): Added `type_table'.
7739 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
7741 * mempool.c, mempool.h: added mono_mempool_new_size () API
7742 to be able to specify a smaller initial size for the pool.
7743 Adjusted the code to slowly increase pool size before using
7744 the previous default size.
7745 * image.c: use a small initial size for image mempools.
7747 2007-09-23 Zoltan Varga <vargaz@gmail.com>
7749 * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
7752 * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal):
7753 Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
7755 2007-09-22 Zoltan Varga <vargaz@gmail.com>
7757 * metadata.c (mono_type_create_from_typespec): Remove an invalid
7758 free. Fixes #327438.
7760 2007-09-21 Raja R Harinath <harinath@gmail.com>
7762 * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
7763 generic instantiations, etc.
7764 <MONO_TYPE_ARRAY>: Likewise.
7766 2007-09-21 Martin Baulig <martin@ximian.com>
7768 * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
7769 these structs were never defined.
7770 (MonoDebugHandle): Removed the `_priv' field, it was never used.
7772 2007-09-21 Martin Baulig <martin@ximian.com>
7774 * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
7776 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
7778 * image.c: removed the guid hash tables: we can get the same info
7779 without the additional memory usage hit (partially fixes also bug #327052).
7781 2007-09-10 Massimiliano Mantione <massi@ximian.com>
7783 * profiler.h, profiler-private.h, profiler.c: add a new profiler
7784 event to handle unloading methods. After the event is called, the
7785 corresponding MonoMethod* must be considered invalid.
7786 * loader.c (mono_free_method): call the new mono_profiler_method_free
7789 2007-09-20 Mark Probst <mark.probst@gmail.com>
7791 * domain-internals.h: New flag in MonoJitInfo which marks shared
7792 generic methods. New hash table (shared_generics_hash) in
7793 MonoDomain to keep track of shared generic methods. Prototypes
7794 for functions to register and lookup shared generic methods.
7796 * domain.c: Support for registering and looking up shared generic
7797 methods via a hash table (shared_generics_hash) in MonoDomain.
7799 * class-internals.h: New exception to signal failure of shared
7800 compilation of a generic method. New counters for generics
7801 sharing in MonoStats.
7803 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
7805 * image.c, metadata-internals.h: don't keep a file descriptor open
7806 for loaded assemblies (bug#325988).
7808 2007-09-19 Raja R Harinath <rharinath@novell.com>
7810 * metadata.c (signature_in_image): New. Carve out of type_in_image.
7811 (ginst_in_image, gclass_in_image): Simplify. Change signature to
7812 use the corresponding datatypes.
7813 (type_in_image): Update to changes.
7814 (CleanForImageUserData): Simplify.
7815 (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
7816 Avoid quadratic behaviour in handling the "stolen" list by
7817 separating the filter predicate out, and by prepending the stolen
7818 items rather than appending them.
7819 (steal_ginst_in_image): Likewise.
7820 (mono_metadata_clean_for_image): Update to changes.
7822 2007-09-19 Martin Baulig <martin@ximian.com>
7824 * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
7826 2007-09-19 Martin Baulig <martin@ximian.com>
7828 * mono-debug.c (mono_debug_cleanup): Don't call
7829 mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
7831 2007-09-19 Raja R Harinath <harinath@gmail.com>
7833 Fix crash on 'make run-test' in mcs/errors
7834 * metadata.c (type_in_image): New. Carve out of ginst_in_image.
7835 Avoid more potential allocations in mono_class_from_mono_type.
7836 (ginst_in_image): Update to changes.
7837 (gclass_in_image): Rearrange slightly.
7839 2007-09-18 Zoltan Varga <vargaz@gmail.com>
7841 * class.c (mono_class_init): Move the code that sets up class->methods to
7842 mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
7844 * metadata.c (mono_metadata_get_inflated_signature): New function to return a
7845 canonical instance of an inflated generic signature.
7846 (mono_type_create_from_typespec): Remove an invalid free.
7848 * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.
7850 2007-09-18 Marek Habersack <mhabersack@novell.com>
7852 * domain-internals.h: added a declaration of the
7853 mono_assembly_load_full_nosearch internal function.
7855 * assembly.c (mono_assembly_load_with_partial_name): use
7856 mono_try_assembly_resolve return value properly.
7857 (mono_assembly_load_full_nosearch): copied the function body from
7858 mono_assembly_load_full, without the code to invoke assembly
7860 (mono_assembly_load_full): calls the above new function and if the
7861 assembly is not resolved, invokes the search hooks.
7863 * appdomain.c (mono_runtime_init): restore the global postload
7864 assembly search handlers.
7866 2007-09-18 Zoltan Varga <vargaz@gmail.com>
7868 * class.c (mono_class_init): Make sure class->methods and class->properties
7869 are never NULL in the generics case.
7871 * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
7873 2007-09-17 Zoltan Varga <vargaz@gmail.com>
7875 * metadata.c (free_generic_class): Disable some code to fix the build.
7877 * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
7879 * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
7880 from the image mempool.
7882 * metadata.c (free_generic_class): Free more data from the inflated class.
7884 * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
7886 * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
7888 (mono_type_create_from_typespec): Ditto.
7890 * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
7891 MonoImage to the caller.
7892 (mono_init_internal): Save the opened image in a global variable.
7893 (mono_cleanup): Close the image opened in get_runtimes_from_exe.
7895 * reflection.c (resolve_object): Fix a leak.
7897 * metadata.c: Fix the freeing of data in the generics caches.
7899 * metadata.c (free_generic_inst): Comment this out to fix the build.
7900 (free_generic_class): Ditto.
7902 * metadata.c: Free cached generic methods, instantinations and classes when
7903 they are removed from the caches.
7904 (mono_metadata_free_type): Free the type itself.
7906 * class.c: Free the result of mono_class_inflate_generic_type () in a few
7909 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
7911 * boehm-gc.c: restrict managed allocs to __thread supporting
7914 2007-09-16 Zoltan Varga <vargaz@gmail.com>
7916 * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
7917 (mono_generic_class_get_class): Fix a leak.
7919 * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
7920 mono_metadata_free_type ().
7921 (mono_metadata_inflate_generic_inst): Fix a leak.
7923 2007-09-14 Zoltan Varga <vargaz@gmail.com>
7925 * mono-debug.c (free_header_data): Fix a leak missed earlier.
7927 * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
7930 * mono-debug.c (mono_debug_close_image): Fix call to
7931 g_hash_table_remove ().
7933 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
7935 * icall-def.h: redirect all the string ctor to the managed
7936 CreateString () methods.
7937 * string-icalls.c, string-icalls.h: removed dead code for string
7940 2007-09-14 Zoltan Varga <vargaz@gmail.com>
7942 * mono-debug.c: Fix memory leaks.
7944 2007-09-14 Jonathan Chambers <joncham@gmail.com>
7946 * threads-types.h: Implement mono_hazard_pointer_set and
7947 mono_hazard_pointer_clear macros using do/while(0) to fix
7948 compilation with MSVC.
7950 Code is contributed under MIT/X11 license.
7952 2007-09-14 Zoltan Varga <vargaz@gmail.com>
7954 * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
7955 -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
7957 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7959 * icall-def.h, string-icalls.c: get rid of old, no longer used, string
7962 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
7964 * boehm-gc.c, gc-internal.h, object.c: allow strings to be
7965 managed-code allocated as well.
7967 2007-09-13 Zoltan Varga <vargaz@gmail.com>
7969 * class.c (mono_class_is_assignable_from): Add support for generic variance.
7971 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
7973 * boehm-gc.c: fixed the build after the AOT changes.
7975 2007-09-13 Zoltan Varga <vargaz@gmail.com>
7977 * wrapper-types.h: Add an ALLOC wrapper type.
7979 * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
7980 reference managed allocator methods.
7982 2007-09-12 Marek Safar <marek.safar@gmail.com>
7984 * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
7985 of Type array and not MonoType, a fix suggested by Hari.
7987 2007-09-12 Jonathan Chambers <joncham@gmail.com>
7989 * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
7990 and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
7992 Code is contributed under MIT/X11 license.
7994 2007-09-10 Massimiliano Mantione <massi@ximian.com>
7996 * domain.c, object.c, mono-config.c, object-internals.h: Fixed #82416.
7998 2007-09-12 Marek Habersack <mhabersack@novell.com>
8000 * image.c (do_mono_image_open): if assembly file fails to open and
8001 MONO_IOMAP is in effect, try to find the path in a
8002 case-insensitive way.
8004 * appdomain.c (mono_runtime_init): do not install postload hooks -
8005 tests show that MS.NET doesn't use anything of that sort to
8006 trigger the AppDomain.AssemblyResolve event.
8007 (mono_try_assembly_resolve): renamed from try_assembly_resolve and
8009 (mono_runtime_init): init portability helpers here.
8011 * assembly.c (mono_assembly_load_with_partial_name): if other
8012 attempts fail, trigger the AppDomain.AssemblyResolve event handler
8013 to resolve the assembly.
8015 * domain-internals.h: added mono_try_assembly_resolve and marked
8018 2007-09-11 Jb Evain <jbevain@novell.com>
8020 * object-internals.h (MonoReflectionDynamicMethod): add
8021 a `MonoReflectionType *owner` field. The owner is used
8023 (mono_reflection_create_dynamic_method): use the owner of the dynamic
8024 method as the class declaring the dynamic method.
8025 (reflection_methodbuilder_from_dynamic_method): copy the owner of the
8026 dynamic method to the declaring type of the methodbuilder.
8028 2007-09-11 Mark Probst <mark.probst@gmail.com>
8030 * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
8031 rules for calling methods via reflection.
8033 2007-09-11 Zoltan Varga <vargaz@gmail.com>
8035 * reflection.c (resolve_object): Add support for MonoGenericClass.
8038 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
8040 * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
8041 provide a managed method that does fast allocations without needing
8042 a managed->unmanaged transition. Boehm GC implementation currently
8043 enabled for ptrfree objects on sane architectures.
8045 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
8047 * marshal.c, marshal.h: exported a couple of useful functions and
8048 added mono_mb_get_label () to easily handle backward branches.
8050 2007-09-10 Zoltan Varga <vargaz@gmail.com>
8052 * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
8054 2007-09-10 Massimiliano Mantione <massi@ximian.com>
8056 * loader.c (find_method): Fixed the regression introduced while
8059 2007-09-09 Zoltan Varga <vargaz@gmail.com>
8061 * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
8064 * class.c loader.c metadata.c object.c class-internals.h object-internals.h
8065 icall.c reflection.c: Pass a MonoGenericContext argument to
8066 mono_lookup_dynamic_token ().
8068 * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
8071 2007-09-09 Robert Jordan <robertj@gmx.net>
8073 * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
8074 for generic methods.
8076 * object.c (mono_object_get_virtual_method): Handle generic methods.
8079 Code is contributed under MIT/X11 license.
8081 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
8083 * image.c: fix locking in mono_image_load_file_for_image ().
8085 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
8087 * reflection.c, icall.c, icall-def.h: the methodinfos name field is
8088 used only as a cache: added an icall to fill it.
8090 2007-09-16 Rodrigo Kumpera <rkumpera@novell.com>
8092 * reflection.h: exposed mono_reflection_free_type_info
8093 * reflection.c (mono_reflection_get_type_internal): type_args is always freed
8094 since mono_reflection_bind_generic_parameters makes a copy of it.
8095 * reflection.c (free_type_info): subinfos should be freed.
8096 * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and
8098 * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
8099 replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
8100 this fixes #82695 and #81726.
8103 2007-09-03 Atsushi Enomoto <atsushi@ximian.com>
8105 * process.h, process.c: added support for user profile/info in
8106 ProcessStartInfo. For now only Windows works.
8108 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8110 * metadata.c: consider the generic arguments when comparing
8111 signatures (bug #82614).
8113 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8115 * cil-coff.h, image.c: updated assembly loader to cope with the
8116 PE32+ 64 bit file format.
8118 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8120 * assembly.c, class.c, domain.c, loader.c: remove useless
8121 inclusion of cil-coff.h.
8123 2007-08-29 Jonathan Chambers <joncham@gmail.com>
8125 * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
8126 if interface is marked with CoClassAttribute.
8128 Code is contributed under MIT/X11 license.
8130 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
8132 * sgen-gc.c: ensure no object from the to space is copied again or finalized
8133 if it's seen twice in major collections.
8135 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8137 * sgen-gc.c: big objects are not copied to the gray area, but they
8138 need to be considered for scanning, too, if they are brought alive
8139 by an object ready for finalizations or a survived one.
8141 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8143 * sgen-gc.c: properly account the number of disappearing links when
8146 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
8148 * sgen-gc.c: share the code to scan the registered roots between the
8149 different types of collections.
8151 2007-08-28 Zoltan Varga <vargaz@gmail.com>
8153 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
8155 2007-08-28 Zoltan Varga <vargaz@gmail.com>
8157 * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
8158 class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
8160 2007-08-28 Mark Probst <mark.probst@gmail.com>
8162 * security-manager.c (mono_security_manager_get_methods):
8163 LinkDemandSecurityException now has 2 arguments instead of 3.
8165 2007-08-27 Zoltan Varga <vargaz@gmail.com>
8167 * class.c (mono_class_layout_fields): Only do the struct alignment hack on
8168 platforms which need it.
8170 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8172 * sgen-gc.c: unregister thread data structures with a pthread_key_t
8175 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
8177 * threads.c: free the thread static data on thread exit.
8179 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
8181 * class.c: walk the hierarchy to find the generic definition for
8182 a class (fixes runtime part of bug #82498).
8184 2007-08-24 Zoltan Varga <vargaz@gmail.com>
8186 * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
8189 * image.c (mono_image_close): Here. Hopefully fixes #82510.
8191 2007-08-24 Mark Probst <mark.probst@gmail.com>
8193 * monodiet.c (handle_cattrs): Fixed a custom attr leak.
8195 2007-08-24 Robert Jordan <robertj@gmx.net>
8197 * appdomain.c: don't perform the ':'->';' substitution on Win32.
8199 2007-08-24 Jb Evain <jbevain@novell.com>
8201 * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
8204 2007-08-24 Mark Probst <mark.probst@gmail.com>
8206 * threads.c: Make sure a thread gets cleaned up only once. Fixes
8209 2007-08-24 Zoltan Varga <vargaz@gmail.com>
8211 * assembly.c: Fix a warning.
8213 2007-08-23 Marek Habersack <mhabersack@novell.com>
8215 * appdomain.c: parse the <runtime> section looking for the probing
8216 element with the 'privatePath' attribute, which sets additional
8217 directories in which the runtime should look for assemblies.
8219 2007-08-23 Robert Jordan <robertj@gmx.net>
8221 * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
8224 2007-08-23 Martin Baulig <martin@ximian.com>
8226 * mono-debug.[ch]: Rename mono_debug_init_corlib() into
8227 _mono_debug_init_corlib() and remove it from the header file.
8229 2007-08-23 Martin Baulig <martin@ximian.com>
8231 * mono-debug-debugger.c
8232 (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
8233 don't notify the debugger about it.
8235 * mono-debug-debugger.h
8236 (MonoDebuggerEvent): Removed `THREAD_ABORT'.
8238 2007-08-23 Robert Jordan <robertj@gmx.net>
8240 * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
8241 Code is contributed under MIT/X11 license.
8243 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8245 * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
8247 2007-08-22 Martin Baulig <martin@ximian.com>
8249 * mono-debug.c: Store debugging info on a per-domain basis and
8250 free it on domain unload. Add support for unloading symbol files.
8253 (MonoDebugList): New typedef.
8255 - add `data_tables and `type_table'.
8256 - replace 'symbol_files' and `num_symbol_files' with a
8258 (mono_debug_data_table): Removed.
8259 (mono_debug_list_add): New public function.
8260 (mono_debug_list_remove): New public function.
8261 (mono_debug_init_1): Renamed into mono_debug_init_corlib().
8262 (mono_debug_init_2_memory): Renamed into
8263 mono_debug_open_image_from_memory().
8264 (mono_debug_close_image): New public function.
8265 (mono_debug_domain_create): Likewise.
8266 (mono_debug_domain_unload): Likewise.
8267 (MONO_DEBUGGER_VERSION): Bump to 60.
8269 * mono-debug-debugger.h
8270 (MonoDebuggerEvent):
8271 - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
8272 - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
8273 - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
8274 - rename `THREAD_CREATED' and `THREAD_EXITED' into
8275 `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
8276 - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
8278 (mono_debugger_add_symbol_file): Removed.
8279 (mono_debugger_add_type): Removed.
8280 (mono_debugger_lookup_type): Removed.
8281 (mono_debugger_lookup_assembly): Removed.
8284 (mono_domain_create): Call mono_debug_domain_create().
8285 (mono_init_internal): Call mono_debug_init_corlib().
8288 (mono_assembly_close): Call mono_debug_close_image().
8290 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
8292 * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
8295 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
8297 * sgen-gc.c: ensure section->pin_queue_end is initialized
8298 correctly when non pinning objects in the section have been found.
8300 2007-08-22 Marek Habersack <mhabersack@novell.com>
8302 * appdomain.c (set_domain_search_path): cope with PrivateBinPath
8303 containing a list of directories separated by ':'. MSDN docs say
8304 the directories should be separated with ';'. Part of a bugfix for
8307 2007-08-21 Rodrigo Kumpera <rkumpera@novell.com>
8309 * class.c (mono_type_retrieve_from_typespec) : fixed the return type
8310 it should MonoType and not MonoClass.
8312 2007-08-21 Atsushi Enomoto <atsushi@ximian.com>
8314 * culture-info-table.h : regenerated.
8316 2007-08-20 William Holmes <billholmes54@gmail.com>
8318 *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
8319 to call ReplaceFile Kernel32 on windows or in io-layer.
8320 *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
8321 *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
8322 as an internal call.
8324 Code is contributed under MIT/X11 license.
8326 2007-08-20 Jb Evain <jbevain@novell.com>
8328 * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
8329 and MONO_EXCEPTION_FIELD_ACCESS.
8331 * debug-helpers.[c|h]: new mono_field_full_name function.
8333 2007-08-20 Mark Probst <mark.probst@gmail.com>
8335 * class.c: Removed class_security_level() and moved it to
8336 security-core-clr.c.
8338 * security-core-clr.c, security-core-clr.h: class_security_level()
8339 is now public and renamed to mono_security_core_clr_class_level().
8340 It also looks for security attributes in the classes a class is
8343 2007-08-20 Mark Probst <mark.probst@gmail.com>
8345 * security-core-clr.c, security-core-clr.h: CoreCLR security
8348 * Makefile.am: Added security-core-clr.[ch].
8350 * security-manager.c, security-manager.h: Functions and enum for
8351 setting and getting the security mode.
8353 * class.c: CoreCLR security checks.
8355 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8357 * icall-def.h, process.c, process.h: implemented icall to get
8358 user/system processor times.
8360 2007-08-17 Mark Probst <mark.probst@gmail.com>
8362 * domain.c, threads.c, class-internals.h, domain-internals.h: New
8363 reader-lock-free jit_info_table.
8365 2007-08-17 Zoltan Varga <vargaz@gmail.com>
8367 * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
8369 * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.
8371 * object-internals.h (MonoException): Add missing _data member.
8373 2007-08-08 Massimiliano Mantione <massi@ximian.com>
8375 * loader.c (find_method, find_method_in_class): Fixed bug #81466,
8376 checking that only methods with matching qname or fqname are picked
8377 from implemented interfaces.
8379 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
8381 * verify.c (do_newarr):added, do type verification of
8382 newarr ops, push the right value on the eval stack.
8383 * verify.c (mono_method_verify): use do_newarr
8386 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
8388 * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
8389 factored the common code into get_boxable_mono_type, which
8390 is now using mono_type_get_full, this fixed byref related tests.
8392 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
8394 * class.c: added mono_type_get_full, this function has the same
8395 behavior of mono_class_get_full but the returned MonoType has
8396 all metadata of the associated token in case of a typespec token.
8397 * class.c: added mono_type_retrieve_from_typespec, used by
8398 mono_type_get_full to retrieve the token type.
8399 * class.c (mono_class_create_from_typespec): changed to use
8400 mono_type_retrieve_from_typespec.
8401 * class.c (mono_ldtoken): changed to use mono_type_get_full
8402 for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
8403 * class-internals.h: exported mono_type_get_full for internal use.
8405 2007-08-16 Jb Evain <jbevain@novell.com>
8407 * domain.c (supported_runtimes): add entry for
8408 the 'moonlight' runtime version.
8410 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
8412 * verify.c (mono_method_verify): small typo sliped in.
8414 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
8416 * verify.c (do_unbox_value): added, do type verification of
8418 * verify.c (mono_method_verify): use do_unbox_value
8421 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
8423 * verify.c (dump_stack_value): fixed typo, was printing string
8424 instead of object on stack.
8425 * verify.c (do_box_value): moved the byref check up as it leads
8426 to invalid code and should be done earlier.
8427 * verify.c: improved error messages for and ldobj
8429 2007-08-15 William Holmes <billholmes54@gmail.com>
8431 * marshal.c (emit_marshal_custom): Omit the call to
8432 marshal_native_to_managed when calling native to managed
8433 and the argument is specified as an out argument.
8435 Code is contributed under MIT/X11 license.
8437 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
8439 * verify.c: fixed the type checks for generics, function pointers and vectors.
8440 Added type verification for ldobj and ldtoken. The verifier
8441 would segfault if header or signature of a method contained references
8442 to non-existant types.
8444 2007-08-15 Jonathan Chambers <joncham@gmail.com>
8446 * marshal.c (cominterop_get_ccw): Patch from
8447 Bill Holmes to no walk up interface hierarchy.
8448 All parent methods should be present in the interface for COM.
8450 Code is contributed under MIT/X11 license.
8452 2007-08-15 Jonathan Chambers <joncham@gmail.com>
8454 * marshal.c (emit_marshal_com_interface): Patch from
8455 Bill Holmes to handle COM Interfaces as return values
8456 for native->managed calls.
8458 Code is contributed under MIT/X11 license.
8460 2007-08-14 Jonathan Chambers <joncham@gmail.com>
8462 * marshal.c (cominterop_get_idispatch_for_object): Implement
8463 for runtime callable wrappers.
8465 Code is contributed under MIT/X11 license.
8467 2007-08-13 Rodrigo Kumpera <rkumpera@novell.com>
8469 * pedump.c (main): changed from mono_init to mono_init_from_assembly
8470 so 2.0 types are accessible
8473 2007-08-13 Miguel de Icaza <miguel@novell.com>
8475 * domain.c (mono_init_internal): Call mono_assembly_load_friends
8476 once we load mscorlib. Due to the order in which we initialize,
8477 the mono_assembly_load_full routine that loads mscorlib did not
8478 load friends. We now load it once we load the
8479 mono_defaults.internals_visible_class class.
8481 * assembly.c: Expose the mono_load_friend_assemblies method.
8483 2007-08-11 Rodrigo Kumpera <rkumpera@novell.com>
8485 * verify.c: improved the handling of boxing, better
8486 type checking for unary ops and conversion. Fix bug
8487 regarding managed pointer compatibility checking
8489 2007-08-11 Zoltan Varga <vargaz@gmail.com>
8491 * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
8493 * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
8495 2007-08-09 Raja R Harinath <rharinath@novell.com>
8497 * reflection.c (dup_type): Remove.
8498 * class.c (dup_type): Remove.
8499 (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
8500 instead of the dodgy 'dup_type'.
8501 (inflate_generic_type): Likewise. Fix the VAR/MVAR cases to
8502 handle the case where 'dup_type' needed the second argument.
8504 2007-08-08 Zoltan Varga <vargaz@gmail.com>
8506 * domain.c: Fix a warning.
8508 2007-08-08 Massimiliano Mantione <massi@ximian.com>
8510 * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
8511 checking that methods with the same fqname are not overridden
8512 with a method from an ancestor.
8514 2007-08-07 Zoltan Varga <vargaz@gmail.com>
8516 * threads.c (free_thread_static_data_helper): Avoid a crash if
8517 thread->static_data is not yet set.
8519 2007-08-07 Jonathan Chambers <joncham@gmail.com>
8521 * marshal.c: Use correct image when emitting
8522 native wrapper for COM calls.
8524 Code is contributed under MIT/X11 license.
8526 2007-08-07 Atsushi Enomoto <atsushi@ximian.com>
8528 * icall-def.h, security.c, security.h :
8529 added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
8531 2007-08-07 Martin Baulig <martin@ximian.com>
8533 * mono-debug-debugger.h
8534 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
8536 * domain.c (mono_domain_free): Call
8537 `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
8539 2007-08-06 Rodrigo Kumpera <rkumpera@novell.com>
8541 * verify.c (check_underflow, check_overflow): error message now returns IL offset
8542 * verify.c (in_same_block): code should test if either offset is inside the clauses
8543 * verify.c (mono_method_verify): push the exception into the eval stack of exception
8546 2007-08-03 Zoltan Varga <vargaz@gmail.com>
8548 * image.c (mono_image_close): Fix a leak.
8550 * object.c (mono_runtime_invoke_array): Avoid using alloca.
8552 * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.
8554 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8556 * domain.c, threads.c, threads-types.h: fix memory retention issue
8557 with thread static variables not being cleared on domain unload.
8558 Reuse thread static slots after domain unload.
8560 2007-08-03 Zoltan Varga <vargaz@gmail.com>
8562 * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
8565 * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
8566 now done in mono_runtime_invoke_array.
8568 * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the
8569 receiver is a nullable type.
8571 * class.c (mono_class_is_assignable_from): Handle the case when klass is a
8574 2007-08-03 Jonathan Chambers <joncham@gmail.com>
8576 * marshal.c: Implement COM Objects as return type for
8577 managed->unmanaged calls. Added Release calls for COM Object
8578 out/return values in managed->unmanaged calls.
8580 Code is contributed under MIT/X11 license.
8582 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8584 * threads.h, threads-type.h: move the hazard pointer declarations
8585 to the private header.
8587 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8589 * file-io.c, appdomain.c: memory leak fixes.
8591 2007-08-02 Dick Porter <dick@ximian.com>
8594 (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
8595 SO_REUSEADDR setting into io-layer/sockets.c.
8597 2007-08-01 Zoltan Varga <vargaz@gmail.com>
8599 * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
8600 from Object when called on a generic parameter. Fixes #82211.
8602 2007-08-01 Dick Porter <dick@ximian.com>
8604 * file-io.c (convert_share): Test FileShare values bit-by-bit.
8605 Fixes bug 79250 yet again.
8607 2007-07-30 Martin Baulig <martin@ximian.com>
8609 Merged the `debugger-dublin' branch.
8612 (MonoDebugDataTable): New typedef.
8613 (MonoDebugMethodAddressList): New typedef.
8614 (MonoDebugWrapperData): Removed.
8615 (MonoDebugSymbolTable): Removed `current_data_table',
8616 `current_data_table_size', `current_data_table_offset'.
8617 (MonoDebugDataItemType): Moved into mono-debug.c.
8618 (MonoDebugMethodJitInfo): Remove `address'.
8619 (mono_debug_data_table): New global variable.
8620 (mono_debug_lookup_method_addresses): New public function.
8621 (mono_debug_find_method): Take a `MonoMethod *', not a
8622 `MonoDebugMethodInfo *'.
8624 * mono-debug.c: Drop support for the old symbol tables.
8626 2007-06-28 Martin Baulig <martin@ximian.com>
8628 * mono-debug.c (mono_debug_debugger_version): New public variable.
8630 2007-07-31 William Holmes <billholmes54@gmail.com>
8632 * metadata.c Changed mono_type_create_from_typespec to not insert
8633 the type into the hash map until after
8634 do_mono_metadata_parse_type has completed.
8636 Code is contributed under MIT/X11 license.
8638 2007-07-31 Zoltan Varga <vargaz@gmail.com>
8640 * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
8641 generic parameter. Fixes #82211.
8643 2007-07-27 Jb Evain <jbevain@novell.com>
8645 * pedump.c (dump_metadata, dump_metadata_header): dump
8646 versions contained in the metadata header.
8648 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8650 * threads.c: register small_id_table with the GC.
8652 2007-07-27 Mark Probst <mark.probst@gmail.com>
8654 * threads.c, threads.h, class-internals.h, object-internals.h:
8655 Hazard pointers, to be used by lock-free parallel algorithms.
8657 2007-07-26 Dick Porter <dick@ximian.com>
8659 * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
8660 routine on non-windows platforms, as I've not managed to think of
8661 a non-kludgy way of doing this. Finishes off bug 78739.
8663 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8665 * object.c: properly setup interface_bitmap in proxy vtables.
8667 2007-07-25 Marek Habersack <mhabersack@novell.com>
8669 * appdomain.c (get_shadow_assembly_location): do not use TickCount
8670 to create unique shadow copy target directories, use the domain's
8671 serial number instead. Each domain gets a unique target directory
8674 * domain.c (mono_domain_create): added code to increment domain
8675 shadow copy serial number and cache the value in the current
8678 * domain-internals.h (struct _MonoDomain): added a new field -
8679 shadow_serial to hold the serial number used in generation of
8680 shadow-copy directories. This is to make sure that the directory
8681 name is unique for each and every domain created. We avoid a race
8682 condition with overriding assemblies already in use by other app
8685 2007-07-24 Rodrigo Kumpera <rkumpera@novell.com>
8687 * class.c (mono_bounded_array_class_get): fixed memory leak when
8688 binding generic parameters.
8690 2007-07-24 Raja R Harinath <rharinath@novell.com>
8692 * metadata.c (do_mono_metadata_parse_generic_class): Use
8693 mono_metadata_lookup_generic_class. Don't g_assert on a metadata
8696 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8698 * loader.c, class-internals.h, reflection.c: removed the per-method
8699 generics hashtable: we use the global one through the call of
8700 mono_class_inflate_generic_method ().
8702 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8704 * class.c, metadata.c, class-internals.h: introduce yet another
8705 generics global cache for inflated methods (fixes 98% of the perf
8706 issue in bug #81806).
8708 2007-07-23 Raja R Harinath <rharinath@novell.com>
8710 Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
8711 * metadata.c (mono_metadata_lookup_generic_inst): Kill.
8712 (mono_metadata_get_generic_inst): New. Given a list of MonoType*,
8713 return a MonoGenericInst containing (a copy) of those types.
8714 (mono_metadata_inflate_generic_inst): Update to changes.
8715 (mono_metadata_parse_generic_inst): Likewise.
8716 (mono_get_shared_generic_inst): Likewise.
8717 * reflection.c (mono_class_bind_generic_parameters): Likewise.
8718 (mono_reflection_bind_generic_method_parameters): Likewise.
8719 * metadata-internals.h: Likewise.
8720 * icall.c (free_generic_context): Kill.
8721 (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
8723 * reflection.c (reflection_methodbuilder_to_mono_method): Use
8724 mono_metadata_type_dup.
8725 * marshal.c (mono_mb_create_method): Likewise.
8727 * metadata.c (mono_metadata_type_dup): Rename from
8728 mono_metadata_type_dup_mp. Take an optional mempool instead of a
8729 MonoImage. Handle a few more cases, esp. when no mempool is given.
8730 * marshal.c, metadata-internals.h: Update to changes.
8732 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
8734 * class.c: fixed a small leak for array classes and removed warning.
8736 2007-07-22 Zoltan Varga <vargaz@gmail.com>
8738 * loader.c (mono_method_get_param_token): Make this work on generic methods.
8739 Return 0x8000000 for return parameters. Fixes #82161.
8741 2007-07-21 Marek Habersack <grendello@gmail.com>
8743 * appdomain.c (get_shadow_assembly_location): append the current
8744 ticks value to the path. Avoids overwriting the same assemblies by
8745 several threads at the same time.
8747 2007-07-20 Atsushi Enomoto <atsushi@ximian.com>
8748 and Raja R Harinath <rharinath@novell.com>
8750 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
8752 (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
8753 property for testing if a method is a generic method definition.
8755 2007-07-20 Atsushi Enomoto <atsushi@ximian.com>
8757 * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
8759 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
8761 * verify.c: used function from private branch, reverted to the one in class.h
8763 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
8765 * verify.c: a typo slipped in and the code wont compile
8767 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
8769 * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
8770 disabled box instruction as it is doing the wrong thing
8771 improved stack dump messages, now it is easier to debug type related issues
8774 2007-07-19 Juraj Skripsky <js@hotfeet.ch>
8776 * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak.
8778 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
8780 * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from
8781 TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
8782 grouped with class and valuetype. This change will simply
8783 the code as it should be handled just like unmanaged pointers.
8785 2007-07-19 Mark Probst <mark.probst@gmail.com>
8787 * class.c (concat_two_strings_with_zero): Fixed a silly bug.
8789 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
8791 * verify.c: several stack merge issues fixed, reference comparisons now
8792 check the type size. strict type check now works correctly.
8793 added more uses of IS_MANAGED_POINTER macro.
8794 fixed issues pointed by running the test suite against .net.
8797 2007-07-19 Mark Probst <mark.probst@gmail.com>
8799 * class.c, loader.c, class-internals.h: Removed the
8800 MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
8803 * icall.c: Better error checking in some internal reflection
8806 2007-07-18 William Holmes <billholmes54@gmail.com>
8808 * filewatcher.c : removed unused variable 'filename' in
8809 ves_icall_System_IO_FSW_SupportsFSW
8811 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8813 * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
8816 2007-07-15 Zoltan Varga <vargaz@gmail.com>
8818 * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
8820 * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
8822 2007-07-14 Zoltan Varga <vargaz@gmail.com>
8824 * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken):
8825 Implement generics support.
8826 (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
8828 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
8829 type_args and method_args arguments.
8830 (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
8831 (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
8832 (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
8834 2007-07-13 Rodrigo Kumpera <rkumpera@novell.com>
8836 * reflection.c: patch from Thong Nguyen to fix atribute resolution.
8837 It adds a rootimage parameter to mono_reflection_get_type_internal,
8838 adds new function mono_reflection_get_type_with_rootimage and use
8839 the rootimage to resolve the types instead of the current image
8841 2007-07-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
8843 * culture-info-table.h: Forgot to update after r78304.
8845 2007-07-13 Raja R Harinath <rharinath@novell.com>
8847 * class.c (mono_class_is_open_constructed_type)
8848 <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
8850 2007-07-12 Rodrigo Kumpera <rkumpera@novell.com>
8852 * class.c (mono_bounded_array_class_get): method fails if used with
8853 an incomplete TypeBuilder enum (no basetype field), fixed it by
8854 avoiding calculating the size for such array as it cannot be instantiated.
8857 2007-07-12 Raja R Harinath <rharinath@novell.com>
8859 * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
8861 * metadata.c, reflection.c: Update to changes.
8863 2007-07-11 Rodrigo Kumpera <rkumpera@novell.com>
8865 * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
8866 mono_class_is_valid_enum, they are used to valide a enum when loading.
8867 * reflection.c: used new functions to throw TypeLoadException when and
8868 invalid enum is build with TypeBuilder. Fixes #82018
8870 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
8872 * object.c: forgot commit of mono_class_setup_methods () to access
8874 * object-internals.h: added a few more handy fields to
8877 2007-07-11 Zoltan Varga <vargaz@gmail.com>
8879 * object.c (build_imt): Call mono_class_setup_methods () before accessing
8882 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
8884 * class-internals.h, object-internals.h, object.c: IMT-based
8885 interface invocation core from Massimiliano Mantione
8886 (massi@ximian.com) with a reworked arch-specific interface,
8887 bsearch implementation and a few bugfixes and memory savings by me.
8889 2007-07-10 Rodrigo Kumpera <rkumpera@novell.com>
8891 * class.c (mono_class_create_from_typedef): mono would segfault if
8892 an enum did not have a __value field. It now throws a TypeLoadException
8893 for such cases. Fix bug #82022
8895 2007-07-10 Zoltan Varga <vargaz@gmail.com>
8897 * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
8899 2007-07-09 Mark Probst <mark.probst@gmail.com>
8901 * class.c (mono_class_init): If a class is already inited but has
8902 an exception_type set, return FALSE, not TRUE. Fixes: 82050.
8904 2007-07-09 Mark Probst <mark.probst@gmail.com>
8906 * class.c: Properly handle the case of an unimplemented interface
8907 method. Fixes: 81673.
8909 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
8911 * class-internals.h, object.c: cleanup patch from massi: use
8912 MonoVTable->interface_bitmap since the vtable interfaces offset array
8915 2007-07-10 Zoltan Varga <vargaz@gmail.com>
8917 * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
8918 GetMDStreamVersion icall instead.
8920 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
8922 * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
8923 not use mono_dl_build_path() with a full library name: makes
8924 fallbacks to libgaim and libfam work.
8926 2007-07-06 William Holmes <billholmes54@gmail.com>
8928 * assembly.c: Added a continue statement in probe_for_partial_name when
8929 parse_assembly_directory_name fails. Fixes : 82002
8931 2007-07-06 Rodrigo Kumpera <rkumpera@novell.com>
8933 * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
8934 and added a verification for TYPEDBYREF.
8935 * verify.c (verify_stack_type_compatibility): fix handling of byref types,
8936 make native int interchangeable with int32 and some small cleanup and formating.
8937 * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
8938 handle byref of byref.
8939 * verify.c (push_local): handle byref of byref.
8940 * verify.c (do_binop): invalid mix of values is unverifiable
8941 * verify.c (do_invoke_method): fixed the handling of bad params on stack and
8942 added visibility checks
8943 * verify.c (field related method): added visibility checks
8944 * verify.c (do_push_field): cannot take the address of a temporary valuetype field
8946 2007-07-06 Zoltan Varga <vargaz@gmail.com>
8948 * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
8951 2007-07-05 Zoltan Varga <vargaz@gmail.com>
8953 * profiler.c (mono_profiler_load): Fix an off-by-one error.
8955 * marshal.c (emit_marshal_string): When returning a string from managed code,
8956 allways make a copy even for unicode strings. Fixes #81990.
8958 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
8960 * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
8961 of byref generic inst types (bug #81997).
8963 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
8965 * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
8966 * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
8968 2007-07-02 Zoltan Varga <vargaz@gmail.com>
8970 * marshal.c (emit_marshal_string): Add support for unicode strings in
8971 MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
8973 2007-07-02 Rodrigo Kumpera <rkumpera@novell.com>
8975 * verify.c: field load/store are now verified, missing only access checks now
8977 2007-06-28 Martin Baulig <martin@ximian.com>
8979 * mono-debug.c (mono_debug_debugger_version): New public variable.
8981 2007-06-24 Gert Driesen <drieseng@users.sourceforge.net>
8983 * locales.c: When constructing DateTimeFormat or NumberFormat for
8984 MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
8985 MonoCultureInfo contructed from the current locale is always
8986 read-only and has UseUserOverride set to true. All MonoCultureInfo
8987 instances returned for GetCultures have both IsReadOnly and
8988 UseUserOverride set to true. Fixes part of bug #81930.
8990 2007-06-22 Jonathan Chambers <joncham@gmail.com>
8992 * icall-def.h: Update System.__ComObject icalls
8993 * marshal.c: Avoid managed transition (and object creation)
8994 when looking up COM interface in RCW.
8997 Code is contributed under MIT/X11 license.
8999 2007-06-22 Zoltan Varga <vargaz@gmail.com>
9001 * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
9002 to avoid crashes during assembly unloading.
9004 2007-06-22 Raja R Harinath <rharinath@novell.com>
9006 Fix MethodInfo.IsGenericMethodDefinition
9007 * reflection.c (mono_reflection_bind_generic_method_parameters):
9008 Rearrange code to ensure we always uses a generic method definition.
9009 * class.c (mono_class_inflate_generic_method_full): Set
9010 'generic_container' field only for generic method definitions.
9011 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
9012 Use presense of 'generic_container' field as indication of being a
9013 generic method definition.
9015 2007-06-21 Zoltan Varga <vargaz@gmail.com>
9017 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9019 * object-internals.h: Reflect changes in the layout of the managed Delegate
9022 * object-internals.h reflection.c icall-def.h: Applied patch from Robert
9023 Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
9024 runtime memory used by the dynamic method. Fixes #77146.
9026 2007-06-21 Dick Porter <dick@ximian.com>
9029 * file-io.c (convert_share): Cope with FileShare.Delete. Patch
9030 from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
9033 2007-06-21 Raja R Harinath <rharinath@novell.com>
9035 * reflection.c (method_encode_methodspec): Add a tripwire.
9036 * class.c (inflate_generic_type): The fully open generic type is
9037 not the same as the generic type definition.
9039 2007-06-21 Martin Baulig <martin@ximian.com>
9041 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
9043 * mono-debug-debugger.h
9044 (MonoDebuggerBreakpointInfo): Removed.
9045 (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
9046 (mono_debugger_remove_breakpoint): Likewise.
9047 (mono_debugger_breakpoint_callback): Likewise.
9048 (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
9050 2007-06-21 Raja R Harinath <rharinath@novell.com>
9052 * metadata.c (mono_metadata_lookup_generic_class): The fully open
9053 generic type is not the same as the generic type definition.
9054 * class.c (mono_generic_class_get_class): Likewise.
9056 2007-06-20 Geoff Norton <gnorton@customerdna.com>
9058 * icall.c: The second argument to
9059 System.Reflection.MethodBase.GetMethodFromHandleInternalType
9060 is a MonoType not a MonoClass.
9062 2007-06-20 Rodrigo Kumpera <kumpera@gmail.com>
9064 * verify.c: support for function pointers in the verifier
9066 2007-06-20 Rodrigo Kumpera <kumpera@gmail.com>
9068 * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
9070 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
9072 * assembly.c: removed Mono.Data.SqliteClient from the list of
9073 forward-compatible assemblies as it breaks the ABI (bug #81899).
9075 2007-06-19 Raja R Harinath <rharinath@novell.com>
9077 * metadata.c (mono_metadata_lookup_generic_class): Protect cache
9078 lookup/update with the loader lock.
9079 * reflection.c (mono_class_bind_generic_parameters): No need to
9080 protect mono_metadata_lookup_* with the loader lock.
9081 * class.c (inflate_generic_type): Likewise.
9083 * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
9084 on a generic instantiated type.
9086 2007-06-18 Rodrigo Kumpera <kumpera@gmail.com>
9088 *verify.c: produce meanfull error messages on verification error
9089 *verify.c: fixed some cases of verification errors reported as validation errors
9090 *pedump.c: fixed the error name array, now it shows validation errors properly
9091 *verify.h: fixed the contant that should be used for verification errors
9093 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9095 * metadata.c, image.c, metadata-internals.h: part of the fixes needed
9096 for bug #77596, 81858 and 80743 (generics data structures on domain
9099 2007-06-15 Raja R Harinath <rharinath@novell.com>
9101 Avoid allocating 'MonoGenericContext' on the heap.
9102 * class-internals (_MonoMethodInflated::context): Make field
9103 inline, not a pointer.
9104 * loader.c (method_from_methodspec): Allocate 'new_context' on the
9105 stack. Use the context embedded within the inflated method as the
9106 hash key, rather than 'new_context'.
9107 * class.c (inflate_generic_context): Simplify. Return a struct
9108 rather than allocating on the heap.
9109 (mono_class_inflate_generic_method_full): Update to changes. Now,
9110 doesn't salt away a copy of the context -- simplifying the
9111 lifetime rules of a 'MonoGenericContext *'.
9112 (mono_method_get_context): Return pointer to embedded context.
9113 (setup_generic_array_ifaces): Allocate temporary context on stack.
9114 * reflection.c (inflate_mono_method): Likewise.
9115 (mono_reflection_bind_generic_method_parameters): Likewise.
9116 Use the context embedded within the inflated method as the hash key.
9118 Avoid a source of allocation of 'MonoGenericContext'.
9119 * class-internals.h (_MonoGenericClass::context): Combine 'inst'
9120 and 'cached_context' fields into embedded 'MonoGenericContext' field.
9121 * class.c: Update to changes.
9122 (mono_generic_class_get_context): Simplify drastically. Now just
9123 returns a pointer to the field.
9124 * metadata-internals.h (mono_metadata_generic_context_hash): Mark
9125 argument as a const pointer.
9126 (mono_metadata_generic_context_equal): Likewise.
9127 * metadata.c, loader.c, icall.c, reflection.c, verify.c:
9130 2007-06-14 Rodrigo Kumpera <kumpera@gmail.com>
9132 * verify.c improved the handling of brtrue/brfalse, factored out common code
9134 2007-06-14 Raja R Harinath <rharinath@novell.com>
9136 Kill MonoGenericMethod.
9137 * class-internals.h (MonoGenericContext::method_inst): Rename from
9138 'gmethod' and convert to a MonoGenericInst.
9139 (MonoGenericMethod): Remove.
9140 * metadata.h (MonoGenericMethod): Note that the name is obsolete.
9141 * loader.c (method_from_methodspec): Update to changes. Use a
9142 MonoGenericContext as the key to the hashtable.
9143 * metadata.c (mono_metadata_generic_context_equal): Rename from
9144 'mono_metadata_generic_method_equal' and take MonoGenericContext.
9145 (mono_metadata_generic_context_hash): Likewise from
9146 'mono_metadata_generic_method_hash'. Change hash function.
9147 (mono_metadata_load_generic_params): Update to changes.
9148 (mono_get_shared_generic_method): Remove.
9149 * metadata-internals.h (mono_get_shared_generic_method): Remove.
9150 * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
9151 (inflate_generic_context): Likewise.
9152 (mono_class_inflate_generic_method_full): Likewise.
9153 (setup_generic_array_ifaces): Likewise.
9154 (mono_class_create_from_typespec): Likewise.
9155 * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
9156 (method_encode_methodspec): Update callsite.
9157 (reflection_methodbuilder_to_mono_method): Update to changes.
9158 (mono_reflection_bind_generic_method_parameters): Likewise. Use a
9159 MonoGenericContext as the key to the hashtable.
9160 (inflate_mono_method): Update to changes.
9162 * class-internals.h (MonoGenericMethod::container): Remove.
9163 * class.c, loader.c, metadata.c, reflection.c: Update to changes.
9165 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
9167 * profiler-private.h, profiler.c, profiler.h: added API to profile
9170 2007-06-13 Rodrigo Kumpera <kumpera@gmail.com>
9172 * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments
9174 2007-06-13 Rodrigo Kumpera <kumpera@gmail.com>
9176 * verify.c: method invocation is now validated, now we verify parameter types on stack.
9177 Fixed overflow and underflow not aborting the verification process.
9179 2007-06-13 Mark Probst <mark.probst@gmail.com>
9181 * class-internals.h (MonoStats): Added stats entries for dynamic
9184 2007-06-12 Zoltan Varga <vargaz@gmail.com>
9186 * loader.c (mono_free_method): Free header->locals and header->clauses.
9188 * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
9191 * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
9193 * class.c (setup_interface_offsets): Allocate memory from the image mempool.
9195 2007-06-12 Raja R Harinath <rharinath@novell.com>
9197 * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
9200 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
9202 *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
9204 2007-06-11 Raja R Harinath <harinath@gmail.com>
9206 MonoGenericMethod on a diet
9207 * class-internals.h (_MonoMethodInflated::reflection_info): Move
9209 (_MonoGenericMethod::reflection_info): ... from here.
9210 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
9212 * reflection.c (inflate_mono_method): Likewise.
9213 (mono_reflection_bind_generic_method_parameters): Likewise.
9215 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
9217 *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
9218 *verify.c: factored long ldarg forms to share code with short forms
9220 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
9222 *verify.c: fixed code formating factored some duplicate code
9225 *verify.h: fixed binary incompatibility introduced earlier
9227 *pedump.c: fixed formating
9229 2007-06-11 Raja R Harinath <harinath@gmail.com>
9231 Fix assertion when disassembling Mono.C5.dll
9232 * loader.c (method_from_methodspec): Avoid inflating a method
9233 twice with the same context. If the methodref is inflated, use
9234 the declaring method instead.
9236 * class.c (mono_class_from_generic_parameter): Fix case similar to
9237 bug #81830 handled below, but for method containers.
9239 2007-06-10 Raja R Harinath <harinath@gmail.com>
9241 * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
9242 get_shared_generic_class. Directly inflate the instance.
9243 [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
9244 (inflate_generic_class): Delete.
9245 (get_shared_generic_class): Delete. Move setting of
9246 'cached_class' and 'cached_context' ...
9247 * metadata.c (mono_metadata_lookup_generic_class): ... here.
9249 * metadata.c (mono_metadata_lookup_generic_class): Change
9250 signature to take the components of a MonoGenericClass rather than
9251 an allocated MonoGenericClass. Change semantics to be intern-like.
9252 * reflection.c (mono_class_bind_generic_parameters): Update to
9253 changes. Make locking region tighter.
9254 * class.c (inflate_generic_class): Update to changes.
9255 (get_shared_generic_class): Likewise.
9256 * metadata-internals.h: Likewise.
9258 * reflection.c (mono_class_bind_generic_parameters): Take and
9259 return a MonoClass*, not a MonoType*. Add 'is_dynamic' parameter.
9260 (mono_reflection_bind_generic_parameters): Use
9261 'mono_class_bind_generic_parameters' rather than duplicate the code.
9262 * class.c (mono_bounded_array_class_get): Update to changes.
9263 * object-internals.h: Likewise.
9265 * reflection.c (mono_class_bind_generic_parameters): Only support
9266 parameterizing generic type definitions. Remove support for other
9269 2007-06-08 Zoltan Varga <vargaz@gmail.com>
9271 * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
9273 * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
9274 in the dynamic case.
9276 2007-06-08 Gert Driesen <drieseng@users.sourceforge.net>
9278 * threads.c: When cleaning up thread, reset the Background bit.
9281 2007-06-08 Jonathan Chambers <joncham@gmail.com>
9283 * metadata.c: Move variable declarations to top of scope.
9284 * verify.c: Move variable declarations to top of scope.
9286 Code is contributed under MIT/X11 license.
9288 2007-06-08 Raja R Harinath <rharinath@novell.com>
9290 * reflection.c (mono_class_bind_generic_parameters): Replace
9291 open-coded loop with mono_metadata_inflate_generic_inst.
9293 * class.c (get_shared_generic_class): Don't call
9294 mono_get_shared_generic_inst. Use the container's own
9297 * metadata.c (mono_metadata_load_generic_params): Move
9298 initialization of 'context' field here from ...
9299 * class.c (mono_class_create_from_typedef): ... here, and ...
9300 * loader.c (mono_get_method_from_token): ... here.
9302 * class.c (get_shared_generic_class): Rename from
9303 mono_get_shared_generic_class and make static.
9304 (mono_get_shared_generic_inst): Move to metadata.c.
9305 * loader.c (mono_get_shared_generic_method): Likewise.
9306 * class-internals.h, metadata-internals.h: Update to changes.
9309 * class.c (mono_class_from_generic_parameter): Don't assume a
9310 generic container owner exists. Generic containers from monodis
9313 2007-06-06 Rodrigo Kumpera <kumpera@gmail.com>
9315 * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
9316 * verify.h: new typedefs to returns the non-verifiable status
9317 * verify.c: initial implementation of generics, stack merging and object compatibility check
9319 2007-06-06 Mark Probst <mark.probst@gmail.com>
9321 * class.c, image.c, class-internals.h (MonoImage): class_cache is
9322 a MonoInternalHashTable again (fixed bug in internal hash table
9325 2007-06-06 Mark Probst <mark.probst@gmail.com>
9327 * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
9328 MonoInternalHashTable again (fixed bug in internal hash table
9331 2007-06-06 Mark Probst <mark.probst@gmail.com>
9333 * class.c, image.c, class-internals.h, domain.c,
9334 domain-internals.h (MonoImage): Reverting MonoInternalHashTable
9335 changes. Have to figure out what makes them break the SWF
9338 2007-06-04 Mark Probst <mark.probst@gmail.com>
9340 * class.c, image.c, class-internals.h (MonoImage): class_cache is
9341 a MonoInternalHashTable now.
9343 2007-06-04 Mark Probst <mark.probst@gmail.com>
9345 * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
9346 MonoInternalHashTable now.
9348 2007-05-31 Zoltan Varga <vargaz@gmail.com>
9350 * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
9353 * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
9355 * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
9356 dependent trampoline.
9358 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9360 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
9362 2007-05-29 Robert Jordan <robertj@gmx.net>
9364 * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
9366 2007-05-28 Zoltan Varga <vargaz@gmail.com>
9368 * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
9370 2007-05-25 Jonathan Chambers <joncham@gmail.com>
9372 * marshal.c: Fix interface lookup loops for
9373 cominterop_get_com_slot_for_method and
9374 cominterop_get_method_interface. Only need to lookup
9375 if type is a class, else use interface type method is on.
9377 Code is contributed under MIT/X11 license.
9379 2007-05-25 Sebastien Pouliot <sebastien@ximian.com>
9381 * reflection.c: HasSecurity can be present even if no specially
9382 encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
9383 SecurityAttribute). Fix CAS regression tests on buildbot.
9385 2007-05-24 Jonathan Chambers <joncham@gmail.com>
9387 * appdomain.c: Add configure checks for header files.
9388 * image.c: Add configure checks for header files.
9389 * file-io.c: Add configure checks for header files.
9390 * debug-mono-symfile.c: Add configure checks for header files.
9391 * threadpool.c: Add configure checks for header files.
9392 * console-io.c: Add configure checks for header files.
9393 * profiler.c: Add configure checks for header files.
9394 * rawbuffer.c: Add configure checks for header files.
9395 * icall.c: Add configure checks for header files.
9396 * rand.c: Add configure checks for header files.
9397 * socket-io.c: Add configure checks for header files.
9399 Code is contributed under MIT/X11 license.
9401 2007-05-24 Zoltan Varga <vargaz@gmail.com>
9403 * reflection.c (mono_custom_attrs_from_builders): Remove the
9404 assertion as it breaks the build.
9406 * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
9408 * reflection.c (lookup_custom_attr): Make a copy here too.
9410 * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
9413 * class.c (mono_class_init): Avoid accessing the metadata in dynamic
9416 * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
9419 2007-05-22 Zoltan Varga <vargaz@gmail.com>
9421 * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
9422 (load_cattr_value): Ditto.
9424 2007-05-20 Zoltan Varga <vargaz@gmail.com>
9426 * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
9428 2007-05-19 Gert Driesen <drieseng@users.sourceforge.net>
9430 * threads.c: In "start_wrapper", set apartment_state to MTA if
9431 apartment_state is Unknown and we're running on 2.0 profile or
9433 * object.c: In "mono_runtime_exec_main", if STAThread is not applied
9434 to main method, then set apartment_state to Unknown on 1.0 profile,
9435 and MTA on 2.0 profile.
9437 2007-05-16 Jb Evain <jb@nurv.fr>
9439 * class-internals.h (MonoDefaults): Add an attribute_class and
9440 customattribute_data_class.
9441 * domain.c (mono_init_internal): Populate them.
9442 * reflection.c: Use them to remove duplicates. Make a vew
9443 MonoClass variables `static'.
9445 2007-05-15 Massimiliano Mantione <massi@ximian.com>
9447 * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
9448 step in implementing IMT, so that all isinst checks now can go
9450 This was needed because vtables for TransparentProxy need to look
9451 like the vtable of the "target" class, so they need to point to
9452 its interface bitmap directly.
9454 * object.c: inside "mono_class_create_runtime_vtable" and
9455 "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
9457 2007-05-15 Atsushi Enomoto <atsushi@ximian.com>
9459 * object-internals.h
9460 culture-info.h : added territory field in MonoCulture and
9461 CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
9462 * locales.c : fill territory field above too.
9463 * culture-info-table.h : regenerated.
9465 2007-05-12 Zoltan Varga <vargaz@gmail.com>
9467 * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
9470 2007-05-11 Jonathan Chambers <joncham@gmail.com>
9472 * object.c: Always initialize apartment, even if
9473 there is no custom attributes on entry point.
9475 Code is contributed under MIT/X11 license.
9477 2007-05-10 Jonathan Chambers <joncham@gmail.com>
9479 * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
9480 * metadata.c: If no encoding is set, check for unicode
9483 Code is contributed under MIT/X11 license.
9485 2007-05-09 Jonathan Chambers <joncham@gmail.com>
9487 * threads.c: Handle if mono_thread_current returns NULL
9489 Code is contributed under MIT/X11 license.
9491 2007-05-09 Jonathan Chambers <joncham@gmail.com>
9493 * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
9494 in start_wrapper. Added mono_thread_init_apartment_state and
9495 mono_thread_cleanup_apartment_state.
9496 * object.c: Initialize thread apartment state on main thread
9497 by checking for STAThreadAttribute on entry point.
9498 * object-internals.h: Add apartment_state field to MonoThread.
9499 * threads-types.h: Add unmanaged definition of
9500 System.Threading.ApartmentState, MonoThreadApartmentState.
9502 Code is contributed under MIT/X11 license.
9504 2007-05-08 Jonathan Chambers <joncham@gmail.com>
9506 * class.c: Fix windows build.
9507 * class-internals.h: Fix windows build.
9509 Code is contributed under MIT/X11 license.
9511 2007-05-08 Robert Jordan <robertj@gmx.net>
9513 * process.c (CreateProcess_internal):
9514 Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
9515 .CreateNoWindow was specified. Fixes #81496.
9517 2007-05-08 Massimiliano Mantione <massi@ximian.com>
9519 * class-internals.h: Removed "MonoClass.interface_offsets" as a first
9520 step in implementing IMT, replaced it with two compact arrays
9521 (interfaces_packed and interface_offsets_packed) and a bitmap that
9522 is used for isinst checks (interface_bitmap).
9524 * class.c: (compare_interface_ids): compare function to pass to
9525 bsearch when looking for an interface with a given id.
9526 (mono_class_interface_offset): reimplemented using bsearch on
9527 interfaces_packed, getting the offset from interface_offsets_packed.
9528 (print_implemented_interfaces): utility debugging function.
9529 (setup_interface_offsets): reworked to initialize interfaces_packed,
9530 interface_offsets_packed and interface_bitmap.
9532 * object.c: replaced all accesses to "MonoClass.interface_offsets"
9533 with uses of interfaces_packed and interface_offsets_packed.
9535 2007-05-08 Massimiliano Mantione <massi@ximian.com>
9537 * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
9538 mono_class_interface_offset prototype to wrap all accesses to
9539 "MonoClass.interface_offsets".
9541 * class.c: Implemented mono_class_interface_offset, and wrapped all
9542 accesses to "MonoClass.interface_offsets".
9544 * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
9545 "MonoClass.interface_offsets".
9547 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
9549 * icall.c, icall-def.h: implemented new GetFieldFromHandle and
9550 GetMethodFromHandle overloads (bug #78637).
9552 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
9554 * assembly.c: parse ProcessorArchitecture in assembly name and ignore
9555 it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
9557 2007-05-01 Zoltan Varga <vargaz@gmail.com>
9559 * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
9562 * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
9564 (mono_custom_attrs_from_index): Ditto.
9566 * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes.
9569 2007-04-30 Zoltan Varga <vargaz@gmail.com>
9571 * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
9572 is now allocated from a mempool.
9574 2007-04-28 Zoltan Varga <vargaz@gmail.com>
9576 * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
9577 caller holds threads_lock, leading to deadlocks. Fixes #81476.
9579 2007-04-26 Zoltan Varga <vargaz@gmail.com>
9581 * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
9582 mono_loader_clear_error () too late. Fixes #81463.
9584 2007-04-26 Atsushi Enomoto <atsushi@ximian.com>
9586 * culture-info-table.h : regenerated.
9588 2007-04-25 Zoltan Varga <vargaz@gmail.com>
9590 * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
9593 2007-04-25 Dick Porter <dick@ximian.com>
9595 * Makefile.am: Put the mingw enforced-optimisation back into the
9596 PLATFORM_WIN32 section.
9598 2007-04-24 Zoltan Varga <vargaz@gmail.com>
9600 * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
9603 * image.c (mono_image_load_module): New API function to load a module reference.
9605 * image.c (load_modules): Load modules lazily. Fixes #80812.
9607 * class.c (mono_class_from_typeref): Use mono_image_load_module.
9609 * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
9611 * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this
9612 to mono_image_load_module_dynamic.
9614 2007-04-23 Jonathan Chambers <joncham@gmail.com>
9616 * marshal.c: Fix calling convention for CCW on non-windows
9617 platforms. STDCALL on windows, CDECL everywhere else to work
9618 with XPCOM and MainWin COM.
9620 Code is contributed under MIT/X11 license.
9622 2007-04-23 Martin Baulig <martin@ximian.com>
9627 (method_from_memberref): Added `gboolean *used_context' argument.
9628 (mono_get_method_from_token): Likewise.
9629 (mono_get_method_full): Don't insert the method in the cache when
9630 `used_context' is true.
9632 2007-04-23 Raja R Harinath <rharinath@novell.com>
9634 * monodiet.c (add_types_from_method): Fix "wrong type" warning.
9636 * reflection.c (mono_reflection_bind_generic_parameters): Don't
9637 create new MonoTypes for returned types.
9638 * class.c (mono_generic_class_get_class): Export mono-internal.
9639 * class-internals.h: Update to changes.
9641 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
9643 * threadpool.c, threadpool.h, icall-def.h: patch from
9644 Robert Jordan to implemnt ThreadPool.SetMaxThreads.
9646 2007-04-18 Zoltan Varga <vargaz@gmail.com>
9648 * threads.c (mono_thread_get_stack_bounds): Fix windows build.
9650 * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
9652 * threads.c (mono_thread_get_stack_bounds): New helper function.
9654 * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
9655 Correctly compute stack bounds when attaching. Fixes #81394.
9657 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
9659 * reflection.c: fix handling of doubles in custom attributes
9660 for the arm-fpa format (bug #81368).
9662 2007-04-18 Raja R Harinath <rharinath@novell.com>
9664 * reflection.c (assembly_add_win32_resources): Mildly relax an
9665 bounds check to let the end pointer point just past the end of the
9666 allocated buffer. (may fix #81384)
9668 2007-04-17 Atsushi Enomoto <atsushi@ximian.com>
9670 * culture-info-table.h : regenerated.
9672 2007-04-07 Zoltan Varga <vargaz@gmail.com>
9674 * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
9675 the thread is aborted early.
9677 2007-04-05 Dick Porter <dick@ximian.com>
9679 * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
9680 FindFirstFile()/FindNextFile() to find entries. This lets the
9681 io-layer versions use MONO_IOMAP compatibility helpers. Fixes bug
9684 * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
9686 ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
9688 2007-04-04 Martin Baulig <martin@ximian.com>
9691 (mono_method_desc_full_match): Add support for nested classes.
9693 2007-04-02 Zoltan Varga <vargaz@gmail.com>
9695 * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
9697 2007-04-01 Zoltan Varga <vargaz@gmail.com>
9699 * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
9700 waiting for too many threads.
9702 2007-03-28 Sebastien Pouliot <sebastien@ximian.com>
9704 * environment.c: Fix return value check on uname so we can get the
9705 executing version on Solaris operating systems.
9707 2007-03-28 Jb Evain <jbevain@gmail.com>
9709 * class.c (mono_type_get_name_recurse): Complete the
9710 fix for the creation of assembly qualified names for
9711 pointer types. Fixes #81208.
9713 2007-03-27 Dick Porter <dick@ximian.com>
9715 * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
9716 of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
9720 (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
9721 the value of ReleaseMutex().
9723 2007-03-27 Dick Porter <dick@ximian.com>
9725 * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
9726 in little-endian order, not network endian, so must be converted
9727 to host endian here. Fixes bug 80593.
9729 2007-03-22 Jb Evain <jbevain@gmail.com>
9731 * class.c (mono_type_get_name_recurse): Fix the creation of assembly
9732 qualified names for pointer types. Fixes #81208.
9734 2007-03-21 Jonathan Chambers <joncham@gmail.com>
9736 * marshal.c: Add support for PreserveSigAttribute.
9738 Code is contributed under MIT/X11 license.
9740 2007-03-14 Zoltan Varga <vargaz@gmail.com>
9742 * process.c: Fix endianness issues. Fixes #81126.
9744 * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
9745 multiple circular calls made from the same DynamicMethod work. Fixes #81141.
9747 * image.c (mono_image_lookup_resource): Make this work on big-endian
9748 machines.Change API contract so the caller needs to free the return value.
9750 * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
9753 2007-03-14 Martin Baulig <martin@ximian.com>
9755 * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
9756 mono_type_get_desc() as well.
9758 2007-03-13 Jonathan Chambers <joncham@gmail.com>
9760 * icall.c: Fix environ access in VS.
9762 2007-03-13 Alp Toker <alp@atoker.com>
9764 * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
9765 rather than the underlying type. Based on a patch by Ben Maurer. Fixes
9768 2007-03-12 Zoltan Varga <vargaz@gmail.com>
9770 * reflection.c (mono_reflection_create_dynamic_method): Add support for
9771 circular references among dynamic methods. Fixes #81091.
9773 * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
9775 2007-03-09 Martin Baulig <martin@ximian.com>
9777 * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
9779 2007-03-09 Jonathan Chambers <joncham@gmail.com>
9781 * appdomain.c: Fix shadow copy on Windows. Use g_snprintf instead
9782 of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.
9784 Code is contributed under MIT/X11 license.
9786 2007-03-09 Gert Driesen <drieseng@users.souceforge.net>
9788 * loader.c: Reapply patch for bug #79424.
9790 2007-03-06 Zoltan Varga <vargaz@gmail.com>
9792 * metadata.c (mono_type_to_unmanaged): Only convert object to
9793 MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
9795 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
9797 * class-internals.h, class.c, metadata.c, reflection.c: removed unused
9798 (and incorrectly set) is_reference field from MonoGenericInst.
9800 2007-03-06 Zoltan Varga <vargaz@gmail.com>
9802 * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
9805 * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
9807 * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
9809 2007-03-05 Miguel de Icaza <miguel@novell.com>
9811 * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
9812 FileOptions.1 value to mean "temporary", map that to
9813 FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
9817 2007-03-03 Marek Habersack <mhabersack@novell.com>
9819 * appdomain.c: implement MS .Net style shadow copying. Copies of
9820 the assemblies are made in a subdirectory of the dynamic base
9821 directory, the assembly names are preserved.
9822 Copy .mdb and .config files along with the assemblies being shadowed.
9824 2007-02-28 Zoltan Varga <vargaz@gmail.com>
9826 * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
9827 (emit_marshal_handleref): Ditto.
9829 * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
9830 on Visual C++. Fixes #80671.
9832 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
9834 * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
9835 for clone operations.
9837 2007-02-28 Zoltan Varga <vargaz@gmail.com>
9839 * marshal.c: Fix warnings.
9841 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
9843 * loader.c: allow case-insensitive matching of the dll name
9844 in dllmap handling when prefixed with "i:".
9846 2007-02-20 Jonathan Chambers <joncham@gmail.com>
9848 * threads.c: Fix #ifdef for dummy_apc function for VS.
9850 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
9852 * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
9854 2007-02-19 Massimiliano Mantione <massi@ximian.com>
9855 * class.c (mono_class_setup_vtable_general): Fix bug 75903,
9856 giving precedence to the methods with a fully qualified name
9857 (InterfaceName.MethodName) when building the interface sections
9860 2007-02-16 Dick Porter <dick@ximian.com>
9862 * threadpool.c (append_job): Fix fast-path array handling, so it's
9863 less likely the array will grow exponentially when the load is
9866 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
9868 * metadata-internals.h, loader.c: fix dllmap lookup order
9869 for non-function maps, too, and prepare for fallback code.
9871 2007-02-12 Robert Jordan <robertj@gmx.net>
9873 * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
9874 to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
9875 and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
9876 GlobalFree. Fixes a part of bug #77075.
9878 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
9880 * loader.c: implemented typedef parent in field memberref.
9882 2007-02-11 Jonathan Chambers <joncham@gmail.com>
9884 * marshal.c: Fix warnings and remember to call Release on
9887 Code is contributed under MIT/X11 license.
9889 2007-02-10 Miguel de Icaza <miguel@novell.com>
9891 * class-internals.h: Add MonoHandleRef definition, and
9892 handleref_class to mono_defaults.
9894 * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
9895 structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
9897 * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
9898 (do nothing on this stage)
9899 (emit_object_to_ptr_conv): Extract the handle from the HandleRef.
9900 (emit_marshal_handleref): New method, used for argument handling
9903 2007-02-08 Jonathan Chambers <joncham@gmail.com>
9905 * class.c (mono_class_setup_parent): Lazily init com types.
9906 * domain.c (mono_init_internal, mono_init_com_types): Lazily
9908 * object.c (mono_remote_class_vtable): Lazily init com types.
9909 * class-internals.h: Add iunknown and idispatch to MonoDefaults.
9910 * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
9911 * domain-internals.h: Expose mono_init_com_types.
9912 * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
9913 * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
9914 Add support for COM Callable Wrapper marshalling.
9915 * marshal.h: Add icall definitions.
9916 * gc.c: Handle freeing of CCWs in finalizer code.
9918 Code is contributed under MIT/X11 license.
9920 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
9922 * reflection.c: changed all the signature encoding code to use
9923 a variable-sized buffer.
9925 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9927 * marshal.c: locking fixes: never take the loader lock
9928 or other runtime locks when holding the marshal lock
9931 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
9933 * marshal.c: make the delegate function pointer mapping
9934 work for the moving GC.
9936 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
9938 * marshal.c: fix from Robert Jordan (robertj@gmx.net)
9941 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9943 * image.h, loader.c, metadata-internals.h: use mono-dl instead of
9946 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
9948 * threadpool.c: made the code moving-GC safe.
9950 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
9952 * assembly.c, boehm-gc.c, class-internals.h, class.c,
9953 debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
9954 monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
9956 * reflection.c: warning cleanup, some threading and moving GC fixes.
9958 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
9960 * class.c, loader.c: create the needed Set/Get/Address array methods
9961 as well as the .ctors in mono_class_init (), fixes bug #80567.
9963 2007-01-24 Zoltan Varga <vargaz@gmail.com>
9965 * class.c (mono_class_layout_fields): When force-aligning a field, make sure
9966 we doesn't decrease its alignment. Should fix the sparc build.
9968 2007-01-24 Dick Porter <dick@ximian.com>
9971 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9972 Create the returned object if we need to ignore an unsupported
9973 socket option. Fixes a segfault reported by Atsushi.
9975 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
9977 * class.c, object.c: restrict GC-tracked fields to
9978 UIntPtr fields used inside corlib, so we provide better
9979 type info to the GC and also allow broken packing as in
9982 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
9984 * sgen-gc.c: removed duplicated function.
9986 2007-01-19 Miguel de Icaza <miguel@novell.com>
9988 * socket-io.c (convert_sockopt_level_and_name): return -2 as a
9989 value that means that the value is not supported, but that we
9990 should not return a failure, but instead report this as a
9991 successful operation.
9993 2007-01-19 Raja R Harinath <rharinath@novell.com>
9995 Fix tests/bug79956.2.il
9996 * class.c (mono_type_get_underlying_type): Handle genericinst enums.
9997 (mono_generic_class_get_class): If the generic definition in an
9998 enum, copy over other fields related to it.
10000 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
10002 * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
10003 genericinst enums (bug #79215).
10005 2007-01-17 Massimiliano Mantione <massi@ximian.com>
10006 * class.c: Fix bug 80307.
10008 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
10010 * image.c: if the file table is not present, try to load
10011 all the modules, since we don't have info about them
10012 having or not metadata (bug #80517).
10013 * assembly.c: allow mono_assembly_load_references () to
10014 work for netmodules.
10016 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
10018 * image.c, metadata-internals.h, object.c: execute module
10019 cctors when running on the 2 runtime if present (bug #80487).
10021 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
10023 * icall.c: optimized InitializeArray() on bigendian.
10025 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
10027 * icall.c: fix for the broken ARM FPA double format.
10029 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10031 * icall.c: handle endian issues for r4 and r8 types, too, in
10032 the InitializeArray() icall.
10034 2007-01-15 Miguel de Icaza <miguel@novell.com>
10036 * loader.c (mono_loader_error_prepare_exception): Clear the error
10037 once we have extracted the information from it, do this before we
10038 call into the JIT's class loading mechanisms.
10040 * object.c (mono_class_create_runtime_vtable): Do not clear the
10041 loader error before calling mono_class_get_exception_for_failure
10042 as the loader error is needed inside
10043 mono_class_get_exception_for_failure to throw the error (thinko).
10047 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10049 * reflection.c: align fields rva data so it's faster to load at
10052 2007-01-12 Raja R Harinath <rharinath@novell.com>
10054 Prepare to simplify GenericMethod handling.
10055 * class-internals.h (mono_method_get_context): New accessor function.
10056 * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
10057 rather than directly accessing '->context' field.
10059 * class-internals.h (_MonoGenericParam.method): Move ...
10060 (_MonoGenericContainer): ... here. Add into union with klass field.
10061 * class.c, icall.c, loader.c, metadata.c, reflection.c:
10064 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
10066 * Makefile.am, class-internals.h, debug-helpers.c: consolidate
10067 the wrapper type enum and reduce relocations.
10069 2007-01-12 Raja R Harinath <rharinath@novell.com>
10071 * reflection.c (inflate_mono_method): Reuse method instantiation
10072 from the generic method, if available.
10074 2007-01-11 Jonathan Chambers <joncham@gmail.com>
10076 * marshal.c (emit_marshal_variant): Fix conv_arg
10077 type in last commit, based on whether parameter is byref.
10079 2007-01-11 Jonathan Chambers <joncham@gmail.com>
10081 * marshal.c (emit_marshal_variant): Handle unmanaged->managed
10083 (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
10084 MONO_TYPE_OBJECT back for VARIANT support.
10086 2007-01-11 Jonathan Chambers <joncham@gmail.com>
10088 * marshal.c, marshal.h, icall-def.h: Implement
10089 Marshal.ReAllocCoTaskMem.
10091 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
10093 * marshal.c: memory retention fixes: use the proper
10094 image cache for runtime_invoke method lookups.
10096 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
10098 * mempool.c: added code to help debug mempool allocations.
10100 2007-01-11 Dick Porter <dick@ximian.com>
10102 * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
10103 support (experimenting with faking it with IP_MTU_DISCOVER for
10104 systems that don't have IP_DONTFRAGMENT.)
10105 (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
10108 * icall-def.h: new System.Net.Sockets.Disconnect icall.
10110 * socket-io.h: Add new fields to MonoSocketAsyncResult
10111 corresponding to the new ones in Socket.cs.
10113 2007-01-11 Raja R Harinath <rharinath@novell.com>
10115 Fix IronPython regression mentioned in #80249
10116 * metadata.c (do_mono_metadata_parse_generic_class): Clear
10117 'cached_context' field, since it may have been initialized as a
10118 side-effect of metadata parsing.
10120 * class-internals.h (_MonoGenericClass.is_inflated): Remove.
10121 (_MonoGenericClass.cached_class): Move here and rename from lone
10122 remaining field of ...
10123 (_MonoInflatedGenericClass): ... this. Remove.
10124 * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
10127 Fix mcs/tests/test-128.cs regression.
10128 * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
10129 2007-01-10 change below.
10130 [MONO_TYPE_OBJECT]: Recurse into array case.
10132 2007-01-11 Raja R Harinath <harinath@gmail.com>
10134 * class-internals.h (mono_get_inflated_generic_class): Remove.
10135 * class.c (mono_get_inflated_generic_class): Remove.
10136 (mono_generic_class_get_class): Rename from
10137 mono_class_create_generic.
10138 (mono_class_from_mono_type) [GENERICINST]: Use it.
10139 * reflection.c, metadata.c: Update to changes. Use
10140 'mono_class_from_mono_type'.
10142 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
10144 * reflection.c: use passed type when encoding an array element
10145 in custom attributes (patch from David Mitchell, dmitchell@logos.com).
10147 2007-01-09 Robert Jordan <robertj@gmx.net>
10149 * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
10150 result arguments (someDelegate.EndInvoke (unrelatedAres)).
10153 2007-01-09 Raja R Harinath <rharinath@novell.com>
10155 * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
10157 * object.c (set_value): Avoid aliasing between type->data.klass
10158 and type->data.generic_class.
10160 * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
10162 2007-01-08 Raja R Harinath <rharinath@novell.com>
10164 * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
10165 between type->data.klass and type->data.generic_class.
10167 2007-01-08 Lluis Sanchez <lluis@ximian.com>
10169 * marshal.c: In MS.NET, StringBuilder objects are not copied by
10170 value in out parameters.
10172 2007-01-08 Raja R Harinath <rharinath@novell.com>
10174 Simplify invariant for MonoGenericClass::klass field.
10175 * class.c (mono_class_create_generic): Verify 'klass' is null.
10176 * metadata.c (do_mono_metadata_parse_generic_class): Don't
10177 initialize 'klass' field.
10179 2007-01-05 Raja R Harinath <rharinath@novell.com>
10181 Ongoing work to avoid redundant data and simplify invariants.
10182 * class-internals.h (_MonoGenericMethod.class_inst): Rename from
10183 'generic_class', and change type to a GenericInst.
10184 (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
10185 * class.c, loader.c, metadata.c, reflection.c: Update to changes.
10187 2007-01-05 Atsushi Enomoto <atsushi@ximian.com>
10189 * class.c : skip io-layer under PLATFORM_WIN32.
10191 2007-01-03 Tor Lillqvist <tml@novell.com>
10193 Fix #80305: In a bundled executable, look in the bundled exe
10194 assembly to determine the runtime version. Add the possibility to
10195 bundle also the machine.config file.
10197 * assembly.c (mono_assembly_open_from_bundle): Make
10198 non-static. Allow being called even if we have no bundled
10199 assemblies, and return NULL right away in that case.
10201 * domain-internals.h: Declare mono_assembly_open_from_bundle()
10204 * domain.c (app_config_parse): Take an assembly exe file name as
10205 parameter instead of a config file name. Check for a bundled
10206 config file for that assembly by calling
10207 mono_config_string_for_assembly_file() (see below) before looking
10208 for one in the file system.
10209 (get_runtimes_from_exe): Corrsponding change to call of
10210 app_config_parse().
10211 (get_runtimes_from_exe): Check for bundled assembly exe file first
10212 by calling mono_assembly_open_from_bundle(). If no bundled
10213 assembly exe file is found, call mono_image_open() as before to
10214 look it up in the file system.
10216 * mono-config.c: Add variable bundled_machinec_onfig.
10217 (mono_config_string_for_assembly_file): New function.
10218 (mono_config_for_assembly): Move code snippet that looks for a
10219 bundled assembly .config file into the above new function. Call
10221 (mono_register_machine_config, mono_get_machine_config): New
10222 functions to set and retrieve
10224 * assembly.h: Declare mono_register_machine_config().
10226 * mono-config.h: Declare mono_get_machine_config() and
10227 mono_config_string_for_assembly_file().
10229 * icall.c: No declaration of environ necessary on Win32. It is
10230 declared (as a macro expanding to a function call) in stdlib.h.
10231 (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
10232 New internal mono function. Returns the value of
10233 mono_get_machine_config() as a Mono string.
10235 * icall-def.h: Add get_bundled_machine_config().
10237 2007-01-04 Raja R Harinath <rharinath@novell.com>
10239 Remove redundant field
10240 * class-internals.h (_MonoGenericContext.container): Remove field.
10241 * loader.c (mono_method_get_signature_full): Don't parse a
10242 "container" for a signature parse when the signature is inflated
10244 (method_from_methodspec): Likewise, for a generic_inst.
10245 * class.c, metadata.c, reflection.c: Update to changes.
10247 2006-01-04 Raja R Harinath <rharinath@novell.com>
10249 * class-internals.h (_MonoGenericClass): Rename 'context' field to
10250 'cached_context', and change semantics -- it starts off NULL, and
10251 is initialized on demand.
10252 * class.c (mono_generic_class_get_context): New accessor to
10253 replace 'context' field accesses.
10254 (mono_class_get_context): New helper.
10255 (*): Update to changes.
10256 * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
10258 2007-01-03 Miguel de Icaza <miguel@novell.com>
10260 * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
10261 before the memcpy. Fixes Marshal2 regression.
10263 2007-01-02 Jb Evain <jbevain@gmail.com>
10265 * blob.h: add a MONO_TYPE_ENUM definition
10266 * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
10267 fix the encoding of arrays of enums in custom attributes.
10271 2007-01-01 Miguel de Icaza <miguel@novell.com>
10273 * marshal.c (mono_string_to_byvalwstr): Fix this routine. The
10274 string is null terminated, but only cut the string short if it
10275 overflows the buffer.
10277 (mono_string_to_byvalstr): Also fix this routine. The code here
10278 was not properly terminating a string (it was only terminated
10279 because of the previous catch-all memset).
10281 I left the memset, because I do not know if applications expect
10282 the runtime to clear this region.
10286 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
10287 Clear the error before returning to unmanaged code to prevent the
10288 runtime from being confused later on (fixes 80420).
10289 (ves_icall_type_from_name): Always call mono_loader_clear_error
10290 after parsing a type that could have failed.
10291 (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
10293 * loader.c (mono_loader_clear_error): Fix indentation.
10295 2006-12-28 Martin Baulig <martin@ximian.com>
10297 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
10299 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
10301 * reflection.c: patch from Rolf Bjarne Kvinge to fix
10302 getting a token for an EnumBuilder.
10304 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
10306 * reflection.c: be more careful in case resource generation
10307 fails to create the data array.
10309 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
10311 * sgen-gc.c: write barrier for clone and fix unregister handles.
10313 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10315 * reflection.c: some fixes needed in the generics code for the moving GC.
10317 2006-12-22 Robert Jordan <robertj@gmx.net>
10319 * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
10320 account. Fixes bug #80299.
10322 2006-12-21 Raja R Harinath <rharinath@novell.com>
10324 Fix WaitHandle usage in delegates.
10325 * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
10326 * object.c (mono_wait_handle_new): Use the property set method to
10327 initialize the handle.
10328 (mono_wait_handle_get_handle): New.
10329 * threadpool.c (mono_async_invoke): Use it.
10330 * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
10332 (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
10334 2006-12-21 Jonathan Chambers <joncham@gmail.com>
10336 * marshal.c (emit_marshal): Call emit_marshal_variant and
10337 emit_marshal_com_interface when applicable.
10338 (emit_marshal_variant, emit_marshal_com_interface): Add
10339 methods for this case and remove if's from emit_marshal_object.
10341 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
10343 * filewatcher.c: updated to use the mono-dl API instead of gmodule.
10345 2006-12-19 Jonathan Chambers <joncham@gmail.com>
10347 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
10348 ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
10349 and GlobalFree on Windows. Remove FIXME.
10351 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
10353 * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
10354 implementation for managed objects.
10356 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10358 * object.c: implemented code to be used for checking
10359 that no reference field overlaps with non-references.
10361 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10363 * threadpool.c: fix queue code to be compatible with the
10366 2006-12-18 Miguel de Icaza <miguel@novell.com>
10368 * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
10369 in structures by throwing ArgumentNullException.
10371 (emit_marshal_safehandle): Also when they are null parameters.
10373 (emit_marshal_safehandle): Add support for ref
10374 SafeHandles parameters
10376 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10378 * profiler.c: updated to use the mono-dl API instead of
10381 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10383 * profiler.c: updated to use the mono-dl dynamic loading
10384 API instead of gmodule.
10386 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
10388 * profiler.c: use readlink, older versions of glib don't have
10389 g_file_read_link ().
10391 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10393 * profiler.c: try to detect the path to mono if libc fails to provide
10394 a useful name (bug #80286).
10396 2006-12-16 Raja R Harinath <rharinath@novell.com>
10399 * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
10400 instance, use the generic type definition instead.
10401 (ves_icall_Type_GetNestedTypes): Likewise.
10402 * class.c (mono_class_create_generic): Always set the
10403 nested_classes of a generic instance to NULL, even if the generic
10404 type definition has nested types.
10406 2006-12-15 Jonathan Chambers <joncham@gmail.com>
10408 * marshal.c (mono_string_from_bstr): Revert previous Windows change
10411 2006-12-15 Miguel de Icaza <miguel@novell.com>
10413 * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
10414 my arguments were in the wrong order. I also fixed the Windows
10415 version which seems to have had the same issue.
10417 (mono_free_bstr): On Unix, this is g_free.
10418 (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
10419 conversions (for the tests in corlib to pass).
10421 2006-12-14 Miguel de Icaza <miguel@novell.com>
10423 * marshal.c (emit_ptr_to_object_conv): For now, ignore
10424 MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
10425 exception if a ref SafeHandle in a struct has changed).
10427 (emit_struct_conv): Do not perform layout checks for classes
10428 derived from SafeHandle, as those are specially handled.
10430 (emit_object_to_ptr_conv): Add support for
10431 MONO_MARSHAL_CONV_SAFEHANDLE conversion.
10433 (emit_marshal_safehandle): Implement conversion of return values
10434 of safehandles (MARSHAL_ACTION_CONV_RESULT).
10436 * threads.c: WaitHandle now is compiled with two different handles
10437 "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
10440 (ves_icall_System_Threading_WaitHandle_WaitAll_internal)
10441 (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
10442 these routines to cope with both kinds of fields.
10444 2006-12-12 Miguel de Icaza <miguel@novell.com>
10446 * metadata.c (mono_type_to_unmanaged): Handle the case where
10447 type->data.klass is a SafeHandle, and in that case, return the
10448 size of a pointer (MONO_NATIVE_INT) and set the conversion to be
10449 MONO_MARSHAL_CONV_SAFEHANDLE.
10451 2006-12-11 Miguel de Icaza <miguel@novell.com>
10453 * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
10454 MONO_TYPE_OBJECT cases and check for a SafeHandle here before
10455 calling emit_marshal_object.
10457 (emit_marshal_safehandle): Implement marshalling of
10458 SafeHandle parameters (no ref support yet).
10460 (MarshalAction): Document the defines as I implement
10461 them for SafeHandle.
10463 (emit_marshal_object): indentation police.
10465 * class-internals.h: Define MonoSafeHandle.
10466 Add safehandle_class to MonoDefaults type.
10468 * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
10469 list of classes to check for fields.
10471 * domain.c (mono_init_internal): Add SafeHandle to the list of
10472 mono_defaults loaded.
10474 2006-12-15 Raja R Harinath <rharinath@novell.com>
10477 * reflection.c (mono_reflection_bind_generic_parameters): If the
10478 generic type definition is a type builder, ensure that it is fully
10479 initialized before instantiating it. Kill some dead code.
10481 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
10483 * object.c: clear the loader_error () before loading
10484 more metadata stuff (bug #80258).
10486 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
10488 * icall.c, icall-defs.h: type modifiers icalls for
10489 parameters and properties.
10491 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10493 * object.c, icall.c: fixed warnings.
10495 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
10497 * marshal.c: fixed a couple of leaks and coding style in a few places.
10499 2006-12-08 Dick Porter <dick@ximian.com>
10501 * process.c: Cope with NULL ProcessStartInfo arguments on windows
10502 too. Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
10505 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
10507 * process.c: ProcessStartInfo may have only filename set and
10508 arguments can be NULL.
10510 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
10512 * icall.c: fix leak found by Robert Jordan.
10514 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
10516 * marshal.c, marshal.h: generate managed method to access an element
10517 of a multi-dimensional array.
10519 2006-11-30 Paolo Molaro (lupus@ximian.com)
10521 * metadata.c, marshal.c: locking fixes when writing to image->mempool.
10523 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10525 * icall.c: back out GetFields () fix until the serialization code is
10526 fixed to not depend on the incorrect behaviour.
10528 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
10530 * profiler.c: provide defaults if none are set.
10532 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10534 * Makefile.am, attrdefs.h: new public header file with
10535 constants for attributes for use by embedders.
10537 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
10539 * icall.c: GetFields () fix for bug #80064.
10541 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
10543 * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
10544 removed long unused icalls.
10546 2006-11-27 Jonathan Chambers <joncham@gmail.com>
10549 (mono_marshal_emit_managed_wrapper): Level of indirection for
10550 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
10551 can be generated without a delegate class.
10552 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
10554 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
10556 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10558 * console-io.c: add the 'signal' call removed by mistake. Fixes bug
10561 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10563 * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
10564 icall-def.h: added icalls needed by System.GC.
10566 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
10568 * loader.c: ensure the class in catch clauses is handled
10569 correctly for generics methods (fixes bug#79980).
10571 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10573 * monitor.h, monitor.c: added mono_locks_dump () function
10574 to help debug deadlocks involving managed locks.
10576 2006-11-13 Dick Porter <dick@ximian.com>
10578 * file-io.c (get_file_attributes): If the file is a symlink try
10579 and get the stat data for the target, but also add the
10580 FILE_ATTRIBUTE_REPARSE_POINT flag. This is an attempt to follow
10581 the specs for the windows symlink support, but will probably have
10582 to be reworked when I have test data from a vista machine. Fixes
10585 2006-11-13 Dick Porter <dick@ximian.com>
10587 * gc.c (mono_domain_finalize):
10588 * marshal.c (mono_delegate_begin_invoke):
10589 * threadpool.c (socket_io_init, mono_thread_pool_init)
10590 (mono_thread_pool_finish):
10591 * monitor.c (mono_monitor_try_enter_internal):
10592 * threads.c (mono_thread_resume, mono_thread_init)
10593 (mono_thread_suspend_all_other_threads)
10594 (mono_thread_execute_interruption):
10595 * appdomain.c (mono_domain_unload): Check for NULL error returns
10596 from CreateThread(), CreateEvent() and CreateSemaphore(). See bug
10599 2006-11-11 Miguel de Icaza <miguel@novell.com>
10602 (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
10603 Only close the handle if the value of the handle is not
10604 INVALID_HANDLE_VALUE. This just makes the process a bit more
10607 Improvement for #75733, so that we do not run into this problem.
10610 * assembly.c (check_path_env, check_extra_gac_path_env): Do not
10611 include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
10612 internal variables. Fixes #79462
10615 2006-11-09 Dick Porter <dick@ximian.com>
10617 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
10618 Use poll() not select(). Fixes bug 79397.
10620 2006-11-09 Raja R Harinath <rharinath@novell.com>
10623 * assembly.c (mono_assembly_load_from_full): Check that the given
10624 image has an assembly manifest.
10626 2006-11-09 Ankit Jain <jankit@novell.com>
10628 * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
10629 (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
10630 (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
10632 2006-11-07 Dick Porter <dick@ximian.com>
10634 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
10635 Put the old resolver behaviour back for pre-2.0 profiles.
10637 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
10639 * threadpool.c: precise GC and locking fixes.
10641 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
10643 * class.c: don't load types that have an explicit unaligned
10644 managed reference. Provide better info in the TypeLoad exception.
10645 Part of the fix for bug #79744.
10646 * object.c: use the correct check for class type load issues.
10648 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10650 * class.c: enforce alignment of fields with managed references
10651 even when Pack=1 is forced by the user (bug #77788).
10653 2006-11-03 Dick Porter <dick@ximian.com>
10655 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
10656 If the address reverse lookup fails, return it as the hostname
10657 anyway. Fixes bug 79721.
10659 2006-11-03 Dick Porter <dick@ximian.com>
10661 * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
10662 Fix build on Windows.
10664 2006-11-02 Dick Porter <dick@ximian.com>
10667 * object-internals.h:
10668 * exception.c (mono_get_exception_thread_interrupted):
10669 * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
10672 * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
10673 Check for pending Thread.Interrupt.
10675 2006-10-27 Massimiliano Mantione <massi@ximian.com>
10676 * loader.c: Fixed bug 79684.
10678 2006-10-27 Dick Porter <dick@ximian.com>
10680 * file-io.c (get_file_attributes): Force symlinks to directories
10681 to be returned as a regular file. Fixes bug 79733.
10682 2006-10-26 Dick Porter <dick@ximian.com>
10684 * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
10685 CreateFile to open a directory then we need to set the
10686 FILE_FLAG_BACKUP_SEMANTICS flag. Fixes bug 75285.
10688 2006-10-23 Zoltan Varga <vargaz@gmail.com>
10690 * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
10693 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
10695 * sgengc.c: small cleanup of timer code.
10697 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10699 * sgen-gc.c: fix some warnings and start adding support for
10700 complete object removal on domain unload.
10702 2006-10-22 Gert Driesen <drieseng@users.sourceforge.net>
10704 * assembly.c: build_assembly_name should not consider a version
10705 number without build or revision number invalid. Fixes bug #79715.
10707 2006-10-18 Jonathan Chambers <joncham@gmail.com>
10709 * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
10710 call kernel32 function OutputDebugString directly.
10712 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
10714 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
10716 * reflection.c: small cleanup, using a function to insert a MonoString
10717 in the string heap.
10719 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
10721 * reflection.c: moving GC fixes.
10723 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10725 * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
10726 all the objects with finalizers belonging to an unloading appdomain.
10728 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10730 * sgen-gc.c: added ability to allocate even when the nursery is fully
10731 pinned and fixed a couple of bugs.
10733 2006-10-15 Zoltan Varga <vargaz@gmail.com>
10735 * threads.h: Revert the last change for now.
10737 * threads.h (mono_thread_get_pending_exception): Rename this to
10738 mono_thread_get_undeniable_exception ().
10740 2006-10-15 Gert Driesen <drieseng@users.sourceforge.net>
10742 * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
10743 BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
10744 when fname does not refer to valid assembly. This result in a more
10745 meaningful error message.
10746 * exception.c: added mono_get_exception_bad_image_format2 which
10747 constructs a BadImageFormatException using the ctor taking a custom
10748 message and the file name. Passing in a NULL msg results in a default
10750 * exception.h: define mono_get_exception_bad_image_format2 function.
10751 * icall.c: in InternalGetAssemblyName, throw BadImageFormatException
10752 when file name pointed to an invalid IL image. Use
10753 mono_get_exception_file_not_found2 to construct FileNotFoundException,
10754 as this results in a more meaningful error message.
10756 2006-10-15 Zoltan Varga <vargaz@gmail.com>
10758 * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
10761 2006-10-12 Zoltan Varga <vargaz@gmail.com>
10763 * metadata.c (mono_type_size): Change the align parameter to guint32 for
10764 consistency with the other _size functions.
10765 (mono_type_stack_size): Ditto.
10767 * class.c object.c icall.c: Fix warnings caused by the above change.
10769 * class.c (mono_class_get_method_from_name_flags): Fix a typo.
10771 * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
10773 * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
10775 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
10777 * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
10778 process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
10779 socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
10780 threadpool.h, threads-types.h: mark more internal functions.
10782 2006-10-11 Dick Porter <dick@ximian.com>
10784 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
10785 Fix typo spotted by Robert Jordan in bug 79352 (though I can't
10786 reproduce the bug even before applying the fix.)
10788 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
10790 * reflection.c: allow retrieving attributes for arguments in generic
10791 methods (bug #79241).
10793 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
10795 * debug-mono-symfile.c: properly check fopen () result (found by
10798 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
10800 * reflection.c: make error message clearer and fixed two
10801 issuelets found by Coverity.
10803 2006-10-10 Zoltan Varga <vargaz@gmail.com>
10805 * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
10807 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
10809 * object-internals.h, gc-internal.h, profiler-private.h:
10810 mark internal functions.
10812 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10814 * reflection.c: put data in the text section.
10815 * icall.c: recognize more types in type_from_typename ().
10816 * process.c, marshal.c: added some GC FIXMEs.
10818 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10820 * loader.c: check for NULL before initializing.
10822 2006-10-09 Zoltan Varga <vargaz@gmail.com>
10824 * gc.c (finalizer_thread): Use a non-alertable wait here.
10826 * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
10827 until the correct solution is found.
10829 2006-10-06 Zoltan Varga <vargaz@gmail.com>
10831 * reflection.c (mono_module_get_object): Avoid an assert when operating on
10832 modules with no metadata. Fixes #79596.
10834 * image.c (load_metadata_ptrs): Put back the error message when
10835 the #- heap is encountered since the support is not complete yet.
10837 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10839 * gc.c: do not allow the user to SuppressFinalize () a
10840 delegate because it would leak the trampoline if present.
10842 2006-10-06 Zoltan Varga <vargaz@gmail.com>
10844 * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
10847 2006-10-05 Zoltan Varga <vargaz@gmail.com>
10849 * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
10851 * metadata.c (mono_metadata_get_param_attrs): Ditto.
10853 * row-indexes.h: Add definitions for *Ptr tables.
10855 * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
10857 * metadata.c (mono_metadata_translate_token_index): New helper function to
10858 translate table indexes used in uncompressed metadata.
10859 (mono_metadata_decode_table_row): Ditto.
10860 (mono_metadata_decode_table_row_col): Ditto.
10862 * metadata.c: Add table schema for *Ptr tables.
10864 * class.c loader.c: Use the new helper function to access the affected metadata
10867 * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
10870 2006-10-04 Zoltan Varga <vargaz@gmail.com>
10872 * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
10873 sequences which can be unbounded in size. Fixes #79583.
10875 2006-10-02 Zoltan Varga <vargaz@gmail.com>
10877 * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
10878 static initialization.
10880 * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
10882 * class-internals.h (MonoVTable): Add an 'init_failed' flag.
10884 * domain.c (mono_domain_free): Free up type_init_exception_hash.
10886 * object.c (mono_runtime_class_init): Implement correct semantics when a static
10887 ctor fails, i.e. throw the same exception on subsequent accesses.
10889 2006-09-0 Jonathan Chambers <joncham@gmail.com>
10891 * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
10892 * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
10893 Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
10894 Handle marshalling of interfaces and VARIANTs contained in structs.
10896 Code is contributed under MIT/X11 license.
10898 2006-09-30 Zoltan Varga <vargaz@gmail.com>
10900 * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
10902 * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
10905 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10907 * console-io.c: ignore previous SIGINT handler.
10909 2006-09-27 Zoltan Varga <vargaz@gmail.com>
10911 * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual
10912 (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
10913 #79460, #79461, #79485.
10915 * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
10917 * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
10920 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10922 * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
10923 could be generated from it.
10925 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
10927 * rand.c: fix read loop to correctly handle EINTR.
10929 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
10931 * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
10932 internal calls are defined to keep methods closer to the declaring
10933 type and allow a significant reduction in runtime relocations and
10936 2006-09-21 Gert Driesen <drieseng@users.sourceforge.net>
10938 * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
10939 exception message to have FileNotFoundException use the default
10940 assembly load error message. Fixes bug #79426.
10941 * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
10943 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10945 * threadpool.c: (start_thread_or_queue) use the root domain when
10946 creating the thread instead of the async object one.
10948 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
10950 * class.c, object.c, class-internals.h, reflection.c:
10951 for arrays, store element_size inside MonoClass (speedup
10952 for array object creation).
10954 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
10956 * icall.c: fixed CodeBase to use the file name and not the module
10959 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
10961 * mono-debug.c, mono-debug.h: export find_method as
10962 mono_debug_find_method ().
10964 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
10966 * debug-helpers.c, class-internals.h: added a few functions useful
10967 when debugging under gdb.
10969 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10971 * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
10972 characters that need special handling.
10974 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10976 * mono-config.c: make the os/cpu specification more flexible,
10977 allowing lists and negation.
10979 2006-09-18 Jonathan Chambers <joncham@gmail.com>
10981 * marshal.c: COM Interop fixes. Handle case where method->klass.
10982 is interface. Handle BSTR/MonoString when null. Use CDECL as
10983 calling convention on non-windows platforms. This is for
10984 compatibility with XPCOM and MainWin COM.
10986 Code is contributed under MIT/X11 license.
10989 2006-09-18 Zoltan Varga <vargaz@gmail.com>
10991 * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
10992 correctly. Fixes #79217.
10994 * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
10996 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
10998 * mono-config.c: allow both an os and cpu attribute for dllmap
10999 and dllentry elemnets to enable a single config file to be used
11000 for multiple architectures.
11002 2006-09-18 Gert Driesen <drieseng@users.sourceforge.net>
11004 * loader.c: MonoLoaderError was cleared too soon on load failure.
11007 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
11009 * icall.c: use the defining class vtable when accessing a
11010 static field, not a pobblibly derived class.
11012 2006-09-17 Zoltan Varga <vargaz@gmail.com>
11014 * icall.c string-icalls.c: Remove references to unicode.h.
11016 * unicode.h unicode.c Makefile.am: Remove these unused source files.
11018 * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
11020 * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument,
11021 indicating the image where custom marshaller types should be looked up.
11022 (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
11023 custom marshallers, instead of corlib. Fixes #79425.
11025 2006-09-14 Zoltan Varga <vargaz@gmail.com>
11027 * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
11029 2006-09-14 Jonathan Chambers <joncham@gmail.com>
11031 * environment.c (ves_icall_System_Environment_get_ProcessorCount):
11032 Implement Environment.ProcessorCount.
11034 * environment.h (ves_icall_System_Environment_get_ProcessorCount):
11035 Implement Environment.ProcessorCount.
11038 Add Environment.ProcessorCount icall.
11040 Patch by Jason McFall.
11042 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11044 * assembly.c: don't append .exe/.dll when the filename already contains
11045 one of those extensions.
11047 2006-09-12 Martin Baulig <martin@ximian.com>
11049 * class.c (mono_bounded_array_class_get): Also add `IList<object>'
11050 to array interfaces.
11052 2006-09-11 Martin Baulig <martin@ximian.com>
11054 * reflection.c (mono_image_build_metadata): Create the
11055 MethodImpl's after emitting all types and methods, so we don't
11056 need another fixup pass for them.
11058 2006-09-11 Zoltan Varga <vargaz@gmail.com>
11060 * class.c (mono_class_from_name_case): Fix regression introduced by the last
11063 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
11065 * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
11068 2006-09-10 Zoltan Varga <vargaz@gmail.com>
11070 * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
11071 args is not set. Fixes #78926.
11073 2006-09-08 Zoltan Varga <vargaz@gmail.com>
11075 * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
11077 * image.c (load_class_names): Move this to class.c, and rename it to
11078 'mono_image_init_name_cache'.
11079 (load_modules): Fix a warning.
11081 * class.c icall.c image.c: Initialize image->name_cache lazily.
11083 * class-internals.h (MonoGetClassFromName): New hook function to find a class based
11084 on its name using information in the AOT file.
11086 * class.c (mono_class_from_name): Use the new hook function.
11088 2006-09-06 Zoltan Varga <vargaz@gmail.com>
11090 * reflection.c (mono_param_get_objects): Handle enum default parameter values
11093 * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
11096 2006-09-06 Martin Baulig <martin@ximian.com>
11098 * icall.c (mono_lookup_internal_call): Small fix.
11100 2006-09-05 Raja R Harinath <rharinath@novell.com>
11102 * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
11105 2006-09-04 Sebastien Pouliot <sebastien@ximian.com>
11107 * debug-mono-symfile.c: Fix *some* memory leaks that happens only
11108 when --debug is specified.
11110 2006-09-04 Zoltan Varga <vargaz@gmail.com>
11112 * class.c (setup_generic_array_ifaces): Fix a warning.
11114 2006-09-04 Miguel de Icaza <miguel@novell.com>
11116 * Temporarily remove the patch to assemly.c that checks the
11117 assembly versions as it breaks our gacutil.
11119 2006-09-03 Zoltan Varga <vargaz@gmail.com>
11121 * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
11123 * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
11126 * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
11127 created using the default ctor. Fixes #79152.
11128 (mono_string_builder_to_utf16): Ditto.
11130 2006-09-01 Martin Baulig <martin@ximian.com>
11132 Fix handling of the generic array interfaces.
11134 * class-internals.h
11135 (MonoDefaults): Removed `generic_array_class' and added
11136 `generic_ilist' class.
11139 (mono_bounded_array_class_get): Add the new generic array interfaces.
11140 (setup_generic_array_ifaces): New static method; create vtable
11141 entries for each method in the generic array interfaces.
11144 (select_container): Allow "parent-less" generic methods.
11147 (mono_marshal_get_generic_array_helper): New public method.
11150 (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
11151 Renamed into ves_icall_System_Array_GetGenericValueImpl() and
11152 moved the interncall into System.Array.
11154 2006-09-01 Raja R Harinath <rharinath@novell.com>
11156 A few more cases of avoiding work on types with ->byref set.
11157 Has the real fix for #79238
11158 * icall.c (is_generic_parameter): New helper.
11159 (ves_icall_Type_GetGenericParameterPosition): Use it.
11160 (ves_icall_Type_GetGenericParameterAttributes): Likewise.
11161 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
11162 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
11163 (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
11165 (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
11167 (ves_icall_Type_get_IsGenericInstance): Likewise.
11168 (ves_icall_Type_get_IsGenericType): Likewise.
11170 2006-09-01 Zoltan Varga <vargaz@gmail.com>
11172 * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
11175 * mempool.h (mono_mempool_get_allocated): New helper function.
11177 * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
11180 * mempool.c: Fix warnings and the calculation of stats.
11182 * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
11184 * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
11186 * loader.c (mono_get_method_from_token): Update method_count stat.
11188 * class-internals.h (MonoStats): Add some stats.
11190 2006-08-31 Robert Jordan <robertj@gmx.net>
11192 * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
11193 with managed variants.
11194 All code is contributed under the MIT/X11 license.
11196 2006-08-31 Zoltan Varga <vargaz@gmail.com>
11198 * reflection.c (reflection_methodbuilder_to_mono_method): Set
11199 method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
11201 * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
11203 * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
11204 with cycles in classes.
11206 * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
11208 * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is
11209 missing a [MarshalAs] directive. Fixes #79203.
11211 * marshal.c (mono_marshal_load_type_info): Fix a race in initializing
11212 klass->marshal_info. Fixes #79217.
11214 2006-08-30 Martin Baulig <martin@ximian.com>
11216 Committing a patch from Joachim Ante <joe@otee.dk>:
11217 Add support for binary data symbol stores.
11219 * debug-mono-symfile.c
11220 (mono_debug_open_mono_symbol_file): Renamed into
11221 mono_debug_open_mono_symbols() and added `raw_contents' and `size'
11225 (mono_debug_open_image): Added `raw_contents' and `size' args.
11226 (mono_debug_init_2_memory): New public function.
11228 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
11230 * icall.c: handle TypedReference in GetTypeCode (bug #79150).
11232 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11234 * appdomain.c: implement support for ShadowCopyFiles.
11236 2006-08-22 Sebastien Pouliot <sebastien@ximian.com>
11238 * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
11239 when value is NULL (and should remove CID #51).
11241 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11243 * image.c: moved 2 functions to ../utils.
11245 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11247 * gc.c: cope with the target object of a GC handle being NULL
11250 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11252 * class.c: recursively check parent's explicit implementations
11253 of interface methods (fixes bug #79125).
11255 2006-08-19 Miguel de Icaza <miguel@novell.com>
11257 * filewatcher.c: Avoid warnings when building, do not redefine
11258 constants that are defined.
11262 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11264 * image.c: don't fail when the link points to an absolute path.
11266 2006-08-18 Sebastien Pouliot <sebastien@ximian.com>
11268 * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
11271 2006-08-17 Miguel de Icaza <miguel@novell.com>
11273 * image.c (full_path): A new method used to obtain the actual path
11274 of an assembly even in the presence of symbolic links.
11276 This is necessary for the case where we are running a binary that
11277 has been GACed, but we are using the "published" path name
11278 ($prefix/mono/1.0/blah.exe) which happens to point to the real
11281 This was the source of the failure for the `xsp' command with the
11282 recent AppDomain changes, as far as the runtime was concerned,
11283 there were two different assemblies: $prefix/mono/1.0/blah.exe and
11284 $prefix/mono/gac/blah/version/blah.exe.
11286 (do_mono_image_open): use full path
11288 2006-08-17 Zoltan Varga <vargaz@gmail.com>
11290 * object.c (mono_class_create_runtime_vtable): Add a FIXME.
11292 2006-08-17 Sebastien Pouliot <sebastien@ximian.com>
11294 * marshal.c: Fix mono_marshal_check_domain_image if an invalid
11295 domain_id is supplied. Fix CID #241 and corlib's unit tests.
11297 2006-08-17 Zoltan Varga <vargaz@gmail.com>
11299 * class.c (mono_class_layout_fields): Set min_align to a bigger value for
11300 small structures. Fixes #78990.
11302 2006-08-17 Zoltan Varga <vargaz@gmail.com>
11304 * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
11306 * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
11308 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11311 * marshal.c: don't load all the assemblies from a domain into newly
11312 created ones. The new domains might have different rules and load
11313 assemblies from different locations. Fixes bug #76757.
11315 Patch by Lluis. Conflicts resolved by Brian Crowell.
11317 2006-08-16 Alp Toker <alp@atoker.com>
11319 * socket-io.c: First half of the fix for #79084.
11320 Set sa_size to the length of the content, not that of the struct.
11321 Don't add NULL suffix to the content, this should be done in
11322 managed code if needed.
11324 2006-08-14 Raja R Harinath <rharinath@novell.com>
11327 * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
11328 mono_metadata_parse_type returns NULL.
11330 2006-08-13 Atsushi Enomoto <atsushi@ximian.com>
11332 * normalization-tables.h : new file for string normalization data.
11333 * locales.c, locales.h, icall.c :
11334 added load_normalization_resource() for string normalization,
11336 * Makefile.am : added normalization-tables.h to the sources.
11338 2006-08-13 Zoltan Varga <vargaz@gmail.com>
11340 * marshal.c: Add more helper functions to reduce code duplication and use them
11343 2006-08-12 Zoltan Varga <vargaz@gmail.com>
11345 * marshal.c: Fix non-x86 stdcall warnings.
11347 * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use
11350 2006-08-11 Jonathan Chambers <joncham@gmail.com>
11352 * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
11353 type check on multi-dimensional arrays. Fixes #79000.
11355 2006-08-10 Jonathan Chambers <joncham@gmail.com>
11357 * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
11358 * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
11359 to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
11360 * class-internals.h: add is_com_object to class structure.
11361 * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
11362 null checks to COM object marshalling. Fix .ctor call on RCW.
11363 * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
11365 All code is contributed under the MIT/X11 license.
11367 2006-08-09 Dick Porter <dick@ximian.com>
11369 * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
11370 racing mono_monitor_allocator_lock() somewhere, so don't delete
11371 the critical section for now. Found by running and exiting
11374 2006-08-10 Zoltan Varga <vargaz@gmail.com>
11376 * marshal.c (cominterop_get_native_wrapper): Fix a warning.
11377 (ves_icall_System_ComObject_FindInterface): Ditto.
11378 (ves_icall_System_ComObject_CacheInterface): Ditto.
11380 * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
11381 (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
11383 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11385 * threadpool.c: treat pipes from process asynchronous reads as sockets
11386 when reading from them, so we get select/poll or epoll to wait for
11389 2006-08-07 Sebastien Pouliot <sebatien@ximian.com>
11391 * loader.c: Fix a typo (CID #233) in the null check.
11393 2006-08-07 Zoltan Varga <vargaz@gmail.com>
11395 * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
11396 Hopefully fixes #78949.
11398 * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from
11399 Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
11400 bytes. Fixes #78972.
11402 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11404 * filewatcher.c: we need to set errno here.
11406 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11408 * filewatcher.c: let Win32Exception get the error value.
11410 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11412 * filewatcher.c: translate errno into win32 errors for Win32Exception
11413 to know what happened.
11415 2006-08-01 Zoltan Varga <vargaz@gmail.com>
11417 * threadpool.c: Fix more warnings.
11419 * assembly.c (search_loaded): Fix warnings.
11421 * threadpool.c (mono_thread_pool_finish): Fix warnings.
11422 (mono_async_invoke): Ditto.
11424 2006-07-28 Jonathan Chambers <joncham@gmail.com>
11426 * object.c (mono_remote_class_vtable): Need to create proxy vtable
11427 entries for __ComObject type in addition to ComImport types.
11428 * marshal.c: Added support for marshalling COM RCWs. Fixed warning
11431 All code is contributed under the MIT/X11 license.
11433 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
11435 * image.c: avoid tentative loading of modulerefs that contain
11436 no metadata (P/Invoke library names).
11438 2006-07-28 Dick Porter <dick@ximian.com>
11440 * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
11441 mono_loader_lock() somewhere, so don't delete the critical section
11442 for now. Found by running and exiting monodevelop.
11444 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11446 * filewatcher.c: define the inotify syscalls when we're building on
11447 linux and have sys/syscall.h. The build system might not have support
11448 for inotify but the target system might have it.
11450 2006-07-26 Miguel de Icaza <miguel@novell.com>
11452 * domain.c: Documentation updates.
11454 * loader.c (mono_free_method): Do not release the method
11455 information if we are being profiled, as profilers will use this
11456 information at shut down to present some data to the user.
11458 This is needed so that the profiler does not crash, as the
11459 profiler tends to keep MonoMethods around, and they might become
11460 invalid if we free these.
11462 (mono_get_method_constrained): Return the original CIL stream
11463 method as well, so verification can be performed against it.
11465 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11467 * filewatcher.[ch]: support for inotify file system watcher.
11468 * icall.c: add new internal calls for the inotify file system watcher.
11470 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11472 * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
11475 2006-07-20 Dick Porter <dick@ximian.com>
11477 * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
11480 2006-07-20 Dick Porter <dick@ximian.com>
11482 * threads.c (start_wrapper): Do the thread cleanup while we still
11483 hold a reference to its object. Fixes bug 78123.
11485 2006-07-18 Kornél Pál <kornelpal@gmail.com>
11487 * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
11488 * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
11489 "managed-to-managed".
11490 * icall.c: Redirect string constructors that take sbyte* to
11491 ves_icall_System_String_ctor_RedirectToCreateString.
11492 * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
11493 to CreateString () methods with matching signature.
11494 * reflection.c: Use original security informations for
11495 MONO_WRAPPER_MANAGED_TO_MANAGED.
11496 * security-manager.c: Use original security informations for
11497 MONO_WRAPPER_MANAGED_TO_MANAGED.
11498 * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
11499 that is a placeholder and only its address should be used.
11500 * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
11501 that is a placeholder and only its address should be used.
11503 2006-07-15 Jonathan Chambers <joncham@gmail.com>
11505 Begin implementing COM Interop.
11506 * appdomain.c: Increment corlib version.
11507 * class.c: Set ComImport classes' parent to __ComObject.
11508 * loader.c: Mark cominterop methods as such.
11509 * domain.c: Add __ComObject class to MonoDefaults structure.
11510 * image.c: Add 2 hashtables to the image for COM Interop related methods
11511 * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
11512 using the mempool allocator
11514 * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
11515 * metadata.h: Added cominterop field to _MonoMethodSignature struct and
11516 declaration for mono_metadata_type_dup_mp.
11518 * debug-helpers.c: Added strings for two additional wrapper types
11519 * object.c: Create proxy objects for ComImport classes
11520 * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
11521 and added __ComObject class to MonoDefaults structure.
11523 * object-internals.h: Finish MonoRealProxy definition, and add definition of
11524 MonoComInteropProxy and MonoComObject.
11526 * marshal.c: Added support for COM Interop
11527 (signature_cominterop): Converts managed signature to corresponding
11528 unmanaged COM signature.
11529 (cominterop_get_function_pointer): gets unmanaged function pointer via
11531 (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
11532 (cominterop_get_method_interface): returns interface type that method is defined on
11533 (mono_mb_emit_cominterop_call): emits native call to function pointer
11535 (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
11536 that matches signature of unmanaged function.
11537 (cominterop_get_native_wrapper): wrapper around adjusted method call.
11538 (cominterop_get_invoke): forwards call from proxy to __ComObject
11539 (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef
11540 (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface
11541 (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release
11543 * marshal.h: Added Marshal icall declarations.
11544 * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
11545 so we can access them in finalizer
11547 2006-07-14 Dick Porter <dick@ximian.com>
11549 * object.c (mono_type_initialization_cleanup): Fix a race
11550 condition by temporarily commenting out the critical section
11553 2006-07-14 Zoltan Varga <vargaz@gmail.com>
11555 * reflection.c (create_custom_attr): Fix some warnings.
11556 (create_custom_attr_data): Ditto.
11557 (typebuilder_setup_properties): Save custom attrs for properties in dynamic
11558 types. Fixes #78855.
11560 2006-07-11 Zoltan Varga <vargaz@gmail.com>
11562 * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
11564 * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
11566 2006-07-08 Zoltan Varga <vargaz@gmail.com>
11568 * reflection.c (resolve_object): Add support for DynamicMethod.
11570 * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
11571 Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
11573 2006-07-06 Sebastien Pouliot <sebastien@ximian.com>
11575 * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal
11576 don't leak GPtrArray's pdata has we have no use (nor free) for it.
11578 2006-07-01 Zoltan Varga <vargaz@gmail.com>
11580 * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
11583 2006-06-30 Raja R Harinath <rharinath@novell.com>
11585 * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
11586 slightly: remove a shadow local variable.
11588 2006-06-29 Raja R Harinath <rharinath@novell.com>
11590 * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
11591 definition that introduces the virtual function slot.
11592 Also fix Coverity #105.
11594 2006-06-29 Zoltan Varga <vargaz@gmail.com>
11596 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
11597 for dynamic assemblies. Fixes #78724.
11599 2006-06-28 Zoltan Varga <vargaz@gmail.com>
11601 * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
11604 2006-06-21 Martin Baulig <martin@ximian.com>
11607 (method_encode_clauses): Don't assert on `ex_info->handlers' here;
11610 2006-06-21 Zoltan Varga <vargaz@gmail.com>
11612 * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
11614 2006-06-20 Raja R Harinath <rharinath@novell.com>
11616 Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
11618 * class.c (mono_class_create_from_typespec): Add 'context' argument.
11619 Inflate result if necessary.
11620 (mono_class_get_full): Remove old version. Rename from
11621 'mono_class_get' and add 'context' argument. Pass it to
11622 ..._create_from_typespec.
11623 (mono_class_get): New. Simple wrapper to mono_class_get_full.
11624 (mono_ldtoken): Revert change below.
11626 2006-06-20 Martin Baulig <martin@ximian.com>
11628 * class.c (mono_ldtoken): Don't pass the generic context to
11629 mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF. Fixes #78053.
11631 2006-06-15 Zoltan Varga <vargaz@gmail.com>
11633 * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
11634 and later freeing it. Fixes #78638.
11636 2006-06-15 Miguel de Icaza <miguel@novell.com>
11638 * icall.c (mono_class_get_throw): Revert over-zealous error
11639 throwing, the caller for mono_class_get_throw will cope with
11640 errors when classes are not properly initialized already.
11642 The code still copes with loader exceptions though.
11644 Fixes the regression in reftype1 and reftype3 from the CAS tests.
11646 2006-06-14 Miguel de Icaza <miguel@novell.com>
11648 Fixes the `make run1' version of RuntimeAbort (to be commited,
11649 source is in Bugzilla).
11651 * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
11652 FALSE on class loading failure instead of returning true.
11654 * class.c (mono_class_create_from_typedef): It is possible for
11655 mono_metadata_interfaces_from_typedef_full to fail if a class is
11656 not found, cope with this.
11659 2006-06-14 Dick Porter <dick@ximian.com>
11662 * process.c: Fix a bunch of signed/unsigned warnings from gcc
11665 2006-06-12 Atsushi Enomoto <atsushi@ximian.com>
11667 * culture-info-table.h : oops, forgot to make it nsync with r61548.
11669 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
11671 * icall.c: Another fix for building mono in Visual Studio.
11673 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
11675 * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
11677 2006-06-09 Martin Baulig <martin@ximian.com>
11679 * debug-mono-symfile.c: Put this back and really fix it this
11680 time. Sorry for all the trouble.
11682 2006-06-08 Zoltan Varga <vargaz@gmail.com>
11684 * icall.c (mono_class_get_throw): Fix a warning.
11685 (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw
11686 ReflectionTypeLoadException if needed. Fixes #78606.
11688 * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
11689 (mono_class_init): Ditto.
11691 * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
11692 ref_only exceptions.
11693 (mono_loader_clear_error): Make this work even if there is no error.
11695 2006-06-08 Jonathan Chambers <jonathan.chambers@ansys.com>
11697 * object-internals.h marshal.c marshal.h icall.c: Implement method
11698 Marshal.GetComSlotForMethodInfo using internal call.
11700 2006-06-07 Zoltan Varga <vargaz@gmail.com>
11702 * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
11703 a function for signalling it.
11705 * class.c (mono_class_from_typeref): Use the new kind of loader error when
11706 a referenced assembly is not found.
11708 * loader.c (mono_loader_error_prepare_exception): Add support for
11709 LOADER_ERROR_ASSEMBLY. Fix formatting.
11711 2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
11713 * domain.c appdomain.c class-internals.h marshal.c: Add support
11714 for VARIANT marshalling on windows and increment corlib version
11715 since Variant struct was added.
11717 2006-06-03 Miguel de Icaza <miguel@novell.com>
11719 * debug-mono-symfile.c: Revert Martin's previous patch which broke
11720 stack trace line information:
11722 (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
11723 (Martin) when looking up B which is between A and C, return A not C.
11727 Thanks to Alexander Olk for tracking this down.
11729 2006-06-02 Zoltan Varga <vargaz@gmail.com>
11731 * marshal.c (mono_marshal_set_last_error_windows): Fix build.
11733 * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
11734 avoid clobbering its value.
11735 (mono_string_to_lpstr): Fix a warning on windows.
11737 2006-05-31 Zoltan Varga <vargaz@gmail.com>
11739 * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
11741 * reflection.c loader.c: Removed references to 'dummy' flag.
11743 * loader.c (mono_loader_error_prepare_exception): Fix a warning.
11745 * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
11746 it gets GC tracking.
11748 * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
11751 * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
11753 * marshal.c threadpool.c: Update callers of mono_async_result_new.
11755 * appdomain.c: Bump corlib version.
11757 2006-05-30 Zoltan Varga <vargaz@gmail.com>
11759 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
11760 CEE_STIND_REF when working with object references.
11762 2006-05-31 Zoltan Varga <vargaz@gmail.com>
11764 * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
11767 2006-05-30 Miguel de Icaza <miguel@novell.com>
11769 * loader.c (method_from_memberref): Fix argument value for
11770 mono_loader_set_error_method_load (I was passing the MonoClass
11771 instead of the class name char *).
11773 2006-05-30 Zoltan Varga <vargaz@gmail.com>
11775 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
11776 CEE_STIND_REF when working with object references.
11778 2006-05-30 Martin Baulig <martin@ximian.com>
11780 * mono-debug.c (mono_debug_print_stack_frame): Reverted the
11781 mono_method_full_name() change and replace the ':' with a '.'
11784 2006-05-30 Martin Baulig <martin@ximian.com>
11786 * debug-mono-symfile.c
11787 (mono_debug_symfile_lookup_location): Fix the algorithm:
11788 when looking up B which is between A and C, return A not C.
11790 2006-05-29 Martin Baulig <martin@ximian.com>
11793 (MonoDebugMethodInfo): Make the typedef public.
11794 (MonoDebugSourceLocation): New public struct.
11797 (mono_debug_source_location_from_address): Removed.
11798 (mono_debug_source_location_from_il_offset): Removed.
11799 (mono_debug_il_offset_from_address): Removed.
11800 (mono_debug_address_from_il_offset): Removed.
11801 (mono_debug_lookup_method): New public function.
11802 (mono_debug_lookup_source_location): New public function; replaces
11803 the old mono_debug_source_location_from_*() functions; see the
11804 inline documentation.
11805 (mono_debug_free_source_location): New public function.
11806 (mono_debug_print_stack_frame): New public function; see the
11807 inline documentation.
11809 * debug-mono-symfile.c
11810 (mono_debug_find_source_location): Renamed into
11811 mono_debug_symfile_lookup_location(); only take a
11812 `MonoDebugMethodInfo *' and an `offset' argument; added inline
11814 (mono_debug_find_method): Renamed into
11815 mono_debug_symfile_lookup_method().
11817 2006-05-27 Zoltan Varga <vargaz@gmail.com>
11819 * assembly.c (mono_assembly_open_full): Dont overwrite the status
11820 returned by mono_image_open_full ().
11822 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
11823 MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
11826 * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
11829 2006-05-27 Miguel de Icaza <miguel@novell.com>
11831 * class.c (mono_class_from_typeref): handle missing images
11832 earlier, deals with bug #78418. Refactor code;
11834 Fix a warning introduced in my previous commit (some stale code
11835 from before I revisited my patch).
11837 * class.c (mono_class_create_from_typedef): On failure, remove the
11838 class from the MonoImage->class_cache as the class is not
11839 initialized; Fixes the leak pointed out by Paolo.
11841 2006-05-25 Dick Porter <dick@ximian.com>
11843 * threads.c (mono_thread_cleanup): Build fix. Comment out the
11844 DeleteCriticalSections until I figure out which one may still be
11845 sometimes locked when mono_thread_cleanup is called.
11847 2006-05-24 Dick Porter <dick@ximian.com>
11849 * threads.c (mono_thread_cleanup): Move the threading cleanup out
11850 of mono_thread_manage and back into its own function, so it can be
11851 called after the finalizer thread has finished.
11853 * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
11855 2006-05-24 Zoltan Varga <vargaz@gmail.com>
11857 * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
11860 * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
11861 with non-blittable elements.
11862 (emit_object_to_ptr_conv): Ditto. Fixes #78492.
11864 2006-05-24 Martin Baulig <martin@ximian.com>
11866 * mono-debug-debugger.h (MonoDebuggerEvent): Added
11867 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.
11869 * mono-debug-debugger.c (mono_debugger_cleanup): Send a
11870 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
11871 `mono_debugger_event_handler' to NULL.
11873 2006-05-24 Martin Baulig <martin@ximian.com>
11875 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
11877 2006-05-24 Martin Baulig <martin@ximian.com>
11879 * mono-debug-debugger.h
11880 (mono_debugger_create_notification_function): Added
11881 `MonoCodeManager *' argument.
11883 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
11885 * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
11887 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
11889 * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
11890 * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
11893 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
11895 * icall.c: precise GC support: objects can't be stored in unmanaged
11896 memory anymore, even if they are kept alive by other references: since
11897 they can move the GC needs to be able to always find them.
11899 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
11901 * object.c: precise GC support for static fields. Support
11902 for moving GCs: write barriers and pinned allocation for interned
11905 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
11907 * domain.c, domain-internals.h: precise GC support for the MonoDomain
11910 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
11912 * class.c, gc.c: sgen and precise GC updates.
11914 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
11916 * marshal.h, marshal.c: added write barrier wrapper and precise type
11919 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
11921 * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
11924 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11926 * reflection.c: precise and sgen GC updates.
11928 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
11930 * debug-helpers.c, class-internals.h: added write barrier wrapper type.
11932 2006-05-22 Zoltan Varga <vargaz@gmail.com>
11934 * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
11936 2006-05-20 Zoltan Varga <vargaz@gmail.com>
11938 * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
11939 MONO_TYPE_OBJECT. Fixes #78462.
11941 2006-05-18 Zoltan Varga <vargaz@gmail.com>
11943 * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct
11944 and blittable types.
11946 2006-05-17 Miguel de Icaza <miguel@novell.com>
11948 * class.c (mono_class_get_exception_for_failure): Implement parts
11949 of a TODO: if the loader error is set (instead of the class
11950 error), we return a Loader exception that can be properly thrown
11953 This was exposed by some Winforms 2.0 code that I tried to run
11954 (Atsushi pointed me to it).
11956 2006-05-17 Zoltan Varga <vargaz@gmail.com>
11958 * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
11959 uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
11961 * marshal.c (emit_marshal_vtype): Add limited support for
11962 UnmanagedType.LPStruct. Fixes #78427.
11964 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure):
11965 Applied a patch from kangaroo to fix #77523.
11967 2006-05-17 Martin Baulig <martin@ximian.com>
11970 (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
11971 (debugger_thread_created): Removed.
11972 (debugger_thread_exited): Removed.
11974 2006-05-15 Zoltan Varga <vargaz@gmail.com>
11976 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11978 * object-internals.h (MonoReflectionResource): Sync with managed version.
11980 2006-05-12 Wade Berrier <wberrier@novell.com>
11982 * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
11984 2006-05-12 Zoltan Varga <vargaz@gmail.com>
11986 * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
11987 functions try to allocate from the image mempool.
11989 2006-05-12 Dick Porter <dick@ximian.com>
11991 * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
11993 2006-05-12 Lluis Sanchez <lluis@ximian.com>
11995 * object.c: The FieldGetter and FieldSetter methods require the full
11996 name of the class, not only the name. Fixes bug #78277.
11998 2006-05-11 Miguel de Icaza <miguel@novell.com>
12000 * loader.c (method_from_memberref): Do not pass the NULL klass to
12001 mono_loader_set_error_() methods. Pass the non-NULL value
12004 2006-05-11 Zoltan Varga <vargaz@gmail.com>
12006 * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
12007 (mono_assembly_close): Null out assembly->image->references after freeing it.
12009 * image.c (mono_image_close): Free image->references.
12011 * reflection.c (mono_image_basic_init): Fix a small memory leak.
12013 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
12015 * marshal.c: In function mono_mb_add_local don't use the mb pointer
12016 before checking if it's NULL (g_assert).
12018 2006-05-10 Martin Baulig <martin@ximian.com>
12020 * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
12021 I thought I already killed that two months ago, but now it somehow reappeared.
12023 2006-05-10 Martin Baulig <martin@ximian.com>
12025 * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
12027 2006-05-10 Zoltan Varga <vargaz@gmail.com>
12029 * reflection.c: Allocate memory for dynamically created methods in the image
12032 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
12034 * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions,
12035 don't use the ad pointer before checking if it's NULL (g_assert).
12037 2006-05-09 Zoltan Varga <vargaz@gmail.com>
12039 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
12040 a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
12042 * marshal.c: Allocate all signatures from mempools.
12044 * marshal.c: Allocate some more signatures from mempools.
12046 2006-05-09 Miguel de Icaza <miguel@novell.com>
12048 * object.c (mono_load_remote_field): The code used to provide a
12049 temporary variable for returning results if the user did not
12050 provide a result pointer. But our temporary variable was allocted
12053 Fix calling code to always pass a result area. Coverity ID 103.
12055 2006-05-06 Zoltan Varga <vargaz@gmail.com>
12057 * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
12058 value, not the old. Fixes #78312.
12059 (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
12061 * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
12062 (mono_ptr_class_get): Ditto. Also change the cache from a global one to a
12065 * assembly.c (mono_assembly_close): Free image->references.
12067 * assembly.c (mono_assembly_names_equal): Fix a warning.
12068 (mono_assemblies_cleanup): Cleanup more global data.
12070 * metadata-internals.h (MonoImage): Add 'ptr_cache'.
12072 * image.c (mono_image_close): Free up the contents of 'array_cache', free up
12073 ptr_cache and image->modules.
12075 * image.c (mono_image_init): Allocate array_cache lazily.
12077 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12079 * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
12080 behavior was changed recently and has bad side effects.
12082 2006-05-05 Zoltan Varga <vargaz@gmail.com>
12084 * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
12086 * assembly.c (mono_assembly_close): Remove a debug printf.
12088 * profiler.c (create_profiler): Use mono_aligned_addr_hash.
12090 * metadata-internals.h image.c assembly.c: Change the reference counting scheme
12091 to also allow for temporary references between mono_image_open ()/close ().
12093 * domain.c (get_runtimes_from_exe): Add a FIXME.
12095 2006-05-04 Zoltan Varga <vargaz@gmail.com>
12097 * marshal.c: Fix support for dynamic methods.
12099 * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
12101 * marshal.c (mono_marshal_cleanup): New cleanup function.
12103 * marshal.c: Rewrite the wrapper code to allocate most of its memory from the
12106 * class.c (mono_class_init): Fix leaking class->nested_classes.
12108 * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
12110 * image.c (mono_image_init): Initialize the new cashes.
12112 * image.c (mono_image_close): Destroy the new cashes.
12114 * marshal.c: Get rid of most of the static caches in favor of per-image caches.
12116 * mempool.c (mono_mempool_strdup): New helper function.
12118 * class-internals.h: Add prototype for mono_loader_unlock ().
12120 * domain.c (mono_jit_info_table_find): Fix a warning.
12121 (mono_debugger_check_runtime_version): Ditto.
12123 * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h
12124 class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
12125 functions to these modules.
12127 * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
12130 * marshal.c (mono_free_bstr): Fix a warning.
12132 * assembly.c (mono_assembly_open_full): Fix another small leak.
12134 * object.c: Fix some unload leaks in the remoting code.
12136 * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
12139 * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
12141 * reflection.c: Fix some unload leaks in dynamic assemblies.
12143 2006-05-02 Jonathan Chambers <jonathan.chambers@ansys.com>
12145 * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
12146 * marshal.h: Add BSTR support on Win32
12147 * icall.c: Add BSTR icalls
12148 * metadata.h: Add BSTR enums
12150 2006-04-28 Miguel de Icaza <miguel@novell.com>
12152 Work to catch the crash from #76795 and turn it into an
12153 exception. As I stubbed out pieces of the VisualBasic support,
12154 I found a number of places where the code was failing and I added
12155 checks to those places.
12157 * metadata.c (do_mono_metadata_parse_generic_class): Make this
12158 function return a status code. If we fail to parse the signature
12159 from mono_metadata_parse_generic_inst, return FALSE.
12161 * loader.c (mono_get_method_from_token): If we fail to load the
12162 method (mono_class_get) return NULL.
12164 * (method_from_memberref): Return NULL if we are unable to parse
12165 the method signature
12167 (mono_loader_error_prepare_exception): Since we now use the
12168 loader_error flag internally to stop processing, and obtaining
12169 exceptions that might be thrown will walk this code path the
12170 proper way of going from a MonoLoaderError into a
12171 MonoException was convoluted. This new routine encapsulates the
12172 process of turning the error into an exception and *clearing* the
12175 2006-04-27 Miguel de Icaza <miguel@novell.com>
12177 Work to catch the crashes from 75075 (cope in Assembly.GetTypes
12178 with missing assemblies), and to cope with:
12180 * Missing fieldref from a non-existing assembly.
12181 * Missing methodref from a non-existing assembly.
12183 The first batch of work to address *some* of the issues from 76661.
12185 * object.c (mono_class_create_runtime_vtable): If we fail to
12186 initialize the class raise the exception here.
12188 * metadata.c (mono_class_get_overrides_full): If any methods fail
12189 to load return the failure to the caller.
12191 * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
12192 flagging assemblies that failed to load.
12194 Do not crash if we are unable to load the assembly.
12196 (mono_assembly_close): Do nothing with REFERENCE_MISSING
12199 * loader.c (mono_loader_set_error_type_load): Change the
12200 convention to always pass unallocated strings, so we make our own
12201 copies (I know our own code had duplicated strings before, but
12202 this keeps the normal conventions).
12203 (method_from_memberref): Call mono_loader_set_error_method_load
12204 for all possible failures of loading the class.
12205 Remove assert, turn into a loader error.
12207 (mono_loader_error_to_exception): Move this routine from mini
12208 (mini_loader_error_to_exception) there was no need to have that in
12211 * class.c (mono_class_from_typeref): If we were not able to load
12212 the assembly with mono_assembly_load_reference, call the
12213 mono_loader_set_error_type_load to register the problem.
12215 (mono_class_setup_fields): If we fail to load the type from
12216 mono_metadata_parse_type_full, call mono_class_set_failure and
12217 break from the loop.
12219 If class->exception_type is set, we do not layout the fields as
12220 that might crash the runtime, and instead return (from breaking
12221 from the previous loop).
12223 (mono_class_setup_vtable): This now returns a boolean indicating
12224 whether the table was properly setup. The decision is driven by
12225 mono_class_get_overrides_full which might run into non-existing
12228 (mono_class_init): Returns TRUE on success or FALSE if there was a
12229 problem in loading the type (incorrect assemblies, missing
12230 assemblies, methods, etc).
12232 When we call mono_class_setup_fields we also check for a potential
12233 error inside this call (either a class exception or a general
12236 (mono_class_create_from_typedef): If the parent fails to load
12237 (calling mono_class_get_full) return NULL.
12241 calls to mono_metadata_parse_type_full should be checked
12242 everywhere and set the mono_class_set_failure
12243 (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
12245 The current patch checks the places where my manually constructed
12246 tests show the errors are showing up, but we should do it
12251 mono_class_init return values should be tested everywhere, like
12252 the previous case this is something that we should audit
12253 everywhere and not only on the cases exposed by the tests I
12256 2006-04-26 Miguel de Icaza <miguel@novell.com>
12258 * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
12259 boolean parameter and instead pass the information on `options'
12260 parameter (FileOptions).
12262 * icall.c: Register the new signature for MonoIO.Open.
12264 * debug-helpers.c (dis_one): Trying to understand how coverity
12265 works. Fix Run 5, item 78.
12267 2006-04-26 Dick Porter <dick@ximian.com>
12269 * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
12272 2006-04-25 Martin Baulig <martin@ximian.com>
12274 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
12276 * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
12277 debugger_thread_created().
12278 (debugger_gc_push_all_stacks): Don't handle the main thread in any
12280 (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
12281 (mono_debugger_finalize_threads): New function; undo the effects
12282 of mono_debugger_init_threads().
12283 (mono_debugger_create_all_threads): Removed.
12285 2006-04-24 Zoltan Varga <vargaz@gmail.com>
12287 * image.c (mono_image_close): Tidy up trace messages.
12289 * assembly.c (mono_assembly_close): Ditto.
12291 * assembly.c (mono_assembly_close): Clear out image->assembly so the image
12292 no longer references an already freed assembly. Fixes #78168.
12294 2006-04-21 Dick Porter <dick@ximian.com>
12296 * threads.c (mono_thread_detach): Fix reference counting when
12299 2006-04-21 Zoltan Varga <vargaz@gmail.com>
12301 * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
12304 2006-04-19 Zoltan Varga <vargaz@gmail.com>
12306 * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
12307 (mono_type_to_stind): Ditto.
12309 * marshal.c: Use the new helper functions to simplify code.
12311 * image.c (mono_image_close): Add some code for help debug assembly unloading
12314 * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
12317 * assembly.c (mono_assembly_open_full): Invoke the load hook when the
12318 assembly was already loaded in another appdomain. Fixes #78083.
12320 2006-04-13 Zoltan Varga <vargaz@gmail.com>
12322 * assembly.c (mono_assembly_load_reference): Increase the refcount of the
12323 referenced assemblies.
12324 (mono_assembly_close): Decrease the refcount of the referenced assemblies.
12326 * domain.c (mono_domain_free): Add a trace message.
12328 * appdomain.c (add_assemblies_to_domain): Ditto.
12330 * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
12333 2006-04-12 Zoltan Varga <vargaz@gmail.com>
12335 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
12337 2006-04-12 Martin Baulig <martin@ximian.com>
12339 * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
12340 `USE_INCLUDED_LIBGC'.
12342 2006-04-12 Zoltan Varga <vargaz@gmail.com>
12344 * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
12345 the patch contains ../ and a small directory name later. Hopefully fixes
12348 2006-04-10 Martin Baulig <martin@ximian.com>
12350 Clean up the debugger's thread-handling code.
12352 The debugger's thread-handling code has been moved from
12353 ../mini/debug-debugger.c to threads.c. We now iterate directly
12354 over the `threads' hash, keep track of exiting threads and also
12355 use proper locking.
12357 We can now debug XSP and XSP based applications with the debugger.
12359 * object-internals.h (MonoThread): Added `gpointer end_stack'.
12362 (MonoThreadCallbacks): Removed; this was only used by the debugger.
12363 (mono_install_thread_callbacks): Likewise.
12365 * threads.c (mono_thread_callbacks): Removed.
12366 (debugger_thread_created, debugger_thread_exited): New static functions.
12367 (start_wrapper): Call debugger_thread_created().
12368 (thread_cleanup): Call debugger_thread_exited().
12369 (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
12370 (mono_debugger_init_threads): New public function.
12371 (debugger_thread_vtable): Moved here from debug-debugger.c; we now
12372 iterate directly over the `threads' hash and also use proper locking.
12374 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
12376 * mono-debug-debugger.h
12377 (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
12379 2006-04-10 Zoltan Varga <vargaz@gmail.com>
12381 * reflection.c (encode_cattr_value): Fix handling of parameter type=object,
12382 argument type=array. Fixes #78057.
12384 2006-04-10 Atsushi Enomoto <atsushi@ximian.com>
12386 * culture-info-table.h : regenerated. Fixed bug #69652.
12388 2006-04-07 Zoltan Varga <vargaz@gmail.com>
12390 * loader.c metadata.c: Reapply a variant r59116.
12392 * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
12394 * class.c (mono_class_setup_interface_offsets): New internal function.
12396 * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
12397 interfaces too. Fixes #77398.
12399 * reflection.c (encode_cattr_value): Add support for
12400 parameter type=object, argument type=array.
12401 (load_cattr_value): Ditto. Fixes #77916.
12403 * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
12404 (emit_ptr_to_object_conv): Ditto. Fixes #77960.
12406 * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
12407 a byval char array and CharSet is Ansi.
12409 * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
12411 2006-04-06 Zoltan Varga <vargaz@gmail.com>
12413 * metadata.c: Add some locking comments.
12415 * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
12417 (mono_metadata_free_method_signature): Don't free the signature itself.
12419 * loader.c (mono_free_method): Don't free the signature in non-dynamic methods.
12421 * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
12422 reference the same MonoImage.
12423 (mono_assembly_load_from_full): Add an assert.
12425 2006-04-05 Zoltan Varga <vargaz@gmail.com>
12427 * image.c (mono_image_close): Don't put the image we are about to free into the
12428 loaded_images_guid_hash.
12430 * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
12431 to reduce code duplication.
12433 * marshal.c: Register the native functions called by this module as icalls, to
12434 somewhat centralize the creation of MonoMethodSignature's.
12436 * loader.c (mono_method_signature): Add a cache for method signatures.
12438 * metadata.c (mono_metadata_get_param_attrs): New helper function to return
12439 the parameter attributes of a method.
12440 (mono_metadata_parse_method_signature_full): Refactored the computation of
12441 parameter attributes into a separate function. Also avoid one allocation in
12444 * assembly.c (mono_assembly_close): Ditto.
12446 * image.c (mono_image_close): Log trace messages with INFO level.
12448 * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
12450 * image.c reflection.c: Correct reference counting of image modules.
12452 * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
12453 of this function from the image mempool.
12455 (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
12456 to allow more cached types to be used.
12458 * mono-debug.c (mono_debug_add_method): Appled patch from
12459 David S. Miller <davem@sunset.davemloft.net>: Access
12460 minfo->lexical_blocks[] entry elements using read32().
12462 2006-04-04 Zoltan Varga <vargaz@gmail.com>
12464 * loader.c (mono_free_method): No longer free the method header for non-dynamic
12465 methods as it is allocated from the mempool.
12467 * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
12470 * metadata-internals.h: Add comments describing the reference counting scheme
12471 used for MonoImage and MonoAssembly.
12473 * image.c assembly.c reflection.c: Rework reference counting of images and
12474 assemblies so they are freed when the runtime is shut down. Free some
12475 additional memory structures when an image is unloaded.
12477 2006-04-03 Zoltan Varga <vargaz@gmail.com>
12479 * class.c loader.c reflection.c: Allocate more data structures in
12482 2006-03-31 Miguel de Icaza <miguel@novell.com>
12485 (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
12486 build on pre glib 2.4 systems.
12488 2006-03-31 Zoltan Varga <vargaz@gmail.com>
12490 * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
12492 * icall.c: Fix some warnings.
12494 2006-03-29 Atsushi Enomoto <atsushi@ximian.com>
12496 * culture-info-table.h : regenerated.
12498 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
12500 * threads.c, object-internals.h, verify.c: changed the culture caching
12501 code to use a normal MonoArray for storage so the GC can keep track of
12502 them easily. Fixed bits of the cache logic, too and simplified the
12505 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
12507 * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
12508 thread for non-Boehm GCs.
12510 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
12512 * domain.c, object.c, domain-internals.h: reduce the amount of memory
12513 needed to keep track of the data for static fields.
12515 2006-03-29 Raja R Harinath <rharinath@novell.com>
12518 * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
12519 for interface classes. Use 'num_methods' instead.
12520 (ves_icall_Type_GetPropertiesByName): Likewise. Setup vtable
12521 before using '->vtable_size' field.
12523 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
12525 * domain.c, object.c, domain-internals.h: proxy_vtable_hash
12526 doesn't contain managed pointers, so use a normal hashtable.
12528 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
12530 * reflection.c, class-internals.h, domain.c: fixed handling of types
12531 used as values for objects in custom attributes (bug #77915):
12533 2006-03-24 Martin Baulig <martin@ximian.com>
12535 * class.c (mono_class_setup_fields): Added support for generic
12536 instances; fixes #77580.
12538 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12540 * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
12542 2006-03-24 Dick Porter <dick@ximian.com>
12544 * file-io.c (get_file_attributes): More stat macro breakage.
12547 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
12549 * profiler.c: added the file=filename option in the default profiler
12550 to output the profile data to filename.
12552 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12554 * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
12557 2006-03-22 Martin Baulig <martin@ximian.com>
12559 * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
12560 allocated `MonoClassField *' in `fb->handle'.
12562 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
12564 * class.c, image.c, metadata-internals.h: implemented new mechanism to
12565 allocate interface ID to save memory and allow better ID reuse on
12566 appdomain unload. setup_generic_vtable () removal from Martin.
12568 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
12570 * object.h, appdomain.c, domain.c, exception.c, icall.c,
12571 locales.c, marshal.c, object.c, reflection.c, threadpool.c,
12572 threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
12573 write barriers for reference stores with managed objects accessed with
12574 C structures in the runtime and in embedding programs.
12576 2006-03-20 Raja R Harinath <rharinath@novell.com>
12578 * icall.c (ves_icall_Type_GetInterfaces): Avoid using
12579 'interface_id' and 'max_interface_id' fields of MonoClasses
12580 representing open generic types.
12582 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
12584 * object.h, object.c, icall.c: added functions to deal with
12585 storing valuetypes that contain references in managed objects.
12586 * reflection.c, string-icalls.c, threads.c, marshal.c: small
12587 fixes and comments around uses of mono_array_addr ().
12589 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
12591 * object.h, icall.c, monitor.c: object.GetHashCode ()
12592 implementation that supports the moving garbage collector.
12594 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
12596 * icall.c, threads-types.h, threads.c: implemented finalizer for
12597 LocalDataStoreSlot.
12599 2006-03-15 Zoltan Varga <vargaz@gmail.com>
12601 * metadata.c (mono_type_size): Add a fixme.
12602 (mono_type_stack_size): Ditto.
12604 * object-internals.h (MonoReflectionAssemblyBuilder): Added
12605 'type_forwarders' field.
12607 * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
12608 attribute from net 2.0.
12610 * object.c (mono_vtable_get_static_field_data): Moved this to object.c
12613 * class.c (mono_class_setup_fields): Fix a warning.
12615 * class.c (mono_class_from_name): Add support for assemblyref entries
12616 in the EXPORTEDTYPE table.
12618 * reflection.c: Add support for handling type forwarders under net 2.0.
12620 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12622 2006-03-14 Zoltan Varga <vargaz@gmail.com>
12624 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
12625 overwriting entries in ModuleBuild->types, also clean up the code
12626 a little. Fixes #77774.
12628 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
12630 * domain.c, assembly.c, metadata-internals.h, class-internals.h:
12631 load friend assembly info when present.
12633 2006-03-14 Raja R Harinath <rharinath@novell.com>
12635 Fix crasher on gtest-158.cs.
12636 * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
12637 the return value if the MonoClass we want is yet in an
12638 inconsistent state.
12639 * class.c (mono_class_create_from_typedef): Add an comment
12640 explaining an order dependency between mono_class_setup_parent and
12641 mono_class_setup_mono_type.
12643 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
12645 * class.c: documentation updates and events bug fix.
12647 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
12649 * class.c: some cleanup, locking fixes.
12651 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
12653 * class.c: fix the generics code to setup nested
12654 type info to the instantiated type (bug #77770).
12656 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
12658 * marshal.c: fixed a few type correctness issues.
12660 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
12662 * loader.c: the Set/Get/Addrtess array methods should be public.
12664 2006-03-11 Zoltan Varga <vargaz@gmail.com>
12666 * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
12668 * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
12671 2006-03-10 Zoltan Varga <vargaz@gmail.com>
12673 * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
12675 * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
12677 * mempool.c (mono_mempool_alloc): Speed this up a bit.
12678 (mono_mempool_alloc0): Ditto.
12680 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12683 (create_object_from_sockaddr): it was allocating 4 extra bytes
12684 for the AF_UNIX data. Fixes bug #77747.
12686 2006-03-09 Zoltan Varga <vargaz@gmail.com>
12688 * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
12690 2006-03-09 Dick Porter <dick@ximian.com>
12692 * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
12693 Fixes bug 76966 again.
12695 2006-03-07 Peter Dennis Bartok <pbartok@novell.com>
12697 * verify.c (dtfinfo_fields): Updated to match new (serializable) field
12699 * appdomain.c: Bumped corlib version to 48 (due to r57532)
12701 2006-03-07 Martin Baulig <martin@ximian.com>
12704 (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
12706 2006-03-07 Martin Baulig <martin@ximian.com>
12709 (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
12710 regression introduced in r56970; see gtest-252.cs.
12712 * loader.c (mono_get_method_constrained): Correctly handle generic
12713 methods; see gtest-253.cs.
12715 2006-03-04 Zoltan Varga <vargaz@gmail.com>
12717 * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
12719 2006-03-04 Martin Baulig <martin@ximian.com>
12721 * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
12722 compute the parent type at runtime, just like we're already doing
12726 (mono_reflection_bind_generic_parameters): Don't compute the
12727 parent type anymore.
12729 * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
12731 2006-03-04 Martin Baulig <martin@ximian.com>
12733 * mono-debug-debugger.h
12734 (mono_debugger_create_notification_function): Allocate memory at
12735 runtime and return a pointer to it.
12737 2006-03-03 Zoltan Varga <vargaz@gmail.com>
12739 * assembly.c: Fix windows build.
12741 * assembly.c: Fix build.
12743 * assembly.c: Move the contents of os/{unix,win32}/util.c to this file.
12745 * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
12747 2006-03-03 Dick Porter <dick@ximian.com>
12750 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
12751 Check parameters before dereferencing them. Fixes Aaron's part of
12754 2006-03-03 Raja R Harinath <rharinath@novell.com>
12756 Fix performance regression.
12757 * loader.c (find_method_in_class): Add 'from_class' argument.
12758 Rename 'klass' argument to 'in_class'. The signature is compared
12759 against the method in 'in_class', and the corresponding method is
12760 returned from 'from_class'.
12761 (find_method): Walk both 'in_class' and 'from_class' in parallel.
12762 (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
12763 type definition and generic instantiation in parallel.
12764 (mono_get_method_constrained): Update to changes.
12766 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
12768 * threads.c: make sure the domain is correct, too when doing
12769 mono_thread_attach ().
12771 2006-03-01 Zoltan Varga <vargaz@gmail.com>
12773 * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
12774 windows. Fixes #77683.
12776 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
12778 * object.h, *: introduced specific way to set elements of an array
12779 of references to be used as write barrier. Still need to audit the
12780 uses of mono_array_addr.
12782 2006-03-01 Miguel de Icaza <miguel@novell.com>
12784 * object-internals.h: New field to cache the assmebly name, patch
12785 from Tambet Ingo (tambet@ximian.com)
12787 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
12789 * decimal.h, class-internals.h, metadata-internals.h,
12790 file-io.h: mark a few function declarations as internal, to
12791 reduce the number of PLT entries.
12793 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12795 * file-io.c: fix typo in warning message.
12797 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
12799 * loader.c: on unix, lookup the "*A" version of a function
12800 if charset is auto as a second option before failing.
12802 2006-02-28 Raja R Harinath <rharinath@novell.com>
12804 * class.h (mono_class_inflate_generic_method): Revert to two
12806 * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
12807 (mono_class_inflate_generic_method_full): Add.
12808 * class.c (mono_class_inflate_generic_method_full): Rename from
12809 'mono_class_inflate_generic_method'. Don't set 'inflated' field.
12810 (mono_class_inflate_generic_method): New. Wrapper around ..._full.
12811 * loader.c, reflection.c: Update to changes.
12813 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
12815 * icall.c: const fixes and small improvements.
12817 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12819 * threadpool.c: for asynchronous connect(), enable the same workaround
12820 for BSD 6 as for the Mac. Fixes bug #77637.
12822 2006-02-24 Zoltan Varga <vargaz@gmail.com>
12824 * marshal.c (mono_marshal_free_asany): Fix handling of blittable
12825 formatted classes. Fixes #77524.
12827 2006-02-24 Raja R Harinath <rharinath@novell.com>
12829 * class.c (inflate_generic_type): Add a couple more
12830 micro-optimizations.
12831 (inflate_generic_context): Don't use the 'gmethod' from
12833 (mono_class_inflate_generic_method): If the method has generic
12834 parameters, but the passed-in context doesn't have a 'gmethod',
12835 create one. Use the possibly simplified generic instantiation
12836 from the declaring class instead of the one passed in.
12838 2006-02-24 Raja R Harinath <harinath@gmail.com>
12840 Make generic method signature and method header handling lazy.
12841 * class.c (mono_class_inflate_generic_signature): Move to loader.c.
12842 (inflate_generic_header): Likewise.
12843 (mono_class_inflate_generic_method): Rewrite. Add a 'klass_hint'
12844 parameter to avoid inflating types.
12845 (mono_get_inflated_method): Empty out.
12846 * class.h (mono_class_inflate_generic_method): Update to changes.
12847 * loader.c (mono_get_method_from_token): Don't parse signature for
12848 generic methods, nor methods of generic classes.
12849 (mono_method_signature): Rename from 'mono_method_signature'.
12850 Inflate signature on demand.
12851 (mono_method_get_header): Inflate method header on demand.
12852 * reflection.c: Update to changes.
12854 2006-02-23 Raja R Harinath <rharinath@novell.com>
12856 * metadata.c (mono_metadata_inflate_generic_inst): If the
12857 instantiation is closed, don't bother expanding it in the new
12859 * class.c (inflate_generic_class): If the generic instantiation
12860 doesn't change after inflation, return the argument itself.
12861 (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
12863 (inflate_generic_context): If neither the generic class nor the
12864 generic method instantiations change, return the original context.
12865 * reflection.c (mono_method_get_object): Do
12866 'mono_get_inflated_method' before accessing the ->klass field.
12867 (inflate_mono_method): Don't create a MonoGenericMethod unless
12869 (inflate_method): Don't pass a constructed type as the declaring
12870 type of a methodbuilder.
12872 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
12874 * object.c: fix memory overwrite.
12876 2006-02-22 Dick Porter <dick@ximian.com>
12878 * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
12879 it doesn't work any more.
12880 (mono_threads_request_thread_dump): Fix unused variable warnings.
12882 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
12884 * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
12885 mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
12886 the public header file.
12888 2006-02-21 Zoltan Varga <vargaz@gmail.com>
12890 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
12892 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
12894 * class-internals.h, object.c: reduce the size of MonoVTable
12895 and store the interface_offsets array at negative offsets.
12897 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
12899 * metadata.c: tweak table descriptors data structures to reduce
12900 size and runtime relocations.
12902 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
12904 * marshal.c: fix some types and opcodes to be type-safe
12905 in marshaling wrappers.
12907 2006-02-21 Ankit Jain <jankit@novell.com>
12909 * metadata.h (mono_metadata_decode_signed_value): Add declaration.
12911 2006-02-21 Raja R Harinath <rharinath@novell.com>
12913 * metadata.c (get_constraints): Relax debugging checks for monodis.
12915 2006-02-21 Ankit Jain <jankit@novell.com>
12917 * metadata.c (mono_metadata_load_generic_params): Move the code
12918 checking for ambiguous generic params from here to mono/dis/get.c
12919 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
12921 2006-02-21 Raja R Harinath <harinath@gmail.com>
12923 Fix assertion triggered when compiling nemerle.
12924 * class.c (mono_get_shared_generic_inst): Rename from
12925 get_shared_inst and make non-static.
12926 * loader.c (mono_get_shared_generic_method): New. Used to create
12927 the MonoGenericContext-equivalent of a MonoGenericContainer.
12928 (mono_get_method_from_token): Initialize the 'context' field of
12929 the created MonoGenericContainer.
12930 * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
12931 * metadata.c (get_constraints): Add sanity check.
12932 * class-internals.h: Add new internal methods.
12934 * reflection.c (verify_safe_for_managed_space): New sanity check.
12935 Currently checks that owner-less generic parameters aren't allowed
12937 (mono_type_get_object): Use it.
12938 * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
12939 that are now in mono_type_get_object.
12940 (ves_icall_MonoMethod_GetGenericArguments): Likewise.
12942 2006-02-19 Raja R Harinath <harinath@gmail.com>
12944 * metadata.c (mono_type_create_from_typespec): Rename from
12945 mono_type_create_from_typespec_full. Remove MonoGenericContainer*
12946 argument and caching of types in the generic container.
12947 (unwrap_arrays, find_generic_param): Remove.
12948 * metadata-internals.h: Update.
12949 * class-internals.h (_MonoGenericContainer): Remove 'types' field.
12951 2006-02-18 Zoltan Varga <vargaz@gmail.com>
12953 * class.c (mono_class_get_exception_for_failure): Fix a warning.
12955 * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
12956 return values. Fixes #77581.
12958 * class.c (mono_fnptr_class_get): Switch name and name_space.
12960 * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
12961 classes and add support for [In, Out] attributes.
12962 (mono_marshal_free_asany): Ditto. Fixes #77524.
12964 2006-02-18 Raja R Harinath <harinath@gmail.com>
12966 * class.c (mono_class_from_generic_parameter): Make more robust to
12967 incomplete MonoGenericContainers from monodis.
12969 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
12971 * class-internals.h: added some more exception types.
12972 * class.c, metadata.c: added a few checks to handle missing
12975 2006-02-17 Raja R Harinath <rharinath@novell.com>
12977 Use owner-less generic-params some more.
12978 * class.c (my_mono_class_from_generic_parameter): Remove.
12979 (mono_class_from_generic_parameter): Handle null image,
12980 param->name and param->owner.
12981 (mono_class_from_mono_type): Update.
12982 (mono_class_create_from_typespec): Remove 'container' parameter.
12983 If that parameter is non-null, the result is always inflated by
12984 'mono_class_get_full' anyway.
12985 (mono_class_get): Rename from _mono_class_get. Remove 'container'
12987 (mono_class_get_full): Update.
12989 * class.c (inflate_generic_type) [GENERICINST]: If the generic
12990 instance is not open, don't bother inflating.
12991 (mono_class_setup_fields): Hoist some loop-invariants. Don't
12992 parse metadata for inflated classes.
12993 (_mono_class_get): Change GenericContext* parameter to
12995 (mono_class_create_from_typespec): Likewise. Simplify, and
12996 implement trivially. All the cases are handled in
12997 mono_class_from_mono_type. Don't inflate returned class.
12998 (mono_class_get_full): Delegate GENERICINST optimization to
12999 inflate_generic_type.
13000 (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
13002 2006-02-16 Dick Porter <dick@ximian.com>
13004 * socket-io.c (create_object_from_sockaddr): Fix typo.
13005 (create_sockaddr_from_object): Check array lengths before
13006 potentially accessing items off the end.
13007 (ves_icall_System_Net_Sockets_Socket_Receive_internal)
13008 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
13009 (ves_icall_System_Net_Sockets_Socket_Send_internal)
13010 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
13011 length checks to avoid wraparound overflows.
13012 (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
13013 contents of the array of sockets
13014 (hostent_to_IPHostEntry2)
13015 (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
13016 Check return value of inet_ntop ().
13017 (addrinfo_to_IPHostEntry): Fix typo
13019 2006-02-16 Raja R Harinath <rharinath@novell.com>
13021 Type metadata parsing doesn't use generic-instantiation information.
13022 * metadata.c (mono_metadata_parse_array_full): Change
13023 MonoGenericContext* parameter to MonoGenericContainer*.
13024 (mono_metadata_parse_type_full): Likewise.
13025 (mono_type_create_from_typespec_full): Likewise.
13026 (mono_metadata_parse_mh_full): Likewise.
13027 (mono_metadata_parse_generic_inst): Likewise.
13028 (do_mono_metadata_parse_generic_class): Likewise.
13029 (do_mono_metadata_parse_type): Likewise.
13030 * metadata-internals.h: Update to changes.
13031 * class.c (mono_class_find_enum_basetype): Likewise.
13032 (mono_class_setup_fields): Likewise.
13033 (mono_class_create_from_typespec): Likewise.
13034 * loader.c (method_from_methodspec): Likewise.
13035 (mono_get_method_from_token): Likewise.
13036 (mono_method_get_header): Likewise.
13038 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
13040 * marshal.c: handle additional GENERICINST case (patch from
13041 Thong Nguyen <tum@veridicus.com>).
13042 Fix a few cases where LDIND_I/STIND_I was used for references.
13044 2006-02-16 Raja R Harinath <rharinath@novell.com>
13046 * reflection.c (mono_reflection_get_token): Remove unused variable.
13048 2006-02-16 Martin Baulig <martin@ximian.com>
13050 * reflection.c (mono_reflection_get_token): Add support for fields
13051 in instantiated generic types.
13054 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
13056 2006-02-15 Martin Baulig <martin@ximian.com>
13059 (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
13060 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
13061 (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
13062 (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
13064 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
13066 * class.c, metadata.c, metadata.h, object.c, icall.c,
13067 marshal.c: changed mono_type_get_underlying_type () to do
13068 the sensible thing and introduced mono_type_generic_inst_is_valuetype().
13069 Fixed handling of instantiated generic valuetypes (bug #75479).
13071 2006-02-15 Raja R Harinath <rharinath@novell.com>
13073 * metadata.c (mono_metadata_decode_signed_value): Simplify.
13074 Delegate to mono_metadata_decode_value, and work on the returned value.
13076 * icall.c (ves_icall_MonoType_GetGenericArguments):
13077 Add consistency check here too.
13079 2006-02-15 Ankit Jain <jankit@novell.com>
13081 * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
13084 2006-02-15 Ankit Jain <jankit@novell.com>
13086 * metadata.c (mono_metadata_decode_signed_value): New function to decode
13087 signed values, used only for representing lower bounds of arrays.
13088 (mono_metadata_parse_array_full): Use new
13089 mono_metadata_decode_signed_value to decode lower bounds.
13091 2006-02-14 Martin Baulig <martin@ximian.com>
13094 (mono_reflection_get_token): Support "MonoGenericMethod" and
13095 "MonoGenericCMethod" and allow generic instances / methods.
13097 2006-02-11 Zoltan Varga <vargaz@gmail.com>
13099 * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
13100 to obtain the terminal size using an ioctl.
13102 * object.c (mono_nullable_init): Revert this as nullable reference
13103 types are not valid.
13104 (mono_nullable_box): Ditto.
13106 2006-02-09 Dick Porter <dick@ximian.com>
13108 * threads.c (mono_thread_detach): Drop a reference to the thread
13111 2006-02-09 Zoltan Varga <vargaz@gmail.com>
13113 * object.c (mono_nullable_init): Handle nullable reference types.
13114 (mono_nullable_box): Ditto. Fixes #77446.
13116 2006-02-07 Martin Baulig <martin@ximian.com>
13118 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
13120 2006-02-07 Ankit Jain <jankit@novell.com>
13122 * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
13123 * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
13124 (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
13125 (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
13126 (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
13127 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
13129 2006-02-02 Zoltan Varga <vargaz@gmail.com>
13131 * class.c (mono_class_create_generic): Set type_token as well.
13133 * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
13134 compatible with MS.
13136 2006-02-02 Martin Baulig <martin@ximian.com>
13138 * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
13139 has never been used so far.
13141 2006-02-02 Martin Baulig <martin@ximian.com>
13143 * mono-debug-debugger.h: Changed comment at the top of this file;
13144 the header is not installed, but it's safe to #include it from
13147 * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
13148 * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
13150 2006-02-02 Martin Baulig <martin@ximian.com>
13153 (MonoSymbolTable): Removed the `metadata_info' field.
13156 (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
13158 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
13159 (mono_debugger_add_builtin_types): Removed.
13160 (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
13161 (mono_debugger_create_notification_function): We now operate on a
13162 pre-allocated area; take a `gpointer' and return `void'.
13164 * mono-debug-debugger.c
13165 (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
13166 (mono_debugger_add_builtin_types): Removed.
13168 2006-02-02 Martin Baulig <martin@ximian.com>
13170 * threads.c (mono_debugger_create_all_threads): New public method.
13172 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
13174 * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
13175 breaks on several platforms.
13177 2006-02-01 Sebastien Pouliot <sebastien@ximian.com>
13179 * assembly.c: the VS.NET build doesn't supply default values for
13180 MONO_ASSEMBLIES and MONO_CFG_DIR.
13182 2006-02-01 Zoltan Varga <vargaz@gmail.com>
13184 * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
13187 * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
13189 * loader.c (method_from_memberref): Fix a warning.
13191 * metadata.c (mono_metadata_load_generic_params): Fix a warning.
13193 * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
13194 with explicit layout. Fixes #77433.
13196 2006-01-31 Zoltan Varga <vargaz@gmail.com>
13198 * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure
13199 max_interface_id is initialized before using it. Fixes #77398.
13200 (ves_icall_Type_GetInterfaces): Ditto.
13202 2006-01-30 Raja R Harinath <rharinath@novell.com>
13204 * metadata.c (mono_metadata_parse_method_signature_full): Don't
13205 allocate memory for parameter attributes when parsing memberref
13207 * loader.c (mono_loader_set_error_method_load): Don't warn.
13208 (method_from_memberref): Ensure MissingMethodException gets thrown
13209 if method is not found. Make warning more informative.
13211 2006-01-29 Raja R Harinath <harinath@gmail.com>
13214 * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
13215 return true if is byref.
13216 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
13217 (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
13218 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
13220 2006-01-27 Raja R Harinath <rharinath@novell.com>
13222 Fix tests/find-method.2.il
13223 * loader.c (find_method, find_method_in_class): Remove is_inflated
13224 argument. Revert 2006-01-18 change.
13225 (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
13226 is generic, search for method in its generic definition.
13227 * class.c (mono_class_setup_vtable_general): Print generic
13228 arguments of generic types in debugging printf.
13230 2006-01-26 Zoltan Varga <vargaz@gmail.com>
13232 * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
13234 * threads.c (mono_threads_request_thread_dump): New helper function.
13236 2006-01-25 Raja R Harinath <rharinath@novell.com>
13238 * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
13240 2006-01-25 Ankit Jain <jankit@novell.com>
13242 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
13243 move definition to ..
13244 * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
13246 2006-01-25 Ankit Jain <jankit@novell.com>
13247 Raja R Harinath <rharinath@novell.com>
13249 * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
13250 * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
13253 2006-01-25 Martin Baulig <martin@ximian.com>
13255 * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
13256 `MonoDebuggerThread' into debug-debugger.c.
13258 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
13260 * profiler.c: fix printing of data.
13262 2006-01-24 Atsushi Enomoto <atsushi@ximian.com>
13264 * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
13265 invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
13267 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
13269 * object.c: fix deadlock related to string interning.
13271 2006-01-23 Martin Baulig <martin@ximian.com>
13273 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
13275 * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
13277 2006-01-23 Martin Baulig <martin@ximian.com>
13279 * mono-debug.h: Moved the prototypes of some functions which are
13280 used by the JIT here from mono-debug-debugger.h.
13282 2006-01-21 Martin Baulig <martin@ximian.com>
13284 * Makefile.am: Don't install mono-debug-debugger.h.
13286 2006-01-21 Martin Baulig <martin@ximian.com>
13288 * mono-debug-debugger.h: Enforce the private status of this header
13289 file and removed unneccessary #include's in metadata/*.c and mini/*.c.
13290 Moved some stuff from mono-debugger-jit-wrapper.h here.
13292 2006-01-20 Raja R Harinath <rharinath@novell.com>
13294 * class.c (mono_class_from_typeref): Add a sanity test to help
13295 catch lack of assembly load/search hooks.
13297 2006-01-19 Zoltan Varga <vargaz@gmail.com>
13299 * marshal.c (emit_struct_conv): Relax the fields with same offset
13300 check even more. Fixes #77230.
13302 2006-01-18 Martin Baulig <martin@ximian.com>
13304 * loader.c (find_method_in_class): Added `gboolean is_inflated'
13305 argument; if false, we compare the uninstantiated signatures.
13306 (method_from_memberref): Compare the uninstantiated signatures;
13309 2006-01-18 Robert Jordan <robertj@gmx.net>
13311 * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
13312 Clear the weak link. Fixes bug #77170.
13314 * gc.c (mono_gchandle_free):
13315 Reflect *-gc.c changes (tiny optimization).
13317 2006-01-18 Zoltan Varga <vargaz@gmail.com>
13319 * metadata.c (mono_metadata_signature_dup): Applied patch from
13320 Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
13323 2006-01-17 Zoltan Varga <vargaz@gmail.com>
13325 * marshal.c (emit_struct_conv): Allow fields with the same offset when
13326 marshalling from native to managed code. Fixes #77230.
13328 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13330 * threadpool.c: fix problem (Mac only) when more than one asynchronous
13331 connect. Fixes bug #77020.
13333 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
13335 * class.c: fixed id assignement for nested interfaces (bug #77275).
13336 Added also better info for --print-vtable debugging.
13338 2006-01-12 Martin Baulig <martin@ximian.com>
13340 * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
13341 interfaces on-the-fly; fixes #76625.
13343 * class-internals.h
13344 (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
13345 don't need that anymore.
13347 2006-01-12 Miguel de Icaza <miguel@novell.com>
13350 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
13351 To avoid initing the nested_classes when not needed I turned the
13352 PeerCredData as a toplevel internal class, as it has to be shared
13355 Fixes the CASA issue.
13357 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
13359 * domain.c: Accessors for MonoJitInfo
13361 * profiler-private.h: Add jitinfo to the end jit hook
13363 * profiler.[ch]: Define new hooks, called after jitting which give
13364 the MonoJitInfo that was compiled
13366 2006-01-10 Martin Baulig <martin@ximian.com>
13368 * class.c (mono_class_setup_events): Add support for generic
13369 classes; fixes #76440.
13371 2006-01-06 Raja R Harinath <rharinath@novell.com>
13374 * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
13375 on passed-in method.
13377 2006-01-03 Zoltan Varga <vargaz@gmail.com>
13379 * object.c (mono_runtime_invoke_array): Add Nullable support.
13381 * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
13383 2006-01-03 Sebastien Pouliot <sebastien@ximian.com>
13385 * file-io.c: Don't consider sockets as directory and avoid an endless
13386 loop. Fix bug #76966.
13388 2006-01-03 Zoltan Varga <vargaz@gmail.com>
13390 * object.c (mono_nullable_init): New helper function.
13391 (mono_nullable_box): Ditto.
13393 * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
13395 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
13397 * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
13399 2006-01-02 Zoltan Varga <vargaz@gmail.com>
13401 * class.c (mono_class_is_assignable_from): Make T assignable to
13404 2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
13406 * appdomain.c: Bump corlib version to 46.
13407 * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
13408 serialization purpose) and changed ves_icall_System_Reflection_
13409 Assembly_get_code_base signature to accept a boolean (to escape, or
13410 not, the assembly code base).
13412 2005-12-23 Dick Porter <dick@ximian.com>
13416 * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
13417 CreateEvent icall now returns "created" boolean parameter.
13419 2005-12-22 Zoltan Varga <vargaz@gmail.com>
13421 * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
13424 * reflection.c (mono_custom_attrs_construct_by_type): Handle the case
13425 when attr_klass is an interface. Fixes #77045.
13427 2005-12-20 Zoltan Varga <vargaz@gmail.com>
13429 * marshal.c (emit_struct_conv): Fix previous patch.
13431 * marshal.c (emit_struct_conv): Add a check for fields with the same
13434 2005-12-20 Raja R Harinath <rharinath@novell.com>
13436 Fix regression in Mono.C5.
13437 * class.c (mono_class_create_generic): If 'klass' is an interface
13438 set up the interface offsets.
13439 (mono_class_is_assignable_from): Don't throw away generic arguments.
13441 2005-12-19 Raja R Harinath <rharinath@novell.com>
13443 * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
13446 2005-12-15 Raja R Harinath <rharinath@novell.com>
13448 * metadata.c (mono_metadata_parse_method_signature_full): Remove a
13450 (do_mono_metadata_parse_generic_class): Don't pass the current
13451 generic context when parsing the type being instantiated: it
13452 cannot use it, anyway.
13454 * loader.c (method_from_memberref): Don't inflate a signature if
13455 it doesn't contain any type parameters.
13457 2005-12-15 Zoltan Varga <vargaz@gmail.com>
13459 * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
13461 2005-12-14 Martin Baulig <martin@ximian.com>
13464 (mono_type_get_name_recurse): Don't return null for type
13465 parameters and open generic classes.
13466 (mono_class_setup_methods): Don't exclude generic instances.
13467 (mono_get_unique_iid): Use different IDs for different
13468 instantiations of the same generic type.
13469 (mono_class_setup_vtable): Only use setup_generic_vtable() for
13470 open generic instances; create a normal vtable for closed generic
13472 (mono_class_setup_vtable_general): We're now also called for
13473 closed generic instances.
13476 (mono_reflection_bind_generic_parameters): Correctly use
13477 mono_metadata_lookup_generic_inst() everywhere.
13479 2005-12-14 Zoltan Varga <vargaz@gmail.com>
13481 * object.c (mono_class_create_runtime_vtable): Call
13482 mono_class_setup_vtable ().
13484 * reflection.c (mono_reflection_get_dynamic_overrides): New helper
13486 (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
13489 * loader.c (mono_loader_set_error_type_load): Print the type load
13490 warnings to the console so they are more visible to the user.
13491 (mono_loader_set_error_method_load): Ditto.
13493 * reflection.c (ensure_runtime_vtable): Revert the last change as it
13496 * reflection.c (ensure_runtime_vtable): Fix build.
13498 * reflection.c (ensure_runtime_vtable): Disable an optimization which
13499 doesn't work in all cases.
13501 2005-12-13 Zoltan Varga <vargaz@gmail.com>
13503 * object.c (mono_array_new_full): Treat a single dimensional array
13504 with 0 lower bounds as an szarray. Fixes #76973.
13506 * reflection.c (custom_attr_visible): Really fix this.
13508 2005-12-12 Zoltan Varga <vargaz@gmail.com>
13510 * reflection.c (custom_attr_visible): Allow nested public attributes
13513 * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
13516 2005-12-12 Raja R Harinath <harinath@gmail.com>
13518 * class.c (set_generic_param_owner): Delete.
13519 (mono_class_create_from_typedef): Don't set ->owner field of
13520 generic parameters to "param containers" of enclosing classes.
13521 * reflection.c (mono_reflection_initialize_generic_parameter):
13524 2005-12-11 Zoltan Varga <vargaz@gmail.com>
13526 * reflection.c (custom_attr_visible): Fix build.
13528 2005-12-10 Zoltan Varga <vargaz@gmail.com>
13530 * reflection.c (mono_custom_attrs_from_builders): Avoid returning
13531 private attributes.
13533 * reflection.c (reflection_methodbuilder_to_mono_method): Fix
13534 handling of null parameter defaults.
13536 2005-12-09 Raja R Harinath <rharinath@novell.com>
13538 * class.c (mono_class_from_generic_parameter): Don't set
13539 klass->generic_container.
13540 (my_mono_class_from_generic_parameter): Likewise.
13542 2005-12-07 Zoltan Varga <vargaz@gmail.com>
13544 * reflection.c (load_public_key): Fix a warning.
13545 (method_encode_code): Fix unaligned accesses.
13547 2005-12-07 Martin Baulig <martin@ximian.com>
13549 * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
13552 (write_generic_param_entry): Encode our custom attrs.
13554 * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
13556 2005-12-07 Martin Baulig <martin@ximian.com>
13558 * reflection.c (encode_new_constraint): Removed; we don't use the
13559 `NewConstraintAttribute' anymore.
13561 2005-12-06 Zoltan Varga <vargaz@gmail.com>
13563 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
13564 not fire a TypeResolve event when Assembly.GetType () is called.
13566 2005-12-05 Ben Maurer <bmaurer@ximian.com>
13568 Beginning of support for nullable types in the runtime. Parts of
13569 this patch are from Martin.
13571 * appdomain.c (MONO_CORLIB_VERSION): Bump
13573 * domain.c (mono_init_internal): get the nullable type
13575 * class.c (mono_class_is_nullable): New method
13576 (mono_class_get_nullable_param): New mehod
13577 (mono_class_create_generic): In types T? set cast_class to T
13579 * class-internals.h (MonoDefaults): new nullable default class
13580 (mono_class_get_nullable_param, mono_class_get_nullable_param):
13583 2005-12-05 Raja R Harinath <rharinath@novell.com>
13585 * metadata.c (select_container): New. Refactor code to select the
13586 appropriate GenericContainer given the type of generic parameter
13587 we are looking for.
13588 (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
13589 not a MonoGenericContext. Use select_container. Update parameters.
13590 (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
13591 and MONO_TYPE_MVAR.
13592 (unwrap_arrays): Remove duplicate tests.
13593 (find_generic_param): Rename from 'has_same_context'. Now walks a
13594 generic instantiated class to find any arguments that are generic
13596 (mono_type_create_from_typespec_full): Use find_generic_param to
13597 avoid evicting some generic instantiations from the typespec
13600 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
13602 * reflection.c: fixed writing of doubles on ARM FPA.
13604 2005-12-02 Robert Jordan <robertj@gmx.net>
13606 * icall.c: Fixed EventInfo.ReflectedType (#76829).
13608 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13610 * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
13611 least on SUSE 10 they are not the same (on debian, they are just the
13614 2005-12-01 Raja R Harinath <rharinath@novell.com>
13616 * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
13617 DeclaringType for VARs and MVARs.
13618 * class.c (set_generic_param_owner): Fix initialization of owner
13621 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
13623 * icall.c: fixed Enum.ToObject() to correctly convert the values.
13625 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13627 * threadpool.c: workaround for a bug that shows up on the Mac:
13628 select()+connect() on a blocking socket is not like it should
13629 be, so we proceed to connect() in that case, wasting the I/O
13630 threadpool thread until connect succeedes. Fixes bug #75436.
13632 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13634 * threadpool.c: fix typo when setting file descriptor states.
13636 2005-11-28 Raja R Harinath <rharinath@novell.com>
13638 * class-internals.h (MonoGenericContainer.is_signature): Remove.
13639 * metadata.c (mono_metadata_parse_method_signature_full): Don't
13640 create a temporary signature container.
13641 (mono_metadata_parse_generic_param): Update to changes.
13642 (mono_type_create_from_typespec_full): Update to changes.
13643 * loader.c (method_from_memberref): Don't use a
13644 MonoGenericContainer while parsing a memberref signature.
13645 (method_from_methodspec): Remove dead-store of the 'container'
13646 variable. It's overwritten before use.
13648 * metadata.c (mono_type_create_from_typespec_full): Make debugging
13650 (mono_metadata_parse_generic_param): Likewise.
13651 * loader.c (find_method_in_class): Does not need a
13652 MonoGenericContainer. Use 'mono_method_signature' rather than
13653 'mono_method_signature_full'.
13654 (find_method, mono_get_method_constrained, method_from_memberref):
13657 * metadata.c (mono_type_create_from_typespec_full): Ensure that
13658 owner-less generic-parameters are never evicted from the typespec
13661 * loader.c (method_from_memberref): Don't use the current context
13662 when parsing signatures.
13663 (method_from_methodspec, mono_get_method_from_token): Update to changes.
13665 * metadata.c (do_mono_metadata_parse_generic_class): Avoid
13666 side-effects in g_assert.
13667 * loader.c (mono_get_method_from_token): Resolve klass earlier so
13668 that we don't potentially lose information.
13670 2005-11-26 Dick Porter <dick@ximian.com>
13673 * threads.c: icalls to implement basic (ie, not named)
13674 System.Threading.Semaphore.
13676 2005-11-24 Dick Porter <dick@ximian.com>
13679 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
13680 Use GetProcessId() if it's available.
13682 2005-11-23 Zoltan Varga <vargaz@gmail.com>
13684 * icall.c threads-types.h threads.c: Add Exchange<T> icall.
13686 2005-11-23 Raja R Harinath <rharinath@novell.com>
13687 Ankit Jain <jankit@novell.com>
13689 * loader.c (mono_get_method_from_token): Initialize 'method' field
13690 of all generic parameters before parsing the signature. Remove
13691 code that "fixed"-up MVAR references.
13693 2005-11-23 Ankit Jain <jankit@novell.com>
13695 * metadata.c (mono_metadata_has_generic_params):
13696 (mono_metadata_load_generic_param_constraints):
13697 (mono_metadata_load_generic_params): Move duplicate code ...
13698 (mono_metadata_get_generic_param_row): ... here. Returns the
13699 first row-id in GenericParam table for a given owner (token).
13700 * metadata-internals.h (mono_metadata_get_generic_param_row): Add
13703 2005-11-23 Raja R Harinath <rharinath@novell.com>
13704 Ankit Jain <jankit@novell.com>
13706 * metadata.c (mono_metadata_class_equal): Pass signature_only when
13707 comparing VARs too.
13708 * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at
13709 type->data.generic_param only if the type is an MVAR.
13710 (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
13711 leak owner-less VARs and MVARs into managed space.
13713 2005-11-21 Martin Baulig <martin@ximian.com>
13715 * class-internals.h
13716 (MonoMethod): Moved the `generic_container' here from
13717 `MonoMethodNormal' since we now also need it for
13718 `MonoMethodPInvoke';
13719 (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
13720 (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
13721 an union containing both `MonoMethodNormal' and
13722 `MonoMethodPInvoke'.
13725 (mono_get_method_from_token): Allow implementing generic methods
13729 (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
13732 2005-11-17 Dick Porter <dick@ximian.com>
13736 * process.c: Split the Process Start_internal icall into
13737 ShellExecuteEx_internal and CreateProcess_internal, which are
13738 called depending on whether UseShellExecute is true. Fixes bug
13741 * appdomain.c (MONO_CORLIB_VERSION): Incremented
13743 2005-11-17 Zoltan Varga <vargaz@gmail.com>
13745 * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
13746 'msize' parameters, use the information in 'mspec' instead.
13747 (emit_object_to_ptr_conv): Ditto.
13749 * marshal.c (emit_struct_conv): Handle explicit layout structs with
13750 fields out of order. Fixes #76733.
13752 2005-11-17 Ankit Jain <jankit@novell.com>
13754 * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
13756 2005-11-16 Atsushi Enomoto <atsushi@ximian.com>
13758 * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
13761 2005-11-16 Zoltan Varga <vargaz@gmail.com>
13763 * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
13764 for types with non-auto layout. Fixes #76717.
13766 2005-11-16 Ankit Jain <jankit@novell.com>
13768 * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
13769 * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam
13770 if generic_context is null.
13771 (mono_metadata_generic_param_equal): param->owner can be null.
13772 (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
13775 2005-11-16 Zoltan Varga <vargaz@gmail.com>
13777 * reflection.c (create_dynamic_mono_image): Set md_version_minor to
13780 2005-11-15 Martin Baulig <martin@ximian.com>
13782 * object.c (set_value): Use mono_class_from_mono_type() instead of
13783 the hack for generic instances; fixes #76136.
13785 2005-11-15 Zoltan Varga <vargaz@gmail.com>
13787 * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
13790 * image.c (load_metadata_ptrs): Initialize the new fields.
13792 * reflection.c (create_dynamic_mono_image): Ditto.
13794 * reflection.c (build_compressed_metadata): Use the new fields.
13796 * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
13799 * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
13802 2005-11-15 Ankit Jain <jankit@novell.com>
13803 Raja R Harinath <harinath@gmail.com>
13805 * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
13806 * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
13807 new per-generic_container cache if the cached MonoType's context matches
13808 the current context.
13809 (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
13810 to the expected context.
13811 (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
13813 2005-11-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
13815 * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
13816 we changed the signature of an icall.
13817 * icall.c: Modify to mono_double_ParseImpl return true/false
13818 depending on the success, instead of throwing the exception. This will
13819 help us in Double.TryParse methods.
13821 2005-11-14 Zoltan Varga <vargaz@gmail.com>
13823 * marshal.c (emit_marshal_object): Throw an exception when
13824 marshalling 'object' instead of crashing. Fixes #76696.
13826 2005-11-11 Zoltan Varga <vargaz@gmail.com>
13828 * class-internals.h: Add prototype for mono_type_get_full_name ().
13830 2005-11-11 Dick Porter <dick@ximian.com>
13832 * threads.c (mono_thread_manage): Make sure the main thread has
13833 abandoned all its mutexes when cleaning up. Fixes bug 74680.
13835 2005-11-11 Zoltan Varga <vargaz@gmail.com>
13837 * loader.c (mono_loader_set_error_type_load): Log a warning to the
13838 console about the missing type.
13839 (mono_loader_set_error_method_load): Ditto.
13841 2005-11-09 Miguel de Icaza <miguel@novell.com>
13843 * mono-config.c (mono_get_config_dir): Set the system defaults if
13846 * assembly.c (mono_set_dirs): New API entry point to set the
13847 assembly and the config directory in one call
13849 2005-11-09 Zoltan Varga <vargaz@gmail.com>
13851 * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
13852 the ftnptr was created from a delegate in a domain other than the
13853 current domain. Fixes #75377.
13855 * exception.h exception.c: Add mono_get_exception_not_supported ().
13857 2005-11-08 Martin Baulig <martin@ximian.com>
13859 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
13861 2005-11-07 Sebastien Pouliot <sebastien@ximian.com>
13863 * security-manager.h: Added definitions to deal with strongname key
13864 pairs bigger (and smaller) than 1024 bits.
13865 * reflection.c: Remove hardcoded strongname size (128 bytes) and
13866 adjust wrt the public key length being used.
13868 2005-11-03 Atsushi Enomoto <atsushi@ximian.com>
13870 * marshal.c, icall.c : reverted sig->pinvoke changes which broke
13871 Windows build (r51396-51397).
13873 2005-11-03 Martin Baulig <martin@ximian.com>
13875 * class.c (mono_class_setup_vtable_general): Also add generic
13876 methods to the vtable; fixes #76581.
13878 2005-11-01 Miguel de Icaza <miguel@novell.com>
13880 * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
13881 sure that we lookup GetString method from the System.Text.Encoding
13882 class, not the derived class or we get an empty method.
13884 Fixed class #76612.
13886 2005-10-25 Miguel de Icaza <miguel@novell.com>
13888 * assembly.c (mono_assemblies_init): Do not set the Mono root dir
13889 if it has been previously set (embedders).
13891 Make mono_set_rootdir available also on Unix.
13893 005-10-24 Robert Jordan <robertj@gmx.net>
13895 * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
13897 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
13899 * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
13900 only calls which are made to native code use this flag.
13902 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
13904 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
13906 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
13907 Add support for FieldBuilders.
13909 2005-10-29 Martin Baulig <martin@ximian.com>
13912 (mono_debug_using_mono_debugger): New public method; returns
13913 whether we're running inside the debugger.
13915 2005-10-27 Zoltan Varga <vargaz@gmail.com>
13917 * reflection.c (mono_reflection_get_custom_attrs_info): Add support
13918 for Method/Constructor/FieldBuilders.
13920 2005-10-26 Zoltan Varga <vargaz@gmail.com>
13922 * reflection.c (module_add_cattrs): Save custom attributes for global methods
13923 and fields as well.
13925 2005-10-26 Martin Baulig <martin@ximian.com>
13927 * mono-debug-debugger.c
13928 (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
13930 2005-10-24 Raja R Harinath <harinath@gmail.com>
13932 * icall.c (base64_to_byte_array): Don't pass an out-of-range
13933 integer to isspace.
13935 2005-10-21 Zoltan Varga <vargaz@gmail.com>
13937 * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
13938 when passing valuetypes byref. Fixes #76502.
13940 2005-10-19 Jackson Harper <jackson@ximian.com>
13942 * profiler.c: Don't put a . in front of types that are not in a
13945 2005-10-18 Zoltan Varga <vargaz@gmail.com>
13947 * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
13949 2005-10-15 Zoltan Varga <vargaz@freemail.hu>
13951 * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
13953 (mono_marshal_get_ldflda_wrapper): Fix a warning.
13955 2005-10-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
13957 * assembly.c metadata-internals.h icall.c: Define an additional
13958 parameter for mono_assembly_name_parse_full, so we can avoid creating
13959 S.R.AssemblyName.Version when no version info wasn't passed.
13961 2005-10-09 Miguel de Icaza <miguel@novell.com>
13963 * class.c (mono_type_get_full_name): Reimplement method that was
13966 * image.c: Some docs
13968 2005-10-10 Zoltan Varga <vargaz@gmail.com>
13970 * profiler.c (output_newobj_profile): Fix printing of Total memory
13973 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
13975 * profiler.c: Add support for allocations > 2GB. Fixes #74886.
13977 2005-10-08 Gert Driesen <drieseng@users.sourceforge.net>
13979 * threads.c: remove debug output.
13981 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
13983 * threads.c (mono_thread_manage): Fix crashes if more than 64
13984 threads need to be aborted. Hopefully fixes #75899.
13986 * assembly.c (mono_stringify_assembly_name): New helper function.
13988 * class.c: Use mono_stringify_assembly_name instead of the similar
13991 * assembly.h assembly.c: Add support for calling a postload search
13992 hook if an assembly cannot be loaded.
13994 * appdomain.c: Register new search hooks which call the AssemblyResolve
13995 events in AppDomain. Fixes #75231
13997 2005-10-07 Martin Baulig <martin@ximian.com>
13999 * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
14000 methods without debug info.
14002 2005-10-07 Zoltan Varga <vargaz@gmail.com>
14004 * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
14007 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14009 * file-io.c: now that we return symlinks, use lstat and, when the file
14010 is a symbolic link, stat, to get the file attributes. Also avoid the
14011 conversion to/from utf16/external.
14013 2005-10-06 Zoltan Varga <vargaz@gmail.com>
14015 * class.c (mono_class_layout_fields): Compute klass->has_references
14016 correctly if an embedded valuetype is not yet initialized. Fixes
14019 2005-10-04 Martin Baulig <martin@ximian.com>
14022 (mono_metadata_load_generic_param_constraints): New public
14023 function; splitted the constraints loading out from
14024 mono_metadata_load_generic_params().
14026 * class.c (mono_class_create_from_typedef): Call
14027 mono_metadata_load_generic_param_constraints() after setting up
14028 the type and creating our parent; fixes #75329.
14030 2005-10-04 Martin Baulig <martin@ximian.com>
14032 * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
14033 non-dynamic parent classes.
14035 2005-10-04 Atsushi Enomoto <atsushi@ximian.com>
14037 * file-io.c : win32 build fix (ETXTBSY seems not found).
14039 2005-10-04 Martin Baulig <martin@ximian.com>
14042 (mono_image_get_methodspec_token): Make the cache actually work;
14045 2005-10-04 Martin Baulig <martin@ximian.com>
14047 * class.c (mono_class_name_from_token): Removed the unneccessary
14048 `MonoGenericContext *' argument.
14050 2005-10-04 Martin Baulig <martin@ximian.com>
14053 (method_from_methodspec): Make the caching work again; fixes the
14054 performance regression from #76262.
14056 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14060 * icall.c: replace FindFirst/FindNext/FindClose calls with a new
14061 GetFileSystemEntries that performs the same work but without going
14062 into io-layer, locking, etc.
14064 2005-09-30 Zoltan Varga <vargaz@gmail.com>
14066 * threads.c (ves_icall_System_Threading_Thread_Abort): Handle
14067 ThreadState_Stopped as well. Fixes #76047.
14069 2005-09-29 Martin Baulig <martin@ximian.com>
14072 (inflate_generic_context): If the new context has a `gmethod', set
14073 its `container' that that gmethod's `container'.
14076 (mono_metadata_parse_generic_param): Simplify things;
14077 `generic_container = generic_context->container;' is just fine.
14079 * loader.c (method_from_methodspec): Code cleanups.
14081 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
14083 * decimal.c: fix warning (and let gcc generate correct
14084 code on ARM with optimizations).
14086 2005-09-28 Martin Baulig <martin@ximian.com>
14089 (method_from_memberref): Added `MonoGenericContext *class_context'
14090 argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
14091 (method_from_methodspec): If we're a memberref, use the enclosing
14092 context when parsing its parent. Fixes #76262; see gtest-206.cs.
14094 2005-09-28 Martin Baulig <martin@ximian.com>
14096 * object.c (mono_runtime_invoke_array): Added support for
14097 MONO_TYPE_GENERICINST; fixes #75917.
14099 2005-09-27 Martin Baulig <martin@ximian.com>
14101 * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
14102 `k->byval_arg.type' to determine the actual type.
14104 * loader.c (method_from_methodspec): Removed some hacks.
14106 2005-09-27 Ben Maurer <bmaurer@ximian.com>
14108 * class-internals.h (mono_field_is_deleted): Do the test for
14109 rtspecialname before we check the actual name of the field. This
14110 prevents us from dereferencing a pointer into the string table,
14111 saving us from accessing a few pages
14113 * *.c: Replace the use of {Enter,Leave}CriticalSection with
14114 macros. This will allow a deadlock debugger to easily be plugged
14117 2005-09-27 Martin Baulig <martin@ximian.com>
14119 * loader.c (method_from_methodspec): Create a "signature"
14120 MonoGenericContainer and use mono_get_method_full(). Fixes #75584.
14122 2005-09-27 Martin Baulig <martin@ximian.com>
14125 (inflate_generic_class): Correctly set the new context's
14129 (find_method, find_method_in_class): Take a `MonoGenericContainer *'
14130 instead of a `MonoGenericContext *'.
14131 (mono_method_signature_full): Take a `MonoGenericContainer *'
14132 instead of a `MonoGenericContext *'.
14135 (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
14136 instead of a `MonoGenericContext *'.
14137 (mono_metadata_parse_method_signature_full): Likewise.
14139 2005-09-26 Martin Baulig <martin@ximian.com>
14142 (mono_class_from_generic_parameter): Set `klass->generic_container'
14143 (mono_class_from_generic_parameter): Likewise.
14144 (mono_bounded_array_class_get): We inherit the generic container
14145 from the element class.
14148 (find_method, find_method_in_class): Take a `MonoGenericContext *'
14149 argument rather than computing it here.
14150 (method_from_memberref): Correctly set the generic context before
14151 parsing the signature. Fixes #75681.
14153 2005-09-26 Zoltan Varga <vargaz@gmail.com>
14155 * object.c (mono_class_has_special_static_fields): Fix warnings.
14157 2005-09-26 Carlos Alberto Cortez <calberto.cortez@gmail.com>
14159 * assembly.c: Add parse_public_key function, to
14160 par the public keys. Also added mono_assembly_name_parse_full,
14161 to define it the parsed key should be freed or not.
14162 * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
14163 to parse a long format assembly name.
14164 * metadata-internals.h: Keep mono_assembly_name_parse_full as
14165 private, since calling it to preserve the key requires
14166 freeing it manually.
14168 2005-09-26 Atsushi Enomoto <atsushi@ximian.com>
14170 * locales.c : removed HAVE_ICU part.
14172 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
14174 * object.c (mono_class_create_runtime_vtable): Avoid calling
14175 field_is_special_static if the klass has no special static fields.
14177 * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
14178 (MonoCachedClassInfo): Likewise.
14180 * object.c (mono_class_has_special_static_fields): New helper function.
14182 2005-09-23 Zoltan Varga <vargaz@gmail.com>
14184 * class.c (mono_class_create_from_typedef): Don't call
14185 interfaces_from_typedef_full for enums.
14186 (mono_class_create_from_typedef): Compute the base types of enums directly
14187 without calling mono_class_setup_fields ().
14188 (mono_class_find_enum_basetype): New helper function.
14190 * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
14191 one place inside the string heap.
14193 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
14195 * class.c: locking fixes, code cleanups, some docs added.
14196 Allocate some data structures in the image mempool.
14198 2005-09-23 Zoltan Varga <vargaz@gmail.com>
14200 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
14203 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
14205 * class-internals.h, class.c, reflection.c: reduce memory taken by
14208 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
14210 * metadata.c, metadata.h, loader.h: documentation updates, code and
14213 2005-09-23 Zoltan Varga <vargaz@gmail.com>
14215 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
14218 * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
14219 page faults caused by the runtime while reading metadata.
14221 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14223 * socket-io.c: the field names were changed 3 months ago and no one
14224 realized until bug #76077 got filed!
14226 2005-09-20 Martin Baulig <martin@ximian.com>
14228 * icall.c (assembly_icalls): Removed some unused debugger icalls.
14230 2005-09-20 Martin Baulig <martin@ximian.com>
14232 * mono-debug.c (mono_debug_add_type): Ignore array types and don't
14233 write the rank into the class entry.
14235 2005-09-20 Martin Baulig <martin@ximian.com>
14237 * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
14239 2005-09-19 Zoltan Varga <vargaz@gmail.com>
14241 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14243 * icall.c (custom_attrs_defined_internal): New icall.
14245 * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
14247 (mono_custom_attrs_construct_by_type): New helper function.
14249 2005-09-17 Zoltan Varga <vargaz@freemail.hu>
14251 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
14252 terminate the resulting string. Fixes #76123.
14254 2005-09-16 Martin Baulig <martin@ximian.com>
14257 (mono_debug_add_method): Ignore inflated methods for the moment.
14259 2005-09-14 Martin Baulig <martin@ximian.com>
14261 * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
14263 2005-09-13 Zoltan Varga <vargaz@gmail.com>
14265 * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
14266 return a success/failure indication.
14267 (mono_metadata_interfaces_from_typedef_full): Ditto.
14268 (get_constraints): Ditto.
14270 2005-09-12 Zoltan Varga <vargaz@gmail.com>
14272 * marshal.c (emit_marshal_array): Fix handling of null arrays.
14274 * marshal.c (emit_marshal_array): Add support for returning string
14275 arrays from delegates. Fixes #76063.
14277 * marshal.c: Use the emit_ldloc/stloc macros where possible.
14279 2005-09-11 Zoltan Varga <vargaz@gmail.com>
14281 * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
14284 2005-09-09 Zoltan Varga <vargaz@gmail.com>
14286 * reflection.c icall.c: Fix after mono_get_exception_type_load
14289 * assembly.c (mono_assembly_get_assemblyref): New helper function.
14290 (mono_assembly_load_reference): Use the new helper.
14292 * class-internals.h (MonoLoaderError): New structure containing
14293 information about type loading errors.
14295 * class-internals.h loader.c: Add APIs to store per-thread loader
14298 * loader.c class.c: Set the loader error if needed.
14300 * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
14302 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
14304 * decimal.c: fixed to handle the broken ARM fp format.
14306 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
14308 * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
14311 2005-09-06 Martin Baulig <martin@ximian.com>
14313 * domain.c (supported_runtimes): Added v2.0.50727.
14315 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
14317 * culture-info.h: reduce the size of some structures.
14319 2005-09-05 Martin Baulig <martin@ximian.com>
14321 Reflect latest API changes in the August CTP.
14324 ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
14325 ("MonoType.HasGenericArguments"): Removed.
14326 ("MonoMethod.BindGenericParameters"): Renamed to
14327 "MakeGenericMethod".
14328 ("MethodBuilder.BindGenericParameters"): Renamed to
14329 "MakeGenericMethod".
14331 2005-09-05 Martin Baulig <martin@ximian.com>
14333 * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
14335 2005-09-05 Martin Baulig <martin@ximian.com>
14337 Applying a patch from Michal Moskal <malekith@nemerle.org>.
14339 * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
14340 generic_container is non-NULL.
14342 2005-09-05 Martin Baulig <martin@ximian.com>
14344 Applying a patch from Michal Moskal <malekith@nemerle.org>.
14346 * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
14348 2005-08-29 Michal Moskal <malekith@nemerle.org>
14350 * reflection.c (encode_locals,
14351 mono_reflection_sighelper_get_signature_local): Increase buffer sizes
14352 for large generic types.
14354 2005-09-05 Martin Baulig <martin@ximian.com>
14356 Applying a patch from Michal Moskal <malekith@nemerle.org>.
14358 * class.c (mono_dup_array_type): New public method.
14359 (mono_metadata_signature_deep_dup): New public method.
14360 (dup_type): Correctly duplicate array and function types.
14362 2005-09-05 Martin Baulig <martin@ximian.com>
14364 Applying a patch from Michal Moskal <malekith@nemerle.org>.
14366 * reflection.c (get_default_param_value_blobs): Handle generic types
14367 and generic methods.
14369 2005-09-02 Sebastien Pouliot <sebastien@ximian.com>
14371 * class.c: Fixed error reporting (method/class were inversed) for
14372 inheritance demands.
14373 * security-manager.c|h: Added the AppDomain when calling the managed
14374 System.Security.SecurityManager.InheritanceDemand method.
14376 2005-09-01 Raja R Harinath <rharinath@novell.com>
14378 * reflection.c (encode_marshal_blob): 'marshaltype' and
14379 'marshaltyperef' are alternate sources for the custom marshaler
14382 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
14384 * class.c: fix creation of array classes with rank == 1
14385 (patch by Ankit Jain <jankit@novell.com>).
14387 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
14389 * object.c: fix check for creating the bound data for arrays vs
14392 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14394 * object.c: configuration file name is now based on the executable name,
14395 not the image name. Fixes bug #75931.
14397 2005-08-29 Zoltan Varga <vargaz@gmail.com>
14399 * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
14400 flag using LDIND_U4 since it leads to smaller and faster code on ia64.
14402 2005-08-25 Zoltan Varga <vargaz@gmail.com>
14404 * rand.c: Use wincrypt.h instead of WinCrypt.h.
14406 2005-08-24 Ankit Jain <jankit@novell.com>
14407 Raja R Harinath <rharinath@novell.com>
14409 * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
14410 called by it recursively.
14411 (mono_class_init): Remove special case in pending_init handling, since it's
14412 superseded by the fix to mono_class_from_typeref.
14414 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
14416 * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the
14417 BROKEN_THREAD_START stuff.
14419 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
14421 * class-internals.h object.c: Add a new kind of trampoline called a delegate
14424 * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
14426 * object.c (mono_delegate_ctor): Replace the original function address with
14427 a delegate trampoline.
14429 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
14431 * icall.c: add boolean argument to base64_to_byte_array and
14432 InternalFromBase64String to control whether a whitespace-only string
14433 is allowed (or should casue a FormatException to be thrown). We need
14434 this as the behavior has changed between MS.NET 1.x and 2.0, and we
14435 to match the MS behaviour in both profiles.
14436 * appdomain.c: Bump corlib version.
14438 2005-08-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
14440 This patch implements a big portion of publisher policy
14441 support, used to bind assembly versions and redirect
14442 one assembly from version A to version B.
14445 New GSList loaded_assembly_bindings, for storing the cached
14447 (assembly_binding_maps_name): New static function for checking if a
14448 assembly binding information maps an assembly name.
14449 (mono_assembly_binding_info_free): New function for freeing
14450 assembly binding information resources.
14451 (get_publisher_policy_info): New static function for retrieving
14452 assembly binding information from a MonoImage.
14453 (compare_versions): New static function for comparing an assembly
14454 binding information data and the version of an assembly name.
14455 (check_policy_versions): New static function for checking if an
14456 assembly binding info mapping an assembly name is valid for it.
14457 (mono_assembly_load_publisher_policy): New static function for
14458 loading the 'policy.major.minor.MyAssembly' image for an assembly
14459 with an assembly name 'aname'.
14460 (mono_assembly_bind_version): New static function for updating
14461 assembly redirection.
14462 (mono_assembly_apply_binding): New static function for applying
14464 (search_binding_loaded): New static function for searching
14465 loaded assembly binding infos in the cache domain.
14466 (mono_assembly_load_full): Don't apply assembly binding for
14467 reflection only assemblies.
14469 * metadata-internals.h: Add MonoAssemblyBindingInfo,
14470 which contains information about assembly binding. Also
14471 declare signature for mono_config_parse_publisher_policy ()
14472 function, used to retrieve pub policy info.
14475 (publisher_policy_start): New static function used to parse publisher
14476 policy config files.
14477 (publisher_policy_parser): New static MonoParseHandler containing
14478 the functions used when parsing config files.
14479 (mono_config_parse_publisher_policy): New function for parsing
14480 publisher policy files.
14482 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
14484 * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
14486 * marshal.c (mono_delegate_free_ftnptr): Ditto.
14488 * object.c (mono_get_addr_from_ftnptr): New helper function.
14490 * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
14492 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14494 2005-08-19 Dick Porter <dick@ximian.com>
14496 * threads.c, threads.h, appdomain.c, appdomain.h,
14497 profiler-private.h, monitor.c, object.c, object-internals.h,
14498 profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
14499 store the thread ID, so it can hold a 64 bit value if needed.
14501 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
14503 * reflection.c (mono_reflection_create_dynamic_method): Store the
14504 handle class into the method references as well so ldtoken works in
14507 * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
14510 2005-08-19 Ankit Jain <jankit@novell.com>
14513 * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature
14514 here rather than using the method signature of a arbitrary function
14515 named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with
14517 Hack done with Harinath.
14519 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14521 * threadpool.c: disable printing stack traces when we get a exception
14522 in a threadpool thread. I need to do more testing to figure out which
14523 cases actually print this. Fixes bug #75828.
14525 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14527 * icall.c: there might be ignored whitespace after the last '='. This
14528 fixes length computation and bug #75840.
14530 2005-08-18 Zoltan Varga <vargaz@freemail.hu>
14532 * assembly.c (mono_assembly_load_full): Consider .exe extension as
14533 well. Fixes #75809.
14535 * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
14538 * reflection.c (create_custom_attr_data): Ditto.
14540 2005-08-17 Atsushi Enomoto <atsushi@ximian.com>
14542 * locales.c, culture-info.h : removed RegionLCIDMap.
14543 * culture-info-tables.h : regenerated.
14545 2005-08-16 Martin Baulig <martin@ximian.com>
14547 * class.c (mono_type_get_name_recurse): Small fix.
14549 2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
14551 * locales.c : indentation fixie.
14553 2005-08-15 Atsushi Enomoto <atsushi@ximian.com>
14555 * object-internals.h,
14559 icall.c : added RegionInfo table support.
14560 * culture-info-table.h : regenerated for region support.
14562 2005-08-14 Kamil Skalski <nazgul@nemerle.org>
14564 * reflection.c (resolve_object): handle all kinds of MonoMethod
14565 including generic ones
14567 2005-08-12 Ankit Jain <jankit@novell.com>
14569 * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
14570 (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY.
14572 2005-09-12 Lluis Sanchez <lluis@ximian.com>
14574 * process.c: Don't close a thread handle when it's NULL. This is a
14575 workaround for bug #75733.
14577 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
14579 * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
14581 2005-08-10 Zoltan Varga <vargaz@freemail.hu>
14583 * icall.c (ves_icall_Type_get_IsGenericType): New icall.
14585 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14587 * threadpool.c: if a work item in the thread pool has a callback that
14588 catches a exception, don't propagate it after invoking the callback.
14591 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
14593 * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
14595 * class-internals.h (MonoCachedClassInfo): Add some new fields.
14597 * class.c (mono_class_init): Load field info lazily in the AOT case.
14599 * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
14601 2005-08-03 Ankit Jain <jankit@novell.com>
14604 * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
14605 PInvoke calling convention is 0.
14607 2005-08-02 Zoltan Varga <vargaz@freemail.hu>
14609 * socket-io.c (convert_sockopt_level_and_name): Applied patch from
14610 Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
14612 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
14614 * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
14615 to handle threads not started by the GC (patch by Michael Meeks
14616 <michael.meeks@novell.com>).
14618 2005-07-31 Kamil Skalski <nazgul@omega.pl>
14620 * reflection.c: Make buffer used in emitting types larger for some
14621 big generic types (patch by Michal Moskal).
14623 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
14625 * mono-debug.c: Fix some (not all) alignment problems.
14627 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
14629 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
14630 Invoke mono_image_load_from_data_full passing the refonly
14634 (mono_assembly_open_from_bundle): Add the refonly argument,
14635 in order to pass it to other methods it calls to.
14636 (do_mono_assembly_open): Add the refonly argument, in order
14637 to pass it to other methods it calls to.
14638 (mono_assembly_open_full): Invoke do_mono_assembly_open passing
14639 the refonly parameter to it.
14641 * image.c: Add loaded_images_refonly_hash and
14642 loaded_images_refonly_guid_hash to cache the reflection
14643 only loaded images.
14644 (mono_images_init): Initialize the hash tables used for
14645 caching the reflection only images.
14646 (load_modules): Invoke mono_image_open_full passing the refonly
14647 parameter to load the modules the correct way.
14648 (build_guid_table): Add the refonly argument, to re-build the
14649 correct hash table.
14650 (do_mono_image_open): Added the refonly argument, in order to
14651 define it for the loaded image.
14652 (mono_image_loaded_full): New function, which receives an
14653 additional parameter to look for the image in the refonly or
14654 non-refonly section.
14655 (mono_image_loaded): Updated, using mono_image_loaded_full.
14656 (mono_image_loaded_by_guid_full): The same case that happens
14657 with mono_image_loaded_full.
14658 (mono_image_loaded_by_guid): Likewise.
14659 (register_image): Use the ref_only variable inside MonoImage
14660 to decide in which hash table store the current image.
14661 (mono_image_open_from_data_full): Rename
14662 mono_image_open_from_data to mono_image_open_from_data_full,
14663 adding the refonly argument, to define the ref_only variable
14665 (mono_image_open_from_data): Return
14666 mono_image_open_from_data_full.
14667 (mono_image_open_full): Rename mono_image_open to
14668 mono_image_open_full, receiving the new refonly argument,
14669 to pass it to inner methods.
14670 (mono_pe_file_open): Update this function, to open
14671 a MonoImage as a non-refonly image.
14672 (mono_image_close): Use the refonly variable inside
14673 MonoImage to remove the image from the correct caches.
14675 * image.h: Add the signatures of mono_image_open_full,
14676 mono_image_open_from_data_full, mono_image_loaded_full,
14677 mono_image_loaded_by_guid_full.
14679 * metadata-internals.h: Add the ref_only field to
14682 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
14684 * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
14685 Fix the last behavior, which used to load the assemblies and
14686 extract MonoReflectionAssemblyName information, instead of
14687 extract it from the metadata tables. Needed for Reflection
14690 2005-07-29 Martin Baulig <martin@ximian.com>
14692 * mono-debug-debugger.c
14693 (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
14697 (mono_debug_address_from_il_offset): Check whether we have
14698 debugging support before attempting to take the lock.
14699 (mono_debug_source_location_from_address): Likewise.
14700 (mono_debug_source_location_from_il_offset): Likewise.
14701 (mono_debug_il_offset_from_address): Likewise.
14702 (mono_debug_address_from_il_offset): Likewise.
14704 2005-07-29 Zoltan Varga <vargaz@freemail.hu>
14706 * class.c (mono_class_from_name_case): Add support for dynamic images.
14709 * object.c (mono_class_compute_gc_descriptor): Add a workaround
14712 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
14714 * reflection.c (mono_method_get_object): Fix warning.
14716 2005-07-28 Martin Baulig <martin@ximian.com>
14719 (mono_debug_add_wrapper): Also write the wrapper type.
14721 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
14723 * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
14725 * class.c (mono_class_init): Avoid reading nested classes if the AOT
14726 data indicates the class has none.
14728 2005-07-26 Ben Maurer <bmaurer@ximian.com>
14730 * mono-debug.c, debug-mono-symfile.c: Replace the use of the
14731 loader lock with the debugger lock. Prevents deadlocks for beagle.
14733 Beagle can now run on an smp box for a weekend without any
14736 2005-07-26 Zoltan Varga <vargaz@freemail.hu>
14738 * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
14739 in a module. Fixes #75629.
14741 2005-07-26 Martin Baulig <martin@ximian.com>
14743 * mono-debug.c (mono_debug_add_wrapper): New static method.
14744 (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
14745 interncall or a wrapper.
14747 * mono-debug.h (MonoDebugWrapperData): New public typedef.
14748 (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
14749 (MONO_DEBUGGER_VERSION): Bump to 51.
14751 * mono-debug-debugger.c
14752 (mono_debugger_add_type): Removed this empty function.
14753 (mono_debugger_add_method): Likewise.
14755 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
14757 * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable ()
14758 before accessing method->slot.
14760 2005-07-21 Jb Evain <jbevain@gmail.com>
14762 * reflection.c (method_encode_clauses/class): Handle filters clauses.
14765 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
14767 * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
14770 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
14772 * image.h image.c: Add mono_image_get_guid () API function.
14774 2005-07-19 Ben Maurer <bmaurer@ximian.com>
14776 There were issues when multiple threads tried to load
14777 assemblies. A deadlock was created between assemblies_mutex and
14778 mono_domain_assemblies_lock. This fixes the issue by making the
14779 assembly ref counting be lock free. See bug 75586.
14781 * image.c (mono_image_close): The add ref function here was using
14782 Interlocked operations while the unref was using a mutex and a
14783 --. I don't think this was ever a bug that would be exposed in a
14784 non-pendantic way (ie, by an embedder doing a ref on one thread
14785 and an unref on another), but for the sake of correctness, this is
14788 * assembly.c (mono_assembly_addref): Use InterlockedIncrement
14789 (mono_assembly_load_reference): Call mono_assembly_addref rather
14790 than touching the refcount ourselves.
14791 (mono_assembly_close): Use InterlockedDecrement to unref the
14792 assembly. Don't acquire the lock unless it is actually needed.
14794 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
14796 * class.c (mono_class_layout_fields): Fix calculation of has_references
14799 2005-07-12 Martin Baulig <martin@ximian.com>
14801 Applying a patch from Michal Moskal <malekith@nemerle.org>.
14804 (mono_type_hash): Provide better hashing for generic instances.
14805 (mono_generic_inst_hash): Improve hashing.
14806 (mono_generic_class_hash): Likewise.
14808 * reflection.c (mymono_metadata_type_hash): Improve hashing for
14811 2005-07-12 Martin Baulig <martin@ximian.com>
14813 * reflection.c (mono_reflection_create_runtime_class): Remove the
14814 hack for generic type definitions and non-`Run' assemblies.
14815 (mono_reflection_bind_generic_parameters): Also use
14816 `klass->wastypebuilder' to check for TypeBuilders.
14818 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
14820 * class.c (mono_class_layout_fields): Fix calculation of has_references
14823 * class.c (inflate_generic_class): Fix a leak.
14824 (mono_class_init): Fix calculation of gchimpl and has_finalize fields
14827 2005-07-11 Martin Baulig <martin@ximian.com>
14829 * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
14832 2005-07-11 Martin Baulig <martin@ximian.com>
14834 * loader.c (find_method): Also lookup in
14835 `mono_defaults.object_class' if we're an interfaces; fixes #75460.
14837 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
14839 * appdomain.c (mono_domain_unload): Don't free the error message
14840 before passing it to mono_get_exception_...
14842 * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
14844 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
14846 * threads.c: try to better guess an available RT signal (bug #75387).
14848 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
14850 * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
14853 2005-07-07 Martin Baulig <martin@ximian.com>
14855 * class.c (mono_type_get_name_full): Return NULL for
14856 MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
14859 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
14861 * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
14862 exit the appdomain as well being aborted.
14864 * threadpool.c: Create all threadpool threads inside the root appdomain, and
14865 change back to the root domain after calling managed code. This enables
14866 appdomains using threadpools to be unloaded.
14868 2005-07-07 Martin Baulig <martin@ximian.com>
14870 * class-internals.h
14871 (MonoInflatedGenericClass): Moved the `MonoType *parent' field
14872 into `MonoDynamicGenericClass' since we only need it for dynamic
14875 * reflection.c (mono_class_bind_generic_parameters): We don't need
14876 to compute the `parent' here.
14878 2005-07-07 Atsushi Enomoto <atsushi@ximian.com>
14880 * culture-info-table.h : regenerated.
14882 2005-07-06 Martin Baulig <martin@ximian.com>
14885 (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
14887 * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
14889 2005-07-06 Martin Baulig <martin@ximian.com>
14891 * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
14892 we're doing a signature-only comparision; fixes #74945.
14894 2005-07-06 Martin Baulig <martin@ximian.com>
14896 * class-internals.h (MonoGenericClass): Moved some things out into
14897 a new `MonoInflatedGenericClass' type.
14898 (MonoInflatedGenericClass): New type; the `klass' of a
14899 `MonoGenericClass' is now computed lazyly in
14900 mono_get_inflated_generic_class().
14902 * class.c (mono_get_inflated_generic_class): New public function.
14903 (mono_class_inflate_generic_method): Removed the unused
14904 `MonoClass *' argument.
14905 (setup_generic_vtable): Don't call mono_get_inflated_method() on
14907 (mono_class_create_generic): Make this static and merge it with
14908 mono_class_create_generic_2(); we're now called automatically from
14909 mono_get_inflated_generic_class().
14911 * loader.c (mono_method_signature): Call
14912 mono_get_inflated_method() here.
14914 2005-07-06 Zoltan Varga <vargaz@freemail.hu>
14916 * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
14917 type of fields with RVA.
14919 * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
14920 for this pseudo class.
14921 (my_mono_class_from_generic_parameter): Likewise.
14922 (mono_class_init): Allow interfaces to have cctors.
14924 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
14926 * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
14927 lazily for AOT methods.
14929 2005-07-05 Martin Baulig <martin@ximian.com>
14931 * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
14932 returns FALSE for a successful match, not TRUE.
14934 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
14936 * loader.c (mono_method_get_index): Optimize this a bit.
14938 2005-07-04 Martin Baulig <martin@ximian.com>
14941 (class_compute_field_layout): Move the check for generic type
14942 definitions into mono_class_layout_fields(). Fixes #74684.
14943 (mono_class_from_generic_parameter): Correctly compute
14944 `klass->parent'; fixes #75457.
14946 * reflection.c (register_assembly, register_module): Make sure
14947 `domain->rejobject_hash' is already created.
14949 2005-07-02 Martin Baulig <martin@ximian.com>
14951 * class-internals.h
14952 (MonoGenericClass): Move `count_ifaces' and `ifaces' into
14953 `MonoDynamicGenericClass'.
14955 2005-07-01 Lluis Sanchez <lluis@ximian.com>
14957 * icall.c: In ves_icall_InternalExecute() dont't assert if the value
14958 returned by a field getter is null, since null is a valid value.
14960 2005-07-01 Martin Baulig <martin@ximian.com>
14962 * reflection.c (mono_reflection_generic_class_initialize): Update
14963 the `dgclass->fields [i].parent' to the correct class.
14964 (mono_image_get_fieldref_token): Use the declaring type, not the
14967 2005-07-01 Martin Baulig <martin@ximian.com>
14969 * loader.c (find_method): Also look in the interfaces; fixes #75429.
14971 2005-06-30 Ben Maurer <bmaurer@ximian.com>
14973 * threads.c (thread_cleanup): assert that thread != NULL
14974 (wait_for_tids_or_state_change): We were using the wrong variable
14975 when accessing wait->threads. `i' was always out of the bounds of
14978 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14980 * loader.c: map user32 and kernel32 to libMonoSupportW
14982 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
14984 * appdomain.c (unload_thread_main): Mark this as WINAPI.
14986 2005-06-28 Martin Baulig <martin@ximian.com>
14988 * loader.c (method_from_methodspec): Fix #75334.
14990 2005-06-28 Martin Baulig <martin@ximian.com>
14992 Fix #74953 - Arrays now implement the generic IList<T> interface
14993 on the 2.0 platform.
14995 * class-internals.h (MonoDefaults): Added `generic_array_class'.
14997 * reflection.c (mono_class_bind_generic_parameters): New public
14998 function; similar to mono_reflection_bind_generic_parameters(),
14999 but operates on a `MonoType *' and not on a `MonoReflectionType *'.
15001 * domain.c (mono_init_internal): Try to initialize.
15002 `mono_defaults.generic_array_class' here; this'll only succeed if
15003 we're using the 2.0 corlib.
15006 (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
15007 interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
15008 (mono_lookup_internal_call): Added support for nested classes.
15011 (mono_get_method_from_token): Set `result->signature->pinvoke' if
15012 we're an interncall and have generic arguments.
15015 (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
15016 (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
15017 instance of System.Array.InternalArray<T> for arrays, so they
15018 implement the generic IList<T> interface.
15020 2005-06-27 Zoltan Varga <vargaz@freemail.hu>
15022 * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
15023 (chastamar@yahoo.com). Fixes #75374.
15025 2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
15027 * culture-info-table.h: regenerated.
15029 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15031 * icall.c: handle spaces correctly for base64 strings.
15033 2005-06-26 Ben Maurer <bmaurer@ximian.com>
15035 * *.c: Kill some warnings.
15037 2005-06-23 Duncan Mak <duncan@novell.com>
15039 * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
15040 that this builds on Solaris 10 (x86).
15042 2005-06-23 Martin Baulig <martin@ximian.com>
15045 (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
15046 generic type definitions.
15048 2005-06-23 Martin Baulig <martin@ximian.com>
15052 * metadata.c (mono_class_get_overrides): Renamed to
15053 mono_class_get_overrides_full() and added a `MonoGenericContext *'.
15054 (method_from_method_def_or_ref): Added `MonoGenericContext *' and
15055 pass it to mono_get_method_full().
15057 2005-06-22 Ben Maurer <bmaurer@ximian.com>
15059 * reflection.c (mono_reflection_create_runtime_class): take the
15060 mono_domain_lock in this method. Prevents deadlocks
15062 2005-06-22 Martin Baulig <martin@ximian.com>
15064 * loader.c (method_from_methodspec): Fix #75330.
15066 2005-06-22 Martin Baulig <martin@ximian.com>
15068 * reflection.c (type_get_qualified_name): Use
15069 mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
15070 (_mono_reflection_get_type_from_info): Added `MonoImage *image'
15071 argument; use it if we don't have an assembly name.
15073 2005-06-22 Lluis Sanchez Gual <lluis@novell.com>
15075 * object.c: In mono_message_init, set "copy out" flag for in
15076 parameters with the [Out] flag.
15078 2005-06-21 Martin Baulig <martin@ximian.com>
15081 (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
15084 2005-06-21 Martin Baulig <martin@ximian.com>
15086 * class.c (mono_class_init): Don't initialize `class->fields' for
15087 generic instances since they're initialized again in
15088 compute_field_layout().
15089 (compute_field_layout): Set the field's `generic_info' here; fix
15092 2005-06-21 Martin Baulig <martin@ximian.com>
15094 * class-internals.h
15095 (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
15097 * metadata.c (mono_metadata_generic_method_equal): Also
15098 distinguish the `generic_class'; fixes #75334.
15100 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15104 * domain-internals.h:
15105 * reflection.c: 'domain_assemblies' field is now protected by its own
15106 lock. Don't call into managed code to run the AssemblyLoad event if we
15107 now there are no registered delegates for it.
15109 2005-06-20 Martin Baulig <martin@ximian.com>
15111 * class.c (mono_class_is_assignable_from): Use a custom version of
15112 mono_class_has_parent() to make things work for generic instances;
15115 2005-06-20 Martin Baulig <martin@ximian.com>
15117 * loader.c (method_from_methodspec): Apply a patch from
15118 Kamil Skalski <nazgul@nemerle.org> to fix #75296.
15120 2005-06-20 Martin Baulig <martin@ximian.com>
15122 * class.c (mono_class_init): Reverted Zoltan's last change; it
15125 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
15127 * threads.c (wait_for_tids_or_state_change): Add missing locking.
15129 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15131 * socket-io.c: fix the index in the socket array for writable/error
15132 sockets. Fixes bug #75306.
15134 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
15136 * class.c (mono_class_init): Allow interfaces to have static ctors.
15138 2005-06-17 Martin Baulig <martin@ximian.com>
15140 * loader.c (method_from_methodspec): Use `context->container' when
15141 parsing the `gmethod->inst'.
15143 2005-06-17 Martin Baulig <martin@ximian.com>
15145 * class.c (mono_type_get_name_recurse): Don't add the assembly
15146 name for type arguments.
15148 2005-06-15 Martin Baulig <martin@ximian.com>
15150 * reflection.c (mono_image_get_inflated_method_token): Encode
15151 correct klass; fixes #75260.
15153 2005-06-13 Michal Moskal <malekith@nemerle.org>
15155 * icall.c: Make GetCorrespondingMethod/Constructor take
15156 MonoReflectionMethod method not MonoMethod. Removed
15157 MonoType.GetCorrespondingField, and make
15158 MonoGenericType.GetCorrespondingField take name not
15161 2005-06-13 Michal Moskal <malekith@nemerle.org>
15163 * reflection.c (field_encode_signature, encode_locals):
15164 Make sizes of buffers for types larger (for big generic types).
15165 (create_generic_typespec,
15166 mono_reflection_sighelper_get_signature_local,
15167 mono_reflection_sighelper_get_signature_field):
15168 Add asserts for too small buffers.
15170 2005-06-15 Martin Baulig <martin@ximian.com>
15172 * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
15173 if our parent is not a dynamic type.
15175 2005-06-15 Martin Baulig <martin@ximian.com>
15177 * class-internals.h (MonoTypeNameFormat): New enum.
15180 (mono_class_get_name_full): Renamed to mono_type_get_name_full().
15181 (mono_type_get_full_name): Removed.
15182 (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
15183 argument instead of the boolean's.
15185 * icall.c (ves_icall_System_MonoType_getFullName):
15186 Added `gboolean assembly_qualified'.
15189 (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
15191 * reflection.c (mono_reflection_parse_type): Parse the new type
15194 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15196 * icall.c: no need to convert from utf16 to utf8 and then back again
15197 after the call to GetLogicalDrives.
15199 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15201 * icall.c: frombase64. Fix problems exposed by new tests.
15203 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15205 * icall.c: added internal calls for converting char [] and strings in
15206 base64 into byte [].
15208 2005-06-10 Martin Baulig <martin@ximian.com>
15210 * class.c (mono_class_create_generic_2): Read the nested classes
15211 from the metadata rather than from `gklass->nested_classes' since
15212 `gklass' might not be initialized yet.
15214 2005-06-09 Duncan Mak <duncan@novell.com>
15216 * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
15217 all public headers. Fixes #74919.
15219 2005-06-09 Lluis Sanchez Gual <lluis@novell.com>
15221 * domain.c: The key for proxy_vtable_hash is now a pointer
15222 array. Added new GHashFunc and GCompareFunc functions for this.
15224 * class.h: The list of interfaces in MonoRemoteClass is known in
15225 advance and can't grow (we create a new MonoRemoteClass if needed),
15226 so now the interface array can be allocated together with
15229 * object.c: Added a new method create_remote_class_key.
15230 Fixed mono_remote_class so it does not depend on
15231 mono_upgrade_remote_class.
15232 Removed extend_interface_array.
15233 Added new method clone_remote_class(), which makes a copy of a remote
15234 class and adds a new interface or class to it.
15235 mono_upgrade_remote_class() now creates a new remote class (or gets
15236 it from the cache) if an vtable upgrade is needed. In this way
15237 we make sure that other objects sharing the same remote class
15238 don't get the new vtable with unwanted interfaces.
15240 * object-internals.h:
15241 * object.h: Moved mono_upgrade_remote_class to object-internals.h.
15243 * marshal.c: Track changes in mono_upgrade_remote_class().
15245 2005-06-08 Kamil Skalski <nazgul@nemerle.org>
15246 * icall.c: Add runtime methods for obtaining members of inflated
15247 class, which were created from supplied non-inflated members. It
15248 is used in internal Get{Method,Constructor,Field} methods in
15251 2005-06-09 Martin Baulig <martin@ximian.com>
15254 (mono_reflection_bind_generic_method_parameters): Fix #75169.
15256 2005-06-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
15257 * reflection.c (mono_image_basic_init): Define
15258 Version in MonoDynamicAssembly.
15260 2005-06-08 Martin Baulig <martin@ximian.com>
15265 (mono_method_signature_full): New public method; takes a
15266 `MonoGenericContext *'.
15267 (find_method): Use mono_method_signature_full() and pass the
15268 klass'es context to it.
15270 * class.c (mono_class_is_inflated_method): Use
15271 mono_method_signature_full() and pass the context to it.
15273 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
15275 * object.c: add proper locking in mono_remote_class_vtable(),
15276 fixes possible memory corruption.
15278 2005-06-08 Michael Meeks <michael.meeks@novell.com>
15280 * marshal.c (mono_remoting_marshal_init): set
15281 initialized after initialization.
15283 2005-06-08 Atsushi Enomoto <atsushi@ximian.com>
15285 * locales.c : hush.
15287 2005-06-06 Michael Meeks <michael.meeks@novell.com>
15289 * object.c (extend_interface_array): fix really silly
15290 memory corrupting / comparison bug.
15292 2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
15294 * reflection.c: Functions added to support the creation
15295 of CustomAttributeData, which includes Attribute data
15296 used by ReflectionOnly methods.
15298 * reflection.h: mono_reflection_get_custom_attrs_data and
15299 mono_custom_attrs_data_construct added (functions exposed).
15301 * icall.c: Added mono_reflection_get_custom_attrs_data
15304 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
15306 * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
15309 2005-06-06 Zoltan Varga <vargaz@freemail.hu>
15311 * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
15313 * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
15314 dynamic DllImportAttribute.
15316 * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of
15317 dynamic DllImportAttribute.
15319 * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
15322 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15324 * threads.c: avoid segfault when an unstarted thread is aborted.
15326 2005-06-05 Kornél Pál <kornelpal@hotmail.com>
15328 * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
15329 Returns the name and version of the runtime for reporting.
15331 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15333 * appdomain.c: bump corlib version.
15334 * object-internals.h: new field in MonoReflectionAssembly.
15336 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15338 * object-internals.h: Carlos forgot to add this field.
15340 2005-06-03 Carlos Alberto Cortez <calberto.cortez@gmail.com>
15342 * icall.c: Added create_version to create instances
15343 of Version of MonoReflectionAssemblyName. This change helps
15344 the AssemblyName tests to keep running fine.
15346 2005-06-03 Lluis Sanchez Gual <lluis@novell.com>
15348 * object.c (mono_method_return_message_restore): A somehow less
15349 intrusive fix for #75138.
15351 2005-06-03 Raja R Harinath <rharinath@novell.com>
15353 * object.c (mono_method_return_message_restore): Fix computation
15354 of expected number of out args.
15356 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
15358 * reflection.c (mono_image_get_method_info): Fix the case when the
15361 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
15363 * object.c: Added missing null check in
15364 mono_method_return_message_restore.
15366 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
15368 * reflection.c (mono_image_get_method_info): Handle the case when
15371 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
15373 * object.c: When creating the vtable for a proxy, take into account
15374 all inherited interfaces, not only the ones registered in
15375 iclass->interfaces. This fixs bug #74996.
15376 Also, in mono_method_return_message_restore, verify that the array
15377 of out args has the expected lengh.
15379 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15381 * socket-io.c: update the timeout in Poll when the call is interrupte.
15383 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15385 * socket-io.c: support abort/suspend in Select_internal after last
15388 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15390 * threadpool.c: remove warning.
15392 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15395 * socket-io.[ch]: Select_internal uses poll() now when available, thus
15396 removing the 1024 limit from select(). Runtime part of the fix for
15399 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15401 * socket-io.c: when resolving the addresses for the same
15402 host returned by gethostname(), get the local IPs from the interface
15403 list. Loopback addresses are discarded if the are interfaces up with
15404 non-loopback ones. Fixes bug #63265.
15406 2005-05-27 Vladimir Vukicevic <vladimir@pobox.com>
15408 * appdomain.c, verify.c, object-internals.h, reflection.c:
15409 bumped corlib number to 36, and added new extra_flags field
15410 to ReflectionMethodBuilder and friends. Fixes #75060.
15412 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
15414 * gc.c: register a new weak link only if the object is non-null
15417 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
15419 * culture-info.h : short time pattern too.
15421 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
15423 * culture-info.h : expand long time pattern string length.
15425 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
15427 * culture-info-table.h : update (more French date format; #72788).
15429 2005-05-25 Zoltan Varga <vargaz@freemail.hu>
15431 * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
15432 the method is static. Fixes #75029.
15434 2005-05-25 Lluis Sanchez Gual <lluis@novell.com>
15436 * reflection.c: Update the table_idx field of method builders after
15437 saving the module, since it can change. This is a workaround for
15440 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
15442 * culture-info-table.h : update (additional French date format).
15444 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
15446 * icall.c (ves_icall_type_Equals): Revert last change.
15448 * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
15450 * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
15452 2005-05-20 Sebastien Pouliot <sebastien@ximian.com>
15454 * class-internals.h: Added executioncontext_class field to
15455 MonoDefaults structure.
15456 * domain.c: Cache System.Threading.ExecutionContext class in
15458 * object.c: Capture the ExecutionContext for asynchroneous calls in
15459 mono_async_result_new.
15460 * object-internals.h: Added execution_context and original_context
15461 fields to MonoAsyncResult. Added execution_context to MonoThread.
15462 * security-manager.c|.h: Added mono_get_context_capture_method to
15463 return the capture method (if required by the security manager or by
15464 the framework version used).
15465 * threadpool.c: Apply capture (if present) ExecutionContext in
15466 mono_async_invoke and revert to original context after it completes.
15468 2005-05-19 Atsushi Enomoto <atsushi@ximian.com>
15470 * culture-info-table.h : updated (real hacky solution for zh-CHT).
15472 2005-05-18 Atsushi Enomoto <atsushi@ximian.com>
15474 * culture-info-table.h : zh-CHT related workaround.
15476 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
15478 * marshal.c (emit_marshal_custom): Add some error checking and call the
15479 methods in the ICustomMarshaler interface. Fixes #74875.
15481 * marshal.c (emit_marshal_array): Implement [Out] marshalling in
15482 native->managed wrappers.
15484 2005-05-12 Martin Baulig <martin@ximian.com>
15486 * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
15487 here and use the loader lock.
15489 * mono-debug.c: Properly lock when the debugger is not attached.
15490 (mono_debug_init): Release the initial lock if we're not running
15493 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
15495 * marshal.c (emit_marshal_custom): Pass through NULL values without
15496 calling the custom marshalling routines.
15498 * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
15499 conversion in structures. Fixes #74882.
15501 2005-05-12 Atsushi Enomoto <atsushi@ximian.com>
15503 * culture-info-table.h : zh-* cultures were missing.
15505 2005-05-12 Lluis Sanchez Gual <lluis@novell.com>
15507 * threads.c: Added a new event background_change_event which is signaled
15508 when a thread changes its background mode.
15509 Moved here several checks previously done in managed code. The checks
15510 require the thread lock, and using the thread lock in managed code
15511 can result in deadlocks.
15512 Merged Start_internal and Thread_internal into a single method. Now
15513 Thread_internal does all work of creating and starting a thread.
15514 Added icalls for setting and getting the state of the object. Moved from
15515 managed code to avoid locking there.
15516 Added wait_for_tids_or_state_change() which is called instad of
15517 wait_for_tids when waiting for non-backround threads to end. This method
15518 will return if one of the threads ends or the background_change_event
15520 * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
15521 the background mode. This method signals the background_change_event
15524 * threads-types.h: Added icalls for ClrState, SetState and GetState, and
15525 removed Start_internal.
15527 2005-05-11 Martin Baulig <martin@ximian.com>
15529 * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
15530 to order of some fields to get proper alignment on 64-bit machines.
15532 2005-05-11 Martin Baulig <martin@ximian.com>
15534 * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
15535 changes as they're broken and completely fuck up the debugger.
15537 * mono-debug.c (mono_debug_add_method): Properly unlock on error.
15539 2005-05-10 Martin Baulig <martin@ximian.com>
15541 * reflection.c (mono_reflection_generic_class_initialize): Don't
15542 call mono_class_setup_parent() here.
15544 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15546 * metadata/socket-io.c: on windows, getsockopt/setsockopt for
15547 send/receive timeout use an integer in milliseconds. We were using a
15550 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15553 (internal_get_cultures): reserve the first slot of the array for the
15554 InvariantCulture, which will be filled in managed code.
15556 2005-05-06 Zoltan Varga <vargaz@freemail.hu>
15558 * reflection.c (mono_image_fill_module_table): Initialize the
15559 GENERATION field as well.
15561 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15563 * monitor.c: ignore calls to Monitor.Exit even if no one ever called
15564 Monitor.Enter on the object.
15566 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
15568 * threads.c: Enable the wait for running threads when exiting.
15569 * icall.c: Suspend all threads before exiting.
15571 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
15573 * assembly.c (mono_assembly_load_reference): Fix warning.
15575 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15577 * threadpool.c: changed the default number of threads per cpu. From now
15578 on, the default will be 20 + (5 * number of cpus) instead of 50.
15580 2005-05-04 Zoltan Varga <vargaz@freemail.hu>
15582 * loader.c (mono_method_get_signature_full): Add locking here.
15584 2005-05-03 Lluis Sanchez Gual <lluis@novell.com>
15586 * appdomain.c: Moved methods for parsing and freeing assembly
15587 names to assembly.c.
15588 * assembly.c, domain-internals.h: Created public methods for parsing
15589 assembly names. Fixed mono_assembly_load_with_partial_name:
15590 it now finds the best match, taking into account the version,
15591 token and culture specified in the partial name. Also return
15592 the latest version if no version information is specified.
15594 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
15596 * threadpool.c: replace check for SocketAsyncCall class.
15598 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15600 * threadpool-internals.h:
15601 * Makefile.am: added threadpool-internals.h
15603 * threadpool.c: call mono_unhandled_exception on exceptions not handled
15604 that happen in threadpool threads (tested on MS).
15605 (mono_thread_pool_remove_socket): new function that dispatch any pending
15606 AIO call on a socket that is closing. By now only epoll really needs it,
15607 as select/poll wake up when the socket closes.
15610 * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
15612 2005-05-01 Zoltan Varga <vargaz@freemail.hu>
15614 * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
15616 2005-05-01 Lluis Sanchez Gual <lluis@novell.com>
15618 * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
15620 2005-04-30 Lluis Sanchez Gual <lluis@novell.com>
15622 * threads.c: In mono_thread_suspend_all_other_threads, if a thread
15623 has an abort request, convert it into a suspend request.
15625 2005-04-30 Ben Maurer <bmaurer@ximian.com>
15627 * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
15628 warning for the usage of `UnmanagedFunctionPointerAttribute' which
15629 is not supported yet.
15631 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15633 * image.c: register assemblies loaded from data (bundles) in the loaded
15634 assemblies hash. Fixes bug #74772.
15636 2005-04-29 Martin Baulig <martin@ximian.com>
15638 * class.c (mono_type_get_name_recurse): Update to the new naming
15639 schema from the latest .NET 2.x beta2.
15640 (mono_class_setup_vtable_general): If we're a generic instance,
15641 copy the vtable from our generic type definition and inflate all
15644 * loader.c (find_method): Update to the new naming schema from the
15645 latest .NET 2.x beta2.
15647 2005-04-29 Raja R Harinath <harinath@gmail.com>
15649 * class.c (mono_class_init): Add a mono_loader_unlock to the
15652 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
15654 * icall.c (ves_icall_System_Environment_Exit): Remove the
15655 suspend_all_other_threads () call for the time being, since it can hang.
15657 * threads.c (mono_thread_manage): Similarly, disable the waiting for
15658 the background threads to exit, since it can also hang.
15660 * class.c (mono_class_init): Applied patch from Ankit Jain
15661 (radical@gmail.com). Avoid pending init errors when a field refers
15662 to a nested class using a typeref. Fixes #74734.
15664 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
15665 this for dynamic modules.
15667 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15669 * threads.c: don't wait for threads that are in the process of aborting
15670 or aborted. Set the 'shutting_down' flag before cleaning the threadpool
15671 and waiting for background threads to finish. This makes xsp and
15672 mod-mono-server exit without random length delays and/or hangs.
15674 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15676 * icall.c: remove duplicate assignment from GetReferencedAssemblies.
15678 2005-04-25 Zoltan Varga <vargaz@freemail.hu>
15680 * class.c (mono_class_is_assignable_from): Call is_assignable_to for
15681 dynamic types to prevent infinite loops. Fixes #74727.
15683 * reflection.c (mono_reflection_call_is_assignable_from): Rename to
15684 ..._is_assignable_to.
15686 2005-04-25 Sebastien Pouliot <sebastien@ximian.com>
15688 * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
15690 2005-04-25 Martin Baulig <martin@ximian.com>
15692 Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
15695 (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
15697 * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
15699 * reflection.c (build_compressed_metadata): Set metadata header
15702 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
15704 * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
15705 number into an integral and a decimal part. Fixes #70473.
15707 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
15709 2005-04-23 Atsushi Enomoto <atsushi@ximian.com>
15711 * culture-info-table.h : reflected the latest locale-builder output.
15713 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15715 * threadpool.c: check for SuspendRequested too when deciding if
15716 mono_thread_interruption_checkpoint should be called.
15718 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15720 * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
15721 * threads.c: remove interruption_mutex and use Interlocked instead. When
15722 suspending all the threads, wait for all the suspended events at once.
15723 If we're shutting down and get an APC that is going to be queued,
15724 call mono_thread_execute_interruption immediately, as the thread might
15725 be sleeping on a pthread condition or mutex.
15727 * icall.c: call mono_runtime_set_shutting_down before suspending the
15730 Fixes bug #74693. And now xsp is happier when exiting.
15732 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
15734 * loader.c (mono_stack_walk): Fix #74690.
15736 2005-04-22 Martin Baulig <martin@ximian.com>
15738 * mono-debug.h (MonoDebugMethodJitInfo): Added
15739 `MonoDebugMethodJitInfo *jit'.
15741 * mono-debug.c (mono_debug_read_method): Cache the
15742 MonoDebugMethodJitInfo in `address->jit'.
15743 (mono_debug_free_method_jit_info): New public method.
15745 2005-04-22 Martin Baulig <martin@ximian.com>
15747 * class.c (mono_class_is_assignable_from): Disallow
15748 type parameter -> interface.
15750 2005-04-21 Dick Porter <dick@ximian.com>
15752 * threads.c (mono_thread_create): Turn an assertion into an error.
15754 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
15756 * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
15758 * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c:
15759 Fix some gcc 4.0 warnings.
15761 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
15763 * file-io.c: fix alt dir separator char on unix systems
15764 and cleanup (fixes bug #71214).
15766 2005-04-19 Lluis Sanchez Gual <lluis@novell.com>
15768 * marshal.c: Use CALLVIRT instead of CALL when dispatching
15769 a call to a remote domain, since the method may be an
15770 interface method in the client domain. This fixes bug #74192.
15772 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15774 * threadpool.c: recv/send are now performed before going back to managed
15775 code to save one transition.
15777 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15779 * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
15781 * metadata/threadpool.c: removed hack to workaround the bug above.
15785 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
15787 * reflection.c reflection.h: Fix handling of parameter defaults in
15788 dynamic methods. Also fixes handling of parameter attributes.
15791 * mono-debug.c (mono_debug_close_image): Fix warning.
15793 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15795 * socket-io.h: replaced old unused field with new 'blocking'.
15796 * threadpool.c: restore socket blocking state on windows(tm).
15798 2005-04-14 Sebastien Pouliot <sebastien@ximian.com>
15800 * icall.c: don't return the codebase in the AssemblyName[] returned by
15801 ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
15802 * object-internals.h: Removed FIXME (fields were presents) and fixed
15803 versioncompat declaration.
15805 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15807 * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
15808 not closed, so don't cleanup when it happens.
15810 2005-04-13 Chris Toshok <toshok@ximian.com>
15812 * mono-debug-debugger.h: change prototype for
15813 mono_debugger_lookup_type.
15815 * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
15816 this function, although it should probably be named
15817 mono_debugger_init_type.
15819 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15821 * threadpool.c: fix non-AIO case.
15823 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
15825 * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
15826 the built-in profiler to measure just JIT compilation times.
15828 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15830 * threadpool.c: the epollfd might be closed by another thread at
15831 any time, so ignore EBADF at treat it as a "we're closing" sign.
15833 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15835 * threadpool.c: release the semaphores with a count equals to the number
15836 of working threads in both IO and regular pools. Fixed typo that messed
15837 up the count of IO pool threads. Don't initialize the pipe handles if
15840 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15842 * threadpool.c: some systems don't like a NULL when deleting the socket
15845 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15847 * threadpool.c: fix semaphore allocation.
15849 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15851 * threadpool.c: added epoll() based implementation for asynchronous IO
15852 that is used instead of the default poll() when available.
15853 It can be disabled by setting MONO_DISABLE_AIO.
15855 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15857 * threadpool.c: windows needs 'closesocket' and instead of returning
15858 0 when the stream is closed while in select, it returns -1. Fixes bug
15861 2005-04-12 Zoltan Varga <vargaz@freemail.hu>
15863 * class.c (class_compute_field_layout): Fix the regression caused by
15866 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15868 * threadpool.c: separate pool for socket async. IO.
15869 * threadpool.h: mono_max_worker_threads is not a global any more.
15871 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
15873 * class.c (class_compute_field_layout): Fix #74549.
15875 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15877 * threadpool.c: select() on windows doesn't allow pipe handles, soooo
15878 use 2 connected sockets instead.
15880 2005-04-08 Miguel de Icaza <miguel@novell.com>
15882 * mono-config.c: Add new entry point for mkbundle
15883 mono_config_parse_memory.
15885 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15887 * threadpool.c: removed another unused function.
15889 2005-04-08 Ankit Jain <radical@corewars.org>
15891 * reflection.c (get_default_param_value_blobs): Add 'types'
15892 parameter to get the types encoded in the constant table.
15893 (mono_param_get_objects): Use the type from the constant table,
15894 not the type of the parameter, when creating default values.
15895 Handle null default values correctly.
15897 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15904 * socket-io.c: removed dead code for async IO.
15906 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15908 * socket-io.h: 2 more fields in MonoSocketAsyncResult.
15910 * threadpool.c: intercept socket async. calls and pass them to a thread
15911 that is polling and dispatching the job items to the threadpool as
15912 socket become ready. Fixes bugs #71217, #71933.
15914 * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
15915 between char and short/ushort arrays.
15917 * socket-io.c: remove dead code.
15919 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
15922 icall.c : removed InternalToUpper_Comp() and
15923 InternalToLower_Comp().
15925 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
15927 * char-conversions.h : The tables were incorrectly generated. Should
15928 be generated against invariant culture.
15930 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
15932 * object.c (mono_runtime_invoke_array): Fix return value when
15933 passing pre-created valuetype objects to ctors.
15935 * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer
15936 (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
15939 2005-03-30 Sebastien Pouliot <sebastien@ximian.com>
15941 * domain.c: removed g_assert for runtimesecurityframe_class. This is
15942 only used with --security and hides the wrong corlib version error.
15944 2005-03-30 Joshua Tauberer <tauberer@for.net>
15946 * class.c: Changed mono_class_name_from_token so that types
15947 outside of a namespace don't have an initial period. Improved
15948 the g_warning message used in _mono_class_get when loading
15950 * assembly.c: In mono_assembly_load_reference, when an assembly
15951 can't be found, "No such file or directory" is misleading and
15952 unhelpful because a few paths were checked for the presence of
15953 the assembly. When that happens (ENOENT), display a nicer
15954 message indicating the directories that were searched. In all
15955 cases, the warning is made easier to read for non-hackers.
15957 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
15959 * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
15961 * appdomain.h|domain.c: Removed inline from functions.
15962 * appdomain.c: Reduced warnings when compiling on windows.
15963 * icall.c: Fixed output_debug declaration to gunichar2*.
15964 * mono-config.c: Reduced warnings when compiling on windows.
15965 * rand.c: Added missing "windows.h". Added missing return value.
15966 * rawbuffer.c: Added missing winsock2.h for windows.
15967 * sysmath.h: Added mono-compiler.h header to allow/ease
15968 compilation with non-GCC compilers.
15969 * threads.c: Fixed declarations to compile with VS.NET C compiler.
15970 Removed cast warnings.
15972 Adapted from the work of J Lothian (for VC6).
15974 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
15976 * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
15979 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
15981 * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
15984 2005-03-27 Raja R Harinath <harinath@gmail.com>
15986 * Makefile.am (assembliesdir): Fix. If it is arch-dependent it
15987 has to be in $(exec_prefix). $(prefix) is for arch-independent
15988 stuff, and it would probably use $(prefix)/share rather than
15991 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15993 * console-io.c: added 2 includes that might be missing.
15995 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
15997 * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
16000 * reflection.c (create_custom_attr): Allocate the params array using
16001 alloca so it gets GC tracking.
16003 2005-03-23 Chris Toshok <toshok@ximian.com>
16005 * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
16008 2005-03-24 Raja R Harinath <rharinath@novell.com>
16010 * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
16011 changes to pick up any changes in prefix, etc.
16013 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
16015 * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
16017 * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
16018 * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
16020 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
16022 * class-internals.h object-internals.h class.c reflection.c: Extend the
16023 mono_lookup_dynamic_token () function to return the class of the
16026 * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
16027 well. Fixes #73848.
16029 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
16031 * security-manager.c: Skip inheritance checks for intra-corlib
16032 class inheritance and method overrides. This skips a lot of checks
16033 and (anyway) permissions cannot work until corlib is loaded.
16035 2005-03-23 Martin Baulig <martin@ximian.com>
16037 * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
16038 MONO_TYPE_GENERICINST.
16040 2005-03-23 Martin Baulig <martin@ximian.com>
16042 * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
16044 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
16046 * class.c: added locking comments to some functions.
16047 Cache the interface offsets arrays (saves about 20 KB
16048 of runtime memory in a typical app).
16049 Reduce the time overhead in mono_class_setup_supertypes ().
16051 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
16053 * icall.c: speedup and fix leaks in GetMethodsByName and
16054 GetPropertiesByName.
16056 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
16058 * reflection.c: some locking fixes.
16060 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
16062 * metadata.c: added missing break in case statement.
16064 2005-03-22 Zoltan Varga <vargaz@freemail.hu>
16066 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
16067 typedbyref return values. Fixes #73941.
16069 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
16071 * security-manager.c|h: Added demandunmanaged method and
16072 suppressunmanagedcodesecurity class to MonoSecurityManager.
16073 Renamed aptc class to allowpartiallytrustedcallers.
16075 2005-03-17 Martin Baulig <martin@ximian.com>
16077 * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
16079 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16081 * file-io.c: disabled file async. IO using aio_*. It uses the
16082 threadpool now. Workaround for bug #73718.
16084 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
16086 * assembly.h, mono-config.c: added code to deal with bundled configs
16087 for bundled assemblies.
16089 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
16091 * *.c, private.h: cleanup, removing old private.h header file.
16093 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
16095 * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
16096 and throw_on_unmappable_char attributes.
16098 2005-03-13 Sebastien Pouliot <sebastien@ximian.com>
16100 * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
16101 _ProcessName_internal.
16103 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
16105 * object.c (mono_array_new_full): Fix aligning of array size. Fixes
16108 * icall.c threads.c threads-types.h: Remove slothash icalls as they
16109 are no longer used.
16111 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
16113 * object.c (compute_class_bitmap): Add support for generics. Fixes
16116 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
16118 * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
16120 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16122 * filewatcher.c: commented out the code for windows watcher, as we don't
16123 use it (we use the managed implementation instead).
16125 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
16127 * object-internals.h (MonoThread): Remove 'unused1' field.
16129 * appdomain.c: Bump corlib version.
16131 * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
16133 * reflection.c (mono_reflection_create_runtime_class): Remove the
16134 AssemblyBuilder.Save optimization since it causes too many problems.
16136 2005-03-10 Sebastien Pouliot <sebastien@ximian.com>
16138 * exception.c|h: Added mono_get_exception_reflection_type_load to
16139 create a ReflectionTypeLoadException object.
16140 * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
16141 to return NULL is a InheritanceDemand fails during reflection. Updated
16142 ves_icall_System_Reflection_Assembly_GetTypes to throw a
16143 ReflectionTypeLoadException if an InheritanceDemand fails during
16144 reflection. Added icall mapping for GetLinkDemandSecurity.
16145 * security-manager.c|h: Added ves_icall_System_Security_
16146 SecurityManager_GetLinkDemandSecurity internal call to return the
16147 class and methods permissions set for a LinkDemand. Removed unused
16148 fields in MonoSecurityManager.
16150 2005-03-10 Martin Baulig <martin@ximian.com>
16152 * class.c (mono_bounded_array_class_get): Initialize `eclass' if
16153 it's a generic instance.
16155 2005-03-09 Zoltan Varga <vargaz@freemail.hu>
16157 * reflection.c (mono_get_object_from_blob): Applied patch from
16158 Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
16160 * class.c (mono_class_is_assignable_from): Another try at fixing
16161 #73469 without breaking anything.
16163 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
16165 * class.c: (mono_class_is_assignable_from): Revert the last changes
16166 since they don't work with generics.
16168 * class.c (mono_class_is_assignable_from): Fix build bustage.
16170 * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
16171 the managed IsAssignableFrom method. Fixes #73469.
16173 * reflection.c (mono_reflection_call_is_assignable_from): New helper
16176 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
16178 * object.c (mono_load_remote_field_new): Fix returning uninitialized
16179 memory when the remoting callback does not sets the out arguments.
16182 * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
16185 * string-icalls.c: Return String.Empty where needed. Fixes #73310.
16187 * object-internals.h (MonoStackFrame): Sync with managed object layout.
16189 * appdomain.c: Bump corlib version.
16191 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
16193 * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
16196 * threads.c (mono_thread_attach): Detect threads which are not started
16197 by the GC pthread wrappers.
16199 2005-03-03 Sebastien Pouliot <sebastien@ximian.com>
16201 * icall.c: Added new icall for RNG.
16202 * rand.c|h: Added new icall to open the RNG. This allows to share a
16203 single handle on Linux to access /dev/urandom and fix #73183.
16205 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
16207 * object.c: setting the new vtable in a transparent proxy object must
16208 not change the GC descriptor.
16210 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16212 * object.c: fixed compilation without GCJ support.
16213 * reflection.c: for runtime-created types ensure klass->has_references
16214 is correct (bug #73215).
16216 2005-03-02 Martin Baulig <martin@ximian.com>
16218 * class.c (mono_class_is_assignable_from): Make this work if
16219 `oklass' is a generic instance; fixes #72831.
16221 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
16223 * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
16226 * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
16228 * marshal.c: Reorganize native->managed marshalling code to also use
16229 the emit_marshal_... functions.
16231 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
16233 * object.c: typed allocs have issues with bitmap sizes > 30,
16234 so check for max_set >= 30.
16236 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
16238 * marshal.c (emit_marshal_array): Implement marshalling of arrays to
16239 managed code. Fixes #73012.
16241 * metadata.h (MonoMarshalSpec): Add elem_mult field.
16243 * metadata.c reflection.c: Load/Emit elem_mult as well.
16245 * metadata.h (MonoMarshalSpec): Add comment.
16247 * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
16249 * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
16250 num_elem to -1 if not given.
16252 * object-internals.h (MonoReflectionMarshal): Add has_size field.
16254 * reflection.c (encode_marshal_blob): Differentiate between 0 and not
16257 2005-03-01 Marek Safar <marek.safar@seznam.cz>
16259 * null-gc.c (mono_gc_free_fixed): Was not compilable.
16261 2005-02-28 Zoltan Varga <vargaz@freemail.hu>
16263 * reflection.c (encode_marshal_blob): Encode param_num field as well.
16265 * object-internals.h (MonoReflectionMarshal): Add param_num field.
16267 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
16269 * object.c: generalized the reference bitmap creation
16270 and added hooks for the new GC.
16271 * class-internals.c: removed the gc_bitmap field from MonoClass.
16273 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
16275 * domain.c: help the compiler to produce better code
16276 in mono_jit_info_table_find ().
16278 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
16280 * object.c: make all allocations look typed.
16282 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
16284 * socket-io.c: load Mono.Posix if it's not loaded already
16287 2005-02-24 Martin Baulig <martin@ximian.com>
16289 * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
16290 * reflection.c (dup_type): Likewise.
16292 2005-02-24 Zoltan Varga <vargaz@freemail.hu>
16294 * gc.c (run_finalize): Set the domain for finalizing delegates as well.
16295 Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
16297 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
16299 * domain.c, threads.c, object-internals.h: make the critical thread
16300 local vars use the fast access mode (even when we're compiled in
16301 a lib). Provide accessors to be used by the jit during codegen.
16303 2005-02-24 Carlos Alberto Cortez <calberto.cortez@gmail.com>
16305 * appdomain.c: Changed hook functios behavior to include
16306 support for the reflection only assemblies. Some icalls were changed
16307 to support the mentioned assemblies too. Signatures of static methods
16308 try_assembly_resolve and real_load now have an additional parameter:
16311 * assembly.c: General changes to mono_assembly_ methods to support
16312 reflection only api. Functions mono_assembly_open, mono_assembly_load,
16313 mono_assembly_load_from and mono_assembly_loaded have got a '_full'
16314 suffix, to support an additional gbool parameter to specify whether
16315 the assembli is reflection only or not. Created some new hook functions
16316 to add support for reflection only assemblies. Signatures of static
16317 methods load_in_path, search_loaded, and mono_assembly_load_from_gac
16318 have now an additional parameter: refonly.
16320 * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
16321 indicating whether the assembly is reflection only or not.
16323 * exception.c: Add mono_get_exception_invalid_operation.
16325 * icall.c: Throw an InvalidOperationException when trying to invoke
16326 a property/method/event, or trying to set/get the value of a field.
16327 Also add an icall to retrieve the ref_only flag to the
16328 MonoReflectionAssembly.
16330 2005-02-23 Chris Toshok <toshok@ximian.com>
16332 Part of fix for #72827.
16333 * mono-debug.c (mono_debug_add_method): add lexical block data to
16334 the info we write. Kind of a hack at the moment - we copy the
16335 lexical block info from the MonoDebugMethodInfo to the
16336 MonoDebugMethodJitInfo here, before writing it.
16337 (mono_debug_read_method): read the lexical block info.
16339 * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
16341 * debug-mono-symfile.h: add lexical block support.
16343 * debug-mono-symfile.c (mono_debug_find_method): add lexical block
16346 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
16348 * loader.c (mono_lookup_pinvoke_call): Fix warning.
16350 * object.c (mono_runtime_free_method): Call mono_free_method () and
16351 put the TODOs there.
16353 * loader.c (mono_free_method): Free up most memory allocated for
16356 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
16358 * reflection.c: properly flag a Type argument to a
16359 named custom attr value (bug #72248).
16361 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
16363 * reflection.c: reduce code duplication in named custom
16364 attribute encoding.
16366 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
16368 * reflection.c: properly encode custom attrs of type object
16371 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
16373 * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
16375 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
16377 * socket-io.c: load System.dll if it's not loaded already
16378 (bug #72850 and #70477).
16380 2005-02-21 Martin Baulig <martin@ximian.com>
16382 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
16385 2005-02-21 Martin Baulig <martin@ximian.com>
16387 * reflection.c (mono_image_build_metadata): We also need to
16388 "fixup" the MethodImpl table after we computed the final method
16389 indices. Call fixup_methodimpl() to do that.
16390 (fixup_methodimpl): New private method.
16392 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
16394 * assembly.c: special case mscorlib.dll (bug#72536),
16395 patch from Carlos Alberto Cortez.
16397 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
16399 * threads-types.h threads.c: Fix build bustage.
16401 * threads.c: Use a union for long<->double conversions.
16403 * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
16404 functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
16406 * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock
16407 containing the checkpoint call with NOT_TAKEN.
16409 * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt
16410 checkpoint before pushing the arguments, so they won't have to be
16413 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16415 * domain.c, assembly.c, domain-internals.h: make some data
16416 const and relocation-free.
16418 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
16420 * object.c, appdomain.c, class-internals.h: introduce the
16421 MonoClassRuntimeInfo structure to hold the info needed to
16422 use a class at runtime. Made mono_class_vtable() lock-free
16423 for all the appdomains.
16425 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
16427 * metadata-internals.h, image.c: introduce a per-image mempool to
16428 be used for memory that has the same lifetime as the image.
16430 2005-02-18 Lluis Sanchez Gual <lluis@novell.com>
16432 * domain.c: In mono_init_internal(), instead of selecting the first
16433 runtime version supported by an executable, get a list of all
16434 supported versions and select the one for which an mscorlib exists
16435 (since even if the runtime supports a given version, it doesn't mean
16436 that the framework for that version is installed).
16437 Modified get_runtimes_from_exe to support this behavior.
16438 In supported_runtimes, added information about additional system
16441 * assembly.c: Added support for more than one system assembly version
16442 per runtime version. Updated the assembly list.
16443 In mono_assembly_remap_version, removed the initial version check,
16444 since we don't know to which version we need to compare until we
16445 get the version set on which the assembly is based.
16446 Moved the code for loading corlib into the new method
16447 mono_assembly_load_corlib(), so it can be used by the initialization
16450 * domain-internals.h: Updated data structures and added declaration
16451 for mono_assembly_load_corlib.
16453 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
16455 * reflection.c (resolve_object): Fix the creation of the signature in
16456 the SignatureHelper case.
16458 * assembly.c (mono_assembly_remap_version): Fix binary search.
16460 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
16462 * class.c: Added inheritance check when a method is overloaded (from a
16463 virtual method or when implementing an interface) and when a class is
16464 inherited. Added functions to set a failure for a class and to
16465 retreive the exception from a failure.
16466 * class-internals.h: Added fields to MonoClass to keep the exception
16467 information status for inheritance (or other exceptions) to be thrown
16468 later (i.e. not at load time).
16469 * object.c: Throw the inheritance SecurityException when a type is to
16470 be created with either class or method inheritance violations.
16471 * reflection.c|h: Fix when getting declsec from a class. Removed
16472 unrequired code for class. Improved sanity in parameter naming.
16473 * security-manager.c|h: Added functions to check for class and method
16476 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
16478 * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
16479 and has_finalize in dynamic types as well.
16481 2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
16483 * culture-info-table.h : fixed currency format for en-GB (and so on).
16485 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
16487 * gc.c: ensure the GC handles never have 0 as a value.
16489 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
16491 * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
16492 a pointer to a struct to unmanaged code. Fixes #72625.
16494 2005-02-16 Martin Baulig <martin@ximian.com>
16496 * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
16498 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
16500 * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
16502 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
16504 * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
16506 * marshal.c (mono_ftnptr_to_delegate): If the delegate has the
16507 UnmanagedFunctionPointerAttribute, use it for determining calling convention
16510 * reflection.c (mono_custom_attrs_get_attr): New helper function.
16512 * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
16514 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
16516 * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
16517 changes to make the current context a field in MonoThread.
16519 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
16521 * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
16524 * marshal.c (mono_marshal_emit_native_wrapper): New helper function
16525 extracted from mono_marshal_get_native_wrapper.
16527 * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
16528 to create wrappers around native functions.
16530 * marshal.c (mono_ftnptr_to_delegate): Add support for creating
16531 delegates for arbitrary function pointers. Fixes #71472.
16533 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
16535 * threads.c: cleaned up the code a little.
16537 2005-02-15 Martin Baulig <martin@ximian.com>
16539 * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
16542 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
16543 allocate larger chunks if needed.
16545 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
16547 * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
16550 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
16552 * domain.c: keep the domains in an array and ensure the domain ids
16553 are kept small, so they can be used as indexes to domain-specific data
16554 with a small memory overhead.
16556 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
16558 * icall.c: Handle byref types in Type icalls. Fixes #72544.
16560 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
16562 * Makefile.am: remove libmetadata: we build just libmonoruntime now.
16564 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
16566 * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
16568 * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
16571 * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
16573 2005-02-12 Ben Maurer <bmaurer@ximian.com>
16575 * domain-internals.h: add the hashtable here.
16577 * class-internals.h: Remove `info' from MonoMethod
16579 * domain.c: Add a new hashtable, jit_trampoline_hash
16581 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
16583 * object.c: don't set the value of static fields
16586 2005-02-11 Martin Baulig <martin@ximian.com>
16588 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
16589 (mono_debug_add_method): Silently ignore the method if it's too big.
16590 (mono_debug_add_type): Likewise.
16592 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
16594 * threads.c, appdomain.c: remove #ifdefs from the code.
16596 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
16598 * metadata-internals.h: Added flags to MonoAssembly to cache the most
16599 common security informations. This allows us to stay in unmanaged code
16600 when doing LinkDemand and it's special cases (except for the first
16601 time for initialization). The flags a very much used with --security.
16602 * reflection.c|h: Added code to get declarative security attributes
16603 for LinkDemand and InheritanceDemand. This required to refactor the
16604 existing code for Demand.
16605 * security-manager.c|h: Added new method fields for the special cases
16608 2005-02-10 Martin Baulig <martin@ximian.com>
16610 * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
16611 (ves_icall_MonoDebugger_GetTypeToken): New interncall.
16613 2005-02-10 Martin Baulig <martin@ximian.com>
16615 * mono-debug.c, mono-debug-debugger.c: Completely reworked the
16616 debugging code; this is almost a complete rewrite.
16618 * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
16620 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
16622 * domain.c, object.h: expose mono_string_equal () and
16623 mono_string_hash ().
16624 * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
16625 it's implemented in managed code.
16627 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16629 * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
16630 lo leak objects between appdomains.
16632 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
16634 * assembly.c: old compilers compilation fix from
16635 robertj@gmx.net (Robert Jordan).
16637 2005-02-09 Ben Maurer <bmaurer@ximian.com>
16639 * class-internals.h: Little reminder for the future.
16641 * debug-helpers.c: Fix up wrapper_type_names
16643 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
16645 * image.c, metadata-internals.h: when loading an image from a file,
16646 mmap all of it and use the same codepaths as when using a
16647 in-memory image: the code is simpler and we use less memory
16648 (both writable and readonly).
16650 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
16652 * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
16653 API to alloc runtime data structures that need to be tracked by the
16654 GC and contain pointers.
16655 * appdomain.c, threads.c, object.c, gc.c: use the above changes to
16656 make the code more readable and eventually use a different GC.
16658 2005-02-09 Zoltan Varga <vargaz@freemail.hu>
16660 * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
16663 2005-02-09 Lluis Sanchez Gual <lluis@novell.com>
16665 * object.c: In release_type_locks(), don't release the cctor lock
16666 if it has already been released. This fixes a crash in the
16669 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
16671 * gc.c, marshal.c, icall.c: register a delegate for finalization
16672 only when the native function pointer has been allocated for it.
16674 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
16676 * object.c: cleaned up some code, allocate objects that are
16677 pointer free with the atomic malloc variant. Allocate memory
16678 for static data from the mempool if it's pointer-free.
16679 Allocate the bounds array at the end of the array data, when needed.
16680 * object-internals.h, object.h: move a private function in a private
16682 * class.c: handle missing case in tracking references in fields.
16684 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
16686 * class.c, class-internals.h: keep track if a type has
16687 reference fields in either the instance or static fields.
16689 2005-02-07 Lluis Sanchez Gual <lluis@novell.com>
16691 * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
16692 and renamed to MonoRuntimeInfo. Added fields to store the expected
16693 framework assembly version. Changed mono_get_framework_version and
16694 mono_get_runtime_version for a single mono_get_runtime_info method.
16696 * assembly.c: Added method to remap system assembly versions to the
16697 current executing runtime version. Removed old mapping code.
16698 Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
16700 * icall.c, reflection.c: Track api changes.
16702 2005-02-06 Miguel de Icaza <miguel@novell.com>
16704 * loader.c (method_from_memberref): Improve error reporting,
16705 produce the class name instead of the typeref/typedef index.
16707 2005-02-07 Zoltan Varga <vargaz@freemail.hu>
16709 * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
16711 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
16713 * loader.c (mono_lookup_pinvoke_call): Allow for combination of
16714 stdcall and charset name mangling. Reorganize the code and add
16715 some tracing stuff.
16717 2005-02-05 Ben Maurer <bmaurer@ximian.com>
16719 * monodiet.c: More iters!
16721 * marshal.c: Iter usage.
16723 * icall.c: Iter usage.
16725 * object.c: Use iters.
16727 * debug-helpers.c: More iters
16729 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
16731 * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
16734 2005-02-05 Ben Maurer <bmaurer@ximian.com>
16736 * mono-debug-debugger.c: use iters
16738 * class.c, class-internals.h: mono_class_setup_events is static
16741 * All callers: use iters
16743 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
16745 * class.c string-icalls.c marshal.c reflection.c: Applied patch from
16746 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
16748 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
16750 * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
16752 * marshal.h: Add prototypes for ldfld/stfld_remote.
16754 * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
16755 this is called during startup.
16757 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
16759 * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
16760 MonoThreadsSync struct private in monitor.c. Changed the way
16761 MonoThreadsSync is allocated so it's faster and there is no
16762 need to keep track of it with a finalizer and it uses less memory.
16763 This also finally allows us to allocate mono objects as ptrfree when
16764 there are no reference fields.
16766 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
16768 * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
16769 disappearing link to the GC interface and use them to simplify
16770 the gchandles code.
16772 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
16774 * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
16775 stfld_remote which call mono_load/store_field_new. This allows methods
16776 calling ldfld/stfld wrappers to be AOTed.
16778 * console-io.c: Include sys/filio.h under solaris.
16780 * console-io.c: Include curses.h if needed correctly.
16782 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
16784 * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
16785 method->klass as well.
16787 * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
16789 * class.c (mono_class_init): Switch on lazy initialization of
16792 * class.c (mono_class_get_finalizer): Handle the case when the
16793 finalizer is inherited.
16795 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16797 * console-io.c: <curses.h> is needed by term.h on solaris.
16799 2005-02-03 Ben Maurer <bmaurer@ximian.com>
16801 * icall.c, class-internals.h, monodiet.c, class.c: Remove
16802 mono_class_setup_properties where possible. Remove this ftn from
16803 the header file, and make it static.
16805 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
16807 * loader.c: Add missing setup_... call.
16809 * class.c: Add missing setup_... calls.
16811 * class.c (mono_class_init): Switch on lazy initialization of
16812 the generic vtable.
16814 * class.c (mono_class_init): Fix generics broken by the recent changes.
16816 * monodiet.c (handle_type): Add missing setup_... calls.
16818 * class.c: Back out garbage in previous patch.
16820 * class.c: Add missing setup_... calls.
16822 * class.c (mono_class_get_method_from_name_flags): Avoid calling
16823 mono_class_setup_methods () if possible.
16825 * class-internals.h (MonoClass): Add 'has_cctor' flag.
16827 * class-internals.h (MonoCachedClassInfo): New structure.
16829 * class.c: Initialize properties and events fields of MonoClass lazily.
16831 * class.c: Add infrastructure for lazily initializing the methods and
16832 vtable fields of MonoClass. Not yet used.
16834 * class.c (mono_class_get_finalizer): New helper function.
16836 * class.c: Add infrastructure for loading some class related data from
16839 * object.c: Add infrastructure for initializing the vtable from data
16842 * gc.c (run_finalize): Use mono_class_get_finalizer ().
16844 * class.c loader.c object.c icall.c gc.c reflection.c: Call the
16845 appropriate initialization function before accessing parts of the
16846 MonoClass structure.
16848 * marshal.c: Fix warnings.
16850 * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
16852 * mono-debug-debugger.c (get_exception_message): Use
16853 mono_class_get_method_from_name_flags ().
16855 2005-02-02 Ben Maurer <bmaurer@ximian.com>
16857 * reflection.c, appdomain.c: Replace a few manual searches that
16858 Zoltan missed. (Paolo approved this part of my initial patch).
16860 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
16862 * profiler.c: disable recording statistical events at report time.
16864 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
16866 * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
16867 to byteswap arrays of enum values, too (bug #72080).
16869 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
16871 * appdomain.c (set_domain_search_path): Allow this to be called if
16872 domain->setup is not yet set.
16874 * loader.c (mono_method_get_index): New helper function.
16876 * loader.c reflection.c: Use mono_method_get_index ().
16878 * class.c (mono_class_get_method_from_name_flags): New helper method.
16880 * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
16883 * class.c (mono_class_get_cctor): New helper method.
16885 * string-icalls.c object.c class.c marshal.c reflection.c: Use
16886 mono_class_get_method () to look up methods.
16888 2005-02-01 Miguel de Icaza <miguel@novell.com>
16890 * console-io.c: Fix the build, this should work on Windows.
16892 2005-01-31 Ben Maurer <bmaurer@ximian.com>
16894 * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
16895 be set to null to keep things valid
16897 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16899 * icall.c: added Console 2.0 icalls.
16900 * Makefile.am: added console-io.[ch]
16901 * console-io.[ch]: internal calls for Console 2.0 API.
16903 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
16905 * class.c: make sure we consider all the interfaces
16906 when calculating max_interface_id (bug found by
16907 Jeroen Frijters running ikvm).
16909 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
16911 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
16912 valuetype fields to null.
16914 * object.c (set_value): Ditto. Fixes #71669.
16916 2005-01-31 Martin Baulig <martin@ximian.com>
16918 * metadata.c (mono_metadata_has_generic_params): New public
16919 function; checks whether something is a generic method.
16921 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
16923 * appdomain.c: fix infinite recursion when adding assemblies.
16925 2005-01-30 Sebastien Pouliot <sebastien@ximian.com>
16927 * object.c: Fix small typo to return all items for Environment.
16928 GetCommandLineArgs.
16930 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
16932 * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
16933 reflection.c: more domain and assembly-unload related fixes
16934 and memory leaks plugs.
16936 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
16938 * 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.
16940 2005-01-29 Ben Maurer <bmaurer@ximian.com>
16942 * loader.c (mono_method_signature): Make this method lazy
16943 (mono_get_method_from_token): Don't computate the signature here.
16945 Doing this saves quite a bit of memory. I got 90 kb on starting up
16946 monodoc. It should also save some disk reads on startup.
16948 * *: MonoMethod->signature might be NULL now. You *MUST* use
16949 mono_method_signature.
16951 2005-01-29 Zoltan Varga <vargaz@freemail.hu>
16953 * object.c (mono_runtime_get_main_args): Return an array from the
16954 current domain here. Fixes #71938.
16956 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
16958 * monitor.c: formatting changes to comply with the
16959 mono coding style and remove #ifdefs from the code.
16961 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
16963 * metadata.c, private.h: remove some unneeded data
16964 and use a more compact representation for table schemas.
16966 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
16968 * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
16969 to get a better distribution in hash tables.
16970 * *.c: use mono_aligned_addr_hash() where appropriate.
16971 * assembly.c: make var static.
16973 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
16975 * domain-internals.h: Put MonoJitInfo on a diet.
16977 * domain.c: Fix a warning.
16979 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
16981 * gc.c: rework the gc handles code to reuse handles
16984 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
16986 * domain.c: fixed long standing bug in mono_string_equal() which
16987 was brought to light with the ldstr changes.
16989 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
16991 * reflection.c: Remove warning by adding missing include for marshal.h
16993 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
16995 * domain.c, object.c: change the ldstr_table to hold
16996 MonoString* as keys: makes the runtime isinterned lookup
16997 faster and simplifies memory management.
16999 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
17001 * icall.c: Renamed GetEnvironmentVariable so internal* so it was
17002 possible to add imperative security checks before calling the icall.
17003 * reflection.c: Return security attributes on the original MonoMethod
17004 (and not the wrapped one). This fix permissions on icalls.
17006 2005-01-25 Dick Porter <dick@ximian.com>
17008 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
17009 the check for mktime() support actually test the mktime() return
17010 value. "Fixes" bug 71682, though the output is still different to
17013 2005-01-25 Martin Baulig <martin@ximian.com>
17015 * class.c (mono_class_is_assignable_from): Make this work for
17018 2005-01-24 Ben Maurer <bmaurer@ximian.com>
17020 * marshal.c (mono_string_utf8_to_builder)
17021 (mono_string_builder_to_utf16): We might not have ownership of the
17022 string. In thise case, we need to create a new buffer.
17024 * object-internals.h (mono_stringbuilder_capacity): sb->str might
17025 be null, in which case, use the default capacity.
17027 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
17029 * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
17030 GC events to the profiler.
17032 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
17034 * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
17035 if you don't want the GC to run.
17037 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
17039 * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
17040 start providing a GC API and keeping different implementations in
17042 * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
17044 2005-01-22 Ben Maurer <bmaurer@ximian.com>
17046 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
17047 mmap rather than allocating a huge buffer.
17048 (mono_debug_close_mono_symbol_file): Free the buffer allocated
17051 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
17053 * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
17054 and CheckExecutionRights.
17055 * reflection.c|h: Keep the index of the declarative security to be
17056 used, instead of the pointer, when AOT compiler is used. Also add
17057 class initialization when requesting demands.
17058 * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
17059 CheckExecutionRights. Both properties are now FALSE by default, and
17060 unmodifiable, unless the --security option is used.
17062 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17064 * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
17065 reflection.c: properly refcount images and assemblies, many leaks fixed.
17067 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17069 * threadpool.c: increase the timeout for threads in the thread pool to
17070 10s. Fixes bug #67159.
17072 2005-01-20 Bernie Solomon <bernard@ugsolutions.com>
17074 * class-internals.h: Sun's compiler insists on explicit
17075 signed on bit fields to handle then correctly.
17077 2005-01-19 Miguel de Icaza <miguel@ximian.com>
17079 * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
17080 Make the size of the array fit only the number of invalid path
17081 chars that we have.
17083 * class.c (_mono_class_get): Improve the error reporting when a
17084 class referenced is not found, to assist debugging.
17086 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
17088 * threads.c: fix off-by-one error.
17089 * domain.c: free data allocated in the domain.
17091 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
17093 * reflection.c (mono_method_body_get_object): Fill out exception info
17096 * object-internals.h: Add MonoReflectionExceptionHandlingClause
17099 2005-01-19 Martin Baulig <martin@ximian.com>
17101 * loader.c (mono_get_method_constrained): Make this work again.
17103 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
17105 * object-internals.h (_MonoReflectionMethodBody): Make local_index a
17106 guint16 to match the managed side.
17108 * reflection.c (mono_reflection_body_get_object): Fill out local
17111 * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
17114 * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
17115 'local_var_sig_token'.
17117 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
17119 * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks
17122 * reflection.c (mono_method_body_get_object): Handle abstract and
17125 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
17127 * marshal.c, loader.c, class-internals.h, reflection.c:
17128 store the emthod data for a wrapper in an array instead of a list.
17130 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
17132 * marshal.c: change the code to allocate memory more
17133 conservatively for method wrappers.
17135 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
17137 * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
17138 fields from MonoClass to the marshal info structure where they belong.
17140 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
17142 * class.c, object.c, class-internals.h, marshal.c: rearrange
17143 some fields and tweak some types to lower memory usage.
17145 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
17147 * threads.c (signal_thread_state_change): Handle the case when the
17148 target thread is the current thread.
17150 * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
17152 * marshal.c: Rename emit_ptr_to_str_conv and its pair to
17153 emit_ptr_to_object_conv.
17155 * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
17156 marshalling. Fixes #71352.
17158 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
17160 * metadata.h, blob.h: move table enum to blob.h so it can be included
17162 * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
17163 cut the size of MonoImage/MonoDynamicImage.
17165 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
17167 * profiler.c (mono_profiler_install_simple): Fix default arguments.
17169 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
17171 * reflection.c, reflection.h, icall.c: add a function to check
17172 if an attribute type is defined for a metadata object.
17174 2005-01-14 Lluis Sanchez Gual <lluis@novell.com>
17176 * object-internals.h: Added some needed fields from StringBuilder class.
17177 * marshal.c: Set the maxCapacity when creating a StringBuilder.
17179 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
17181 * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
17182 threads before shutting down the runtime.
17184 * threads.c (mono_thread_suspend_all_other_threads): New helper function.
17186 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
17188 * object-internal.h, threads.c: implement stacksize and
17189 parameterized thread start functionality (requires
17190 matching corlib). Marked broken code for later removal.
17192 2005-01-12 Martin Baulig <martin@ximian.com>
17194 * class-internals.h (MonoGenericClass): Moved the `initialized'
17195 flag to MonoDynamicGenericClass, removed `init_pending'.
17196 (MonoGenericInst): Added `is_reference' flag.
17198 2005-01-12 Zoltan Varga <vargaz@freemail.hu>
17200 * reflection.c (mono_image_create_pefile): Only set the pe_offset
17201 inside the MSDOS header. Fixes #71201.
17203 * gc.c (mono_gc_cleanup): Handle the case when this is called from the
17205 (mono_domain_finalize): Ditto.
17207 2005-01-12 Martin Baulig <martin@ximian.com>
17209 * class.c (mono_get_shared_generic_class): Use the cache for
17210 non-dynamic generic classes.
17212 * class-internals.h (mono_class_create_generic_2): Removed
17213 function prototype, this function is now static inside class.c.
17215 * class.c (mono_class_create_generic_2): Made this static, only
17216 call it from mono_class_init() and mono_class_setup_parent().
17217 (collect_implemented_interfaces_aux): Call mono_class_init() on
17218 the interfaces we collect.
17219 (mono_class_setup_vtable): Call mono_class_init (class->parent).
17221 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
17223 * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
17224 it a real thread handle.
17226 * domain-internals.h: Move exvar_offset from MonoJitInfo to
17227 MonoJitExceptionInfo, since each catch clause needs its own variable.
17229 2005-01-11 Dick Porter <dick@ximian.com>
17231 * image.c (mono_pe_file_open): New variant on mono_image_open()
17232 that does not set up the CLI metadata; used for FileVersionInfo so
17233 it can get the data for windows binaries too.
17235 * process.c (process_read_string_block): Don't read off the end of
17236 the StringTable block.
17238 These both fix bug 70766.
17240 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
17242 * gc.c: set some fields to NULL at GC cleanup time.
17243 * threads.c: if we quit the main thread, call exit ().
17245 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
17247 * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
17249 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
17251 * threads.h, threads.c, object.c: added accessor and settor for
17252 main_thread. Handle it specially when exiting from it: wait
17253 for other foreground threads to exit.
17255 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
17257 * process.c, verify.c: remove some bloat.
17259 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
17261 * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
17262 the calling convention to cdecl under win32.
17264 2005-01-08 Ben Maurer <bmaurer@ximian.com>
17266 * object.c (mono_object_get_size): New function to get the size of
17267 an object instance.
17269 * profiler.c (simple_allocation): Use above.
17271 2005-01-08 Sebastien Pouliot <sebastien@ximian.com>
17273 * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
17274 ves_icall_System_AppDomain_getRootDomain (as it's not required to
17275 get an appdomain by it's id and we can't assume the root's id is 0).
17276 * domain-internals.h: Change the function prototype to match.
17277 * icall.c: Change the icall table for AppDomain.
17279 2005-01-08 Miguel de Icaza <miguel@ximian.com>
17281 * locales.c (string_invariant_compare_char): Only compute
17282 GUnicodeTypes in the case where we need them. Test for ordinality
17283 first and return if so.
17288 * FIXME: here we must use the information from c1type and c2type
17289 * to find out the proper collation, even on the InvariantCulture, the
17290 * sorting is not done by computing the unicode values, but their
17291 * actual sort order.
17294 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
17296 * loader.c: for P/Invoke methods, allow the "Internal" shared
17297 library name to refer to the calling process symbol namespace.
17299 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
17301 * Makefile.am: Add the security manager to the build.
17302 * security-manager.c|h: New. Initialization of the security manager.
17304 2005-01-07 Dick Porter <dick@ximian.com>
17307 * monitor.c: Update thread state during Monitor and WaitHandle
17308 waits. Fixes bug 71031.
17310 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
17312 * reflection.c (property_encode_signature): Correctly handle when the
17313 property has no methods.
17315 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
17317 * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
17319 * reflection.c (reflection_methodbuilder_from_method_builder): Copy
17320 fields from mb, not rmb. Fixes #71017.
17322 * marshal.c (emit_ptr_to_str_conv): Add support for
17323 ByValTStr -> string conversion. Fixes #71015.
17325 * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
17327 * mempool.c (mono_mempool_contains_addr): New helper function.
17329 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
17331 * metadata.c (mono_metadata_compute_size): Fix size calculation of
17332 HasSematics encoded fields.
17334 * metadata.c (mono_type_to_unmanaged): Improve error message for
17335 invalid string marshalling.
17337 * metadata.c: Fix warnings.
17339 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
17341 * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
17344 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
17346 * domain.c object.c domain-internals.h: Revert part of r38077 since the
17347 keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
17350 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
17352 * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
17353 so methods containing these can be AOTed.
17355 2005-01-03 Martin Baulig <martin@ximian.com>
17357 * loader.c (find_method): Removed the hack for generic instances.
17358 (method_from_memberref): If our parent is a generic instance, pass
17359 its generic type definition to find_method() and then inflate the
17361 (mono_get_method_constrained): Pass the generic type definition to
17362 find_method() and inflate the method later.
17364 * class-internals.h (MonoStats): Added `generic_class_count'.
17366 * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
17367 Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
17369 * reflection.c (mono_custom_attrs_from_params): Don't ignore
17370 generic type definitions.
17372 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
17374 * loader.c icall.c: Fix warnings.
17376 2004-12-29 Zoltan Varga <vargaz@freemail.hu>
17378 * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
17379 blittable types. Fixes #70864.
17381 2004-12-29 Martin Baulig <martin@ximian.com>
17384 (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
17386 * reflection.c (mono_method_get_object): Create a
17387 "System.Reflection.MonoGenericMethod" for inflated methods; don't
17388 call mono_get_inflated_method().
17390 * class-internals.h (MonoStats): Added `inflated_method_count_2'.
17392 2004-12-27 Martin Baulig <martin@ximian.com>
17394 * class-internals.h (MonoMethod): Added `is_inflated' flag.
17395 (MonoMethodInflated): Added `inflated' field.
17397 * class.c (mono_class_inflate_generic_method): Don't really
17398 inflate the method here; just set the `is_inflated' flag in the
17400 (mono_class_get_inflated_method): Actually inflate the method here
17401 if it's not already inflated; we use the MonoMethodInflated's new
17402 `inflated' field as a cache.
17404 2004-12-26 Martin Baulig <martin@ximian.com>
17407 (inflate_generic_class): Moved some code out of inflate_generic_type().
17408 (mono_class_inflate_generic_method): If we're already inflated,
17409 inflate the context and use the declaring method; ie. make sure
17410 the declaring method of an inflated method is always the generic
17412 (mono_class_create_from_typedef): Create
17413 `class->generic_container->context->gclass'.
17415 2004-12-24 Ben Maurer <bmaurer@ximian.com>
17417 * metadata-internals.h, marshal.c, reflection.c: More
17418 MonoGHashTable->GHashTable.
17420 * domain-internals.h, class.c: Change MonoGHashTable's into
17421 GHashTables for some cases where no gc stuff is used
17423 All users: update apis
17425 2004-12-23 Ben Maurer <bmaurer@ximian.com>
17427 * metadata.c (builtin_types): Make this `const'. Makes this get
17428 put into the shareable section.
17429 (mono_metadata_init): Casts to make gcc happy.
17431 2004-12-22 Zoltan Varga <vargaz@freemail.hu>
17433 * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
17435 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
17437 * icall.c: Added an internal call to retrieve the position and length
17438 of assembly-level declarative security attributes (RequestMinimum,
17439 RequestOptional and RequestRefuse). This is used by the Assembly class
17440 to re-create the corresponding permission sets.
17442 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
17444 * marshal.c: fix the stelemref wrapper to be type correct
17447 2004-12-20 Ben Maurer <bmaurer@ximian.com>
17449 * icall.c (ves_icall_System_Object_GetHashCode): There was no need
17450 to do key & 0x7fffffff. Hashtable already does this. It just
17451 results in longer code.
17453 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
17455 * appdomain.c: Bump corlib version.
17456 * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
17457 * domain.c: Add RuntimeSecurityFrame to mono_defaults.
17458 * reflection.c|h: Add functions to get declarative security infos
17459 (blob position and length) for assemblies, classes and methods.
17461 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
17463 * reflection.c: sort the constant table (bug #70693).
17465 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
17467 * object-internals.h, threads.c, domain.c: add accessors for
17468 the MonoThread and MonoDomain tls keys.
17470 2004-12-18 Martin Baulig <martin@ximian.com>
17472 * class.c (inflate_generic_type): If we're inflating a generic
17473 instance, set `ngclass->context->container = context->container';
17474 ie. the container we inflated into.
17476 * metadata.c (mono_metadata_parse_generic_param): Reflect above
17477 inflate_generic_type() changes.
17479 2004-12-17 Martin Baulig <martin@ximian.com>
17481 * class-internals.h
17482 (MonoGenericClass): Replaced `MonoType *generic_type' with
17483 `MonoClass *generic_class'. Removed `dynamic_info'; if
17484 `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
17485 (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
17487 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
17489 * exception.c (mono_exception_from_token): New helper function.
17491 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
17493 * assembly.c (mono_assembly_load_with_partial_name): Call
17494 mono_assembly_loaded before invoking the preload hooks. Fixes
17497 * object-internals.h (MonoThread): Change culture_info and
17498 ui_culture_info into an array.
17500 * threads.c: Cache culture info objects from more than one appdomain.
17502 * threads.c threads-types.h icall.c: Add icalls for manipulating the
17503 current UI culture.
17505 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
17507 * threads.h threads.c appdomain.c: Clear the culture_info field of
17508 all threads during unloading if they point to an object in the dying
17511 2004-12-13 Ben Maurer <bmaurer@ximian.com>
17513 * culture-info.h (TextInfoEntry): New struct
17514 * object-internals.h: sync with managed
17515 * locales.c: fill the `text_info_data' field
17516 * culture-info-tables.h: update
17518 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
17520 * Makefile.am, monodiet.c: add monodiet, an IL code garbage
17523 2004-12-12 Ben Maurer <bmaurer@ximian.com>
17525 * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
17526 (ves_icall_ModuleBuilder_getMethodToken): Ditto
17528 2004-12-12 Martin Baulig <martin@ximian.com>
17530 * mono-debug-debugger.c (write_type): If we're an enum and the
17531 builtin types have already been initialized, call mono_class_init().
17533 2004-12-11 Martin Baulig <martin@ximian.com>
17535 * metadata.c (mono_metadata_load_generic_params): Added
17536 `MonoGenericContainer *parent_container' argument; automatically
17537 compute `container->is_method'; pass the correct owner to
17540 * reflection.c (compare_genericparam): Sort the GenericParam table
17541 according to increasing owners.
17543 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
17545 * profiler.c: allow disabling the default profiler.
17547 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
17549 * decimal.c, icall.c: allow disabling System.Decimal support.
17551 2004-12-09 Marek Safar <marek.safar@seznam.cz>
17553 * reflection.c: Add support for null attribute arguments.
17555 2004-12-09 Martin Baulig <martin@ximian.com>
17557 * metadata.h, loader.h: Use `idx' instead of `index' in parameter
17558 names to get rid of compiler warnings.
17560 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
17562 * marshal.c (mono_marshal_get_struct_to_ptr): Call
17563 mono_marshal_load_type_info (). Fixes #69625.
17564 (mono_marshal_get_ptr_to_struct): Likewise.
17566 2004-12-08 Martin Baulig <martin@ximian.com>
17568 * mono-debug.h: Bumped version number to 47.
17570 * mono-debug-debugger.c
17571 (mono_debugger_event_handler, mono_debugger_event): Take two
17572 guint64 arguments insteed of a gpointer and a guint32.
17574 2004-12-08 Martin Baulig <martin@ximian.com>
17576 * debug-mono-symfile.h
17577 (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
17578 `address' to `native_offset'.
17580 2004-12-08 Martin Baulig <martin@ximian.com>
17582 * class.c (mono_class_create_from_typespec): Only inflate if we
17583 either have `context->gclass' or `context->gmethod'.
17585 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
17587 * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
17589 * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
17591 * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
17593 * reflection.c (mono_assembly_get_object): Remove the workaround put
17594 in for the release.
17596 * appdomain.c: Use the corlib_internal field from MonoAssembly.
17598 * appdomain.c: Bump corlib version.
17600 * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
17601 be visible in other appdomains.
17603 2004-12-07 Ben Maurer <bmaurer@ximian.com>
17605 * threads.c: Interlocked inc and dec for longs were messed up,
17606 use a KISS based impl for this. Fixes 70234
17608 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
17610 * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
17612 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
17614 * icall.c: fix to follow policy not to allow struct
17615 arguments in icalls.
17617 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17619 * process.c: make the patch that handles spaces in file paths work
17620 on mono/windows too.
17622 2004-12-06 Martin Baulig <martin@ximian.com>
17624 * class.c (mono_class_create_generic): Call
17625 mono_class_setup_supertypes() if we're dynamic.
17626 (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
17628 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
17630 * object-internals.h: Add new fields to MonoThread.
17632 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17634 * icall.c threads-types.h threads.c: Add new icalls.
17636 * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
17638 * object-internals.h (MonoReflectionAssembly): Sync object layout with
17641 * appdomain.c: Bump corlib version.
17643 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
17644 internal assemblies. Fixes #69181.
17646 2004-12-05 Martin Baulig <martin@ximian.com>
17648 * class.c (mono_class_inflate_generic_signature): Make this a
17649 no-op if `context' is NULL or we don't have any type parameters;
17650 also copy `sentinelpos'.
17652 2004-12-04 Zoltan Varga <vargaz@freemail.hu>
17654 * image.c: Add unbox_wrapper_cache.
17656 * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
17658 * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
17659 function generator.
17661 * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
17664 * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
17666 2004-12-04 Martin Baulig <martin@ximian.com>
17668 * loader.c (mono_method_get_signature_full): New public function;
17669 like mono_method_get_signature(), but with an additional
17670 `MonoGenericContext *' argument.
17672 * class.c (mono_class_inflate_generic_signature): Formerly known
17673 as inflate_generic_signature(); make this public.
17675 2004-12-04 Martin Baulig <martin@ximian.com>
17678 (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
17679 instead of a `MonoGenericContainer *'.
17680 (mono_metadata_parse_array_full): Likewise.
17681 (mono_metadata_parse_signature_full): Likewise.
17682 (mono_metadata_parse_method_signature_full): Likewise.
17683 (mono_metadata_parse_generic_inst): Likewise.
17684 (mono_metadata_parse_generic_param): Likewise.
17685 (mono_metadata_parse_mh_full): Likewise.
17686 (mono_type_create_from_typespec_full): Likewise.
17688 2004-12-03 Martin Baulig <martin@ximian.com>
17690 * class-internals.h (MonoGenericContainer): Replaced the
17691 `MonoGenericContext * pointer with a `MonoGenericContext'
17692 structure and made it the first element.
17694 2004-12-03 Martin Baulig <martin@ximian.com>
17697 (inflate_generic_type): Set the `context->container' when creating
17698 a new MonoGenericContext.
17699 (mono_class_inflate_generic_method): Likewise.
17700 (mono_class_create_from_typespec): Just use `context->container'
17701 to get the container.
17703 * loader.c (method_from_methodspec): Set `context->parent' from
17704 `context->container' - and if that's a method container, use its
17705 parent. Also set the `context->container' when creating a new
17706 MonoGenericContext.
17707 (mono_get_method_from_token): Use just `context->container' to get
17710 * metadata.c (do_mono_metadata_parse_generic_class): Also set
17711 `gclass->context->container'.
17713 * reflection.c (do_mono_reflection_bind_generic_parameters): Set
17714 the `context->container' when creating a new MonoGenericContext.
17716 2004-12-03 Zoltan Varga <vargaz@freemail.hu>
17718 * reflection.c (compare_genericparam): Sort params with identical
17719 owner by their number. Fixes gen-111 on sparc.
17721 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
17723 * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
17724 around the domain changes.
17726 * appdomain.c (mono_domain_unload): Handle the case when the thread
17727 calling Unload is itself being aborted during unloading. Fixes #70022.
17729 * appdomain.h: Add prototype for mono_install_runtime_cleanup.
17731 * marshal.c (emit_thread_interrupt_checkpoint_call): Call
17732 checkpoint_func as an icall so it gets a wrapper.
17733 (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
17734 in the cross-appdomain wrappers too.
17736 * threads.c (mono_thread_has_appdomain_ref): Make this public.
17738 * assembly.c (mono_assembly_open_from_bundle): Fix warning.
17740 * reflection.c: Fix some memory leaks.
17742 2004-12-02 Martin Baulig <martin@ximian.com>
17744 * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
17746 * metadata.c (generic_class_cache): New static hashtable.
17747 (mono_metadata_lookup_generic_class): New public method.
17749 2004-12-02 Martin Baulig <martin@ximian.com>
17751 * class.c (mono_class_create_from_typedef): Call
17752 mono_class_setup_parent() and mono_class_create_mono_type() before
17753 parsing the interfaces.
17755 2004-12-02 Martin Baulig <martin@ximian.com>
17757 * metadata.c (generic_inst_cache): New static hashtable.
17758 (mono_metadata_lookup_generic_inst): New public function.
17759 (mono_metadata_inflate_generic_inst): New public function.
17760 (mono_metadata_parse_generic_inst): New public function.
17761 (do_mono_metadata_parse_generic_class): Use the new
17762 mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
17763 since this'll also use the cache.
17765 * reflection.c (mono_reflection_bind_generic_method_parameters):
17766 Use mono_metadata_lookup_generic_inst() to use the new cache.
17768 * class.c (inflate_mono_type): Use
17769 mono_metadata_inflate_generic_inst() to inflate a generic
17770 instance; this'll also use the new cache.
17772 * loader.c (method_from_methodspec): Use
17773 mono_metadata_parse_generic_inst() and
17774 mono_metadata_inflate_generic_inst() rather than parsing it
17775 manually, so we can use the new cache.
17777 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
17779 * threads.c (wait_for_tids): Do not incorrectly free threads when
17780 the wait times out.
17782 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
17784 * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
17785 iter->args based on whether parameters are passed in registers (i.e.
17786 MONO_ARCH_REGPARMS is defined)
17788 2004-12-01 Zoltan Varga <vargaz@freemail.hu>
17790 * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
17791 the exception message. Fixes #70070.
17792 (method_from_methodspec): Fix warnings.
17794 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17796 * process.c: (complete_path) return the path quoted
17798 2004-12-01 Martin Baulig <martin@ximian.com>
17800 * class-internals.h (MonoGenericInst): New structure.
17801 (MonoGenericClass): Replaced `type_argc', `type_argv' and
17802 `is_open' with `MonoGenericInst *inst'.
17803 (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
17804 `is_open' with `MonoGenericInst *inst'.
17806 2004-11-30 Martin Baulig <martin@ximian.com>
17808 Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
17810 * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
17811 to `generic_class_cache'.
17814 (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
17815 (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
17816 (mono_generic_inst_is_valuetype): Renamed to
17817 mono_generic_class_is_valuetype().
17819 * class-internals.h
17820 (MonoGenericInst): Renamed to MonoGenericClass.
17821 (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
17822 (MonoClass): Renamed `generic_inst' to `generic_class'.
17823 (MonoGenericContext): Renamed `ginst' to `gclass'.
17825 * object-internals.h
17826 (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
17828 * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
17829 mono_reflection_generic_class_initialize().
17831 * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
17832 now known as "System.Reflection.MonoGenericClass".
17833 (monogenericinst_icalls): Renamed to monogenericclass_icalls.
17835 2004-11-29 Sebastien Pouliot <sebastien@ximian.com>
17837 * class-internals.h: Added a flag field to MonoClass to cache the
17838 declarative security attributes actions associated with the class.
17839 * domain-internals.h: Added booleans to MonoJitInfo to cache the
17840 (class or method level) stack modifiers (Assert, Deny and PermitOnly)
17841 applicable to the JITted method.
17842 * reflection.c|h: Added functions to extract (as flags) which security
17843 actions are available (declaratively) for a method, class or assembly.
17844 * metadata.c|h: Added functions to search the declarative security
17845 table in the metadata.
17847 2004-11-29 Ben Maurer <bmaurer@ximian.com>
17849 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
17850 EXPORTEDTYPES are already in the class name cache, so there is no
17851 need to add extra code here to look at them. Just removes a bit of
17854 (ves_icall_System_Environment_get_TickCount): No need for #if
17855 WINDOWS. We already have the code in io-layer.
17857 2004-11-28 Martin Baulig <martin@ximian.com>
17860 (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
17863 2004-11-27 Miguel de Icaza <miguel@ximian.com>
17865 * assembly.c (do_mono_assembly_open): Instead of having a
17866 conditional WITH_BUNDLE, incorporate support for bundles here, by
17867 having a global `bundles' variable holding a pointer to the actual
17870 (mono_register_bundled_assemblies): New API call used by the
17873 See mkbundle.1 for details.
17875 2004-11-27 Martin Baulig <martin@ximian.com>
17877 * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
17878 the vtable for generic methods.
17880 2004-11-26 Martin Baulig <martin@ximian.com>
17883 (mono_metadata_generic_method_hash): New public function.
17884 (mono_metadata_generic_method_equal): Likewise.
17886 * class-internals.h
17887 (MonoGenericContainer): Added `GHashTable *method_hash'.
17889 * reflection.c (ReflectionMethodBuilder): Added
17890 `MonoGenericContainer *generic_container'.
17891 (reflection_methodbuilder_to_mono_method): Don't create a new
17892 MonoGenericContainer each time we're called.
17893 (mono_reflection_bind_generic_method_parameters): Use
17894 `container->method_hash' to cache the results so we don't create a
17895 different method if we're called several times with the same
17898 * loader.c (method_from_methodspec): Use the new
17899 `container->method_hash' here, too.
17901 2004-11-26 Martin Baulig <martin@ximian.com>
17903 * class.c (inflate_generic_signature): Correctly compute
17904 `res->has_type_parameters'.
17905 (mono_class_vtable): Use the `has_type_parameters' flag to
17906 determine whether we're a generic method.
17908 * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
17910 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
17912 * object.c (mono_runtime_run_main): Fix a small memory leak.
17914 2004-11-25 Martin Baulig <martin@ximian.com>
17916 * class.c (set_generic_param_owner): Fixed the loop.
17918 2004-11-25 Martin Baulig <martin@ximian.com>
17920 * object.c (mono_class_vtable): Don't create any JIT wrappers for
17923 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
17925 * reflection.c: Allow all kinds of whitespace, not just ' ' in type
17926 names. Fixes #69787.
17928 2004-11-24 Martin Baulig <martin@ximian.com>
17930 * class.c (mono_class_create_generic_2): If we don't have a
17931 `ginst->parent', inflate `gklass->parent' to get our parent.
17933 2004-11-24 Martin Baulig <martin@ximian.com>
17935 * reflection.c (compare_genericparam): Correctly sort the
17936 GenericParam table; fixes #69779.
17938 2004-11-23 Ben Maurer <bmaurer@ximian.com>
17940 * reflection.c: When writing a PE file, don't create a huge
17941 buffer in memory. Just write the arrays we have to the file.
17942 This reduces memory usage.
17944 * metadata-internals.h: MonoDynamicStream pefile is no longer used
17947 2004-11-17 Martin Baulig <martin@ximian.com>
17949 * class.c (mono_class_init): Don't setup `class->parent' for
17950 dynamic instances; moved this to mono_class_generic_2().
17951 (mono_class_create_generic): Also set `klass->inited' for dynamic
17953 (mono_class_create_generic_2): Don't do anything for dynamic
17954 generic instances. Set `klass->parent' here and also call
17955 mono_class_setup_parent() here.
17957 * reflection.c (do_mono_reflection_bind_generic_parameters): Added
17958 `MonoType *parent' argument; set `ginst->parent' before calling
17959 mono_class_create_generic_2(), so we set the correct parent.
17961 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
17963 * reflection.c: allow getting attributes from ModuleBuilder
17966 2004-11-17 Martin Baulig <martin@ximian.com>
17968 * class.c (mono_class_create_from_typedef): If a type parameter is
17969 inherited from an outer class, set its owner to that class.
17971 2004-11-17 Atsushi Enomoto <atsushi@ximian.com>
17973 * reflection.c: (mono_image_create_pefile): Don't use NULL argument
17974 for (int*) written size. This fixes bug #69592.
17976 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
17978 * icall.c: Added IsAuthenticodePresnet internal call.
17979 * image.c|h: New function that check a MonoImage for an Authenticode
17980 signature in the certificate PE data directory.
17981 * security.c|h: New internal call to ask the runtime if an
17982 Authenticode signature seems referenced in the PE header.
17984 2004-11-15 Zoltan Varga <vargaz@freemail.hu>
17986 * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
17988 * reflection.c (mono_image_create_pefile): Free the assembly streams
17989 after writing out the assembly file.
17991 * object.c (mono_runtime_run_main): Fix small memory leak.
17993 * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
17994 property access modifiers. Fixes #69389.
17996 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
17998 * domain.c, object.c, object-internals.h, domain-internals.h,
17999 object.h, marshal.c: keep dynamic code info per domain.
18001 2004-11-15 Martin Baulig <martin@ximian.com>
18003 * class.c (mono_type_get_name_recurse): Put type arguments in
18004 `[',`]' instead of in `<','>'. Thanks to Atsushi for the patch,
18007 2004-11-15 Martin Baulig <martin@ximian.com>
18009 * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
18010 (mono_class_setup_vtable): When computing `the_cname' for a
18011 generic instance, don't include the namespace since we'd otherwise
18014 2004-11-15 Martin Baulig <martin@ximian.com>
18016 * class.c (mono_class_create_generic): Changed return type to void.
18017 (mono_class_create_generic_2): New public function; setup
18018 `class->method', `class->field' and `class->interfaces' here
18019 instead of in mono_class_init().
18021 * class.h (mono_class_create_generic): Moved to class-internals.h.
18023 2004-11-14 Ben Maurer <bmaurer@ximian.com>
18025 * reflection.c (mono_image_create_pefile): take a file HANDLE.
18026 rather than writing to memory, write to this file. Right now,
18027 we are just writting into a buffer, and copying that. However
18028 we can avoid the buffer later.
18030 (mono_dynamic_stream_reset): new function
18032 * icall.c, object-internals.h: update for the above.
18034 2004-11-13 Ben Maurer <bmaurer@ximian.com>
18036 * reflection.c: Remove *_ATOMIC macros. We really shouldn't
18037 have been using gc'd memory. First it is slower, unlikely
18038 the comment in the source code said, secondly, it increases
18039 our footprint to do it in the gc.
18041 * icall.c (WriteToFile): rename of getDataChunk. Rewrite
18042 the method so that it does not have to copy to managed code.
18044 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
18046 * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
18048 2004-11-12 Martin Baulig <martin@localhost>
18050 * reflection.c (mono_image_create_token): Allow generic method
18051 definitions here, since they may appear in an `.override'; see
18052 gen-98/gen-99 for an example.
18054 2004-11-11 Zoltan Varga <vargaz@freemail.hu>
18056 * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
18059 * marshal.c (mono_string_to_ansibstr): Make g_error messages more
18062 2004-11-11 Martin Baulig <martin@ximian.com>
18064 * class.c (mono_class_setup_vtable): In an explicit interface
18065 implementation, the method name now includes the arity.
18067 2004-11-10 Zoltan Varga <vargaz@freemail.hu>
18069 * object.c (mono_array_full_copy): Fix warning.
18071 2004-11-10 Lluis Sanchez Gual <lluis@novell.com>
18073 * appdomain.c: Removed look_for_method_by_name(). Use the new method
18074 mono_class_get_method_from_name() instead.
18076 * class-internals.h: Added two new types of wrappers.
18077 Added MonoRemotingTarget enum. Added new trampoline function type, which
18078 takes an additional MonoRemotingTarget value as parameter, so it is
18079 possible to request a trampoline for a specific target.
18081 * class.c: Added new mono_class_get_method_from_name() method.
18083 * class.h: In MonoRemoteClass, we can have now to vtables, one for
18084 general remoting sinks and one specific for cross domain calls.
18086 * debug-helpers.c: Added new wrapper names.
18088 * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
18091 * image.c: Porperly delete value objects form the remoting invoke hashtable.
18093 * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
18094 with several other methods (mono_marshal_get_xappdomain_dispatch,
18095 mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
18096 and others) can generate a fast remoting wrapper for cross domain calls.
18097 More information can be found in docs/remoting.
18098 Other changes: Removed mono_find_method_by_name, and used
18099 mono_class_get_method_from_name instead.
18100 Remoting wrappers are now stored in a MonoRemotingMethods struct, which
18101 is stored in the remoting invoke hashtable.
18103 * marshal.h: published the new method for getting the xdomain wrapper,
18104 and also added a method for getting the adequate wrapper for a given
18107 * object-internals.h, object.c: Added a couple of methods for capying and
18109 Modified mono_install_remoting_trampoline, which takes the new remoting
18110 trampoline that has a remoting target as parameter.
18111 mono_class_proxy_vtable now also takes a remoting target as parameter, and
18112 will return the most suitable vtable for the target.
18113 Added mono_remote_class_vtable, which returns the vtable of a remote class
18114 (which can be the normal remoting vtable or the xdomain vtable).
18116 * threads.c: the xdomain invoke and dispatch wrappers must also be
18117 protected against interruptions.
18119 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18121 * icall.c: use memmove in BlockCopyInternal when the source and
18122 destination arrays are the same.
18124 2004-11-09 Martin Baulig <martin@ximian.com>
18126 * class-internals.h (MonoGenericContainer): Removed `method' and
18127 `signature', replaced them with `is_method' and `is_signature'
18128 flags. Added `context'.
18130 * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
18131 instead of a `MonoGenericContainer *'.
18133 * metadata.c (mono_metadata_generic_param_equal): Removed the hack
18134 for dynamic type parameters.
18135 (mono_metadata_load_generic_params): Setup `container->context'.
18137 * reflection.c (mono_reflection_setup_generic_class): Setup
18138 `tb->generic_container->context'.
18139 (do_mono_reflection_bind_generic_parameters): Use
18140 mono_class_inflate_generic_type() to correctly inflate types,
18141 rather than using our own hack just for MONO_TYPE_VAR.
18143 2004-11-09 Martin Baulig <martin@ximian.com>
18145 * class.c (mono_class_inflate_generic_method): Small fix; don't
18149 (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
18150 (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
18151 (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
18152 (ves_icall_Type_BindGenericParameters): Likewise.
18153 (ves_icall_Type_get_IsGenericInstance): Likewise.
18154 (ves_icall_Type_GetGenericParameterPosition): Likewise.
18155 (ves_icall_MonoType_get_HasGenericArguments): Likewise.
18156 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18157 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
18159 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
18161 * assembly.c (mono_assembly_names_equal): Reenable the comparison of
18162 assembly versions and public key tokens. Fixes #69113.
18164 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
18166 * metadata.c: fix bug introduced with the type cache changes
18169 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
18171 * metadata.h, metadata.c, domain-internals.h, marshal.c: include
18172 the MonoClass pointer instead of the token in exception clauses.
18173 * reflection.c: updates for the above and make the code not depend
18174 on the structure of MonoExceptionClause.
18176 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
18178 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
18179 Add support for dynamic assemblies. Fixes #69114.
18181 * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
18183 2004-11-07 Ben Maurer <bmaurer@ximian.com>
18185 * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
18186 since most only those methods use it. the code member of
18187 MonoMethodPInvoke was dead, so that can be removed too. Also,
18188 remove inline_count (again, not used), and move slot so that it
18189 can share bits with some other flags. This saves 8 bytes in the
18190 structure and gives us about 50 kb back for mcs helloworld.cs
18192 * *.[ch]: Do naming changes for the above.
18194 * loader.c (mono_method_get_header): Lazily init the header
18196 (mono_get_method_from_token): don't init the header here
18197 (mono_free_method): the header may never be allocated
18199 Overall, this saves 150 kb of unmanaged allocations
18200 for mcs helloworld.cs. That accounts for 10% of the unmanaged
18203 * loader.c, loader.h (mono_method_get_header): new accessor.
18205 * *.[ch]: use the above method. Prepares us to lazily load
18208 * *.[ch]: Clean up all the pesky warnings. gcc now only gives
18209 three warnings, which are actual bugs (see 69206).
18211 * class-internals.h (MonoMethod): Remove remoting_tramp. It is
18212 unused. Saves a cool 4 bytes / method.
18214 2004-11-06 Ben Maurer <bmaurer@ximian.com>
18216 * metadata.c (builtin_types): Add types for System.Object here.
18217 (mono_metadata_parse_type_full): Cache MonoType*'s that are
18218 for a class or valuetype from klass->this_arg or klass->byval_arg.
18220 On mcs for a hello world, this gets us down from 21836 MonoType's
18223 (mono_metadata_free_type): Account for the above change.
18225 2004-11-06 Zoltan Varga <vargaz@freemail.hu>
18227 * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an
18228 exception instead of asserting if name is null.
18229 (ves_icall_System_AppDomain_GetData): Ditto.
18231 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
18233 (ves_icall_get_enum_info): Avoid crash when called on a non-finished
18236 * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly):
18237 Return NULL when the domain does not have entry_assembly set.
18239 * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal):
18240 Add a 'resource_modules' argument.
18241 (ves_icall_type_GetTypeCode): Fix typecode of byref types.
18243 * reflection.c (mono_reflection_create_runtime_class): Move setting
18244 of wastypebuilder here, so mono_get_type_object () returns a MonoType
18247 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
18248 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
18249 Throw an ArgumentNullException if 'ptr' is null.
18251 * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
18252 assemblies here. Fixes #69020.
18254 2004-11-05 Geoff Norton <gnorton@customerdna.com>
18256 * reflection.c (build_compressed_metadata): Fix the previous patch for
18257 big endian systems. GUINT32_FROM_LE isn't needed on strlen and was overwriting
18260 2004-11-04 Zoltan Varga <vargaz@freemail.hu>
18262 * assembly.c (mono_assembly_names_equal): Allow a match if one of
18263 the cultures is false. Fixes #69090.
18265 * reflection.c (build_compressed_metadata): Fix invalid memory read
18266 detected by valgrind.
18268 * reflection.c (mono_reflection_get_type): Avoid triggering a
18269 TypeResolve multiple times for the same type. Fixes #65577.
18271 2004-11-04 Ben Maurer <bmaurer@ximian.com>
18273 * marshal.c: Avoid using ldftn to call managed functions. It is
18274 much slower than just a call.
18276 * reflection.c (mono_module_get_object): free the basename we
18277 allocate here from glib.
18279 * reflection.c (ensure_runtime_vtable): make sure to free
18280 overrides. Also, we were allocating an array of MonoMethod not an
18281 array of MonoMethod*.
18283 * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
18285 * image.c (mono_image_close): free image->guid here.
18287 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
18289 * reflection.c: Fix some spec conformance issues with the PE file
18290 structures so mcs compiled apps run on the Net 2.0 beta.
18292 2004-11-01 Zoltan Varga <vargaz@freemail.hu>
18294 * string-icalls.c (ves_icall_System_String_ctor_encoding):
18295 Implement this. Fixes #67264.
18297 * debug-helpers.h debug-helpers.c marshal.c: Move
18298 mono_find_method_by_name to debug-helpers.c.
18300 2004-10-31 Zoltan Varga <vargaz@freemail.hu>
18302 * object.c (mono_release_type_locks): type_initialization_hash is
18305 * reflection.c object.c object-internals.h: Fix warnings.
18307 * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
18308 without accessors. Fixes #61561.
18310 * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
18311 application base from the root domain if not set. Fixes #65641.
18312 (mono_runtime_init): Fix warning.
18314 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18316 * appdomain.c: call mono_thread_pool_init.
18317 * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
18318 of worker threads based on the number of CPUs and the environment
18319 variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
18320 for non-windows (windows) systems.
18322 2004-10-27 Chris Toshok <toshok@ximian.com>
18324 * mono-debug-debugger.c (write_class): don't call mono_class_init
18325 here, as even with the check for (!klass->init_pending), we get
18326 into a situation where we're hitting cycles in class
18327 initialization. Fixes #68816.
18329 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
18331 * image.c: Avoid overwriting values in the loaded_images_hash when an
18332 assembly is loaded multiple times. Fixes #61152.
18334 * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
18335 so multiple satellite assemblies for the same name can be loaded.
18338 * mono_domain_assembly_preload: Actually return the loaded assembly,
18341 * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
18342 (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
18344 * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
18345 pending finalizers are not invoked after the appdomain has been
18346 unloaded. Fixes #67862.
18348 2004-10-22 Martin Baulig <martin@ximian.com>
18350 * mono-debug-debugger.c
18351 (mono_debugger_runtime_invoke): Don't box valuetypes.
18353 2004-10-22 Chris Toshok <toshok@ximian.com>
18355 * mono-debug-debugger.c (do_write_class): handle .cctors too, and
18356 don't hide private methods.
18358 2004-10-22 Sebastien Pouliot <sebastien@ximian.com>
18360 * icall.c: Allows the runtime to "share" (when known) the public key
18361 token of an assembly. This avoid the need to recalculate the token
18362 (from the public key) in managed code.
18364 2004-10-21 Chris Toshok <toshok@ximian.com>
18366 * debug-helpers.c (append_class_name): argh, revert last patch.
18368 2004-10-21 Chris Toshok <toshok@ximian.com>
18370 * debug-helpers.c (append_class_name): use '+' as the delimiter,
18371 not '/', so that it matches what the debugger uses to look up
18374 2004-10-21 Martin Baulig <martin@ximian.com>
18376 * mono-debug-debugger.c (mono_debugger_throw_exception): New
18377 public method; this is called each time an exception is thrown and
18378 allows the debugger to use exception catch points.
18380 2004-10-21 Martin Baulig <martin@ximian.com>
18382 * mono-debug-debugger.c (mono_debugger_handle_exception): Write
18383 the stack pointer and the exception object in some struct and pass
18384 that to the debugger.
18386 2004-10-21 Chris Toshok <toshok@ximian.com>
18388 * mono-debug-debugger.c (do_write_class): add instance/static
18389 event support. We don't expose "raise" or "other" yet.
18390 (event_is_static): new method.
18392 2004-10-20 Bernie Solomon <bernard@ugsolutions.com>
18394 * mono-debug-debugger.c
18395 (mono_debugger_handle_exception): Remove
18396 bogus return value for fussy compilers.
18398 2004-10-20 Martin Baulig <martin@ximian.com>
18400 * mono-debug-debugger.c
18401 (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
18402 (mono_debugger_handled_exception): Likewise.
18404 2004-10-20 Martin Baulig <martin@ximian.com>
18406 * mono-debug-debugger.h (MonoDebuggerEvent): Added
18407 MONO_DEBUGGER_EVENT_EXCEPTION.
18409 * mono-debug-debugger.c (mono_debugger_handle_exception): New
18410 public function to send the debugger a notification for an
18411 exception and inform it about a catch/finally clause.
18413 2004-10-19 Zoltan Varga <vargaz@freemail.hu>
18415 * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
18416 Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
18419 * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
18421 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
18423 * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
18424 marshalled as [In,Out]. Fixes #58325.
18426 2004-10-14 Zoltan Varga <vargaz@freemail.hu>
18428 * reflection.c (mono_method_body_get_object): Implement some fields.
18430 2004-10-12 Martin Baulig <martin@ximian.com>
18432 * reflection.c (mono_reflection_bind_generic_parameters): Small
18433 fix, correctly retrieve our parent from a generic instance.
18435 2004-10-12 Martin Baulig <martin@ximian.com>
18437 * metadata.c (mono_metadata_generic_param_equal): We always have
18441 (mono_class_from_generic_parameter): We need to have an owner.
18442 (my_mono_class_from_generic_parameter): Likewise.
18444 * reflection.c (mono_reflection_setup_generic_class): Renamed to
18445 mono_reflection_create_generic_class() and added a new
18446 mono_reflection_setup_generic_class().
18447 (mono_reflection_initialize_generic_param): If we're a nested
18448 generic type and inherited from the containing class, set our
18449 owner to the outer class.
18451 2004-10-11 Zoltan Varga <vargaz@freemail.hu>
18453 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
18455 * reflection.c (mono_method_body_get_object): New function to create
18456 a MethodBody object.
18458 * object-internals.h object.h: Add MonoReflectionMethodBody structure.
18460 2004-10-11 Martin Baulig <martin@ximian.com>
18462 * metadata.c (_mono_metadata_type_equal): Renamed to
18463 do_mono_metadata_type_equal() and made static.
18465 2004-10-11 Martin Baulig <martin@ximian.com>
18467 * appdomain.c: Bump corlib version number to 28.
18469 2004-10-10 Martin Baulig <martin@ximian.com>
18471 * class-internals.h
18472 (MonoGenericInst): Added `MonoGenericContainer *container'.
18473 (MonoGenericMethod): Likewise.
18474 (MonoGenericContext): Likewise.
18475 (MonoGenericParam): Added `MonoGenericContainer *owner'.
18478 (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
18479 (do_mono_metadata_parse_generic_inst): Likewise.
18480 (mono_metadata_parse_type_full): New public method. This is the actual
18481 mono_metadata_parse_type() implementation - with an additional
18482 `MonoGenericContainer *' argument.
18483 (mono_metadata_parse_array_full): Likewise.
18484 (mono_metadata_parse_signature_full): Likewise.
18485 (mono_metadata_parse_method_signature_full): Likewise.
18486 (mono_metadata_parse_mh_full): Likewise.
18487 (mono_type_create_from_typespec): Likewise.
18488 (mono_metadata_interfaces_from_typedef_full): New public method;
18489 this is similar to the other _full() methods, but we take a
18490 `MonoGenericContext *' since we have to pass it to mono_class_get_full().
18491 (mono_metadata_parse_generic_param): Take an additional
18492 `MonoGenericContainer *' argument and lookup the MonoGenericParam
18493 from that container.
18494 (mono_metadata_generic_param_equal): New static method to compare
18495 two type parameters.
18496 (_mono_metadata_type_equal): New static method; takes an
18497 additional `gboolean signature_only' argument - if true, we don't
18498 compare the owners of generic parameters.
18499 (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
18500 with a TRUE argument - do a signature-only comparision.
18502 * loader.c: Use the new _full() methods and pass the
18503 MonoGenericContainer to them.
18505 * object-internals.h (MonoReflectionTypeBuilder): Added
18506 `MonoGenericContainer *generic_container' field.
18507 (MonoReflectionMethodBuilder): Likewise.
18509 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
18511 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
18512 case initial images of dynamic assemblies.
18514 * reflection.c (mono_image_basic_init): Set 'initial_image' field.
18516 * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
18518 * reflection.c (mono_reflection_event_builder_get_event_info): Fix
18519 length of event->other array.
18520 (typebuilder_setup_events): Ditto.
18522 * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
18523 'assembly_by_name' and add an 'assemblies' list.
18525 * assembly.h assembly.c: Add a new search hook for determining whenever
18526 an assembly is already loaded. Use this instead of searching in the
18527 loaded_assemblies list.
18529 * domain.c appdomain.c: Implement the new search hook so loaded
18530 assemblies are now scoped by appdomain. Fixes #67727.
18532 2004-10-07 Zoltan Varga <vargaz@freemail.hu>
18534 * threads.c (mono_thread_attach): Initialize synch_lock field so
18535 mono_thread_detach works again.
18537 * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
18538 'lib' too. Fixes #63130.
18540 2004-10-06 Jackson Harper <jackson@ximian.com>
18542 * culture-info-tables.h: regenerated.
18544 2004-10-06 Zoltan Varga <vargaz@freemail.hu>
18546 * icall.c (ves_icall_Type_GetInterfaces): Include interfaces
18547 implemented by other interfaces in the result. Fixes #65764.
18549 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
18550 Handle unloadable modules without crashing.
18552 * image.c (load_modules): Revert the previous patch since modules must
18553 have a fixed index inside the array.
18555 * image.c (load_modules): Don't include native modules in the modules
18558 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
18560 * reflection.h: Add param_defaults field.
18562 * reflection.c: Add support for parameter defaults in dynamic methods.
18565 * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
18566 an empty string when a type has no namespace. Fixes #64230.
18568 2004-10-04 Sebastien Pouliot <sebastien@ximian.com>
18570 * tabledefs.h: Added "internal" security actions to support non-CAS
18571 permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance.
18572 Note: they do not seems to be used anymore in 2.0 (new metadata format)
18574 2004-10-04 Zoltan Varga <vargaz@freemail.hu>
18576 * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
18577 constructor of abstract class. Fixes #61689.
18579 2004-10-04 Martin Baulig <martin@ximian.com>
18581 * class-internals.h (MonoGenericContainer): New type.
18582 (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
18583 `MonoGenericContainer *generic_container'.
18584 (MonoClass): Replaced `gen_params' and `num_gen_params' with
18585 `MonoGenericContainer *generic_container'.
18587 * metadata.c (mono_metadata_load_generic_params): Return a
18588 `MonoGenericContainer *' instead of a `MonoGenericParam *';
18589 removed the `num' argument.
18591 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
18593 * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
18594 for dynamic images.
18596 * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
18599 * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
18601 * reflection.c: Save pe_kind and machine values into the generated
18604 * appdomain.c: Bump corlib version number.
18606 * object-internals.h: Reorganize layout of LocalBuilder.
18608 * class-internals.h class.c (mono_class_get_implemented_interfaces):
18609 New helper function.
18611 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
18612 created MonoType for dynamic types. Fixes #66180.
18614 2004-10-02 Ben Maurer <bmaurer@ximian.com>
18616 * threadpool.c: the ares hashtable needs a critical section around it.
18617 this prevents some nasty segfaults
18619 2004-10-02 Massimiliano Mantione <massi@ximian.com>
18621 * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
18622 on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
18625 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
18627 * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
18629 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
18631 * image.c: Always canonicalize image file names, to avoid loading
18632 the same assembly twice when referenced using a relative path.
18634 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
18636 * marshal.h marshal.c icall.c: Fix bugs in previous patch.
18638 * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
18640 * marshal.c: Fix warnings.
18642 2004-09-29 Geoff Norton <gnorton@customerdna.com>
18644 * marshal.c (mono_ftnptr_to_delegate): This method was improperly
18645 attempting to marshal the delegate_trampoline as the method_addr.
18646 This patch has a static hashtable of marshalled delegates so that
18647 we can map delegate_trampoline addresses back to delegates. This
18648 allows a delegate passed to managed code to be passed back into native
18651 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
18653 * icall.c: Add GetFunctionPointerForDelegateInternal icall.
18655 * reflection.c (method_encode_code): Align method headers properly.
18658 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
18660 * marshal.c: In the runtime invoke wrapper, reset the abort
18661 exception if it is cached. This avoids the automatic rethrowal of
18662 the exception after the catch of the wrapper. Also check for pending
18663 interruptions before calling the managed method. This is done using
18664 the new method emit_thread_force_interrupt_checkpoint, since the
18665 normal checkpoint method is ignored when running the invoke wrapper.
18666 * object.c: If the abort exception is rethrown, set the abort_exc
18667 field of the thread, so it will be rethrown aftere every catch.
18668 * threadpool.c: Only run an interruption checkpoint if what has been
18669 requested is a stop of the thread (aborts will be ignored).
18670 * threads.c: By default, a thread will now never be interrumped while
18671 running the runtime invoke wrapper (this ensures that runtime_invoke
18672 will always return to the caller if an exception pointer is provided).
18673 There is a new special method mono_thread_force_interruption_checkpoint()
18674 to force an interruption checkpoint even if running a protected
18675 wrapper, which is used by the same runtime invoke wrapper to do a check
18678 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
18680 * object.c, object-internals.h: Implemented mono_release_type_locks,
18681 which releases the cctor locks held by a thread.
18682 * threads.c, threads.h: In thread_cleanup, release cctor locks held
18683 by a thread. Added mono_thread_exit() method to be used to safely stop
18686 2004-09-28 Raja R Harinath <rharinath@novell.com>
18688 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
18689 Move null check before dereference. Avoid indexing beyond the end
18690 of the 'modules' array.
18692 2004-09-28 Raja R Harinath <rharinath@novell.com>
18694 * metadata-internals.h (MonoImage): Add module_count field.
18695 * image.c (load_modules): Set image->module_count.
18696 (mono_image_load_file_for_image): Use image->module_count.
18697 * reflection.c (mono_image_load_module): Append to image->modules array
18698 of dynamic assembly.
18699 (mono_module_get_object): Fix loop to actually increment index.
18700 Use image->module_count.
18701 * assembly.c (mono_assembly_load_references): Use image->module_count.
18702 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
18705 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
18707 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
18708 Avoid assert on generic types.
18710 2004-09-26 Zoltan Varga <vargaz@freemail.hu>
18712 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
18714 * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
18716 * reflection.c (mono_reflection_marshal_from_marshal_spec): New
18717 function to convert a MarshalSpec structure to its managed counterpart.
18719 * reflection.c: Fix warnings.
18721 * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
18724 * icall.c (mono_create_icall_signature): Fix build.
18726 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
18728 * icall.c: Add MakePointType icall.
18730 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
18733 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18735 * threadpool.c: reuse allocated slots in the queue.
18737 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
18739 * object-internals.h (MonoReflectionDllImportAttribute): New structure.
18741 * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
18743 * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
18746 * tabledefs.h: Add constants for pinvoke attributes BestFit and
18747 ThrowOnUnmappableChar.
18749 * icall.c (ves_icall_Type_GetPacking): New icall.
18751 2004-09-24 Martin Baulig <martin@ximian.com>
18753 * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
18755 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18758 (mono_domain_set): allow setting a domain that is being unloaded.
18759 (mono_domain_unload): invoke the DomainUnload callbacks in the domain
18762 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
18764 * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
18765 the GetCustomAttributes icall.
18767 2004-09-23 Martin Baulig <martin@ximian.com>
18769 * object-internals.h (MonoReflectionGenericParam): Replaced
18770 'has_ctor_constraint', `has_reference_type' and `has_value_type'
18771 with `guint32 attrs'.
18773 2004-09-23 Martin Baulig <martin@ximian.com>
18775 * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
18777 2004-09-23 Martin Baulig <martin@ximian.com>
18779 * object-internals.h (GenericParameterAttributes): New enum.
18781 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
18783 * object-internals.h (MonoEventInfo): Add 'other_methods' field.
18785 * class.c (init_events): Fill out event->other field.
18787 * class.c: Fix warnings.
18789 * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
18791 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
18793 * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
18794 walk which doesn't supply the IL offset.
18796 2004-09-22 Martin Baulig <martin@ximian.com>
18798 * reflection.c (mono_reflection_setup_internal_class): If we're
18799 System.ValueType, System.Object or System.Enum, set
18800 `klass->instance_size' and create the vtable.
18801 (mono_reflection_create_internal_class): If we're an enum type,
18802 get the base class from our current corlib.
18804 2004-09-22 Zoltan Varga <vargaz@freemail.hu>
18806 * reflection.h (MonoResolveTokenError): New type.
18808 * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
18811 * icall.c: Add an 'error' argument to the ResolveToken icalls.
18813 2004-09-22 Lluis Sanchez Gual <lluis@novell.com>
18815 * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
18816 Support also calling constructors, but only for already allocated objects.
18818 2004-09-17 Geoff Norton <gnorton@customerdna.com>
18820 * reflection.c (type_get_qualified_name): If the klass is null
18821 return the typename to avoid a NullRefEx.
18822 (encode_cattr_value): Get the qualified name of the boxed type,
18823 not the underlying enumtype. Fixes #62984.
18825 2004-09-21 Zoltan Varga <vargaz@freemail.hu>
18827 * marshal.c: Fix problems with previous checkin.
18829 2004-09-21 <vargaz@freemail.hu>
18831 * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
18832 existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
18834 * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
18836 2004-09-21 Geoff Norton <gnorton@customerdna.com>
18838 * icall.c (ves_icall_MonoType_GetElementType): GetElementType
18839 should only return a type for pointers, arrays, and passbyref types.
18842 2004-09-21 Martin Baulig <martin@ximian.com>
18844 * domain.c (mono_debugger_check_runtime_version): New public
18847 * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.
18849 2004-09-20 Sebastien Pouliot <sebastien@ximian.com>
18851 * reflection.c: Added missing sort to the declarative security
18852 attributes table. MS implementation stops seeing the attributes if the
18853 token number regress in the table (as shown by ildasm and permview).
18855 2004-09-20 Zoltan Varga <vargaz@freemail.hu>
18857 * object-internals.h (MonoReflectionModule): Add 'token' field.
18859 * reflection.c (mono_reflection_get_token): Add support for Module
18861 (mono_module_get_object): Set 'token' field.
18862 (mono_module_file_get_object): Set 'token' field.
18864 * icall.c: Add new Assembly and Module icalls.
18866 * appdomain.c: Bump corlib version.
18868 2004-09-19 Zoltan Varga <vargaz@freemail.hu>
18870 * loader.h loader.c class.h class.c: Add helper functions for obtaining
18871 tokens of metadata objects.
18873 * reflection.h reflection.c (mono_reflection_get_token): New function
18874 to obtain the token of a metadata object.
18876 * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
18878 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
18880 * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
18882 * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
18884 2004-09-16 Sebastien Pouliot <sebastien@ximian.com>
18886 * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
18887 * object-internals.h: Added 3 MonoArray* members to MonoReflection
18888 AssemblyBuilder to access the permissions set in the class lib.
18889 * reflection.c: Added security attributes encoding step in
18890 mono_image_build_metadata.
18891 * tabledefs.h: Added new security actions defined in 2.0:
18892 LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
18894 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
18896 * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
18899 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
18901 * locales.c: nullify the ICU_collator member of CompareInfo when it is
18902 finalized. There where random SIGSEVs at program termination, when
18903 an object being finalized was trying to do a string comparison and
18904 the current culture was already finalized.
18906 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18908 * threads.c: call thread_cleanup before finishing the thread if we get
18911 2004-09-16 Zoltan Varga <vargaz@freemail.hu>
18913 * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
18914 assemblies from the parent. Fixes #65665.
18916 2004-09-15 Zoltan Varga <vargaz@freemail.hu>
18918 * metadata.c (mono_metadata_parse_type): Fix parsing of custom
18921 2004-09-14 Bernie Solomon <bernard@ugsolutions.com>
18923 * reflection.h: add prototype for mono_get_dbnull_object
18924 * reflection.c: add prototypes for get_default_param_value_blobs
18925 and mono_get_object_from_blob for fussier compilers
18927 2004-09-14 Lluis Sanchez Gual <lluis@novell.com>
18929 * object.c: Added a "done" flag to TypeInitializationLock. This avoids
18930 false deadlock checks in class initialization.
18932 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
18934 * image.c (mono_image_addref): Fix comment.
18936 * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
18939 2004-09-12 Jambunathan K <kjambunathan@novell.com>
18941 * reflection.c (mono_param_get_objects): Modified to return
18942 ParameterInfo.DefaultValue object.
18944 (get_default_param_value_blobs):
18945 (mono_get_object_from_blob):
18946 (mono_get_dbnull_object): New helper routines.
18948 * object.c (mono_get_constant_value_from_blob): New helper routine
18949 carved out from get_default_field_value ()
18951 * object-internals.h (mono_get_constant_value_from_blob): Added
18952 function declaration.
18954 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
18956 * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load
18957 referenced assemblies. Fixes #62135.
18959 * exception.h exception.c (mono_get_exception_file_not_found2): New
18962 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
18964 * class.h class.c: Add mono_type_get_underlying_type ().
18966 2004-09-09 Geoff Norton <gnorton@customerndna.com>
18968 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
18969 Fix GetTypes() to support dynamically created assemblies.
18971 2004-09-09 Zoltan Varga <vargaz@freemail.hu>
18973 * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
18975 * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
18978 * reflection.h reflection.c loader.c: Allow dynamic construction of
18979 pinvoke methods. Fixes #65571.
18981 * reflection.c (mono_reflection_get_type): Revert previous change since
18982 it causes regressions.
18984 2004-09-08 Martin Baulig <martin@ximian.com>
18986 * class.c (class_compute_field_layout): Don't call
18987 mono_class_layout_fields() for open generic instances.
18989 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
18990 * threads.c appdomain.c: fix typo in GC macro
18992 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18994 * threads.c: don't call mono_thread_detach() in start_wrapper(),
18995 avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
18997 2004-09-08 Zoltan Varga <vargaz@freemail.hu>
18999 * image.c (mono_image_close): Applied patch from
19000 vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
19001 assembly is loaded multiple times from data.
19003 * image.c (mono_image_open): Fix warning.
19005 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
19007 * reflection.h reflection.c icall.c: Only call TypeResolve handlers
19008 once. Fixes #58334.
19010 * reflection.c (mono_reflection_create_runtime_class): Initialize
19011 klass->nested_classes. Fixes #61224.
19013 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
19015 * threads.c: sched_yield() on exit, to allow threads to quit.
19017 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
19019 * object.c (mono_unhandled_exception): Remove leftover debug code.
19021 2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
19023 * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
19025 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
19027 * marshal.c (emit_marshal_array): Really null terminate string arrays.
19029 * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
19031 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
19033 * marshal.c (emit_marshal_array): Null terminate string arrays.
19035 * marshal.c (raise_auto_layout_exception): Fix warning.
19037 * reflection.c (mono_param_get_objects): Initialize the default value
19038 with DBNull.Value, not null. Fixes #62123.
19040 2004-09-01 Miguel de Icaza <miguel@ximian.com>
19042 * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
19043 throw an exception with a cute explanation.
19045 2004-09-06 Dick Porter <dick@ximian.com>
19047 * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
19048 Close the new process's thread handle, as we don't use it. The
19049 handle stays around forever otherwise.
19051 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
19053 * object.c (arith_overflow): Fix warning.
19055 * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
19056 calling conventions in method refs. Fixes #65352.
19058 * reflection.c: Fix warnings.
19060 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
19062 * icall.c: Add a new icall for Array.Clear
19064 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
19066 * object.c: When allocating an array, we have to throw
19067 an overflow exception if any of the lengths are < 0.
19069 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
19071 * marshal.h marshal.c: Free unmanaged memory allocated by managed code
19072 properly. Also move implementation of string array marshalling to
19073 managed code. Fixes #42316.
19075 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19077 * assembly.c: provide more information when loading an assembly fails.
19079 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19081 * filewatcher.c: don't expect the development fam package to be
19084 2004-09-03 Zoltan Varga <vargaz@freemail.hu>
19086 * marshal.c: Make a copy of the signature cookie since it will be
19087 freed by the caller.
19089 * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
19091 * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
19093 * metadata.c (mono_metadata_free_marshal_spec): New function to free
19096 * marshal.c: More refactoring.
19098 * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
19101 2004-09-03 Lluis Sanchez Gual <lluis@novell.com>
19103 * object.c: In mono_message_invoke, fill the output parameter array after
19104 calling the managed method (it was done before the call). This fixes
19107 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
19109 * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
19112 2004-09-02 Martin Baulig <martin@ximian.com>
19114 * class.c (mono_class_instance_size): Don't allow generic type
19115 definitions or open generic instances.
19116 (mono_class_array_element_size): If we're a value type, call
19117 mono_class_instance_size() on the original class.
19119 * metadata.c (mono_type_size, mono_type_stack_size): Correctly
19120 handle generic instances.
19122 * mono-debug-debugger.c (write_type): Handle generic instances
19125 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
19127 * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
19128 the allocation request fails. Fixes #65089.
19130 * object.c (mono_runtime_free_method): Do not call mono_free_method.
19132 * object.c (mono_runtime_free_method): New function to free a dynamic
19135 * marshal.c (mono_delegate_free_ftnptr): New function to free the
19136 delegate trampoline.
19138 * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
19139 with hasthis as dynamic,
19141 * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
19143 * domain.c (mono_jit_info_table_remove): New function to remove an
19144 entry from the jit info table.
19146 * class-internals.h (MonoMethod): Add 'dynamic' field.
19148 * loader.c: Fix warnings.
19150 2004-09-01 Martin Baulig <martin@ximian.com>
19152 * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
19153 instead of mono_debugger_lock() because the latter one is a no-op
19154 unless running in the debugger.
19156 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
19158 * class.c (class_compute_field_layout): Classes with auto-layout or
19159 reference fields are not blittable.
19161 2004-09-01 Dick Porter <dick@ximian.com>
19163 * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
19164 mono_image_get_filename() to get the assembly location.
19167 * metadata.h: Fix compile warnings
19169 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
19171 * class.c (class_compute_field_layout): System.Object is blittable.
19173 * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
19174 as in/out. Fixes #59909.
19176 2004-09-01 Martin Baulig <martin@ximian.com>
19178 * metadata.h (MONO_TYPE_ISREFERENCE): Call
19179 mono_metadata_generic_inst_is_valuetype() if we're a generic
19180 instance to check whether our underlying type is a reference type.
19182 2004-09-01 Martin Baulig <martin@ximian.com>
19184 * metadata.c (mono_type_size): If we're a generic instance, call
19185 mono_class_value_size() for value types.
19187 2004-08-31 Zoltan Varga <vargaz@freemail.hu>
19189 * marshal.c: Implement more custom marshalling functionality. Fixes
19192 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
19194 * mono-debug.c, debug-mono-symfile.c: add some locking love.
19196 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
19198 * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
19200 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
19202 * icall.c: Fix some warnings.
19204 * threads.c (abort_appdomain_thread): Fix unref errors.
19205 (mono_thread_current): Fix THREAD_DEBUG define.
19207 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
19209 * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
19211 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
19213 2004-08-28 Zoltan Varga <vargaz@freemail.hu>
19215 * marshal.c (mono_marshal_get_native_wrapper): Add support for byref
19218 2004-08-28 Martin Baulig <martin@ximian.com>
19221 (mono_metadata_generic_inst_is_valuetype): New public function.
19223 * metadata.h (MONO_TYPE_ISSTRUCT): Call
19224 mono_metadata_generic_inst_is_valuetype() if we're a generic
19225 instance to check whether our underlying type is a valuetype.
19227 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
19229 * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
19232 2004-08-25 Martin Baulig <martin@ximian.com>
19234 * loader.c (mono_get_method_from_token): Abstract methods can also
19235 be generic and thus have type parameters.
19237 * metadata-internals.h
19238 (MonoDynamicImage): Added `GPtrArray *gen_params'.
19240 * reflection.c (mono_image_get_generic_param_info): Don't create a
19241 metadata row, just add an entry to the `gen_params' array.
19242 (build_compressed_metadata): Sort the `gen_params' array and then
19243 actually create the metadata.
19245 2004-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19247 * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
19249 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
19251 * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
19253 2004-08-24 Martin Baulig <martin@ximian.com>
19255 * class.cs (mono_class_is_subclass_of): Like an interface, a
19256 generic instance also derives from System.Object.
19258 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
19260 * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
19261 custom modifiers to be in any order. Fixes #61990.
19263 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
19265 * object.c: Register mono_object_new_fast icall.
19267 * object.c (mono_class_get_allocation_ftn): Return to calling
19268 mono_object_new_fast, since it seems faster to compute the object
19269 size in unmanaged code than passing it as a parameter.
19271 * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
19273 * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
19274 this function with Boehm as the oom handler, so we don't have to check
19275 the result of GC_malloc.
19277 * object.c: Remove checks for oom.
19279 * object.h object.c (mono_class_get_allocation_ftn): New function to
19280 return the icall which can be used to allocate an instance of a given
19283 * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
19285 * class-internals.h: Add 'enabled' field.
19287 2004-08-19 Zoltan Varga <vargaz@freemail.hu>
19289 * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
19291 2004-08-18 Jambunathan K <kjambunathan@novell.com>
19292 * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
19295 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
19297 * appdomain.c: use the Tls function for appdomain too,
19298 at Zoltan's request. Actually return in mono_context_get
19300 * appdomain.c, profiler.c, threads.c: use __thread
19302 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
19304 * appdomain.c threads.c: Call GC_CreateThread on windows.
19306 * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
19307 multiple libraries since this don't work on windows.
19309 2004-08-18 Martin Baulig <martin@ximian.com>
19311 * class-internals.h
19312 (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
19315 * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
19316 MonoMethodNormal since we also need it for abstract and interface
19320 (build_compressed_metadata): Sort the GenericParam table.
19321 (mono_image_create_token): Added `gboolean create_methodspec'
19322 argument; this is false when generating a MethodImpl token.
19323 (reflection_methodbuilder_to_mono_method): Abstract and interface
19324 methods may also have generic parameters.
19326 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
19328 * appdomain.c: thread local alloc
19330 2004-08-17 Martin Baulig <martin@ximian.com>
19332 * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
19335 (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
19338 * class.c (mono_type_get_full_name): New public function.
19339 (mono_type_get_name): Don't include the type arguments.
19341 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
19343 * Makefile.am: Build static versions of libmetadata and libmonoruntime
19344 for inclusion into the mono executable.
19346 2004-08-16 Martin Baulig <martin@ximian.com>
19348 * metadata.c (do_mono_metadata_parse_generic_inst): Store the
19349 MonoGenericInst, not the MonoType in the `generic_inst_cache'.
19351 2004-08-14 Martin Baulig <martin@ximian.com>
19353 * class.c (dup_type): Also copy the `byref' field.
19355 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
19357 * reflection.c (create_dynamic_mono_image): Revert the last change
19358 since it breaks bootstrap.
19360 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
19362 * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
19364 * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
19365 not free them with g_free.
19367 2004-08-11 Martin Baulig <martin@ximian.com>
19369 * reflection.c (mono_reflection_setup_internal_class): Also call
19370 mono_class_setup_mono_type() if we already have a `tb->type.type'.
19372 2004-08-09 Sebastien Pouliot <sebastien@ximian.com>
19374 * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when
19375 called during default (first) AppDomain creation. Keep track of
19376 Evidence when loading assemblies.
19378 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
19380 * opcodes.c, opcodes.h: reduce runtime relocations.
19382 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
19384 * culture-info.h, locales.c: fixes and chages to sue the new
19385 optimized format of the locale data.
19386 * culture-info-tables.h: regenerated.
19388 2004-08-06 Geoff Norton <gnorton@customerdna.com>
19390 * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
19392 2004-08-05 Sebastien Pouliot <sebastien@ximian.com>
19394 * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
19395 ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
19396 * domain-internals.h: icall declaration.
19397 * icall.c: icall registration.
19398 * object-internals.h: New fields in MonoAssembly for CAS.
19400 2004-08-05 Duncan Mak <duncan@ximian.com>
19402 * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
19405 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
19407 * reflection.c: fix to deal with object[] arrays in custom ctors
19410 2004-08-05 Martin Baulig <martin@ximian.com>
19412 * class.c (mono_class_array_element_size): Added support for
19413 generic instances and correctly handle "recursive" types.
19415 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
19417 * assembly.c: Fix warnings.
19419 2004-08-04 Martin Baulig <martin@ximian.com>
19422 (mono_type_get_name_recurse): Added `gboolean include_arity'
19423 argument specifying whether or not we should include the generic
19424 arity in the type name.
19425 (_mono_type_get_name): New static function.
19426 (mono_class_setup_vtable): If we're a generic instance, don't
19427 include the generic arity in the names of explicit method
19430 2004-08-03 Martin Baulig <martin@ximian.com>
19432 * class.c (mono_type_get_name_recurse): Enclose the generic type
19433 arguments in `<', '>'.
19435 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19437 * gc.c: make GC warning messages use the trace API, they are just
19438 noise to most of the users.
19440 2004-08-03 Martin Baulig <martin@ximian.com>
19442 * debug-mono-symfile.c (read_string): Correctly read the string.
19444 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
19446 * marshal.c (signature_dup_add_this): Fix bug in previous patch.
19448 * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
19450 (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
19452 2004-07-30 Martin Baulig <martin@ximian.com>
19454 * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
19455 Reflect latest symbol writer changes.
19457 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
19459 * object.c: always create an object if null is passed
19460 to Invoke() where a valuetype is expected.
19462 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
19464 * marshal.c (mono_marshal_init): make managed
19465 signatures match native ones better for 64bits.
19467 2004-07-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19469 * appdomain.c: hack to build correctly the private bin path on windows.
19472 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
19474 * assembly.c: Load mscorlib from the correct framework directory
19475 (mono/<version>/mscorlib.dll).
19476 * appdomain.h: Added prototypes for new functions.
19477 * internals.h: Added some prototypes.
19478 * domain.c: When initializing the runtime, get from the executable and
19479 the configuration files the runtime version that the app supports.
19480 Added support methods for reading app.exe.config. Added list of versions
19481 supported by the JIT. Added two new methods: mono_init_from_assembly,
19482 which initializes the runtime and determines the required version from
19483 the provided exe file, and mono_init_version, which initializes
19484 the runtime using the provided version.
19485 * icall.c: Get machine.config from version-specific directory.
19486 * reflection.c: When generating an image, embed the version number
19487 of the current runtime.
19489 2004-07-28 Dick Porter <dick@ximian.com>
19492 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
19493 returned sockaddr size before creating the remote address object.
19494 Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
19497 2004-07-28 Dick Porter <dick@ximian.com>
19499 * locales.c (string_invariant_compare_char): Fix invariant char
19500 compares between upper and lower cases. Fixes bug 61458.
19502 2004-07-27 Ben Maurer <bmaurer@ximain.com>
19504 * marshal.c: actually cache stelem.ref wrappers.
19506 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
19508 * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image
19509 sections and remove the mono_cli_rva_map () function.
19511 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
19513 * debug-mono-symfile.c: fix one more endianess issue, from a patch
19514 by Geoff Norton (<gnorton@customerdna.com>).
19516 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
19518 * class.c: fix class loads for pointer types (typeof(int) !=
19521 2004-07-27 Martin Baulig <martin@ximian.com>
19523 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
19524 reading the debugging information from an external ".mdb" file.
19526 2004-07-24 Martin Baulig <martin@ximian.com>
19528 * reflection.c (mono_image_get_type_info): Only write a class
19529 layout entry if we actually have a size or a packing size.
19531 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
19533 * reflection.c (type_get_fully_qualified_name):
19534 insert cast to get type checking of ?: with non-gcc compilers
19536 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
19538 * rand.c: use g_getenv for both lookups of
19541 2004-07-17 Martin Baulig <martin@ximian.com>
19543 * reflection.c (mono_reflection_bind_generic_method_parameters):
19544 Set `gmethod->reflection_info'.
19546 2004-07-17 Martin Baulig <martin@ximian.com>
19548 * class.c (mono_class_create_from_typedef): Insert the newly
19549 created class into the hash table before computing the interfaces
19550 since we could be called recursively.
19552 2004-07-16 Ben Maurer <bmaurer@ximain.com>
19554 * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
19555 function to implement stelem.ref in managed code
19556 * class-internals.h, debug-helpers.c: a new wrapper type
19559 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
19561 * gc.c: allow GC handles to work even when no GC is compiled in.
19562 Fix part of bug #61134 (GetAddrOfPinnedObject).
19564 2004-07-13 Peter Williams <peter@newton.cx>
19566 * process.c (complete_path): Make sure we don't attempt to execute
19569 2004-07-12 Geoff Norton <gnorton@customerdna.com>
19571 * DateTime.cs: Patch for bug #61112. Our DateTime wasn't roundtripping over timezone
19572 boundaries properly. This patch checkes ToLocalTime() to see if we're tripping over a boundary
19573 and will add/subtract the hour if needed
19575 2004-07-12 Martin Baulig <martin@ximian.com>
19577 * reflection.c (mono_field_get_object): If we have
19578 `field->generic_info', take the attributes from
19579 `field->generic_info->generic_type'.
19581 2004-07-12 Martin Baulig <martin@ximian.com>
19583 * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
19584 This function must be called before initializing the runtime.
19585 (mono_debug_init_1): New function; call this after initializing
19586 the runtime, but before loading the assembly. It tells the
19587 debugger to load corlib and the builtin types.
19589 * mono-debug-debugger.c: Did some larger changes in the debugging
19590 code; support recursive class declarations, make sure we actually
19593 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19595 * debug-helpers.c: undo my previous patch and fixed the real issue in
19596 ../mini/exceptions-x86.c
19598 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19600 * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
19601 when no HOME env. variable was set and a NullRef was thrown in a .cctor
19602 called from other .cctors.
19604 2004-07-09 Miguel de Icaza <miguel@ximian.com>
19606 * loader.c: Removed the mono_loader_wine_init hack now that we are
19607 doing a managed version of Windows.Forms.
19609 2004-07-09 Ben Maurer <bmaurer@ximian.com>
19611 * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
19612 threadpool.c, threads.c: remove static data from rootset.
19614 2004-07-09 Dick Porter <dick@ximian.com>
19616 * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
19617 Don't do any more processing if the matched length was 0. It was
19618 increasing the size of the string before. Fixes bug 61167.
19620 2004-07-09 Dick Porter <dick@ximian.com>
19624 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
19625 Add support for SO_PEERCRED if its available.
19627 2004-07-09 Peter Bartok <pbartok@novell.com>
19628 * loader.c: winelib.exe.so error message is now only displayed if
19629 MONO_DEBUG is set. To help us avoid questions when people are trying
19630 out the new Managed.Windows.Forms.
19632 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
19634 * class-internals.h debug-helpers.c marshal.c: Add new wrapper types
19635 for isinst and castclass wrappers.
19637 * class-internals.h icall.c: Move registration and lookup of JIT icalls
19638 to libmetadata from the JIT, so they could be used by the marshalling
19639 code and the interpreter.
19641 * marshal.c: Register marshalling related JIT icalls here instead of
19642 in mini.c. Use CEE_MONO_ICALL instead of the family of
19643 CEE_MONO_PROC<x> opcodes to call marshalling functions.
19645 * metadata.h: Remove unneeded marshalling conversions.
19647 * opcodes.c: Update for new opcodes.
19649 2004-07-08 Martin Baulig <martin@ximian.com>
19651 * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
19652 (mono_debug_get_domain_data): Make this function static.
19654 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
19656 * gc.c, object.h: add nice GC handle API for embedders.
19658 2004-07-06 Ben Maurer <bmaurer@ximian.com>
19660 * reflection.c: more changes for the new api
19662 * object.c: When we reflect on a field w/ a constant value, it
19663 will not have a memory location, so we must access metadata. Also,
19664 allow easier reading of strings so that we can read them from
19667 * class.c (mono_class_layout_fields): no need for literal fields here.
19669 * class-internals.h: api changes for const fields
19671 * icall.c (ves_icall_get_enum_info): use new apis for const fields
19673 2004-07-06 Martin Baulig <martin@ximian.com>
19675 * mono-debug.h: Increment version number to 44.
19677 * mono-debug.c (mono_debug_add_wrapper): The second argument is
19678 now a gpointer, rewrote this whole method.
19680 * mono-debug-debugger.c (mono_debugger_add_wrapper): New
19681 function. Add information about the wrapper in a new "misc table".
19683 * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
19684 for the new misc table.
19686 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
19688 * metadata-internals.h image.c: Add a cache for helper signatures.
19690 * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
19692 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
19694 * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
19695 delegates from a delegate. Fixes #61033.
19697 * marshal.c: Fix managed->native stringbuilder marshalling. Implement
19698 marshalling of stringbuilder arrays. Fixes #59900.
19700 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
19702 * icall.c: Add EnumBuilder:setup_enum_type icall.
19704 2004-06-30 Ben Maurer <bmaurer@ximian.com>
19706 * icall.c: Added a new icall for the property version of
19707 OffsetOfStringData.
19709 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
19711 * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
19712 it has a constant size across platforms.
19714 * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
19717 2004-06-29 Martin Baulig <martin@ximian.com>
19719 * mono-debug.c (mono_debug_add_method): Protect the whole function
19720 in mono_debugger_lock(), not just parts of it.
19722 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
19724 * reflection.c: make sure padding bytes in heaps are zeroed.
19726 2004-06-24 David Waite <mass@akuma.org>
19728 * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
19729 image.c, loader.c, locales.c, marshal.c, metadata.c,
19730 mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
19731 string-icalls.c, threads.c: change to C90-style comments from C99 /
19734 2004-06-24 Dick Porter <dick@ximian.com>
19737 (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
19738 return createdNew. Fixes bug 60412.
19741 * icall.c: Add createdNew parameter to CreateMutex icall
19743 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
19745 * reflection.c, object-internals.h: save default value in params.
19747 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19749 * appdomain.c: for paths in PrivateBinPath that are absolute, there's
19750 no need to build a new path combining that with the application base.
19753 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
19755 * reflection.c: fixed minor standard compliance issues.
19757 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
19759 * reflection.c: fixed issue with encoding some custom attributes
19760 (arrays in properties and fields, bug #60411).
19762 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19764 * reflection.c: fix start address when copying the public key token.
19766 2004-06-23 Martin Baulig <martin@ximian.com>
19768 * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
19769 the `exc' object in a static object to put it into the GC's root set.
19771 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
19773 * reflection.c: make mono_reflection_setup_internal_class ()
19774 callable a second time to setup a new parent class.
19776 2004-06-23 Dick Porter <dick@ximian.com>
19778 * threads.c: Check for WAIT_IO_COMPLETION return values.
19780 2004-06-22 Sebastien Pouliot <sebastien@ximian.com>
19782 * appdomain.c: Removed the g_free on the public key token. Now copy
19783 the pk token string into the MonoAssemblyName buffer using g_strlcpy.
19784 * assembly.c: Added public key token string value when loading
19785 assemblies. Fix bug #60439.
19786 * icall.c: Added missing informations (like public key) in
19787 GetReferencedAssemblies. Fix #60519.
19788 * image.h: Changed definition for public key token from const char*
19789 public_tok_value to guchar public_key_token [17];
19790 * reflection.c: Updated for changes to public key token.
19792 2004-06-22 Lluis Sanchez Gual
19794 * icall.c: In ves_icall_InternalExecute, when setting a filed, also look
19795 for the field in base classes.
19797 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
19799 * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
19800 mark headers as not supported, they are installed only for use by the
19803 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
19805 * *.c, *.h: avoid namespace pollution in public headers.
19807 2004-06-21 Martin Baulig <martin@ximian.com>
19809 * exception.c (mono_get_exception_security): It's in
19810 "System.Security", not in "System".
19812 * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
19813 the exception classes.
19815 2004-06-21 Martin Baulig <martin@ximian.com>
19817 * mono-debug-debugger.c (mono_debugger_unhandled_exception):
19818 Protect the exception object from being finalized.
19820 2004-06-21 Martin Baulig <martin@ximian.com>
19822 * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
19825 2004-06-21 Sebastien Pouliot <sebastien@ximian.com>
19827 * reflection.c: Load the assembly in mono_reflection_type_from_name,
19828 if it was not loaded before. Fix parts of #60439.
19830 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
19832 * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
19833 code that was broken since Ben's change: wrappers are now
19834 dependent on the method signature only again.
19836 2004-06-21 Martin Baulig <martin@ximian.com>
19838 * mono-debug-debugger.c (write_class): Cleaned this up a bit and
19839 added interface support.
19841 2004-06-21 Martin Baulig <martin@ximian.com>
19843 * class.c (mono_vtable_get_static_field_data): New public method.
19845 2004-06-20 Atsushi Enomoto <atsushi@ximian.com>
19847 * filewatcher.c : Windows build fix to be compliant with API changes.
19849 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
19851 * class.h, class.c: more accessors.
19852 * metadata.h, metadata.c: prepare for hiding MonoType and
19853 MonoMethodSignature: people should use the accessors from now on
19854 outside of the tree.
19856 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
19858 * *.c, *.h: more API cleanups.
19860 2004-06-18 Jackson Harper <jackson@ximian.com>
19862 * assembly.c: Trace loading assemblies.
19863 * loader.c: Trace loading native libraries.
19864 * mono-config.c: Trace loading config files.
19866 2004-06-18 Dick Porter <dick@ximian.com>
19868 * locales.c: Tell ICU the lengths of strings, it can cope with
19869 embedded \0 then. Fixes bug 59274, and doesn't break bug 55822.
19871 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
19873 * image.c: swapped name/filename;
19875 2004-06-18 Martin Baulig <martin@ximian.com>
19877 * mono-debug-debugger.c (write_class): Write the parent class at
19878 the end of the header.
19880 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
19882 * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
19884 2004-06-17 Raja R Harinath <rharinath@novell.com>
19886 * Makefile.am (PLATFORM_LIB): New. Possibly refer to ../os/libmonoos.la.
19887 (bundle_obj): New conditional define.
19888 (BUILT_SOURCES): Remove.
19889 ($(bundle_srcs)): Make parallel-make safe.
19890 (libmonoruntime_la_LIBADD): Make unconditional.
19891 (libmetadata_la_LIBADD): Make unconditional. Refer to $(bundle_obj).
19892 (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
19894 2004-06-17 Atsushi Enomoto <atsushi@ximian.com>
19896 * culture-info-tables.h: It was inconsistent with the latest
19899 2004-06-17 Zoltan Varga <vargaz@freemail.hu>
19901 * assembly.c (mono_assembly_open): Fix crash when the assembly can't
19904 * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
19907 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
19909 * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
19910 cleaned up public header threads.h.
19912 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
19914 * Makefile.am, *.c, *.h: more API cleanups.
19916 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
19918 * Makefile.am: removed monosn from compilation.
19919 * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
19920 debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
19921 image.c, image.h, loader.c, marshal.c, metadata-internals.h,
19922 metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
19923 mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
19924 reflection.c, reflection.h, verify.c: more API cleanups and fixes.
19926 2004-06-15 Jackson Harper <jackson@ximian.com>
19928 * assembly.c: Make locales lower case when searching the GAC for
19929 assemblies. gacutil will always make locales lowercase when
19930 installing so this effectively makes them case insensitive.
19932 2004-06-15 Lluis Sanchez Gual <lluis@ximian.com>
19934 * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
19935 * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
19936 parameter which allows to choose whether the wait can be interrupted or
19937 not. Also added the method mono_monitor_enter(), which locks the monitor
19938 using an infinite wait and without allowing interruption.
19939 In the Monitor.Enter and Wait icalls, retry the lock if the wait is
19941 * object.h: Added new fields in MonoThread. suspend_event holds the event
19942 used to susped/resume the thread. synch_lock is the lock object to use for
19943 modifying the thread state.
19944 * threads.c: Use the new synch_lock object for locking, instead of "this",
19945 which can generate deadlocks.
19946 Moved thread state change in Thread.Sleep and Thread.Join from managed
19947 to unmanaged code. This avoids a deadlock when the thread was suspended
19948 just after acquiring the thread lock.
19949 In general, use mono_monitor_enter instead of mono_monitor_try_enter.
19950 Implemented Thread.Suspend using an event instead of ThreadSuspend,
19951 which is not fully implemented in the io-layer.
19952 * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
19954 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
19956 * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
19957 threads-types.h: more API cleanups.
19959 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
19961 * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
19962 domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
19963 threadpool.c, threads.c: first pass at the exported API cleanup.
19965 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
19967 * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
19969 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19971 * icall.c: added internalGetHome.
19973 2004-06-14 Dick Porter <dick@ximian.com>
19975 * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
19976 possible to return successfully when '.' or '..' were the only
19977 entries in a directory, but were skipped. The MonoIOStat was not
19978 filled in in that case. Now return ERROR_NO_MORE_FILES instead.
19981 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
19983 * reflection.c: make binaries run on .Net 1.1 by default.
19985 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
19987 * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
19989 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
19991 * marshal.c: keep track of struct size with explicit layout
19994 2004-06-12 Martin Baulig <martin@ximian.com>
19996 * mono-debug-debugger.c: Comment out a debugging g_message().
19998 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
20000 * reflection.c, reflection.h: do not free custom attrs that are cached.
20001 * icall.c: use braces to make code clearer.
20003 2004-06-11 Martin Baulig <martin@ximian.com>
20005 * class.h (MonoInflatedField): New type.
20006 (MonoClassField): Replaced `MonoType *generic_type' with
20007 `MonoInflatedField *generic_info'.
20010 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
20012 2004-06-11 Martin Baulig <martin@ximian.com>
20014 * reflection.c (mono_image_create_method_token): Correctly encode
20017 2004-06-11 Martin Baulig <martin@ximian.com>
20019 * metadata.c (mono_metadata_parse_method_signature): When parsing
20020 a MethodDef which has VarArgs, also set sentinelpos if we don't
20021 have any parameters.
20023 2004-06-11 Martin Baulig <martin@ximian.com>
20025 * verify.c (mono_method_verify): In CEE_CALL, use
20026 mono_method_get_signature() to get the method's signature, unless
20027 we're a PInvoke method.
20029 2004-06-10 Jackson Harper <jackson@ximian.com>
20031 * assembly.c: Use <path>/lib/mono/gac for the extra paths
20032 lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
20033 logical name as the supplied path is just a prefix to the gac not
20034 the direct path to it.
20036 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
20038 * reflection.c: make the token for a created method match
20039 the token of the MethodBuilder it was created from
20040 (IKVM requires this behaviour now).
20042 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
20044 * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
20045 reflection.c, socket-io.c: leak fixes.
20047 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
20049 * icall.c: handle sentinel pos in vararg methods in position different
20052 2004-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20054 * culture-info-tables.h: freshly generated.
20056 2004-06-09 Martin Baulig <martin@ximian.com>
20058 * loader.c (mono_get_method_constrained): Call `mono_class_init
20059 (constrained_class)'.
20061 2004-06-08 Gert Driesen <drieseng@users.sourceforge.net>
20063 * icall.c (ves_icall_MonoType_GetEvent): Handle events without
20064 any methods. Fixes #59629.
20066 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
20068 * culture-info-tables.h: reflecting locale-builder updates.
20070 2004-06-08 Dick Porter <dick@ximian.com>
20073 * locales.c: Fixed compile warnings, including a real bug in
20074 CompareInfo_internal_compare.
20076 2004-06-08 Dick Porter <dick@ximian.com>
20079 (ves_icall_System_Globalization_CompareInfo_internal_index):
20080 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
20081 Double-check the resuls of usearches, because ICU currently
20082 ignores most of the collator settings here. Fixes bug 59720.
20084 2004-06-08 Dick Porter <dick@ximian.com>
20087 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
20088 Fix memory leak and segfault-causing typo. No idea how this one
20089 lasted so long without being noticed.
20091 2004-06-09 Zoltan Varga <vargaz@freemail.hu>
20093 * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
20094 any methods. Fixes #59629.
20096 2004-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20099 (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
20100 own the critical section before). Removed dead code (that's done
20101 in the preload hook).
20103 (mono_assembly_load_with_partial_name): call the preload hook.
20105 2004-06-08 Martin Baulig <martin@ximian.com>
20107 * metadata.c (mono_metadata_signature_alloc): Default
20108 `sentinelpos' to -1.
20110 * reflection.c (mono_image_get_array_token): Likewise.
20112 2004-06-08 Martin Baulig <martin@ximian.com>
20114 * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
20116 * metadata.c (mono_metadata_parse_method_signature): When parsing
20117 a MethodDef which has VarArgs, set sentinelpos.
20119 * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
20120 `gint16' since we're using -1 for non-varargs methods.
20123 (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
20124 (method_encode_signature): Added varargs support.
20125 (method_builder_encode_signature): Likewise.
20126 (mono_image_get_varargs_method_token): New static method.
20127 (mono_image_create_method_token): New public method; this is
20128 called via an icall instead of mono_image_create_token() when
20129 calling a varargs method.
20131 2004-06-08 Lluis Sanchez Gual <lluis@ximian.com>
20133 * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
20135 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
20137 * culture-info-tables.h : Reflecting the latest locale-builder that
20138 fixed empty array representation ({} to {0}).
20140 2004-06-07 Jackson Harper <jackson@ximian.com>
20142 * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
20143 looking up extra gac paths. This allows MONO_GAC_PATH to act
20144 exactly like a prefix.
20146 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
20148 * reflection.c (mono_reflection_type_from_name): Make a copy of the
20149 type name before modifying it. Fixes #59405.
20151 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
20153 * culture-info.h: added fields for "all datetime patterns".
20154 * locales.c: ( ves_icall_System_Globalization_CultureInfo
20155 _construct_datetime_format ()): fill xxx_patterns fields.
20156 * object.h: added fields for "all datetime patterns" to
20157 MonoDateTimeFormatInfo.
20158 * culture-info-tables.h: reflecting locale-builder updates.
20160 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
20162 * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
20163 the event has no add and remove methods. Fixes #59629.
20165 2004-06-05 Sebastien Pouliot <sebastien@ximian.com>
20167 * object.c: Fixed possible integer overflow when allocating large
20170 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
20172 * culture-info-tables.h: reflecting locale-builder updates.
20174 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
20176 * culture-info-tables.h: reflecting locale-builder updates.
20178 2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
20180 * culture-info-tables.h: reflecting locale-builder updates.
20182 2004-06-03 Lluis Sanchez Gual <lluis@ximian.com>
20184 * threads.c: Made Thread.Sleep abortable.
20186 2004-06-02 Martin Baulig <martin@ximian.com>
20188 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
20190 * debug-mono-symfile.h: Bumped symbol file version number to 37.
20192 2004-05-31 Zoltan Varga <vargaz@freemail.hu>
20194 * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
20196 2004-05-30 Jackson Harper <jackson@ximian.com>
20198 * reflection.c: Do not hardcode assembly versions or public key
20199 tokens anymore. All of this except the corlib section was dead
20202 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
20204 * object.c (mono_runtime_invoke_array): Automatically create boxed
20205 objects for byref valuetypes if needed. Fixes #59300.
20207 * object.c (mono_method_return_message_restore): Handle
20208 MONO_TYPE_OBJECT as well.
20210 2004-05-28 Jackson Harper <jackson@ximian.com>
20212 * reflection.c: The modified type encoding was causing build
20213 problems. Reverted for now.
20215 2004-05-28 Jackson Harper <jackson@ximian.com>
20217 * reflection.c/h: Take an assembly ref so that we dont create
20218 fully qualified names when encoding types in the same assembly as
20219 the custom attribute being emitted.
20220 * appdomain.c: Increment version number.
20222 2004-05-26 Duncan Mak <duncan@ximian.com>
20225 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20226 Set the full version number (major, minor, build, revision).
20228 2004-05-28 Vladimir Vukicevic <vladimir@pobox.com>
20230 * marshal.c (emit_struct_conv): increment src/dst after blit
20231 (mono_marshal_get_managed_wrapper,
20232 mono_marshal_get_native_wrapper): make sure we have marshalling
20233 info before marshalling params (info computation affects
20236 * class.c (class_compute_field_layout): correctly deal with
20238 (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
20239 value types (as per what windows dows by default)
20240 (mono_class_setup_mono_type): System.ValueType is blittable
20241 (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
20244 * marshal.c (mono_marshal_load_type_info): flag types as
20245 non-blittable if the native layout doesn't match the managed
20248 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20250 * appdomain.c: don't add stuff in the private search path that is
20251 above the application base. If application base is not set, there's
20252 no private search path.
20254 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
20256 * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
20257 byref struct arguments in native->managed marshalling.
20259 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
20261 * marshal.c (mono_marshal_get_runtime_invoke): correctly
20262 cache methods using signature (special case for methods
20263 that are value type or string class)
20265 * image.c (mono_image_close): clean up allocated GSList's
20266 in runtime_invoke_cache.
20268 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20270 * mono-config.c: set the correct path for mono_cfg_dir on windows when
20271 there's no MONO_CFG_DIR environment variable defined.
20273 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20275 * threads.c: windows version must be >= 0x0500 to include OpenThread.
20277 2004-05-28 Lluis Sanchez Gual <lluis@ximian.com>
20279 * threadpool.c: Really wait for 500ms after the async call, even if the wait
20281 * threads.c: In mono_thread_manage, call OpenThread to ref each handle
20282 before waiting for it, and call CloseHandle after the wait to unref it.
20283 This will make sure that handles are not disposed too early.
20285 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20290 ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
20293 * object.c: se the application_base only for the domain that runs
20294 Main. Fixes bug #59216,
20296 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20299 * object.c: only the domain in which Main is run have
20300 SetupInformation.ConfigurationFile set, so moved a few lines from
20301 appdomain.c to object.c.
20303 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20305 * appdomain.c: we tried to load [name].(dll|exe), but according
20306 to bug #57710, we must also try [culture]/[name].(dll|exe) and
20307 [culture]/[name]/[name](dll|exe). This patch fixes the bug.
20308 There's a test case attached to bug #58922.
20310 2004-05-27 Dick Porter <dick@ximian.com>
20313 * file-io.c: Implemented icalls for locking and unlocking regions
20315 (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
20316 FALSE on error (fixes both compiler warning and real bug.)
20318 2004-05-27 Atsushi Enomoto <atsushi@ximian.com>
20320 * culture-info-tables.h: reflecting locale-builder updates.
20322 (Added missing ChangeLog entry for 05/26)
20324 2004-05-27 Jackson Harper <jackson@ximian.com>
20326 * locales.c: Fix some cut and paste errors.
20328 2004-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20330 * mono-config.c: set the correct path for config. directory on windows.
20332 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
20334 * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
20337 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
20339 * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
20340 from pinvoke functions.
20342 * marshal.c (mono_ftnptr_to_delegate): Implement this.
20344 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
20346 * culture-info-tables.h: reflecting locale-builder updates.
20348 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
20350 * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
20353 2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
20355 * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
20356 * icall.c: Modified icalls for RNG.
20357 * rand.c|h: Changed RNG interface to allow thread-safe usage under
20358 Windows (CryptoAPI).
20360 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
20362 * locales.c: Fix build.
20364 2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
20366 * culture-info-tables.h: reflecting locale-builder updates.
20368 2004-05-25 Jackson Harper <jackson@ximian.com>
20370 * locales.c: When creating the current culture use the $LANGs
20371 specific culture. So DateTimeFormat and NumberFormat entries are created.
20373 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
20375 * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
20376 a char array as parameter.
20378 2004-05-24 Lluis Sanchez Gual <lluis@ximian.com>
20380 * image.c: In mono_image_open(), always use an absolute path name to
20381 look for already loaded images.
20383 2004-05-24 Sebastien Pouliot <sebastien@ximian.com>
20385 * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
20386 missing in the windows build (like older cygwin include files).
20388 2004-05-23 Sebastien Pouliot <sebastien@ximian.com>
20390 * icall.c: Fixed check for possible integer overflow in Buffer_
20391 BlockCopy icall. Replaced comments style // by /* */.
20393 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
20395 * marshal.c (mono_ftnptr_to_delegate): Fix warning.
20397 * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
20398 check after MONO_VTADDR. Fixes pinvoke2.exe.
20400 * marshal.h marshal.c metadata.h: Add beginnings of support for
20401 ftnptr -> delegate marshalling.
20403 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
20405 * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
20406 * threads.c: Fix warnings.
20408 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
20410 * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
20411 * icall.c: Registered icalls for Suspend and Resume.
20412 * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
20414 * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
20415 * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
20416 * process.c: Use WaitForSingleObjectEx.
20417 * threadpool.c: Use WaitForSingleObjectEx. Added some interruption
20419 * threads.c, threads.h: Make use of new Ex wait methods. Improved
20420 implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
20421 for Suspend and Resume. Added new mono_thread_stop, used for stoping
20422 background threads. Added basic support for Abort in Windows.
20423 Start new threads using a managed delegate invoke wrapper. This wrapper
20424 has an interruption checkpoint that is needed since an interruption
20425 can be requested before the thread leaves the unmanaged code that starts
20427 * marshal.c: Added interruption checkpoint after every native call, and
20428 also before managed calls for wrappers called from unmanaged code to
20429 go into managed code.
20430 * object.h: Added new field in MonoThread to keep track of interruption
20433 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
20435 * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
20438 2004-05-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20445 * rand.c: getenv -> g_getenv (windows!)
20447 * process.c: complete_path is also used on non-windows platforms.
20449 2004-05-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20451 * icall.c: new signature for Process_Start.
20453 * process.[ch]: new signature for Process_Start. If we're on windows
20454 and UseShellExecute is false, we have to search for the program by
20455 ourselves if we don't get a full path.
20457 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
20459 * marshal.c (mono_marshal_get_native_wrapper): Fix up custom
20460 marshalling and call CleanUpNativeData if needed. Fixes #58646.
20462 2004-05-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20464 * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
20467 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20469 * process.c: use double quotes to quote program name and arguments on
20470 windows. Fixes bug #58575.
20472 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20474 * file-io.c: don't return "." and ".." when using windows Find*File.
20476 2003-05-17 Patrik Torstensson <totte@hiddenpeaks.com>
20478 * marshal.c: Don't pass wrappers to message init because method
20479 addressed used to lookup metadata. part of remoting[2|3] fix.
20481 2004-05-15 Jackson Harper <jackson@ximian.com>
20483 * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
20484 path is essentially the same as MONO_PATH except that it points to
20485 GACs instead of lib directories.
20486 * loader.h: The user gac is gone so we dont need function to
20488 * mono-config.c: user gac option is now gone.
20490 2004-05-15 Jackson Harper <jackson@ximian.com>
20492 * culture-info.h: Make defines more consistent, add calendar data
20493 to the culture info table.
20494 * culture-info-tables.h: Add basic calendar data. Basically
20495 everyone gets default gregorian until all the data is
20497 * locales.c: Use the new consistent defines. Set calendar data for
20498 culture info objects.
20499 * object.h: add a field for calendar data to CultureInfo
20501 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
20503 * image.c: image->runtime_invoke_cache is keyed on signatures now.
20504 * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
20506 (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
20507 (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
20508 an extra param that is the pointer of the method to invoke. The IL for
20509 the invoke method is no longer specific to the method, but to the
20510 signature of the method. Thus, we can share the same code for multiple
20511 methods. This reduces the number of methods that have to be compiled.
20513 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
20515 * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
20517 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
20519 * icall.c: Optimize Buffer.BlockCopy.
20521 2004-05-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20523 * culture-info-tables.h: seems like Spanish and Portuguese cultures had
20524 DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
20525 quote). Changed them to "MMMM yyyy".
20527 2004-05-12 Miguel de Icaza <miguel@ximian.com>
20530 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file.
20532 2004-05-13 Zoltan Varga <vargaz@freemail.hu>
20534 * reflection.h: Updated after changes to managed structures.
20536 * appdomain.c: Bump corlib version.
20538 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20540 * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
20543 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20545 * Makefile.am: link to ../os/libmonoos.la on windows.
20548 -If MONO_DEBUG, warn about non-existing directories in
20550 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
20551 compile time variable.
20552 -Removed init_default_path and call mono_set_rootdir from
20553 libmonoos.a instead (windows only).
20555 * assembly.h: declare mono_assembly_getrootdir().
20558 * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
20560 * loader.c: s/getenv/g_getenv/
20562 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
20564 * marshal.{h,c}: Add support for UnmanagedType.AsAny.
20566 * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
20568 * metadata.h: Add new marshalling conversions.
20570 * metadata.h metadata.c (mono_metadata_signature_dup): New helper
20573 * reflection.c (mono_reflection_get_type): Lookup the type in all
20574 modules of a multi-module assembly. Fixes #58291.
20576 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
20578 * threads.c: Before aborting a background, set the StopRequested
20579 state. This avoids throwing the Abort exception.
20580 In mono_thread_manage, don't continue with the shutdown until all
20581 aborted threads have actually stopped.
20583 2004-05-10 Jackson Harper <jackson@ximian.com>
20585 * locales.c: Remove the modifier from culture names.
20587 2004-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20589 * Makefile.am: monosn is not installed any more. It has been deprecated
20592 2004-05-07 Jackson Harper <jackson@ximian.com>
20595 (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
20596 Fix array construction, add bailout if the length is 0.
20598 2004-05-07 Dick Porter <dick@ximian.com>
20600 * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
20601 machine doesn't have a DNS entry. Patch by Urs Muff
20602 (umuff@quark.com), fixes bug 57928.
20604 2004-05-06 Jackson Harper <jackson@ximian.com>
20606 * reflection.c: Handle null PublicTokens properly. alloc mem for
20607 assembly names culture so we dont crash when freeing it.
20609 2004-05-06 Jackson Harper <jackson@ximian.com>
20611 * assembly.c: Check the usergac when loading with partial names.
20613 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
20615 * rand.c|h: Added new icall for (optionally) seeding the PRNG. This
20616 does nothing for now (not required for Linux/Windows) but the class
20617 library can call it (and a newer or modified runtime could need it).
20618 * icall.c: Registred icall.
20620 2004-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20622 * loader.c: prints a message on module loading error we set MONO_DEBUG
20623 environment variable.
20625 2004-05-05 Jackson Harper <jackson@ximian.com>
20627 * appdomain.c: Handle PublicKeyToken=null properly.
20629 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
20631 * environment.c|h: Added icall ves_icall_System_Environment_
20632 GetOSVersionString to get the current OS version as a string.
20633 * icall.c: Registred icall.
20635 2004-05-05 Lluis Sanchez Gual <lluis@ximian.com>
20637 * object.c: in mono_object_get_virtual_method(), take into account that
20638 non-virtual methods don't have a slot in the vtable. Check needed when
20639 the object is a proxy.
20641 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
20643 * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
20644 (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
20646 * object.c (mono_class_compute_gc_descriptor): Fix warning.
20648 * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
20649 passed when a valuetype is expected.
20651 * object.c (mono_unhandled_exception): Only set the exit code if the
20652 exception happens in the main thread. Fixes thread5.exe.
20654 * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
20655 invalid names. Fixes #58047.
20657 2004-05-03 Jackson Harper <jackson@ximian.com>
20659 * assembly.c: This line was committed accidently and is unneeded.
20661 2004-05-03 Jackson Harper <jackson@ximian.com>
20663 * icall.c: Add new icall for Assembly::LoadWithPartialName
20664 * assembly.c/.h: new function that probes the GAC to load partial
20665 assembly names by Paolo Molaro.
20667 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20669 * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
20670 * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
20671 (type_get_fully_qualified_name): Added PublicKeyToken when building a
20674 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20676 * appdomain.c: fixed check for 'neutral' culture and removed warning.
20677 * reflection.c: fix bug when parsing a full type name and Version is not
20678 the last thing in the string.
20680 2004-05-03 Zoltan Varga <vargaz@freemail.hu>
20682 * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
20683 crashes when it is freed.
20685 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20687 * assembly.c: print the compat warning to stderr.
20689 2004-05-01 Miguel de Icaza <miguel@ximian.com>
20691 * assembly.c (mono_assembly_load_references): Add a compatibility
20692 hack to run old applications that might be still referencing the
20693 3300-based assemblies, only do this for System.xxx.
20695 2004-05-01 Jackson Harper <jackson@ximian.com>
20697 * appdomain.c: If the culture is neutral we set it to "".
20699 2004-04-29 Jackson Harper <jackson@ximian.com>
20701 * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
20703 2004-04-29 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
20705 * string-icalls.c: added low overhead function for copying chars
20706 * icall.c: added needed icall for the above function
20708 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20710 * icall.c: fix return value of get_global_assembly_cache. Implemented
20711 Environment.GetLogicalDrives.
20713 2004-04-28 Bernie Solomon <bernard@ugsolutions.com>
20715 * rand.c: try and talk to egd or prngd
20716 for random bytes if opening devices fail.
20718 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
20720 * marshal.c (mono_marshal_load_type_info): Calculate the minimum
20721 alignment for the type using the native alignment of its members
20722 instead of using klass->min_align.
20724 * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
20726 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20729 * socket-io.c: added check for sys/aio.h.
20731 2004-04-28 Dick Porter <dick@ximian.com>
20733 * threads.c: Don't abort a thread thats already aborting, when
20734 terminating everything.
20736 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20738 * icall.c: added 2 new async calls for Socket.
20740 * socket-io.[ch]: fixed some warnings. Added support for asynchronous
20741 IO on *nix systems.
20743 * threadpool.c: removed unused variable.
20745 2004-04-27 Zoltan Varga <vargaz@freemail.hu>
20747 * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
20749 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
20751 * locales.c: put back string_invariant_tolower () and
20752 string_invariant_toupper ().
20754 2004-04-26 David Waite <mass@akuma.org>
20759 * unicode.h: remove comma from end of enumeration declarations
20761 2004-04-26 David Waite <mass@akuma.org>
20763 * debug-mono-symfile.h:
20766 * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
20769 2004-04-26 Jackson Harper <jackson@ximian.com>
20771 * appdomain.c: Increment version number.
20773 2004-04-26 Jackson Harper <jackson@ximian.com>
20775 * appdomain.c: Set assembly references public token value when
20776 PublicKeyToken is specified, not the hash_value. Free public token
20777 values when free assembly name data. Previously the public key
20778 token was hex decoded, however we are using hex encoded public key
20779 tokens, so this is not neccasary.
20780 * assembly.c: Lookup assemblies in the gac if their public token
20781 value is set. Add function to allow enabling user gac
20782 lookups. Specify whether or not the assembly was loaded from the
20783 GAC. Compare full assembly names when checking the cache for
20784 assemblies (Temporarily disabled see comment in code). Remove
20785 mscorlib -> corlib mapping cruft. Add trace-loading. When a user
20786 specifies trace-loader they get extra info to stdout on the
20787 loading of assemblies.
20788 * image.h: Add a field for an assembly references public token
20789 value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
20790 whether an assembly has been loaded from the GAC.
20791 * image.c: Remove a corlib -> mscorlib name mapping.
20792 * loader.h: Add function to enable/disable the user gac.
20793 * mono-config.c: Check if the usergac is enabled in the config
20795 * icall.c: New icall to determine whether or not an assembly has
20796 been loaded from the GAC. Remove some mscorlib -> corlib mappings.
20797 * tabldefs.h: Add constant for assemblyref flag that specifies a
20798 full public key is used instead of a public token.
20799 * reflection.c: Remove mscorlib -> corlib mappings. Set
20800 PublicTokenValue instead of hash value. This value is a hex
20801 string so it does not need to be expanded.
20803 2004-04-26 Martin Baulig <martin@ximian.com>
20805 * mono-debug-debugger.c (mono_debugger_initialize): Set
20806 `mono_debugger_initialized' before calling mono_debug_lock().
20808 2004-04-42 Robert Shade <rshade@dvsconsulting.com>
20810 * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
20811 InternalToUpper/InternalToLower.
20812 * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
20813 removed invariant culture shortcut. This is now done in managed code.
20814 * locales.c: (string_invariant_toupper/tolower) removed.
20816 2004-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20818 * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
20819 Added Poll internal call.
20821 * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
20822 call for Poll. Select was too heavy for polling a single socket.
20824 * threadpool.[ch]: added mono_threadpool_cleanup.
20825 * threads.c: use it. Don't use Thread_Abort on windows.
20827 2004-04-23 Martin Baulig <martin@ximian.com>
20829 * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
20831 2004-04-23 Sebastien Pouliot <sebastien@ximian.com>
20833 * icall.c: Registred new icalls for key pair protection and added an
20834 icall for Environment.GetFolderPath on Windows.
20835 * security.c|h: Added new icalls for key pair protection.
20837 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20839 * socket-io.c: don't display the non-supported family warning for known
20840 families. Now this is not displayed on windows when checking support
20843 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20845 * class.c: don't display the layout warning for static fields.
20847 2004-04-21 Lluis Sanchez Gual <lluis@ximian.com>
20849 * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
20850 * locales.c, locales.h: Added new icalls for culture-specific
20851 Char.ToLower and Char.ToUpper.
20853 2004-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20855 * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
20858 2004-04-20 Martin Baulig <martin@ximian.com>
20860 * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
20861 of the type name before passing it to mono_reflection_type_from_name().
20863 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
20865 * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
20866 encodings here. Fixes #56965.
20868 2004-04-18 Bernie Solomon <bernard@ugsolutions.com>
20870 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
20871 fix test on strstr result not that I can see anything that
20872 relies on the result.
20874 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
20876 * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
20879 * marshal.c (mono_marshal_get_string_encoding): New helper function.
20881 * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
20882 function to determine which marshalling to use for strings. Fixes
20885 * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
20887 * reflection.c (encode_marshal_blob): Add support for LPARRAY.
20889 2004-04-15 Bernie Solomon <bernard@ugsolutions.com>
20891 * icall.c: #include mono-config.h
20893 2004-04-15 Jackson Harper <jackson@ximian.com>
20895 * culture-info-tables.h: Fix date formats for en-US culture.
20897 2004-04-15 Lluis Sanchez Gual <lluis@ximian.com>
20899 * icall.c: Registered icalls for ThreadPool.GetMinThreads and
20900 ThreadPool.SetMinThreads.
20901 * threadpool.c: Implemented ThreadPool.GetMinThreads and
20902 ThreadPool.SetMinThreads.
20904 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
20906 * mono-config.c: also load the .config file in the directory
20907 where the assembly was found.
20909 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
20911 * assembly.c: load per-assembly config files.
20912 * icall.c: decrapified code to get the config dir and moved to
20914 * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
20915 per-assembly config files. When doing a dll map lookup give precedence
20916 to the per-assembly data.
20918 2004-04-14 Martin Baulig <martin@ximian.com>
20920 * mono-debug-debugger.h (MonoDebuggerEvent): Removed
20921 MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
20922 and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
20924 * mono-debugger-debugger.c: While the debugger is locked, remember
20925 whether the symbol tables have changes and send one single
20926 MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
20928 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
20930 * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
20932 * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New
20935 * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
20936 account when marshalling string arrays. Fixes #56965.
20938 2004-04-13 Sebastien Pouliot <sebastien@ximian.com>
20940 * icall.c: Add new icalls mapping for security.
20941 * security.c|h: Add internal calls for WindowsIdentity,
20942 WindowsImpersonationContext and WindowsPrincipal.
20944 2004-04-13 Gert Driesen (drieseng@users.sourceforge.net)
20946 * class.c: Added comment to ensure the System.MonoDummy class
20947 is removed when no longer necessary
20949 2004-04-13 Miguel de Icaza <miguel@ximian.com>
20951 * appdomain.c: Pass arguments to the bootstraping exceptions to
20952 minimize JITed methods at boot
20954 * metadata.c (mono_exception_from_name_two_strings): Allow for the
20955 second string to be null.
20957 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
20958 Change the protocol to minimize the JIT methods at startup. Now
20959 it Returns the internal codepage, if the value of "int_code_page"
20960 is 1 at entry, and we can not compute a suitable code page
20961 number, returns the code page as a string.
20963 2004-04-13 Jackson Harper <jackson@ximian.com>
20965 * culture-info-tables.h: Fix number of decimal digits for all
20968 2004-04-13 Jackson Harper <jackson@ximian.com>
20970 * icall.c: Clairfy out of sync error message. It is not always
20971 your corlib that is out of sync.
20973 2004-04-13 Zoltan Varga <vargaz@freemail.hu>
20975 * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
20976 properties when only the set accessor is overriden. Fixes #55874.
20978 2004-04-09 Zoltan Varga <vargaz@freemail.hu>
20980 * assembly.c (mono_assembly_load_references): Make this thread safe.
20983 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
20985 * monosn.c: Add missing initialization calls.
20987 2004-04-08 Bernie Solomon <bernard@ugsolutions.com>
20990 ves_icall_System_Globalization_CultureInfo_construct_number_format
20991 Fix g_assert so it compiles on fussier compilers re int/ptr
20994 2004-04-08 Dick Porter <dick@ximian.com>
20997 * socket-io.c: Don't set SO_REUSEADDR on windows. Fixes bug
20998 53992. Also rearrange the code so that the internal calls return
20999 an error value and exceptions are thrown from managed code.
21001 * icall.c: Add type info to the socket icalls.
21003 2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21005 * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
21008 2004-04-07 Martin Baulig <martin@ximian.com>
21010 * class.c (mono_class_from_generic_parameter): Don't default
21011 `klass->parent' to `mono_defaults.object_type'.
21013 2004-04-07 Martin Baulig <martin@ximian.com>
21015 * reflection.c (mono_reflection_initialize_generic_parameter): Set
21016 `param->pklass->reflection_info'.
21018 2004-04-07 Jackson Harper <jackson@ximian.com>
21020 * culture-info-tables.h: Fix date separator symbol.
21022 2004-04-07 Martin Baulig <martin@ximian.com>
21024 * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
21025 from System.Type to System.MonoType.
21027 2004-04-07 Martin Baulig <martin@ximian.com>
21030 (MonoReflectionGenericParam): Added `has_reference_type' and
21031 `has_value_type' fields.
21033 * reflection.c (mono_image_get_generic_param_info): Encode the
21034 correct flags if we have the `class' or `struct' constraint.
21036 2004-04-07 Martin Baulig <martin@ximian.com>
21039 (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
21041 2004-04-07 Jackson Harper <jackson@ximian.com>
21043 * appdomain.c: Revert extra patches, just wanted to bump the
21046 2004-04-07 Jackson Harper <jackson@ximian.com>
21048 * Makefile.am: Add culture-info private headers.
21049 * icall.c: Add new icalls for contructing locales.
21050 * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
21051 * locales.h: Declare new culture info construction methods.
21052 * object.h: Add new fields used to avoid the CultureMap to
21054 * culture-info.h: Definition of structs used in the culture info
21056 * culture-info-tables.h: Autogenerated tables that contain culture
21057 info data. This file was generated with the locale-builder tool.
21058 * appdomain.c: Incement corlib version number.
21060 2004-04-07 Bernie Solomon <bernard@ugsolutions.com>
21062 * appdomain.c: (mono_runtime_init) move mono_thread_init
21063 to before mono_object_new calls so critical sections
21064 are initialized before use.
21066 2004-04-07 Martin Baulig <martin@ximian.com>
21069 (ves_icall_TypeBuilder_define_generic_parameter): Removed.
21070 (ves_icall_MethodBuilder_define_generic_parameter): Removed.
21071 (ves_icall_MonoGenericParam_initialize): Removed.
21072 (monogenericparam_icalls): Removed.
21073 (generictypeparambuilder_icalls): Added new table for
21074 System.Reflection.Emit.GenericTypeParameterBuilder.
21077 (mono_reflection_define_generic_parameter): Removed.
21078 (mono_reflection_initialize_generic_parameter): This is now called
21079 from GenericTypeParameterBuilder's .ctor.
21081 2004-04-06 Martin Baulig <martin@ximian.com>
21083 * class.c (mono_class_init): Don't inflate nested classes in a
21085 (mono_type_get_name_recurse): Include the generic arguments for
21086 generic instances and generic type declarations.
21087 (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
21088 (_mono_class_get_instantiation_name): Removed.
21089 (mono_class_create_generic): Always use `gklass->name' as our name.
21091 * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
21093 * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
21094 (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
21095 (ves_icall_MonoMethod_GetGenericParameters): Renamed to
21096 ves_icall_MonoMethod_GetGenericArguments() and correctly handle
21097 closed generic methods here.
21100 (mono_reflection_generic_inst_get_nested_types): Removed.
21101 (inflate_mono_method): Copy the generic parameters from the
21102 MonoMethodHeader into out MonoGenericMethod.
21104 2004-04-06 Martin Baulig <martin@ximian.com>
21107 (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
21109 * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
21111 * reflection.c (build_compressed_metadata): If we have any entries
21112 in the GenericParam, MethodSpec or GenericParamConstraint tables,
21113 set the header version to 1.1.
21115 2004-04-06 Martin Baulig <martin@ximian.com>
21117 * class.c (mono_class_init): If we're a generic instance,
21118 initialize our nested classes, too.
21119 (_mono_class_get_instantiation_name): Deal with the new `!%d'
21122 2004-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21124 * process.c: quote the argument passed to the shell on windows.
21126 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
21128 * threads.c (mono_alloc_special_static_data): Allow this to be
21129 called during startup.
21131 2004-04-02 Martin Baulig <martin@ximian.com>
21134 (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
21136 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
21138 * icall.c: Fix build.
21140 2004-04-02 Sebastien Pouliot <sebastien@ximian.com>
21142 * Makefile.am: Added security.c|h.
21143 * icall.c: Added icall for get_UserName;
21144 * security.c: New file for security related icalls. Added function
21145 get_UserName for System.Environment (fix #56144).
21146 * security.h: New. Header file for security.c
21148 2004-04-02 Dick Porter <dick@ximian.com>
21150 * icall.c: Deleted the icalls that were obsoleted some time ago
21151 by the ICU string code, and which were mixed into the icall
21152 rearranging. Fixes bug 55969.
21155 * string-icalls.c: Deleted the code that those icalls reference.
21157 2004-04-01 Martin Baulig <martin@ximian.com>
21159 * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
21161 * class.c (mono_class_from_generic_parameter): Don't set
21162 TYPE_ATTRIBUTE_INTERFACE.
21163 (my_mono_class_from_generic_parameter): Likewise.
21165 2004-04-01 Martin Baulig <martin@ximian.com>
21167 * loader.c (find_method): Added an optional `MonoClass *ic'
21168 argument to search in a specific interface.
21169 (mono_get_method_constrained): New public function.
21171 2004-04-01 Martin Baulig <martin@ximian.com>
21173 * reflection.c (mono_image_get_generic_field_token): Use the
21174 `handleref' cache here.
21176 2004-04-01 Martin Baulig <martin@ximian.com>
21178 * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
21180 * reflection.c (create_generic_typespec): Use the `typespec' hash
21181 here, not the `typeref' one.
21183 2004-04-01 Martin Baulig <martin@ximian.com>
21185 * class.c (mono_class_inflate_generic_type): Moved the
21186 functionality into a new static inflate_generic_type() which
21187 returns NULL if it didn't do anything. Only increment the
21188 `mono_stats.inflated_type_count' if we actually inflated
21190 (mono_class_get_full): Check the classes type to see whether we
21191 need to inflate it; also inflate MONO_TYPE_(M)VAR.
21193 2004-04-01 Jackson Harper <jackson@ximian.com>
21195 * reflection.c: Set culture for assembly references.
21197 2004-04-01 Ben Maurer <bmaurer@users.sourceforge.net>
21199 * reflection.[ch], icall.[ch], Fix support for pinning variables.
21201 2004-04-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21204 (do_mono_assembly_open): the critical section also covers
21205 mono_image_open and mono_image_open_from_data. Fixes bug #56327.
21207 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21210 (mono_manage_threads): abort the background threads when finishing.
21213 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21215 * gc.c: only close the done_event handle if there was no timeout.
21218 2004-03-30 Martin Baulig <martin@ximian.com>
21220 * icall.c (icall_entries): It's called "System.Activator", not
21221 "System.Activation".
21223 2004-03-30 Martin Baulig <martin@ximian.com>
21225 * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
21226 (mono_class_create_from_typespec): Likewise.
21228 2004-03-30 Martin Baulig <martin@ximian.com>
21230 * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
21231 `has_ctor_constraint' and `initialized'.
21233 2004-03-30 Martin Baulig <martin@ximian.com>
21235 * reflection.c (encode_new_constraint): New static function to add
21236 the constructor constraint attribute to a type parameter.
21237 (encode_constraints): Call encode_new_constraint() if necessary.
21240 (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
21242 * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
21244 2004-03-29 Ben Maurer <bmaurer@users.sourceforge.net>
21246 * reflection.c, icall.c: add support for pinning variables.
21248 2004-03-29 Bernie Solomon <bernard@ugsolutions.com>
21250 * marshal.c (mono_marshal_get_managed_wrapper):
21251 init bool local with zero rather than null.
21253 2004-03-29 Martin Baulig <martin@ximian.com>
21255 * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
21256 the "official" behavior here.
21257 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
21259 2004-03-29 Martin Baulig <martin@ximian.com>
21261 * icall.c: Reflect latest API changes.
21263 2004-03-29 Martin Baulig <martin@ximian.com>
21265 * loader.c (mono_get_method_from_token): Also call
21266 mono_metadata_load_generic_params () for abstract and interface
21267 methods; replace the type arguments in the method signature with
21268 the ones which are loaded from the metadata.
21270 2004-03-29 Lluis Sanchez Gual <lluis@ximian.com>
21272 * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
21273 of the lock is not the current thread. MS.NET don't do it, in spite of
21274 what the documentation says. See bug #56157.
21276 2004-03-28 Martin Baulig <martin@ximian.com>
21278 * class.c (mono_class_init): Don't call init_properties() and
21279 init_events() for generic instances; set `prop->parent' when
21280 inflating properties.
21282 * reflection.c (mono_generic_inst_get_object): Call
21283 `mono_class_init (ginst->klass)'.
21284 (mono_type_get_object): Only create a MonoGenericInst if your
21285 generic type is a TypeBuilder.
21286 (do_mono_reflection_bind_generic_parameters): Only set
21287 `ginst->is_dynamic' if our generic type is a TypeBuilder.
21289 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
21291 * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
21294 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21296 * icall.c: added Kill_internal icall.
21297 * process.[ch]: added Kill_internal icall.
21299 2004-03-25 Martin Baulig <martin@ximian.com>
21301 * class.h (MonoStats): Added `generic_instance_count',
21302 `inflated_method_count', `inflated_type_count' and
21303 `generics_metadata_size'.
21305 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21307 * reflection.c: no warnings now.
21309 2004-03-25 Martin Baulig <martin@ximian.com>
21311 * class.c (mono_class_get_full): New public function; does a
21312 mono_class_get(), but also takes a `MonoGenericContext *'.
21314 * loader.c (mono_field_from_memberref): Renamed to
21315 `field_from_memberref', made static and added `MonoGenericContext *'
21317 (mono_field_from_token): Added `MonoGenericInst *' argument.
21318 (method_from_memberef): Likewise.
21319 (mono_get_method_from_token): Likewise.
21320 (mono_get_method_full): New public function; does a
21321 mono_get_method(), but also takes a `MonoGenericContext *'.
21323 * verify.c (mono_method_verify): Get the method's generic context
21324 and pass it to mono_field_from_token(), mono_get_method_full() and
21325 mono_class_get_full().
21327 2004-03-25 Martin Baulig <martin@ximian.com>
21329 * class.c (mono_class_inflate_generic_type): Take a
21330 `MonoGenericContext *' instead of a `MonoGenericInst *' and a
21331 `MonoGenericMethod *'.
21333 2004-03-25 Martin Baulig <martin@ximian.com>
21335 * loader.h (MonoMethodInflated): Store the MonoGenericContext
21336 instead of the MonoGenericMethod here.
21338 2004-03-25 Martin Baulig <martin@ximian.com>
21340 * class.h (MonoGenericInst): Added `MonoGenericContext *context';
21341 each time we create a new MonoGenericInst, we also create a new
21342 context which points back to us.
21344 * class.c (inflate_method): Use `ginst->context' instead of
21345 creating a new context.
21347 * loader.c (method_from_memberref): Use
21348 `klass->generic_inst->context' instead of creating a new context.
21350 2004-03-25 Martin Baulig <martin@ximian.com>
21352 * class.h (MonoGenericContext): New struct.
21353 (MonoGenericMethod): Removed `generic_inst'.
21355 * class.c (mono_class_inflate_generic_method): Take a
21356 `MonoGenericContext *' instead of a `MonoGenericMethod *'.
21358 2004-03-25 Martin Baulig <martin@ximian.com>
21360 * loader.h (MonoMethodInflated): New typedef.
21362 * metadata.h (MonoMethodSignature): Removed `gen_method', make
21363 `generic_param_count' consume just 30 bits, added `is_inflated'
21364 and `has_type_parameters' flags (one bit each).
21366 * class.c (mono_class_inflate_generic_method): Create a
21367 MonoMethodInflated instead of a MonoMethodNormal and set
21368 `is_inflated' in the method signature.
21370 * class.h (MonoGenericMethod): Removed `generic_method'.
21372 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
21374 * image.c: Make sure the name of a MonoImage is always an absolute path.
21375 This fixes bug #54415.
21377 2004-03-24 Martin Baulig <martin@ximian.com>
21379 * class.c (mono_class_setup_vtable): If we're a generic instance,
21380 use our generic type's vtable size.
21382 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
21384 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
21385 MONO_NO_UNLOAD env var as a temporary workaround for unloading
21388 2004-03-23 Martin Baulig <martin@ximian.com>
21390 * class.h (MonoDynamicGenericInst): Added `int count_events' and
21391 `MonoEvent *events'.
21393 * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
21394 (typebuilder_icalls): Added "get_event_info"; calls
21395 mono_reflection_event_builder_get_event_info().
21397 * reflection.c (mono_reflection_generic_inst_initialize): Added
21398 `MonoArray *events'.
21399 (mono_reflection_event_builder_get_event_info): New function.
21401 2004-03-23 Bernie Solomon <bernard@ugsolutions.com>
21403 * object.h: add mono_type_initialization_init
21405 * object.c (mono_runtime_class_init):
21406 implement class constructor synchronization rules
21407 to cope with threading issues.
21408 add mono_type_initialization_init
21410 * appdomain.c (mono_runtime_init): call
21411 mono_type_initialization_init
21413 * class.h: removing initializing field from MonoVTable
21415 2004-03-23 Martin Baulig <martin@ximian.com>
21417 * class.c (my_mono_class_from_generic_parameter): Use
21418 `param->name' if it's not NULL.
21420 2004-03-22 Ben Maurer <bmaurer@users.sourceforge.net>
21422 * class.c: do not insert non-virtual methods in the vtable.
21423 * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
21424 that means the method is non-virtual. This never would have
21427 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
21429 * profiler.c: Added lock for accessing coverage_hash.
21431 2004-03-22 Martin Baulig <martin@ximian.com>
21433 * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
21434 `method->method->signature->generic_param_count != 0' to make it
21435 work for interface methods.
21437 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21439 * process.c: quote the string passed to the shell using g_shell_quote.
21441 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21444 (mono_threads_manage): don't remove the finalizer thread and self
21445 from the threads hash table so that mono_thread_manage can be called
21448 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21450 * process.c: quote the arguments when UseShellExecute is true. Fixes
21453 2004-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21455 * threads.c: set mono_thread_detach as a cleanup routine for every
21456 thread. This way it's always executed upon thread termination, either
21457 aborted or finished normally. No more xsp hangs!
21459 2004-03-17 Martin Baulig <martin@ximian.com>
21461 * class.h (MonoGenericInst): Replaced the `GList *nested' with an
21462 `int count_nested' and a `MonoType **nested'.
21464 * reflection.c (mono_reflection_bind_generic_parameters): Moved
21465 most of the functionality into a new static
21466 do_mono_reflection_bind_generic_parameters() and don't take a
21467 `MonoType *nested_in' argument any more. Don't compute nested
21469 (mono_reflection_generic_inst_get_nested_types): New public method
21470 to get nested types.
21472 * class.c (mono_class_create_generic): Set `klass->nested_in' if
21473 we're a nested class.
21475 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
21476 mono_reflection_generic_inst_get_nested_types() to compute the
21479 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
21481 * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
21482 descriptive error message under windows.
21484 2004-03-17 Martin Baulig <martin@ximian.com>
21486 * class.c (dup_type): Added `const MonoType *original' argument;
21487 copy the attrs from the original type.
21489 2004-03-17 Martin Baulig <martin@ximian.com>
21491 * metadata.c (do_mono_metadata_parse_generic_inst): Use the
21492 `m->generic_inst_cache' here.
21494 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
21496 * exception.h exception.c: Add stack_overflow_exception.
21498 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21501 (overlapped_callback): call SetEvent *after* invoking the callback.
21502 No need to call CloseHandle.
21504 2004-03-16 Martin Baulig <martin@ximian.com>
21506 * reflection.c (mono_image_get_fieldref_token): Take a
21507 `MonoReflectionField *' instead of a `MonoClassField *' and a
21508 `MonoClass *'; store the `MonoReflectionField *' in the hash.
21510 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21512 * appdomain.c: don't add the culture to the filename we're looking for
21513 if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
21515 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21517 * locales.c: don't ignore symbols when doing case insensitive compares.
21518 Thanks Dick! Fixes bug #54046.
21520 * threads.c: surround 'threads' usage with enter/leave in
21521 mono_thread_manage.
21523 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
21525 * marshal.c (mono_marshal_get_native_wrapper): Char arrays are
21526 implicitly marshalled as [Out]. Fixes #55450.
21528 (mono_marshal_get_runtime_invoke): Zero out the result if there is
21531 2004-03-16 Martin Baulig <martin@ximian.com>
21533 * class.c (mono_class_from_generic_parameter): Use the actual
21536 2004-03-16 Martin Baulig <martin@ximian.com>
21538 * reflection.c (type_get_signature_size): New static function.
21539 Compues the size of the type in a method signature.
21540 (method_get_signature_size): New static function; calls
21541 type_get_signature_size() to compute the actual size of the
21542 method's signature.
21543 (method_encode_signature): Use method_get_signature_size() to get
21544 the signature's size rather than using `nparams * 10'.
21546 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21548 * file-io.h: define here WapiOverlapped on windows. I don't want the
21549 regular OVERLAPPED one.
21552 * threadpool.c: somehow, BindIoCompletionCallback is not found.
21553 Disabling AIO on windows.
21555 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21557 * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
21560 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21562 * appdomain.c: upgraded corlib version.
21564 * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
21565 and BeginWrite. Allow opening files for asynchrnous operations.
21567 * file-io.h: new struct that maps FileStreamAsyncResult.
21568 * icall.c: added new icalls.
21569 * process.[ch]: support setting child process environment variables
21570 and use the SHELL or COMSPEC when UseShellExecute is true.
21572 * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
21573 callback for async. IO is here and also BindHandle.
21575 * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
21578 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
21580 * reflection.c (create_custom_attr): Allow len == 0.
21582 * object.c (mono_class_compute_gc_descriptor): Fix descriptor
21583 computation on big-endian machines.
21585 2004-03-13 Martin Baulig <martin@ximian.com>
21587 * class.h (MonoGenericInst): Added `int count_ifaces'.
21589 * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
21590 `ginst->count_ifaces' instead `klass->interface_count' since we
21591 may get called before the vtable is created.
21593 * loader.c (mono_method_get_param_names): If we're a generic
21594 instance, return and don't initialize the class.
21596 * reflection.c (mono_reflection_setup_generic_class): Don't call
21597 ensure_runtime_vtable().
21598 (mono_reflection_bind_generic_parameters): Set
21599 `ginst->count_ifaces'.
21601 2004-03-11 Jackson Harper <jackson@ximian.com>
21605 * unicode.h: Remove unused System.Char icalls.
21607 2004-03-11 Miguel de Icaza <miguel@ximian.com>
21609 * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
21610 code when we P/Invoke the first library in Windows.Forms, instead
21611 of when we first open the assembly.
21613 * assembly.c: Drop the lookup from here.
21615 2004-03-10 Martin Baulig <martin@ximian.com>
21617 * reflection.c (mono_reflection_get_custom_attrs): Use the correct
21618 class for properties, fields and events. Finally fixes #54945.
21620 2004-03-10 Martin Baulig <martin@ximian.com>
21622 * metadata.c (mono_metadata_class_equal): New static function;
21623 checks whether two generic instances or two generic parameters are
21625 (mono_metadata_type_equal): Use mono_metadata_class_equal() to
21628 2004-03-10 Martin Baulig <martin@ximian.com>
21630 * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
21632 * reflection.c (inflate_mono_method): Added `MonoObject *obj'
21633 argument and write it into the `reflection_info' field.
21636 (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
21637 (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
21639 2004-03-09 Jackson Harper <jackson@ximian.com>
21641 * char-conversions.h: use 8 bits for numeric data its all we need
21642 * icall.c: numeric data is only 8 bits now.
21644 2004-03-09 Martin Baulig <martin@ximian.com>
21646 * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
21648 * class.c (init_properties, init_events): Initialize the new
21651 * reflection.c (typebuilder_setup_properties): Likewise.
21652 (typebuilder_setup_events): Likewise.
21654 * reflection.h (MonoEventInfo): Replaced `parent with
21655 `declaring_type' and `reflected_type'.
21657 * icall.c (ves_icall_get_property_info): Distinguish between
21658 declaring and reflected type.
21659 (ves_icall_get_event_info): Likewise.
21661 2004-03-09 Martin Baulig <martin@ximian.com>
21663 * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
21664 (ves_icall_Type_GetField): Correctly set field->klass.
21666 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
21668 * loader.h: Fix warning.
21670 2004-03-08 Miguel de Icaza <miguel@ximian.com>
21672 * loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
21673 library routine if present. Notice that it will still continue
21674 executing even if its missing, for those working on the Gtk#
21675 edition of Windows.Forms.
21677 * assembly.c (do_mono_assembly_open): If loading the
21678 System.Windows.Forms call mono_loader_wini_init.
21680 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
21682 * class.h: Added MonoRemoteClass struct.
21683 * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
21684 function for MonoStrings.
21685 * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
21686 Added internal call for getting the proxy type.
21687 * marshal.c: Get the type of transparent proxies from its remote_class.
21688 Added methods that generate the IL for type checks and casts:
21689 mono_marshal_get_isinst, mono_marshal_get_castclass,
21690 mono_marshal_get_proxy_cancast.
21691 * marshal.h: Declaration of the previous new methods.
21692 * object.c: Added new moethods for creating and updating MonoRemoteClass
21693 instances: mono_remote_class, mono_upgrade_remote_class,
21694 * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
21695 * verify.c: FIx transparent_proxy_fields layout.
21696 * appdomain.c: Bump corlib version.
21698 2004-03-04 Jackson Harper <jackson@ximian.com>
21700 * icall.c: Add icall to access char conversion tables.
21701 * char-conversions.h: Character conversion tables.
21702 * Makefile.am: Add char-conversions.h private header file.
21704 2004-03-04 Zoltan Varga <vargaz@freemail.hu>
21706 * appdomain.c (unload_thread_main): Increase unloading timeout to
21707 10 sec as a temporary workaround for Nant problems.
21709 2004-02-29 Zoltan Varga <vargaz@freemail.hu>
21711 * gc.c: Add checks for GC_enable and GC_disable.
21713 * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
21714 (jaak@zd.com.pl). Fix memory corruption in String.Replace
21717 2004-02-27 Martin Baulig <martin@ximian.com>
21719 * reflection.c (mono_reflection_bind_generic_parameters): Take a
21720 `MonoReflectionType *' instead of a `MonoType *'.
21722 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
21724 * gc.c (run_finalize): Avoid finalizing the object representing the
21726 (finalizer_thread): Fix warning.
21728 2004-02-25 Martin Baulig <martin@ximian.com>
21730 * class.c (_mono_class_get_instantiation_name): Added `int offset'
21731 argument for nested types.
21732 (mono_class_create_generic): Added support for nested generictypes.
21734 * class.h (MonoGenericInst): Added `MonoType *nested_in' and
21737 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
21739 * reflection.c (method_encode_signature): Increase the minimum
21740 value of `size' from 10 to 11.
21741 (mono_reflection_bind_generic_parameters): Take `int type_argc'
21742 and `MonoType **types' arguments instead of the `MonoArray
21743 *types'; added `MonoType *nested_in'. Recursively instantiate
21746 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
21748 * appdomain.h (MonoDomain): Add preallocated null_reference_ex and
21749 stack_overflow_ex members which are used by exception handling.
21751 * appdomain.c (mono_runtime_init): Initialize the new members.
21753 * gc.c (mono_gc_enable): New helper function.
21754 * gc.c (mono_gc_disable): New helper function.
21756 2004-02-23 Martin Baulig <martin@ximian.com>
21758 * icall.c: I must have been really stupid - make it actually work
21761 2004-02-23 Martin Baulig <martin@ximian.com>
21763 * loader.c (method_from_memberref): Only inflate the method if
21764 it's in another klass.
21766 2004-02-23 Martin Baulig <martin@ximian.com>
21768 * class.c (mono_class_inflate_generic_type): Fixed two bugs.
21769 (mono_class_init): If we're a generic instance and an interface,
21770 compute `class->interface_id'; also create `class->interfaces'
21771 here and inflate them.
21773 * metadata.c (do_mono_metadata_parse_generic_inst): Compute
21775 (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
21777 * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
21779 2004-02-15 Miguel de Icaza <miguel@ximian.com>
21781 * reflection.c (method_encode_code): Improved the error message
21782 generated by the exception.
21784 2004-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21786 * icall.c: Martin did not do what he said in the ChangeLog for
21787 2004-02-18, but put back the changes for properties and events.
21788 Commenting those changes out again and adding comment to bug #54518.
21790 * process.c: removed warning.
21792 2004-02-20 Zoltan Varga <vargaz@freemail.hu>
21794 * marshal.c (emit_struct_conv): Print an error message instead of
21795 asserting when a type does not have the StructLayout attribute.
21797 2004-02-20 Martin Baulig <martin@ximian.com>
21799 * reflection.c (mono_type_get_object): Also use the cache for
21801 (mono_reflection_bind_generic_parameters): Always compute
21804 2004-02-20 Martin Baulig <martin@ximian.com>
21806 * class.h (MonoGenericMethod): Removed `klass'.
21808 * class.c (mono_class_inflate_generic_method): Added `MonoClass
21811 2004-02-20 Martin Baulig <martin@ximian.com>
21813 * reflection.c (method_encode_methodspec): Actually use the
21814 uninflated signature for the memberref.
21816 2004-02-20 Martin Baulig <martin@ximian.com>
21818 * class.h (MonoGenericMethod): Removed `declaring'.
21820 * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
21821 is NULL, compute it here.
21823 2004-02-20 Martin Baulig <martin@ximian.com>
21825 * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
21827 * metadata.c (mono_metadata_generic_inst_hash): New method.
21828 (mono_metadata_generic_inst_equal): New method.
21830 * reflection.c (mono_reflection_bind_generic_parameters): Use the
21831 `klass->image->generic_inst_cache' cache to avoid creating
21832 duplicate MonoGenericInst's.
21834 * class.c (mono_class_inflate_generic_type): Use the cache.
21836 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
21838 * object.c: fixed gc descriptor calculation for embedded valuetypes.
21840 2004-02-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21842 * icall.c: added Socket.WSAIoctl icall.
21844 * socket-io.[ch]: implemented
21845 ves_icall_System_Net_Sockets_Socket_WSAIoctl.
21847 2004-02-19 Atsushi Enomoto <atsushi@ximian.com>
21849 * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
21851 2004-02-18 Urs C Muff <umuff@quark.com>
21853 * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
21854 this work on PPC and other big-endian architectures.
21856 * debug-mono-symfile.h: Prepended the names of all the `guint32'
21857 fields with an underscore to make sure they're only accessed by
21858 the read32() macro.
21860 2004-02-18 Martin Baulig <martin@ximian.com>
21862 * icall.c: Put the klass->refclass changes back for methods and
21863 fields, but not for properties and events. We're currently not
21864 distinguishing between DeclaringType and ReflectedType for
21865 properties and events, that's what caused the regressions.
21867 2004-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21870 (mono_async_result_new): the handle can be NULL.
21872 * threadpool.c: Use an event instead of a semaphore, don't initialize
21873 it until needed. This saves quite a few semaphores from being created
21874 when using the threadpool.
21876 2004-02-18 Zoltan Varga <vargaz@freemail.hu>
21878 * object.c (mono_string_is_interned_lookup): Fix interning of long
21879 strings. Fixes #54473.
21881 * domain.c (ldstr_equal): Optimize if the two strings are equal.
21883 * icall.c: Revert the klass->refclass changes since they introduce
21884 regressions (bug #54518).
21886 2004-02-18 Martin Baulig <martin@ximian.com>
21888 * class.c (mono_class_init): If we're a generic instance and don't
21889 come from a TypeBuilder, inflate our members here.
21890 (mono_class_from_generic): Removed; just use `ginst->klass' instead.
21891 (mono_class_create_generic): New public method.
21892 (mono_class_initialize_generic): Removed.
21893 (get_instantiation_name): Renamed to
21894 _mono_class_get_instantiation_name() and made it public.
21896 2004-02-18 Martin Baulig <martin@ximian.com>
21898 * class.c (mono_class_inflate_generic_type): Clear the new
21899 instance's `nginst->klass' when inflating a generic instance.
21900 (mono_class_is_subclass_of): Added (basic) support for generic
21903 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
21905 * appdomain.h, domain.c: use a MonoCodeManager instead of a
21906 MonoMempool to hold compiled native code.
21908 2004-02-17 Martin Baulig <martin@ximian.com>
21910 * class.h (MonoDynamicGenericInst): Added `count_properties' and
21913 * reflection.c (mono_reflection_generic_inst_initialize): Added
21914 `MonoArray *properties' argument.
21916 * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.
21918 2004-02-17 Martin Baulig <martin@ximian.com>
21920 * icall.c (ves_icall_Type_GetFields): Renamed to
21921 ves_icall_Type_GetFields_internal() and added a
21922 `MonoReflectionType *rtype' argument; pass it to
21923 mono_field_get_object() to set the field's "reflected" type.
21924 (ves_icall_Type_GetConstructors): Likewise.
21925 (ves_icall_Type_GetEvents): Likewise.
21926 (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
21927 argument; pass it to mono_method_get_object() to set the method's
21930 2004-02-17 Martin Baulig <martin@ximian.com>
21932 * class.h (MonoDynamicGenericInst): New type.
21933 (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
21935 * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
21936 (ves_icall_MonoGenericInst_GetConstructors): New interncall.
21937 (ves_icall_MonoGenericInst_GetFields): New interncall.
21939 * class.c (mono_class_from_generic): Don't call
21940 mono_class_initialize_generic() if this is a dynamic instance;
21941 ie. it's being created from a TypeBuilder.
21942 Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
21943 `class->byval_arg.type'.
21945 * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
21946 to `inflate_method' and made static.
21947 (mono_reflection_inflate_field): Removed.
21948 (mono_reflection_generic_inst_initialize): New public method.
21950 * reflection.h (MonoReflectionGenericInst): Removed `methods',
21951 `ctors' and `fields'; added `initialized'.
21953 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
21955 * debug-helpers.c (mono_method_full_name): Fix output for empty
21958 2004-02-12 Martin Baulig <martin@ximian.com>
21960 * class.h (MonoClassField): Added `MonoType *generic_type'.
21962 * reflection.c (mono_image_get_fieldref_token): Added support for
21963 instantiated generic types.
21964 (field_encode_inflated_field): Removed.
21965 (mono_image_get_inflated_field_token): Removed.
21966 (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
21968 * reflection.h (MonoReflectionInflatedField): Removed.
21970 2004-02-12 Martin Baulig <martin@ximian.com>
21972 * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
21973 `gen_method' field from MonoMethodHeader to MonoMethodSignature.
21975 * reflection.c (mono_image_get_methodspec_token): Take a
21976 `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
21977 (mono_image_create_token): Check whether we have a
21978 `method->signature->gen_method' and call
21979 mono_image_get_methodspec_token() if appropriate.
21980 (inflated_method_get_object): Removed.
21981 (mono_reflection_bind_generic_method_parameters): Return a
21982 `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
21983 (mono_reflection_inflate_method_or_ctor): Likewise.
21985 * reflection.h (MonoReflectionInflatedMethod): Removed.
21987 2004-02-12 Zoltan Varga <vargaz@freemail.hu>
21989 * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
21990 for custom valuetype marshalling.
21992 * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
21994 2004-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21996 * icall.c: fixed WSAGetLastError_internal name.
21998 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
22000 * threads.c (mono_thread_attach): Allow this to be called multiple
22001 times for a thread.
22003 * threads.c (build_wait_tids): Do not wait for ourselves.
22005 * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the
22006 appdomain list is empty.
22008 * marshal.c (mono_marshal_get_native_wrapper): Do not free the
22009 memory returned by mono_string_builder_to_utf16, since it points into
22010 managed memory. Thanks to Bernie Solomon for noticing this.
22012 * icall.c: Add AppDomainSetup icalls.
22014 * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
22016 * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
22019 * reflection.c (reflection_methodbuilder_to_mono_method): Save
22020 custom attributes to the method_aux struct. Also fix array indexes etc.
22022 * loader.c (mono_method_get_param_names): Make dynamic case work again.
22024 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
22026 * icall.c, loader.c: icall cleanup: we save quite a bit of memory
22027 (both static and runtime) and reduce startup time.
22029 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
22031 * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
22032 AsAny marshalling conversion instead of crashing.
22034 * marshal.c: Fix warnings.
22036 2004-02-09 Martin Baulig <martin@ximian.com>
22038 * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
22040 * reflection.h (MonoReflectionInflatedMethod): Removed the
22041 `declaring' field, it's now in the unmanaged MonoGenericMethod.
22043 * reflection.c (method_encode_methodspec): Removed the `method'
22044 argument; we get it from `gmethod->declaring'.
22045 (inflated_method_get_object): Removed the `declaring' argument.
22047 2004-02-09 Martin Baulig <martin@ximian.com>
22049 * class.h (MonoGenericMethod): New type.
22050 (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
22053 * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
22054 a `MonoGenericMethod *gen_method' one.
22056 * class.c (mono_class_inflate_generic_type): Take an additional
22057 `MonoGenericMethod * argument. This is only non-NULL if we're
22058 inflating types for a generic method.
22059 (mono_class_inflate_generic_signature): Renamed to
22060 inflate_generic_signature() and made static; take a
22061 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
22062 (inflate_generic_header): Take a `MonoGenericMethod *' argument
22063 instead of a `MonoGenericInst *' one.
22064 (mono_class_inflate_generic_method): Likewise.
22066 * reflection.c (encode_generic_method_sig): Take a
22067 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
22068 (method_encode_methodspec): Likewise.
22069 (inflated_method_get_object): Likewise.
22071 * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
22072 field with a `MonoGenericMethod *gmethod' one.
22074 2004-02-08 Bernie Solomon <bernard@ugsolutions.com>
22076 * class.h (mono_class_has_parent): add parens to expansion
22079 2004-02-08 Martin Baulig <martin@ximian.com>
22081 * image.h (MonoImage): Removed `generics_cache'.
22083 * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
22084 instead of a `MonoType *' argument; removed the `inflate_methods'
22085 argument. Don't inflate methods here.
22087 * loader.c (find_method): If it's a generic instance, call
22088 mono_class_init() on the `sclass->generic_inst->generic_type'.
22090 * metadata.c (mono_type_size): Make this work on uninitialized
22091 generic instances; call it on the `ginst->generic_type's class.
22093 * reflection.c (mono_reflection_bind_generic_parameters): Call
22094 mono_class_from_generic() to create the `ginst->klass'.
22096 2004-02-08 Martin Baulig <martin@ximian.com>
22098 * class.h (MonoClass): Changed type of `generic_inst' from
22099 `MonoType *' to `MonoGenericInst *'.
22101 2004-02-08 Martin Baulig <martin@ximian.com>
22103 * icall.c (ves_icall_Type_BindGenericParameters): Just call
22104 mono_type_get_object(), this is now creating a `MonoGenericInst'
22105 for MONO_TYPE_GENERICINST.
22106 (ves_icall_MonoGenericInst_GetParentType): Likewise.
22107 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
22109 * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
22110 instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
22111 (inflated_method_get_object): Added `MonoClass *refclass' argument.
22112 (mono_reflection_inflate_method_or_ctor): Correctly set declaring
22113 and reflected type.
22115 * reflection.h (MonoReflectionInflatedMethod): Removed
22116 `declaring_type' and `reflected_type'.
22118 2004-02-08 Martin Baulig <martin@ximian.com>
22120 * class.h (MonoGenericInst): Added `MonoType *parent' and
22121 `MonoType **ifaces'.
22123 * reflection.h (MonoReflectionGenericInst): Removed `klass',
22124 `parent' and `interfaces'.
22126 * reflection.c (mono_reflection_bind_generic_parameters): Take a
22127 `MonoType *' argument and return a `MonoType *'.
22130 (ves_icall_MonoGenericInst_GetParentType): New interncall.
22131 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
22133 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
22135 * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
22136 valuetype marshalling.
22138 2004-02-06 Martin Baulig <martin@ximian.com>
22141 (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
22142 (my_mono_class_from_generic_parameter): Likewise.
22144 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
22146 * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
22147 contents of the symbol files lazily.
22149 * object.h (MonoThread): Add 'name' and 'name_len' fields.
22151 * threads.h threads.c icall.c: New icalls for getting and setting the
22154 2004-02-05 Zoltan Varga <vargaz@freemail.hu>
22156 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID):
22157 Raise an exception when the domain is not found.
22159 2004-02-03 Martin Baulig <martin@ximian.com>
22161 * reflection.c (mono_image_get_methodspec_token): Use the
22162 uninflated signature; fixes gen-33.
22164 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
22166 * gc.c threads.c: Make the finalizer thread a normal managed thread so
22167 the finalizer code can use thread functionality.
22169 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for
22170 the finalizer thread.
22172 * threads.c: Make some functions more robust.
22174 * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
22176 * metadata.h: Add new marshalling conventions.
22178 * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
22179 stringbuilder marshalling. Fixes #53700.
22181 * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
22183 * reflection.c (mono_image_get_type_info): Save declarative security
22186 * reflection.c (mono_image_get_field_info): Handle uninitialized
22187 unmanaged fields as well.
22189 * appdomain.c: Bump corlib version.
22191 2004-02-01 Martin Baulig <martin@ximian.com>
22193 * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
22194 method type arguments.
22196 2004-01-30 Duncan Mak <duncan@ximian.com>
22198 * marshal.h: Add prototype for
22199 "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
22201 "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
22204 2004-01-30 Zoltan Varga <vargaz@freemail.hu>
22206 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
22207 (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
22209 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
22211 * marshal.c (mono_marshal_get_native_wrapper): Add support for
22212 custom marshalling of valuetypes.
22214 * marshal.c: Fix some warnings.
22216 2004-01-29 Martin Baulig <martin@ximian.com>
22218 * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
22219 for generic method parameters.
22221 * reflection.c (method_encode_methodspec): Write the uninflated
22222 signature into the methodspec table.
22223 (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
22224 is always the uninflated method.
22225 (reflection_methodbuilder_to_mono_method): Copy the generic
22226 parameters from the MethodBuilder into `header->gen_params'.
22228 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
22230 * class.c (mono_class_from_generic_parameter): Fix warning.
22232 2004-01-27 Martin Baulig <martin@ximian.com>
22234 * class.c (mono_class_from_generic_parameter): Don't create
22235 `klass->methods' here.
22237 2004-01-26 Zoltan Varga <vargaz@freemail.hu>
22239 * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
22240 extension since it does not work with libraries named lib<FOO>.dll.so.
22242 2004-01-25 Martin Baulig <martin@ximian.com>
22244 * class.c (mono_class_inflate_generic_type): Added support for
22245 MONO_TYPE_GENERICINST.
22247 * reflection.c (mono_reflection_inflate_method_or_ctor): Also
22248 inflate methods on open constructed types.
22250 2004-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22252 * object.c: fire ProcessExit event in the root AppDomain after running
22253 Main. Fixes bug #53299.
22255 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
22257 * socket-io.c: include the new socket-wrappers.h header.
22258 Use the wrappers instead of the unix socket functions to make the code
22261 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
22263 * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
22265 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
22268 2004-01-22 Zoltan Varga <vargaz@freemail.hu>
22270 * reflection.c (mono_image_create_pefile): Handle the case when the
22271 entry point is not a MethodBuilder.
22273 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
22274 field to ReflectionMethod since it is not allways a builder.
22276 * reflection.c (type_get_fully_qualified_name): New helper function to
22277 return the fully qualified name of a type.
22279 * reflection.c (encode_marshal_blob): Always emit the fully qualified
22280 type name for custom marshallers.
22282 * reflection.c (mono_marshal_spec_from_builder): Ditto.
22284 * class.c (mono_class_setup_vtable): If a parent class already
22285 implements an interface, use the implementing methods from that class.
22288 2004-01-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22290 * threadpool.c: just return instead of ExitThread to allow for thread
22293 2004-01-21 Zoltan Varga <vargaz@freemail.hu>
22295 * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
22296 when closing resource modules.
22298 * reflection.c (mono_image_create_pefile): Handle the case when the
22299 entry point is not a MethodBuilder.
22301 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
22302 field to ReflectionMethod since it is not allways a builder.
22304 2004-01-20 Bernie Solomon <bernard@ugsolutions.com>
22306 * marshal.c (mono_marshal_get_managed_wrapper):
22307 mono_marshal_alloc takes native int so CONV_I
22308 the arg for 64bits.
22310 2004-01-20 Zoltan Varga <vargaz@freemail.hu>
22312 * reflection.c (fixup_cattrs): New function to fixup the methoddef
22313 tokens in the cattr table. Fixes #53108.
22315 2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22317 * loader.c: don't trim ".dll" before looking up in the config file.
22318 Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
22320 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
22322 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
22323 Return the module which contains the resource as well.
22324 (ves_icall_System_Reflection_Module_Close): New icall.
22326 * appdomain.c: Bump corlib version number.
22328 * image.c (mono_image_addref): New public function.
22330 * assembly.c: Call mono_image_addref.
22332 * reflection.c (mono_module_get_object): Increase reference count of
22335 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
22338 * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
22339 Applied patch from Bernie Solomon <bernard@ugsolutions.com>. Throw
22340 proper exceptions on DllImport problems.
22342 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
22344 * class.c, metadata.c: eliminate CSIZE macro.
22346 2004-01-19 Lluis Sanchez Gual <lluis@ximian.com>
22348 * icall.c: Added ves_icall_type_IsInstanceOf internal call.
22349 * object.h: Added async_callback field in MonoAsyncResult.
22350 * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
22351 * verify.c: Added async_callback in MonoAsyncResult layout.
22353 2004-01-17 Zoltan Varga <vargaz@freemail.hu>
22355 * reflection.c (mono_reflection_get_custom_attrs): Add support
22358 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
22360 * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder
22362 (mono_marshal_method_from_wrapper): Add null pointer check.
22364 2004-01-16 Martin Baulig <martin@ximian.com>
22366 * debug-mono-symfile.h: Set version number to 36 and reflect
22367 latest symbol writer changes.
22369 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
22371 * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
22372 multi-dimensional arrays.
22373 (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
22374 (mono_class_from_mono_type): Use bounded_array_class_get.
22376 * class.c (mono_bounded_array_class_get): New function which takes
22377 a 'bounded' bool argument to distinguish vectors from one dimensional
22380 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call
22381 bounded_array_class_get if the array has bounds.
22383 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
22384 Search modules loaded using AssemblyBuilder:AddModule as well.
22386 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22388 * appdomain.c: increased corlib version.
22389 * filewatcher.c: removed g_print.
22391 (get_property_info): only allocate what is actually requested.
22392 (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
22394 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22396 * Makefile.am: added filewatcher.[ch]
22397 * filewatcher.[ch]: FileSystemWatcher runtime support.
22398 * icall.c: added new FSW icalls.
22400 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
22402 * string-icalls.c: fix stringbuilder regression as suggested by
22403 Iain McCoy <iain@mccoy.id.au>.
22405 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
22407 * process.c (process_read_stringtable_block): Recognize '007f' as
22408 a language neutral stringtable block.
22410 2004-01-12 Patrik Torstensson
22412 * object.h (MonoStringBuilder) : Changed layout to support our
22413 new stringbuilder class.
22414 * marshal.c: Change marshalling to support the new layout of
22416 * appdomain.c: increased version number because new layout of
22419 2004-01-12 Zoltan Varga <vargaz@freemail.hu>
22421 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
22422 assembly name as an string instead of an AssemblyName, since it is
22423 easier to extract info from it.
22425 * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
22426 the culture subdirectories too. Fixes #52231.
22428 2004-01-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22430 * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
22431 It takes 2 new parameters with an optional name for the method to look
22432 for and case ignoring info.
22434 * threadpool.c: removed unused variable.
22436 2004-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22438 * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
22439 It takes 2 new parameters with an optional name for the property to look
22440 for and case ignoring info.
22443 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
22445 * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
22448 2004-01-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22451 * assembly.c: escape the uri before passing it to g_filename_from_uri.
22454 2004-01-07 Zoltan Varga <vargaz@freemail.hu>
22456 * reflection.c: Add support for more than one unmanaged resource.
22458 * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
22459 in field->def_value, as done in all other cases.
22461 * reflection.c (mono_reflection_get_custom_attrs): Add support for
22464 * reflection.c (mono_reflection_create_runtime_class): Remove
22465 errorneous assignment to klass->element_class, since it is already
22466 done in mono_reflection_setup_internal_class.
22468 2004-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22470 * gc.c: added missing LeaveCriticalSection.
22471 * icall.c: indented a couple of lines.
22472 * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
22473 if we call EndInvoke inside a callback. Fixes bug #52601.
22475 2004-01-07 Martin Baulig <martin@ximian.com>
22477 * mono-debug-debugger.h
22478 (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
22480 2004-01-06 Miguel de Icaza <miguel@ximian.com>
22482 * appdomain.c: Use messages in NotImplementedException.
22484 * exception.c (mono_get_exception_not_implemented): Now this takes
22485 a message argument.
22487 * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
22488 exception instead of g_asserting an aborting when something is not
22491 Add some inline docs.
22493 2004-01-05 Zoltan Varga <vargaz@freemail.hu>
22495 * reflection.h: Update after changes to object layout.
22497 * reflection.c: Implement saving of unmanaged aka win32 resources.
22499 * appdomain.c: Bump version number.
22501 * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID):
22502 Handle missing domains gracefully.
22504 2004-01-05 Atsushi Enomoto <atsushi@ximian.com>
22506 * file-io.c : On Windows, there are much more invalid_path_chars.
22508 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
22510 * class.h, object.c: prepare for GetType () speedup.
22512 2003-12-24 Atsushi Enomoto <atsushi@ximian.com>
22514 * profiler.c: workaround for --profile null reference exception on
22515 cygwin. Patch by Patrik Torstensson.
22517 2003-12-22 Bernie Solomon <bernard@ugsolutions.com>
22519 * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
22520 make work for unaligned access.
22522 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
22524 * class.c: small cleanup (class->fields [i] -> field).
22525 * image.c: check address of metadata is valid.
22527 2003-12-22 Zoltan Varga <vargaz@freemail.hu>
22529 * assembly.h assembly.c (mono_assembly_loaded): New public function to
22530 search the list of loaded assemblies.
22532 * reflection.c (mono_reflection_type_from_name): Use
22533 mono_assembly_loaded instead of mono_image_loaded.
22535 * reflection.c: Fix warnings.
22537 2003-12-20 Zoltan Varga <vargaz@freemail.hu>
22539 * image.h (MonoImage): Add a new 'dynamic' field to denote that the image
22540 is dynamic. This is needed since an assembly can contain both dynamic and
22541 non-dynamic images.
22543 * class.c loader.c metadata.c object.c: Use image->dynamic instead of
22546 * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
22548 * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
22549 to store modules loaded using AddModule.
22551 * reflection.c (mono_image_fill_file_table): Generalize this so it works
22554 * reflection.c (mono_image_fill_export_table_from_class): New helper function.
22556 * reflection.c (mono_image_fill_export_table_from_module): New function to
22557 fill out the EXPORTEDTYPES table from a module.
22559 * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
22560 into a separate function. Also handle loaded non-dynamic modules.
22562 * reflection.c (mono_image_basic_init): Fix memory allocation.
22564 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22566 * assembly.c (mono_assembly_load_references): Make this public.
22568 2003-12-19 Martin Baulig <martin@ximian.com>
22570 * class.c (mono_class_initialize_generic): Made this static, take
22571 a `MonoGenericInst *' instead of a `MonoClass *'.
22572 (mono_class_from_generic): Call mono_class_initialize_generic()
22573 unless we're already initialized or being called from
22574 do_mono_metadata_parse_generic_inst().
22576 * class.h (MonoGenericInst): Added `initialized' and
22577 `init_pending' flags.
22579 * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
22580 `mono_class_init (gklass)' or mono_class_initialize_generic()
22581 here; set `generic_inst->init_pending' while parsing the
22584 2003-12-19 Bernie Solomon <bernard@ugsolutions.com>
22586 * locales.c: include string.h for memxxx prototypes
22588 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
22590 * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
22591 constructor when accessing literal fields.
22593 2003-12-17 Zoltan Varga <vargaz@freemail.hu>
22595 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
22597 * reflection.c (assembly_add_resource_manifest): New function to fill
22598 the MANIFESTRESOURCE table.
22600 * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
22602 * reflection.h: Update to changes in class layout.
22604 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted):
22605 Reenable call to mono_runtime_is_shutting_down ().
22607 * appdomain.c (mono_runtime_is_shutting_down): New helper function to
22608 determine if the runtime is shutting down.
22610 2003-12-16 Jackson Harper <jackson@ximian.com>
22612 * icall.c: comment out call to mono_runtime_is_shutting_down to
22615 2003-12-16 Zoltan Varga <vargaz@freemail.hu>
22617 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
22618 (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
22620 2003-12-15 Bernie Solomon <bernard@ugsolutions.com>
22622 * reflection.c: move definition of swap_with_size
22623 to before its first call
22625 2003-12-15 Zoltan Varga <vargaz@freemail.hu>
22627 * appdomain.c (mono_runtime_is_shutting_down): New public function.
22629 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
22632 * object.c: Fix warnings.
22634 * icall.c (ves_icall_Type_Get...): Only consider inherited static
22635 members if FlattenHierarchy is set.
22637 * reflection.c (mono_image_add_decl_security): New function to emit
22638 declarative security.
22640 * reflection.h reflection.c: Add support for declarative security.
22642 * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
22644 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
22646 appdomain.c (MONO_CORLIB_VERSION): Bump version number.
22648 * appdomain.c verify.c: Moved corlib version checking into its own
22649 function in appdomain.c since it needs to create vtables etc.
22651 2003-12-13 Patrik Torstensson <p@rxc.se>
22653 * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this
22654 instead of unwrapped server.
22656 2003-12-12 Zoltan Varga <vargaz@freemail.hu>
22658 * verify.c (check_corlib): Fix field index.
22660 2003-12-10 Zoltan Varga <vargaz@freemail.hu>
22662 * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
22665 2003-12-10 Bernie Solomon <bernard@ugsolutions.com>
22667 * process.c: (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
22668 ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
22669 cope with sizeof(size_t) != sizeof(guint32).
22671 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22673 * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
22674 in case of failure.
22676 2003-12-10 Mark Crichton <crichton@gimp.org>
22678 * icall.c: removed the GetNonZeroBytes. We now handle this case
22681 * rand.c, rand.h: Same here. Also cleaned up the clode slightly.
22683 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
22685 * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
22688 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
22690 * verify.c (check_corlib): Handle the case when the version field is
22691 initialized by a static constructor.
22693 2003-12-08 Patrik Torstensson <p@rxc.se>
22695 * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
22697 2003-12-08 Martin Baulig <martin@ximian.com>
22699 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
22700 a MonoReflectionGenericParameter, also take the parameter index
22701 and name as arguments.
22702 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
22703 (ves_icall_MonoGenericParam_initialize): New interncall.
22704 (ves_icall_Type_make_byref_type): New interncall.
22706 * reflection.h (MonoReflectionGenericParam): Derive from
22707 MonoReflectionType, not just from MonoObject. Added `refobj' and
22710 * reflection.c (mono_reflection_define_generic_parameter): Create
22711 and return a new MonoReflectionGenericParam; don't initialize the
22713 (mono_reflection_initialize_generic_parameter): New public method;
22714 initializes the constraints and creates the `param->pklass'.
22716 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
22718 * reflection.h reflection.c: Use the new fields 'num_types',
22719 'num_fields' and 'num_methods' to track the number of types etc.
22721 * verify.c (check_corlib): Check corlib version number.
22723 2003-12-07 Zoltan Varga <vargaz@freemail.hu>
22725 * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
22726 function works on all methods.
22728 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
22730 * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
22731 * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
22732 the custom_type_info flag of the transparent proxy.
22733 * object.c: Added method mono_object_isinst_mbyref for casting mbyref
22734 objects that supports IRemotingTypeInfo.
22735 * object.h: Added custom_type_info field in transparent proxy.
22737 2003-12-06 Martin Baulig <martin@ximian.com>
22739 * class.c (mono_class_create_from_generic): Removed.
22740 (mono_class_from_generic): Check `ginst->klass' before doing
22741 anything else. This is important to fully support "recursive"
22744 * metadata.c (do_mono_metadata_parse_generic_inst): Create an
22745 empty `generic_inst->klass' before doing anything else.
22747 2003-12-06 Dick Porter <dick@ximian.com>
22752 * locales.c: Use C structs to access class fields. Don't do a
22753 conversion between MonoString and UChar because both are
22754 platform-endian UTF-16. Compare now takes startindex and count
22755 parameters. Add a char overload for IndexOf. Speed up the
22756 invariant string IndexOf.
22758 2003-12-05 Zoltan Varga <vargaz@freemail.hu>
22760 * Makefile.am (monosn_LDADD): Fix parallel build.
22762 2003-12-04 Martin Baulig <martin@ximian.com>
22765 (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
22766 (ves_icall_Type_make_array_type): New interncall.
22768 2003-12-04 Martin Baulig <martin@ximian.com>
22770 * locales.c: also change it in the !HAVE_ICU case.
22772 2003-12-04 Dick Porter <dick@ximian.com>
22775 * locales.c: construct_compareinfo is now in CompareInfo, not
22778 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
22780 * image.c (mono_image_load_file_for_image): Cache loaded images in the
22781 image->files array.
22783 * image.c (load_class_name): Load class names from the EXPORTEDTYPES
22786 * assembly.c (mono_assembly_load_references): Only load references
22789 * class.c (mono_class_from_name): Avoid linear search of the
22790 EXPORTEDTYPE table.
22792 * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
22794 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
22796 * image.h (MonoImage): Add 'field_cache' field.
22798 * loader.c (mono_field_from_token): Cache field lookups.
22800 * reflection.c (mono_module_get_object): Fix name property.
22802 * icall.c (ves_icall_get_enum_info): Update after changes to
22803 mono_metadata_get_constant_index ().
22805 * icall.c: Get rid of get_type_info icall, use a separate icall for
22806 each type property to avoid needless memory allocations. Fixes #51514.
22808 * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
22809 to avoid needless binary searches.
22811 * class.c (class_compute_field_layout): Move the initialization of
22812 field->def_value to mono_class_vtable ().
22814 * class.c (mono_class_layout_fields): Enable GC aware auto layout for
22817 * object.c (mono_object_allocate): Make it inline.
22819 * object.c (mono_object_allocate_spec): Make it inline.
22821 2003-12-02 Dick Porter <dick@ximian.com>
22823 * locales.c (create_NumberFormat): NumberFormatInfo construction.
22824 Patch by Mohammad DAMT (mdamt@cdl2000.com).
22826 2003-12-01 Dick Porter <dick@ximian.com>
22828 * threads.c: Fix signature and call in CreateMutex and
22831 2003-12-01 Dick Porter <dick@ximian.com>
22834 * locales.c: Implement string compares and searching
22836 * object.h: Add extra Thread field
22838 2003-11-30 Zoltan Varga <vargaz@freemail.hu>
22840 * reflection.c (fixup_method): Add support for MonoCMethod.
22842 2003-11-28 Zoltan Varga <vargaz@freemail.hu>
22844 * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
22846 * reflection.c (assembly_name_to_aname): Allow extra characters in
22847 assembly names. Fixes #51468.
22849 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
22851 * exception.c (mono_exception_from_name_domain): New helper function.
22853 * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
22854 exception object in the correct domain.
22856 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix
22857 formatting + make a copy a the input data.
22859 * loader.c (mono_get_method_from_token): Methods which contain
22860 native code do not have entries in the ImplMap.
22862 (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
22863 Thanks to Gonzalo for spotting this.
22865 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
22866 patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
22868 * assembly.h (mono_assembly_load_from): Split the second part of
22869 assembly loading into a new public function.
22871 * exception.h (mono_get_exception_bad_image_format): New function.
22873 2003-11-24 Zoltan Varga <vargaz@freemail.hu>
22875 icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
22876 Enumerate all modules inside a dynamic assembly. Fixes #51293.
22878 * icall.c: Add new icall for creating dynamic methods.
22880 * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
22882 * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
22884 * reflection.c (mono_reflection_create_dynamic_method): New icall to
22885 create a dynamic method.
22887 * reflection.c (resolve_object): New helper function.
22889 * reflection.c: Generalize ReflectionMethodBuilder and the functions
22890 which manipulate it so they can also work on dynamic methods.
22892 * reflection.c (reflection_method_builder_to_mono_method): Avoid
22893 creating the MonoReflectionMethodAux structure if it is not needed.
22895 * reflection.h verify.c: Update after changes to object layout.
22897 * reflection.c (method_builder_encode_signature): Fix compilation on
22900 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
22902 * appdomain.h: Added support for context static fields. Added static_data
22903 field to MonoAppContext and renamed thread_static_fields to a more
22904 generic special_static_fields in MonoAppDomain, since it can now contain
22905 context static fields.
22906 * domain.c: Updated hashtable name.
22907 * object.c: Replaced field_is_thread_static() for a more generic
22908 field_is_special_static() which also checks for context static attribute.
22909 In mono_class_vtable(), added support for static context fields.
22910 * threads.c: Changed methods that manage thread static fields to more
22911 generic methods so they can be reused both for thread and context static
22913 * threads.h: Declared some new methods.
22915 2003-11-21 Zoltan Varga <vargaz@freemail.hu>
22917 * reflection.h: Update after changes to the managed types.
22919 * reflection.c (encode_custom_modifiers): New helper function.
22921 * reflection.c (method_encode_signature): Emit custom modifiers.
22923 * reflection.c (field_encode_signature): Emit custom modifiers.
22925 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
22927 * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
22929 * icall.c (ves_icall_System_ValueType_Equals): New optimized
22932 * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New
22935 * object.c (mono_field_get_value_object): New function.
22937 * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
22940 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
22942 * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
22943 return a preallocated out-of-memory exception instance.
22945 * object.c (out_of_memory): Use the new function.
22947 * metadata.c (mono_metadata_parse_type): Handle the case when the byref
22948 flag is before the custom modifiers. Fixes #49802.
22950 2003-11-16 Martin Baulig <martin@ximian.com>
22952 * class.c (mono_class_is_open_constructed_type): Implemented the
22953 MONO_TYPE_GENERICINST case.
22955 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
22957 * assembly.c (mono_assembly_fill_assembly_name): New function to
22958 fill out the MonoAssemblyName structure.
22959 (mono_assembly_open): Use the new function.
22961 * icall.c (fill_reflection_assembly_name): New helper function.
22963 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
22966 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
22968 2003-11-15 Martin Baulig <martin@ximian.com>
22970 * class.c (mono_class_is_open_constructed_type): New public
22971 function; checks whether a type is an open constructed type,
22972 ie. whether it still contains type parameters.
22973 (mono_class_inflate_generic_type): If we're a type parameter and
22974 the inflated type is also a MONO_TYPE_(M)VAR, return the original
22977 * class.h (MonoGenericInst): Added `guint32 is_open'.
22979 * loader.c (method_from_methodspec): Check whether we're an open
22980 or closed constructed type and set `ginst->is_open'.
22982 * reflection.c (mono_reflection_bind_generic_parameters): Check
22983 whether we're an open or closed constructed type and set
22985 (mono_reflection_inflate_method_or_ctor): Don't inflate methods
22986 from open constructed types.
22988 2003-11-15 Martin Baulig <martin@ximian.com>
22990 * reflection.c (mono_reflection_bind_generic_parameters): If we're
22991 a generic instance (instead of a generic type declaration) with
22992 unbound generic parameters, bind them to our actual types.
22994 2003-11-14 Martin Baulig <martin@ximian.com>
22996 * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
22998 * reflection.c (mono_reflection_bind_generic_parameters): If we're
22999 an interface type, populate `res->interfaces' with instantiated
23000 versions of all the interfaces we inherit.
23002 2003-11-13 Aleksey Demakov <avd@openlinksw.com>
23004 * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
23005 when MONO_PATH is set but doesn't contain the install dir.
23007 2003-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23010 (ves_icall_Type_GetInterfaces): don't return an interface twice when
23011 it's also implemented in base classes. Fixes bug #50927.
23013 2003-11-13 Zoltan Varga <vargaz@freemail.hu>
23015 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
23016 if this method is called from a finalizer. Fixes #50913.
23018 2003-11-12 Miguel de Icaza <miguel@ximian.com>
23020 * threads.c: Implement VolatileRead/VolatileWrite
23022 * icall.c: Add new icalls for VolatileRead/VolatileWrite
23024 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
23026 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied
23027 patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
23030 * assembly.c (mono_assembly_open): Fix windows build. Applied patch
23031 from Peter Ross (pro@missioncriticalit.com).
23033 2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>
23035 * icall.c: Added internal call for System.Environment::GetMachineConfigPath
23037 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
23039 * assembly.c (mono_assembly_load_references): Disable check because it
23040 triggers on older corlibs which lots of people have.
23042 2003-11-12 Jackson Harper <jackson@ximian.com>
23044 * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
23045 load corlib.dll if mscorlib.dll is not found.
23046 * assembly.h: Remove corlib name define.
23049 * image.c: Change corlib name to mscorlib.
23051 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
23053 * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
23055 2003-11-11 Miguel de Icaza <miguel@ximian.com>
23057 * appdomain.h: Added loader_optimization here to sync with the C#
23058 code, and add disallow_binding_redirects field.
23060 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
23062 * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
23064 * reflection.c (mono_image_build_metadata): Fix crash on modules
23067 * reflection.h (MonoMethodInfo): Track changes to the managed structure.
23069 * icall.c (ves_icall_get_method_info): Return callingConvention as
23072 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add
23073 namespaces from the EXPORTEDTYPE table as well.
23075 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
23076 from all modules inside the assembly.
23078 2003-11-11 Martin Baulig <martin@ximian.com>
23080 * reflection.c (mono_reflection_bind_generic_parameters): Make
23081 this work for interfaces.
23083 2003-11-11 Martin Baulig <martin@ximian.com>
23085 * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
23087 2003-11-11 Martin Baulig <martin@ximian.com>
23089 * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
23090 "MonoInflatedMethod" and "MonoInflatedCtor".
23092 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
23094 * reflection.c (resolution_scope_from_image): Use the assembly table
23095 from the manifest module, since other modules don't have it.
23097 * debug-helpers.c (mono_type_full_name): New helper function.
23099 * image.h (MonoAssembly): Change 'dynamic' to a boolean.
23101 * image.c (mono_image_load_file_for_image): New public function which
23102 is a replacement for the load_file_for_image in class.c.
23104 * assembly.c (mono_assembly_load_module): A wrapper for the function
23105 above which does assembly association and reference loading too.
23107 * class.c (mono_class_from_name): Call mono_assembly_load_module.
23109 2003-11-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23111 * appdomain.c: not all of the attributes for the full assembly name
23112 are required and the order doesn't matter. Fixes bug #50787.
23114 2003-11-10 Dick Porter <dick@ximian.com>
23116 * locales.c: Use platform-endian UTF16
23118 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
23120 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
23122 2003-11-10 Martin Baulig <martin@ximian.com>
23125 (mono_metadata_load_generic_params): Make this actually work.
23127 * reflection.c (mono_reflection_bind_generic_parameters): If our
23128 parent is a generic instance, pass all the `types' to it, no
23129 matter whether it has the same number of type parameters or not.
23131 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
23133 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
23135 * assembly.c (mono_assembly_load_references): Move the image<->assembly
23136 assignment code to this function so it gets called recursively for all
23139 * image.c (load_modules): Remove the assembly assignment since it is
23140 now done by mono_assembly_load_references.
23142 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
23143 Add 'module' argument.
23144 (mono_module_get_types): New helper function.
23145 (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
23147 2003-11-08 Martin Baulig <martin@ximian.com>
23149 * class.c (mono_class_inflate_generic_method): Interface method
23150 don't have a header.
23152 * reflection.c (mono_image_get_methodspec_token): Take an
23153 additional `MonoGenericInst *' argument instead of reading it from
23154 the header; this is necessary to support interfaces.
23155 (mono_image_create_token): Pass the `MonoGenericInst *' from the
23156 MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
23157 (inflated_method_get_object): Take an additional `MonoGenericInst *'
23160 * reflection.h (MonoReflectionInflatedMethod): Added
23161 `MonoGenericInst *ginst'.
23163 2003-11-07 Zoltan Varga <vargaz@freemail.hu>
23165 * gc.c (mono_domain_finalize): Fix compilation for no GC case.
23167 2003-11-06 Zoltan Varga <zovarga@ws-zovarga2>
23169 * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
23171 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
23174 (reflection_methodbuilder_from_method_builder):
23175 (reflection_methodbuilder_from_ctor_builder): New helper functions to
23176 initialize a ReflectionMethodBuilder structure.
23177 (mono_image_get_methodbuilder_token):
23178 (mono_image_get_ctorbuilder_token): New functions to emit memberref
23179 tokens which point to types in another module inside the same assembly.
23181 * reflection.c: Use the new helper functions.
23183 * reflection.c (mono_image_basic_init): Initialize basedir and culture.
23185 * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image
23186 instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
23188 * reflection.c (resolution_scope_from_image): Emit a moduleref if
23191 * reflection.c (mono_image_build_metadata): Emit metadata only for the
23192 current module. Emit the manifest only for the main module.
23194 * reflection.c (mono_image_create_token): Add assertion when a
23195 memberref needs to be created.
23197 * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
23199 * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a
23200 larger buffer for the custom attribute blob. Fixes #50637.
23202 2003-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23204 * threadpool.c: notify listener on async processing handles after
23205 invoking the async callback. Thanks to Zoltan.
23207 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
23209 * reflection.c (create_dynamic_mono_image): Call mono_image_init to
23210 avoid code duplication.
23212 * reflection.h (MonoDynamicImage): New type which is currently unused,
23213 but will be used through the ref.emit code in place of
23214 MonoDynamicAssembly.
23216 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
23219 * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
23220 a MonoDynamicImage instead of just a MonoImage.
23222 * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
23223 icalls to ModuleBuilder but keep their semantics, so they will work
23224 with moduleb->assemblyb. This will change later.
23226 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
23228 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
23231 * reflection.c (mono_image_build_metadata): Avoid creation of a default
23232 main module, since it is now done by the managed code.
23234 2003-11-03 Martin Baulig <martin@ximian.com>
23236 * reflection.c (mono_reflection_inflate_method_or_ctor): Set
23237 `ginst->klass' here.
23238 (method_encode_methodspec): Don't use the `ginst->generic_method's
23239 klass if it's a generic instance, use `ginst->klass' in this case.
23241 2003-11-03 Martin Baulig <martin@ximian.com>
23243 * reflection.c (mono_image_get_generic_method_param_info):
23244 Removed, use mono_image_get_generic_param_info() instead.
23245 (mono_image_get_type_info): Write the GenericParam table before
23246 the Method table. This is neccessary because in the GenericParam
23247 table, type parameters of the class (ie. '!0' etc.) must come
23248 before the ones from its generic methods (ie. '!!0' etc).
23250 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
23252 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
23254 2003-11-02 Martin Baulig <martin@ximian.com>
23256 * reflection.c (create_generic_typespec): Take a
23257 `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
23258 the generic parameters from it.
23260 2003-11-02 Martin Baulig <martin@ximian.com>
23262 * reflection.c (fieldref_encode_signature): Take a `MonoType *'
23263 instead of a `MonoClassField *' since we just need the type.
23264 (create_generic_typespec): New static function. Creates a
23265 TypeSpec token for a generic type declaration.
23266 (mono_image_get_generic_field_token): New static function.
23267 (mono_image_create_token): If we're a FieldBuilder in a generic
23268 type declaration, call mono_image_get_generic_field_token() to get
23271 2003-11-02 Martin Baulig <martin@ximian.com>
23274 (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
23275 `MonoReflectionGenericInst *declaring_type' and
23276 `MonoReflectionGenericInst *reflected_type' fields.
23278 * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
23279 `MonoReflectionGenericInst *declaring_type' and a
23280 `MonoReflectionGenericInst *reflected_type' argument instead of a
23281 single `MonoReflectionGenericInst *type' one. Set
23282 `res->declaring_type' and `res->reflected_type' from them.
23283 (mono_reflection_inflate_field): Likewise.
23285 2003-11-02 Martin Baulig <martin@ximian.com>
23287 * class.c (mono_class_setup_vtable): Don't store generic methods
23290 2003-11-02 Martin Baulig <martin@ximian.com>
23292 * reflection.h (MonoReflectionGenericInst): Added
23293 `MonoReflectionType *declaring_type'.
23295 * reflection.c (mono_reflection_bind_generic_parameters): Use
23296 `if (tb->parent)' instead of `klass->parent'.
23298 2003-11-01 Zoltan Varga <vargaz@freemail.hu>
23300 * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
23301 with an empty ASSEMBLY table.
23303 * reflection.c (mono_image_build_metadata): Avoid using the same loop
23304 variable in the inner and outer loops.
23306 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
23308 * metadata.h (mono_metadata_make_token): Put parentheses around macro
23311 * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
23313 * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain
23314 icalls. Instead, do everything in managed code. This is needed since
23315 it is hard to restore the original domain etc. in unmanaged code in the
23316 presence of undeniable exceptions.
23318 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef):
23319 New icalls to push and pop appdomain refs.
23321 2003-10-31 Martin Baulig <martin@ximian.com>
23323 * class.c (inflate_generic_type): Renamed to
23324 mono_class_inflate_generic_type() and made it public.
23326 * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
23329 * loader.c (mono_field_from_memberref): Also set the retklass for
23332 * fielder.c (mono_image_get_inflated_field_token): New static
23333 method; creates a metadata token for an inflated field.
23334 (mono_image_create_token, fixup_method): Added support for
23335 "MonoInflatedField".
23336 (fieldbuilder_to_mono_class_field): New static function.
23337 (mono_reflection_inflate_field): New public function.
23340 (MonoReflectionGenericInst): Added `MonoArray *fields'.
23341 (MonoReflectionInflatedField): New typedef.
23343 2003-10-30 Bernie Solomon <bernard@ugsolutions.com>
23345 * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
23346 for Solaris and other platforms without s6_addr16
23348 2003-10-30 Martin Baulig <martin@ximian.com>
23350 * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
23351 argument instead of two.
23352 (mono_class_inflate_generic_signature): Likewise.
23353 (inflate_generic_header): Likewise.
23354 (mono_class_inflate_generic_method): Likewise. In addition, if
23355 `ginst->klass' is set, it becomes the new `method->klass'.
23357 * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
23360 * reflection.c (encode_generic_method_sig): Write a 0xa as the
23361 first byte. [FIXME]
23362 (method_encode_methodspec): If we have generic parameters, create
23363 a MethodSpec instead of a MethodRef.
23364 (fixup_method): Added support for "MonoInflatedMethod" and
23365 "MonoInflatedCtor".
23366 (mono_image_create_token): Added support for "MonoInflatedMethod"
23367 and "MonoInflatedCtor".
23368 (inflated_method_get_object): New static function; returns a
23369 managed "System.Reflection.MonoInflatedMethod" object.
23370 (mono_reflection_bind_generic_method_parameters): Return a
23371 `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
23372 (mono_reflection_inflate_method_or_ctor): Likewise.
23373 (mono_image_get_generic_method_param_info): Initialize unused
23375 (mono_image_get_generic_param_info): Likewise.
23377 * reflection.h (MonoReflectionInflatedMethod): New public
23378 typedef. Corresponds to the managed "S.R.MonoInflatedMethod" and
23379 "S.R.MonoInflatedCtor" classes.
23381 * loader.c (method_from_memberref): If we're a TypeSpec and it
23382 resolves to a generic instance, inflate the method.
23384 2003-10-28 Dick Porter <dick@ximian.com>
23386 * object.c (mono_runtime_run_main): Convert command-line arguments
23387 into utf8, falling back to the user's locale encoding to do so.
23389 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
23391 * loader.c (mono_get_method_from_token): Avoid looking up the icalls
23394 * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
23396 * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
23397 up icalls at method definition time. Partially fixes #33569.
23399 2003-10-25 Zoltan Varga <vargaz@freemail.hu>
23401 * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
23402 marshalling of arrays. Fixes #50116.
23404 * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
23406 * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
23407 points to a vtable in the dying appdomain.
23409 * appdomain.c (mono_domain_unload): Move the notification of OnUnload
23410 listeners into unmanaged code inside the lock.
23412 * object.c (mono_class_vtable): Turn off typed allocation in non-root
23413 domains and add some comments.
23415 2003-10-25 Martin Baulig <martin@ximian.com>
23417 * class.h (MonoGenericInst): Added `MonoClass *klass' field.
23419 * image.h (MonoImage): Added `GHashTable *typespec_cache'.
23421 * metadata.c (mono_metadata_parse_generic_inst): Renamed to
23422 `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
23423 currently parsing. Create the generic class and store it in
23424 `generic_inst->klass' before parsing the type arguments. This is
23425 required to support "recursive" definitions; see mcs/tests/gen-23.cs
23427 (mono_type_create_from_typespec): Use a new `image->typespec_cache'
23428 to support recursive typespec entries.
23430 * class.c (mono_class_setup_parent): If our parent is a generic
23431 instance, we may get called before it has its name set.
23432 (mono_class_from_generic): Splitted into
23433 mono_class_create_from_generic() and mono_class_initialize_generic().
23435 2003-10-25 Martin Baulig <martin@ximian.com>
23437 * icall.c (ves_icall_Type_BindGenericParameters): Return a
23438 `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
23439 ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
23440 ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
23442 * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
23443 (create_typespec): Likewise.
23444 (mono_reflection_bind_generic_parameters): Return a
23445 `MonoReflectionGenericInst *' instead of a `MonoClass *'.
23446 (mono_reflection_inflate_method_or_ctor): New public function.
23448 * reflection.h (MonoReflectionGenericInst): New typedef.
23450 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
23452 * object.c (mono_class_proxy_vtable): Run the whole vtable construction
23453 inside the domain lock. Fixes #49993.
23455 * object.c (mono_class_vtable): When typed allocation is used,
23456 allocate vtables in the GC heap instead of in the mempool, since the
23457 vtables contain GC descriptors which are used by the collector even
23458 after the domain owning the mempool is unloaded.
23460 * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
23462 * domain.c (mono_domain_unload): Rename to mono_domain_free to better
23463 reflect what it does. Also invalidate mempools instead of freeing
23464 them if a define is set.
23466 * appdomain.h (MonoAppDomainState): New enumeration to hold the state
23469 * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
23470 hold the finalizable objects in this domain.
23472 * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
23475 * appdomain.c (mono_domain_set): New function to set the current
23476 appdomain, but only if it is not being unloaded.
23478 * appdomain.c threads.c threadpool.c object.c: Avoid entering an
23479 appdomain which is being unloaded.
23481 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
23482 unloading of the root appdomain.
23484 * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
23485 icall to execute a method in another appdomain. Intended as a
23486 replacement for InternalSetDomain, which can confuse the code
23487 generation in the JIT.
23489 * appdomain.c (mono_domain_is_unloading): New function to determine
23490 whenever an appdomain is unloading.
23492 * appdomain.c (mono_domain_unload): New function to correctly unload
23495 * assembly.c (mono_assembly_load_references): Check that an assembly
23496 does not references itself.
23498 * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
23499 domain manually, it asks the finalizer thread to do it, then waits for
23500 the result. Also added a timeout.
23502 * icall.c: Register the new icalls.
23504 * threads.h threads.c: Export the mono_gc_stop_world and
23505 mono_gc_start_world functions.
23507 * mempool.h mempool.c (mono_mempool_invalidate): New debugging
23508 function to fill out the mempool with 0x2a.
23510 2003-10-22 Zoltan Varga <vargaz@freemail.hu>
23512 * reflection.h (MonoReflectionMethodAux): New structure to store
23513 information which is rarely used, thus is not in the MonoMethod
23516 * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
23517 store the aux info.
23519 * reflection.c (mono_methodbuilder_to_mono_method): Store param names
23520 and marshalling info into the aux structure.
23522 * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
23523 from the aux structure.
23525 * loader.c (mono_method_get_param_names): Retrieve the param names from
23528 2003-10-21 Zoltan Varga <vargaz@freemail.hu>
23530 * exception.h exception.c: Add AppDomainUnloadedException && fix
23533 2003-10-21 Dick Porter <dick@ximian.com>
23536 (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
23537 patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
23539 2003-10-21 Martin Baulig <martin@ximian.com>
23541 * reflection.c (mono_reflection_bind_generic_parameters):
23542 `klass->parent' is NULL for interfaces.
23544 2003-10-21 Martin Baulig <martin@ximian.com>
23546 * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
23548 2003-10-20 Zoltan Varga <vargaz@freemail.hu>
23550 * exception.c (mono_exception_from_name_msg): New helper function for
23551 creating exceptions and initializing their message field.
23553 * exception.c: Simplify functions using the new helper.
23555 * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
23558 * object.h object.c: Remove G_GNUC_NORETURN from the signature of
23559 mono_raise_exception, since otherwise gcc doesn't generate the function
23560 epilog for raise_exception, confusing the stack unwinding in the JIT.
23563 * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
23564 PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
23567 2003-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23569 * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
23572 2003-10-18 Lluis Sanchez Gual <lluis@ximian.com>
23574 * icall.c: Removed GetUninitializedObject method because
23575 AllocateUninitializedClassInstance does the same.
23577 2003-10-18 Martin Baulig <martin@ximian.com>
23579 * class.c (inflate_generic_signature): Renamed to
23580 mono_class_inflate_generic_signature() and made it public.
23581 (my_mono_class_from_generic_parameter): New static function; if we
23582 don't already have the generic parameter's MonoClass, create a
23583 very simple one which is just used internally in the runtime and
23584 not passed back to managed code.
23586 * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
23588 * metadata.h (MonoMethodSignature): Moved the
23589 `MonoGenericParam *gen_params' to the MonoMethodHeader.
23590 (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
23592 * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
23593 ves_icall_MonoMethod_GetGenericArguments(); this is now an
23594 interncall on the MonoMethod class, not on MethodInfo.
23595 (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
23596 calling mono_reflection_bind_generic_method_parameters() directly.
23598 * loader.c (mono_method_get_signature): If this is a MethodSpec;
23599 return the already computed `method->signature'.
23600 (method_from_methodspec): New static function to load a method
23601 from a MethodSpec entry.
23602 (mono_get_method_from_token): Call the new method_from_methodspec()
23603 for MethodSpec tokens.
23604 (mono_get_method_from_token): If we're a generic method, load the
23607 * reflection.c (mono_image_get_memberref_token): Allow
23608 MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
23610 (fixup_method): Added support for MONO_TABLE_METHODSPEC.
23611 (mono_image_create_token): First check whether it's a generic
23612 method (so we'd need to create a MethodSpec), then do the other
23614 (mono_reflection_bind_generic_method_parameters): Return a
23615 `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
23616 called directly from the interncall.
23618 2003-10-17 Zoltan Varga <vargaz@freemail.hu>
23620 * reflection.c (load_public_key): Move loading of the public key
23623 * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
23625 * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
23628 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
23629 culture, hash_alg and public_key. Fixes #49555.
23631 2003-10-17 Martin Baulig <martin@ximian.com>
23633 * class.h (MonoGenericInst): Moved this declaration here and added
23634 `MonoMethod *generic_method'.
23637 (ves_icall_MethodInfo_GetGenericArguments): New interncall.
23638 (ves_icall_MethodInfo_BindGenericParameters): New interncall.
23640 * metadata.c (mono_metadata_type_equal): Two types of
23641 MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
23642 index; ie. don't compare the address of the `MonoGenericParam'
23644 (mono_metadata_load_generic_params): Removed the `MonoMethod
23647 * metadata.h (MonoGenericInst): Moved declaration to class.h.
23648 (MonoMethodHeader): Added `MonoGenericInst *geninst'.
23650 * reflection.c (method_encode_signature): Encode the number of
23651 generic parameters.
23652 (encode_generic_method_sig): New static function.
23653 (method_encode_methodspec): New static function; creates an entry
23654 in the MethodSpec table for a generic method.
23655 (mono_image_get_methodspec_token): New static function.
23656 (mono_image_create_token): Call mono_image_get_methodspec_token()
23657 for generic methods.
23658 (mono_reflection_bind_generic_method_parameters): New public
23659 function. Instantiates a generic method.
23661 2003-10-16 Martin Baulig <martin@ximian.com>
23663 * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
23664 *gen_params' here from MonoMethodHeader.
23666 * metadata.c (mono_metadata_parse_method_signature): If we have
23667 generic parameters, initialize `method->gen_params' and then set
23668 the correct `type->data.generic_param' in all the parameters.
23670 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
23672 * threads.c (mono_threads_get_default_stacksize): New function to
23673 return the default stacksize.
23675 * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
23676 termination of the finalizer thread, since the previous method had
23677 race conditions. Fixes #49628.
23679 * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
23680 as for the other managed threads.
23682 2003-10-16 Martin Baulig <martin@ximian.com>
23684 * class.c (inflate_generic_signature): Copy `generic_param_count'
23687 * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
23690 * metadata.c (mono_metadata_parse_method_signature): Actually set
23691 the `method->generic_param_count' here.
23692 (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
23694 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
23696 * object.h: Add a new field to TypedRef to simplify the implementation
23697 of the REFANY opcodes in the JIT.
23699 * icall.c: Make use of the new field.
23701 * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
23704 2003-10-15 Martin Baulig <martin@ximian.com>
23706 * class.c (mono_class_from_gen_param): Renamed to
23707 mono_class_from_generic_parameter() and moved most of the
23708 functionality from mono_reflection_define_generic_parameter()
23709 here; ie. we create a "real" class here.
23710 (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
23711 MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
23712 previously been called.
23714 * class.h (MonoGenericParam): Moved the declaration of this struct
23715 here from metadata.h and added `MonoMethod *method'.
23717 * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
23720 * loader.c (mono_get_method_from_token): If we have any generic
23721 parameters, call mono_metadata_load_generic_params() to read them
23722 from the MONO_TABLE_GENERICPAR.
23724 * metadata.c (mono_metadata_load_generic_params): Added
23725 `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
23727 * metadata.h (MonoMethodSignature): Replaced
23728 `MonoGenericInst *geninst' with `guint16 generic_param_count'.
23729 (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
23731 * reflection.c (mono_reflection_define_generic_parameter): Moved
23732 most of the functionality into the new
23733 mono_class_from_generic_parameter(); set the `method' field if
23734 we're a method parameter.
23736 2003-10-13 Bernie Solomon <bernard@ugsolutions.com>
23738 * marshal.c (emit_struct_conv): if native size is 0
23741 2003-10-14 Martin Baulig <martin@ximian.com>
23743 * icall.c: The generics API has changed in the spec since it was
23744 added to System.Type; these modifications make it match the spec
23746 (ves_icall_Type_GetGenericParameters): Renamed to
23747 `ves_icall_Type_GetGenericArguments'.
23748 (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
23749 (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
23750 `ves_icall_MonoType_get_HasGenericArguments'.
23751 (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
23752 `ves_icall_MonoType_get_IsGenericParameter'.
23753 (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
23754 this is no interncall anymore.
23755 (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
23756 `ves_icall_TypeBuilder_get_IsGenericParameter'.
23758 2003-10-14 Martin Baulig <martin@ximian.com>
23760 * reflection.c (mono_reflection_bind_generic_parameters): Also
23761 inflate generic methods if we're reading the class from IL.
23763 2003-10-13 Martin Baulig <martin@ximian.com>
23765 * reflection.c (mono_reflection_define_generic_parameter): This
23766 method isn't called directly from the icall anymore; take a
23767 `MonoReflectionAssemblyBuilder *' so we can use this for type and
23768 method generic parameters.
23769 (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
23770 (method_builder_encode_signature): Encode generic parameters.
23771 (mono_image_get_method_info): Write generic params to the
23772 MONO_TABLE_GENERICPARAM table.
23774 * reflection.h (MonoReflectionMethodBuilder): Added
23775 `MonoArray *generic_params'.
23777 * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
23779 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
23780 wrapper for mono_reflection_define_generic_parameter().
23781 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
23783 2003-10-13 Zoltan Varga <vargaz@freemail.hu>
23785 * marshal.h: Add missing function to fix build.
23787 * marshal.c (mono_marshal_get_native_wrapper): Add support for
23788 the SetLastError pinvoke attribute.
23790 * marshal.c (mono_marshal_set_last_error): New helper function called
23791 by the generated code.
23793 * marshal.c (mono_mb_emit_branch): New helper function.
23795 * marshal.c (mono_mb_emit_exception): Added exception name parameter.
23797 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
23798 classes as parameters and return values of delegates. Fixes #29256.
23800 2003-10-12 Bernie Solomon <bernard@ugsolutions.com>
23802 * locales.c: use gint32 in non HAVE_ICU case
23804 2003-10-11 Martin Baulig <martin@ximian.com>
23806 * mono-debug.c (mono_debug_add_method): Added a workaround for
23809 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
23811 * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
23812 delegates passed to native code must use the STDCALL calling
23813 convention. Fixes #35987.
23815 2003-10-10 Martin Baulig <martin@ximian.com>
23817 * class.c (inflate_generic_type): If we're inflating for a generic
23818 type instance (and not for a generic method), return
23819 MONO_TYPE_MVAR unchanged.
23821 2003-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23823 * string-icalls.c: Join ignores null strings in the source array.
23824 * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
23825 * threads.c: GetAvailableTheads is slightly more accurate.
23827 2003-10-09 Bernie Solomon <bernard@ugsolutions.com>
23829 * threads.h threads.c : add mono_threads_set_default_stacksize
23830 and pass default to CreateThread calls.
23832 2003-10-09 Dick Porter <dick@ximian.com>
23836 * locales.c: Internal calls for constructing CultureInfo and
23837 related objects from libicu (if its available.)
23839 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
23841 * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
23843 2003-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23845 * threadpool.c: added an argument to async_invoke_thread that is the
23846 item to process, pass the MonoAsyncResult to the thread start function
23847 when creating a new thread. This way we don't need to acquire any lock
23848 when we're creating a new thread. Readded a semaphore for faster
23849 response times (instead of that Sleep i added).
23851 2003-10-08 Bernie Solomon <bernard@ugsolutions.com>
23853 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
23854 get daylight change dates better on Windows, fix handling
23855 of platforms without tm_gmtoff.
23857 2003-10-06 Martin Baulig <martin@ximian.com>
23859 * class.c (inflate_generic_method): Renamed to
23860 mono_class_inflate_generic_method() and made public.
23861 (mono_class_init): Don't inflate the generic methods here.
23862 (mono_class_from_generic): Added `gboolean inflate_methods'
23863 argument. Inflate the methods here.
23865 * loader.c (mono_method_get_param_names): Ignore instances of
23866 generic types for the moment.
23868 * reflection.c (fixup_method): Added support for inflated methods.
23869 (mono_image_create_token): Use mono_image_get_methodref_token()
23870 for inflated methods.
23871 (mono_custom_attrs_from_param): Ignore instances of generic types
23873 (mono_reflection_bind_generic_parameters): New public function.
23874 Moved all the functionality from
23875 ves_icall_Type_BindGenericParameters() here and added support for
23877 (mono_reflection_define_generic_parameter): Initialize
23878 `klass->methods' here.
23880 * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
23881 functionality into mono_reflection_define_generic_parameter().
23882 (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
23883 TypeBuilder, return that TypeBuilder.
23885 2003-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23887 * appdomain.c: removed mono_delegate_semaphore.
23890 (mono_thread_pool_add): moved hash table creation inside and the thread
23891 creation outside of the critical region.
23892 (mono_thread_pool_finish): removed obsolete code.
23893 (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
23894 continue or exit the thread depending on the queue.
23896 2003-10-07 Bernie Solomon <bernard@ugsolutions.com>
23898 * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
23899 marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
23900 handle more bool marshalling options
23902 2003-10-07 Zoltan Varga <vargaz@freemail.hu>
23904 * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
23905 arrays of structs. Also add a more descriptive error message when
23906 a structure member is marshalled as LPArray.
23908 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
23910 * marshal.c (mono_marshal_get_native_wrapper): Add support for
23911 marshalling arrays of complex types. Fixes #29098. Also remove an
23912 usused and incomplete function.
23914 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
23916 * gc.c: report heap_size - free_bytes as total memory allocated
23919 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
23921 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally
23922 fix timezone handling problems on Windows.
23924 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
23925 asserts when the year is outside the range handled by ms the functions.
23927 * class.c (setup_interface_offsets): If the class is an interface,
23928 fill out its interface_offsets slot.
23930 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23932 * threadpool.c: mark threadpool threads as background.
23934 2003-10-03 Bernie Solomon <bernard@ugsolutions.com>
23936 * decimal.c - define DECINLINE to nothing if not using GCC
23938 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
23940 * assembly.c: More refcount fixes.
23942 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23944 * string-icalls.c: if we're not trimming, return the same string.
23945 When not splitting, don't create a new string.
23947 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23950 (mono_image_open): increment the ref_count inside the critical section.
23952 2003-10-02 Zoltan Varga <vargaz@freemail.hu>
23954 * image.c (mono_image_open): Fix reference counting bug.
23956 2003-09-30 Bernie Solomon <bernard@ugsolutions.com>
23958 * marshal.c (mono_marshal_type_size) struct alignment changed for
23959 64bit machines. (emit_ptr_to_str_conv) Fix bool conversions for
23960 64bits. Avoid leak in mono_marshal_get_native_wrapper when
23961 mono_lookup_pinvoke_call throws.
23963 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
23965 * reflection.c (mono_reflection_parse_type): Fix #49114.
23967 * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
23968 temporary workaround for cygwin header problem.
23970 * object.c (mono_object_isinst): Synchronize this with the code
23971 generated by the JIT for casts.
23973 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
23975 * reflection.c (encode_type): Fix #38332.
23977 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
23979 * marshal.c (mono_marshal_method_from_wrapper): New function to return
23980 the original method from the wrapper method.
23982 2003-09-25 Martin Baulig <martin@ximian.com>
23984 * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
23985 interncall since it was identical to `Type.GetGenericTypeDefinition()'.
23986 (ves_icall_Type_get_IsGenericInstance): New interncall.
23988 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
23990 * object.c: fix cast warning in big endian code.
23992 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
23994 * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
23996 2003-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23998 * assembly.c: don't call check_env from mono_assembly_load. It's
23999 already done once in mono_assemblies_init and may cause headaches when
24000 multiple threads are loading assemblies.
24002 2003-09-19 Martin Baulig <martin@ximian.com>
24004 * reflection.c (mono_reflection_define_generic_parameter): Don't
24005 allocate `klass->methods', set `klass->flags' to
24006 TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
24008 2003-09-18 Martin Baulig <martin@ximian.com>
24010 * class.c (mono_class_init): Don't create `class->methods' if it's
24011 already initialized.
24013 * metadata.c (mono_metadata_load_generic_params): Make this
24016 * reflection.c (mono_reflection_define_generic_parameter): Set
24017 parent class and interfaces from the constraints.
24019 * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
24020 to keep this struct in sync with the declaration in TypeBuilder.cs.
24022 2003-09-17 Martin Baulig <martin@ximian.com>
24024 * metadata.h (MonoType): Replaced the data's `int type_param'
24025 field with `MonoGenericParam *generic_param'.
24026 (MonoGenericParam): Added `MonoClass *klass'.
24028 * class.c (mono_class_from_gen_param): Removed the
24029 `MonoImage *image' and `int type_num' arguments.
24031 * metadata.c (mono_metadata_parse_generic_param): New static
24032 method; creates a MonoGenericParam which just contains the index.
24033 (do_mono_metadata_parse_type): Call
24034 mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
24037 * reflection.c (mono_image_typedef_or_ref): Generic type
24038 parameters may be in the same assembly, but never use a typedef
24040 (mono_reflection_define_generic_parameter): We're now creating a
24041 "real" class for the type parameter; it's now safe to call
24042 mono_class_from_mono_type() on the class'es type, it'll do the
24045 2003-09-16 Martin Baulig <martin@ximian.com>
24047 * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
24048 `symfile->range_entry_size' and `symfile->class_entry_size' here;
24049 the `symfile' data structure must be fully initialized before it
24050 gets added to the table.
24052 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
24054 * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
24056 * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
24057 class init trampolines.
24059 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
24061 * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
24062 to the built-in profiler to turn off time and allocation profiling
24065 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
24067 * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
24070 * debug-helpers.c (mono_method_full_name): Print the wrapper type
24071 in human readable form.
24073 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
24075 * reflection.c icall.c: Fixed warnings.
24077 * image.c (load_class_names): Use a temporary hash table to hold the
24078 namespaces in order to avoid doing many string comparisons.
24080 * image.h: Fix typo.
24082 * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
24083 Pass NULL instead of g_direct_equal to the GHashTable constructor
24084 since the NULL case is short-circuited inside g_hash_table_lookup,
24085 leading to better performance.
24087 * metadata.c (mono_metadata_custom_attrs_from_index): New function to
24088 obtain the first custom attribute for a given index. Depends on the
24089 CustomAttribute table being sorted by the parent field.
24091 * reflection.c (mono_custom_attrs_from_index): Use the new function
24092 for better performance.
24094 2003-09-07 Martin Baulig <martin@ximian.com>
24096 * class.c (mono_class_init): If we're a generic instance, inflate
24097 all our methods instead of loading them from the image.
24098 (mono_class_from_generic): Set `class->methods = gklass->methods'.
24100 2003-09-07 Martin Baulig <martin@ximian.com>
24102 * mono-debug-debugger.c: Added support for constructors.
24104 2003-09-06 Martin Baulig <martin@ximian.com>
24106 * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
24109 * reflection.c (mono_reflection_setup_generic_class): Call
24110 ensure_runtime_vtable() to create the vtable.
24112 2003-09-05 Martin Baulig <martin@ximian.com>
24114 * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
24117 2003-09-04 Martin Baulig <martin@ximian.com>
24119 * reflection.c (mono_reflection_define_generic_parameter): Generic
24120 parameters start with zero.
24122 2003-09-04 Martin Baulig <martin@ximian.com>
24124 * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
24126 * reflection.h (MonoReflectionGenericParam): New typedef.
24127 (MonoReflectionTypeBuilder): Added `generic_params' fields to get
24128 the generic parameters from the managed TypeBuilder.
24130 * reflection.c (mono_reflection_define_generic_parameter): New function.
24131 (mono_reflection_create_runtime_class): Encode generic parameters.
24132 (mono_reflection_setup_generic_class): New function; this is
24133 called after adding adding all generic params to the TypeBuilder.
24134 (encode_type): Added MONO_TYPE_VAR.
24136 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
24138 * class.h class.c (mono_class_needs_cctor_run): Moved this method
24141 * assembly.h assembly.c: Moved the AOT loading code into an assembly
24144 2003-09-03 Zoltan Varga <vargaz@freemail.hu>
24146 * reflection.h reflection.c class.h class.c: Delete duplicate
24147 definition of mono_type_get_name () from reflection.c and export the
24150 * class.c: Class loading fixes from Bernie Solomon
24151 (bernard@ugsolutions.com).
24153 * reflection.c: Endianness fixes from Bernie Solomon
24154 (bernard@ugsolutions.com).
24156 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
24158 * assembly.h assembly.c: Define a file format version for AOT
24161 * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
24163 * appdomain.h (MonoJitInfo): New field to determine whenever the
24164 code is domain neutral.
24166 2003-08-31 Miguel de Icaza <miguel@ximian.com>
24168 * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
24170 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
24172 * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir):
24173 (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
24174 Avoid caching the result since strings must be domain specific. Fixes
24177 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
24179 * marshal.c (mono_marshal_init): Make this callable multiple times
24180 since it is hard to find a correct place to call it.
24182 * object.c (mono_runtime_class_init): Execute static constructors in
24183 the correct appdomain.
24185 * image.c (build_guid_table): Handle the case when multiple images have
24188 2003-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24190 * icall.c: added a couple of icalls for System.Web.
24192 2003-08-28 Martin Baulig <martin@ximian.com>
24194 * icall.c (ves_icall_Type_BindGenericParameters): Use
24195 `klass->generic_inst' instead of `&klass->byval_arg' in the
24196 mono_type_get_object() call. The returned type must be
24197 MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
24199 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
24203 * object.c (mono_class_proxy_vtable): Make it thread safe.
24205 * pedump.c: Fix warning.
24207 * object.c appdomain.h: Get rid of metadata_section.
24208 It is no longer needed and it was causing deadlocks with domain->lock.
24210 * appdomain.c (add_assemblies_to_domain): Make it thread safe.
24212 2003-08-26 Martin Baulig <martin@ximian.com>
24214 * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
24216 2003-08-26 Martin Baulig <martin@ximian.com>
24218 * pedump.c (main): Call mono_metadata_init(),
24219 mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
24220 and mono_loader_init().
24222 2003-08-26 Zoltan Varga <vargaz@freemail.hu>
24224 * loader.h: Add missing include to fix build.
24226 * image.h: mono_image_load_references is no more.
24228 * assembly.c: Reworked assembly loading to make it really thread safe.
24229 After these changes, the assembly returned by mono_assembly_open is
24230 fully initialized, i.e. all its references assemblies are loaded.
24232 * assembly.c (mono_image_load_references): Renamed to
24233 mono_assembly_load_references, and made private, since clients no
24234 longer need to call it.
24236 * class.c: Removed calls to mono_assembly_load_references, since it was
24237 a source of deadlocks.
24239 * loader.h loader.c class.h class.c: Protect data structures using a
24240 new lock, the loader lock.
24242 * class.c (mono_class_setup_vtable): Create temporary hash tables and
24243 GPtrArrays only when needed.
24245 * class.c (mono_class_layout_fields): Ignore the dummy field inserted
24246 into empty structures by mcs. Fixes pinvoke7.cs.
24248 * domain.c (mono_init): Call a new initialization function.
24250 * appdomain.c (mono_runtime_init): Call the new initializer function
24251 of the marshal module.
24253 * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
24254 inserted into empty structures by mcs. Fixes pinvoke7.cs.
24256 * marshal.h marshal.c: Added locks around the wrapper caches to make
24257 this module thread safe.
24259 * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
24260 this argument. Fixes pinvoke1.exe.
24262 2003-08-25 Lluis Sanchez <lluis@ximian.com>
24264 * object.h: Added call_type field to MonoMethodMessage and the corresponding
24265 enumeration of values. Removed fields to store remote call output values in
24266 MonoAsyncResult. Not needed any more.
24267 * object.c: Initialize call_type and async_result fields in mono_message_init.
24268 * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
24269 dispatching the message.
24270 mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
24271 async call to finish. To do it use a message with EndInvoke call type.
24273 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
24275 * loader.h loader.c (mono_method_hash_marhal_info): New function which
24276 determines whenever a method has marshalling info.
24278 2003-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24280 * assembly.c: fix the build on windows.
24282 2003-08-22 Lluis Sanchez <lluis@ximian.com>
24284 * object.cs: Fixed bug #47785.
24286 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
24288 * string-icalls.c (StringReplace): If their are no occurances of
24289 the old string found return a reference to the supplied
24290 string. This saves some memory and matches MS behavoir.
24292 2003-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24294 * socket-io.c: fixed compilation for systems that define AF_INET6
24295 and don't define SOL_IP/SOL_IPV6.
24297 2003-08-21 Zoltan Varga <vargaz@freemail.hu>
24299 * object.c (mono_object_isinst): Fix casts to TransparentProxy in
24300 the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
24302 * rawbuffer.c rawbuffer.h: Make this module thread safe.
24304 * domain.c: Make this module thread safe.
24306 * domain.c (mono_init): Call new initialization function.
24308 * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
24309 reference types too. Fixes #38812.
24311 * image.c (mono_image_init): Fixed warnings.
24313 * class.c (mono_class_from_typeref): Handle assembly load failure
24316 * appdomain.c (add_assemblies_to_domain): Handle the case when
24317 the references of an assembly are not yet loaded.
24319 * metadata.c image.c assembly.c: Moved initialization of global
24320 variables to a separate function called at startup since lazy
24321 initialization of these variables is not thread safe.
24323 * image.c assembly.c: Made this module thread safe by adding locks in
24324 the appropriate places.
24326 * domain.c (mono_init): Call the new initialization functions of the
24329 2003-08-20 Lluis Sanchez Gual <lluis@ximian.com>
24331 * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
24332 make a direct call. It is proxy's work to make the call asynchronous.
24333 mono_delegate_end_invoke(): If the targe is a proxy, just collect
24335 * object.cs: mono_method_call_message_new(): read AsyncResult and
24336 state object from parameters list, if this info is requested.
24337 * object.h: Added fields to store remote call output values in
24338 MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
24340 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
24342 * object.h: add needed fields to MonoThread.
24343 * threads.c, threads.h: allow registering a function to cleanup data
24344 allocated per thread by the JIT.
24346 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24348 * loader.h: portability fix by Bernie Solomon
24349 * <bernard@ugsolutions.com>.
24351 2003-08-16 Zoltan Varga <vargaz@freemail.hu>
24353 * reflection.h reflection.c (mono_param_get_objects): Changed this to
24354 return a MonoArray. This simplifies the code and also ensures that
24355 the cache allways contains an object reference as a value.
24357 * icall.c (ves_icall_get_parameter_info): Simplified using the new
24360 2003-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24362 * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
24363 fixes a problem with byte ordering when getting the address family for
24366 2003-08-15 Zoltan Varga <vargaz@freemail.hu>
24368 * .cvsignore: Added monosn.
24370 * reflection.h reflection.c loader.c: Added support for parameter
24371 marshalling to dynamically created types. Fixes #47295.
24373 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
24375 * rand.c: remove useless warnings.
24377 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24379 * class.c: implemented ldtoken for methods and fieldrefs.
24381 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24383 * threadpool.c: when mono_async_invoke was called, no one took care of
24384 monitoring the queue. So if the method invoked took some time and we
24385 got new async invoke requests after 500 ms (the thread created waited
24386 that long in WaitForSingleObject), the new async invoke was not called
24387 until the previous one finished.
24389 This is fixed now. Thanks to Totte for helping with it.
24391 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24393 * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
24395 2003-08-11 Martin Baulig <martin@ximian.com>
24397 * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
24399 2003-08-06 Martin Baulig <martin@ximian.com>
24401 * mono-debug-debugger.c: Added support for static fields,
24402 properties and methods.
24404 2003-08-06 Martin Baulig <martin@ximian.com>
24406 * mono-debug-debugger.c: Don't store the MonoString's vtable to
24407 make this work for applications with multiple application domains.
24409 2003-08-04 Martin Baulig <martin@ximian.com>
24411 * mono-debug-debugger.c: Completely reworked the type support; the
24412 most important thing is that we're now just using one single
24413 `MonoType' instance per type.
24415 Sat Aug 2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
24417 * mono-endian.h, mono-endian.c, icall.c: Added icall
24418 ves_icall_System_Double_AssertEndianity to assert double word endianity
24419 on ARM (FPA). The icall uses a macro defined in mono-endian.h.
24421 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
24423 * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
24424 support, icalls and fixes.
24426 2003-07-31 Miguel de Icaza <miguel@ximian.com>
24428 * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
24429 classes that are a punctuation character in .NET is not the same a
24432 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
24434 * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
24436 2003-07-29 Miguel de Icaza <miguel@ximian.com>
24438 * icall.c: Add new MemCopy internalcall.
24439 (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
24440 Simplified code; It is not necessary to handle all the cases here,
24441 as the C# code takes care of it. Only handle the case of the name
24442 resource embedded into the assembly.
24444 Changed signature to return the data pointer and the size of the
24447 2003-07-26 Miguel de Icaza <miguel@ximian.com>
24449 * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
24450 encoded. (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
24452 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
24454 * socket-io.c: ignore EINTR error in select.
24456 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
24458 * class.h, class.c: removed unused subclasses field in MonoClass.
24460 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
24462 * icall.c: improve fix of get_base_definition(). If the parent class
24463 doesn't have the mehod, look at the parent of the parent.
24464 * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
24465 to check if a parameter is an in or out parameter
24466 (PARAM_ATTRIBUTE_IN is not set by default).
24467 mono_method_return_message_restore(): Use mono_class_value_size to
24468 get the size of a value type. mono_type_stack_size (parameterType)
24469 does not return the correct value if parameterType is byRef.
24470 mono_load_remote_field(), mono_load_remote_field_new(),
24471 mono_store_remote_field(), mono_store_remote_field_new():
24472 raise exception if the remote call returns an exception.
24474 2003-07-28 Martin Baulig <martin@ximian.com>
24476 * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
24477 method. This is a wrapper around mono_runtime_invoke() which
24478 boxes the instance object if neccessary.
24480 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
24482 * class.c, class.h, image.c, image.h, loader.c, metadata.c,
24483 metadata.h, row-indexes.h, verify.c: first cut of generics support.
24485 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24487 * icall.c: disable mcs bug workaround.
24489 2003-07-21 Miguel de Icaza <miguel@ximian.com>
24491 * object.c (mono_runtime_class_init): Take the metadata_section
24492 mutex before obtaining the domain mutex.
24494 * appdomain.h: Added definition of metadata_section mutex here.
24496 * object.c: define metadata_mutex here.
24498 2003-07-24 Ravi Pratap <ravi@ximian.com>
24500 * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
24503 2003-07-24 Lluis Sanchez Gual <lluis@ximian.com>
24505 * reflection.c: Fix bug #46669
24507 2003-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24512 * object.h: fill in the type name for TypeLoadException.
24514 2003-07-23 Ravi Pratap <ravi@ximian.com>
24516 * class.c: Fixes from Paolo in response to bug #45415 (Subclass
24517 relationship between TypeBuilders while compiling corlib) and bug
24518 45993 (Array types returned from the runtime while compiling
24519 corlib were from the loaded corlib).
24521 2003-07-22 Martin Baulig <martin@ximian.com>
24523 * mono-debug-debugger.c: Reworked the type support a bit more;
24524 distinguish between types and classes.
24526 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
24528 * icall.c: add IsArrayImpl icall.
24530 2003-07-22 Zoltan Varga <vargaz@freemail.hu>
24532 * class.c (mono_class_layout_fields): Fix gc aware auto layout by
24533 initializing real_size only once. Also fix bug #46602.
24535 2003-07-21 Jerome Laban <jlaban@wanadoo.fr>
24537 * object.c: Renamed mono_metadata_section to metadata_section.
24539 2003-07-21 Lluis Sanchez Gual <lluis@ximian.com>
24541 * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
24542 empty array if the type is an array. Fixed.
24543 ves_icall_MonoMethod_get_base_definition: if the base method
24544 is abstract, get the MethodInfo from the list of methods of
24546 * reflection.c: ParameterInfo.PositionImpl should be zero-based
24547 and it was 1-based. Fixed in mono_param_get_objects.
24549 2003-07-20 Martin Baulig <martin@ximian.com>
24551 * mono-debug.h: Set version number to 31.
24552 (mono_debug_init): Added `MonoDomain *' argument.
24554 * mono-debug-debugger.c: Reworked the type support; explicitly
24555 tell the debugger about builtin types; pass the `klass' address to
24558 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
24560 * image.c: Allow new metadata tables to be loaded without a
24561 warning. Also update the warning message to give the new constant value.
24563 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
24565 * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
24566 metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c:
24567 array type representation changes.
24569 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
24571 * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
24572 on Environment.Exit () call.
24574 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
24576 * icall.c, reflection.h, reflection.c, verify.c: cleanups,
24577 requires a matching corlib.
24579 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
24581 * Changelog: My editor decided to add a CR to each line. Sorry about that.
24582 Committed again without the CRs.
24584 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
24586 * socket-io.c: Get system_assembly using mono_image_loaded(), instead
24587 getting it from the "this" socket instance. Did not work
24588 if the socket is a subclass of Socket.
24589 Also fixed bug #35371.
24591 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
24593 * metadata.c: fixed size for TypedByRef.
24594 * loader.c: when searching for a method, consider the vararg amrker.
24595 * unicode.c, decimal.c: constify some arrays.
24597 2003-07-15 Dick Porter <dick@ximian.com>
24599 * socket-io.c: Fixed compilation for gcc < 3.2.
24601 Fixed compilation for machines that don't have AF_INET6 (thanks to
24602 Bernie Solomon <bernard@ugsolutions.com> for that part.)
24604 Fixed compile warnings.
24606 Fixed formatting and line endings.
24608 2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
24611 * socket-io.c: Added IPv6 support.
24613 2003-07-13 Zoltan Varga <vargaz@freemail.hu>
24615 * class.c (mono_class_is_assignable_from): New function to implement
24616 the is_assignable_from logic. Used by mono_object_isinst,
24617 Type::IsAssignableFrom () and the interpreter.
24619 * class.c (mono_class_is_subclass_of): Make all classes a subclass of
24620 Object, even interfaces.
24622 * object.c (mono_object_isinst): Implement in terms of
24623 is_assignable_from.
24625 * icall.c (ves_icall_type_is_assignable_from): New icall.
24627 2003-07-11 Zoltan Varga <vargaz@freemail.hu>
24629 * domain.c (foreach_domain): fix compiler warning.
24631 2003-07-11 Dietmar Maurer <dietmar@ximian.com>
24633 * image.c (load_metadata_ptrs): use g_strndup because strndup is
24634 not available on all plattforms
24636 2003-07-10 Zoltan Varga <vargaz@freemail.hu>
24638 * image.h image.c: Store the metadata version string in MonoImage.
24639 * icall.c: New icall to retrieve the image version.
24640 * reflection.c (create_dynamic_image): Fill in the image version field
24641 * reflection.c (build_compressed_metadata): Use the image version
24642 from the image structure.
24644 2003-07-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24646 * appdomain.c: modified comment.
24647 * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
24648 That will be its last iteration when mono_gc_cleanup is called from
24649 mono_runtime_cleanup and before the domain is unloaded.
24653 2003-07-04 Dietmar Maurer <dietmar@ximian.com>
24655 * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
24658 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24660 * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
24661 rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
24662 Bernie Solomon <bernard@ugsolutions.com>.
24664 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24666 * object.c, object.h: provide mono_object_new_fast() for faster
24667 allocation in some special cases.
24669 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
24671 * object.h, reflection.h, verify.c: fixes for some 64bit issues,
24672 mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
24674 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
24676 * threadpool.c: fix leaks.
24678 2003-07-01 Dick Porter <dick@ximian.com>
24680 * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
24681 using MonoGHashTables. Fixes threadpool bug posted to list.
24683 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
24685 * image.h, image.c: added support to load an assembly from a byte array.
24686 * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added
24687 assembly bundle support.
24689 2003-06-27 Dietmar Maurer <dietmar@ximian.com>
24691 * threadpool.c (mono_thread_pool_add): keep a reference to the
24692 AsyncResult to prevent GC
24694 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
24696 * class.c: leak fix.
24698 2003-06-25 Dick Porter <dick@ximian.com>
24700 * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
24701 for the async object, the WaitHandle object will close the handle.
24704 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24706 * class.c: in mono_array_class_get (), lookup from the hash with the
24707 same type we insert: this works around a bug in
24708 mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
24709 lluis. The real fix will have to wait for after the release.
24711 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
24713 * icall.c: fix memory leak when getting type members.
24715 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
24717 * reflection.c: added more pubtoken special cases.
24719 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
24721 * class.c: handle field offset correctly when class size
24722 is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
24724 2003-06-20 Martin Baulig <martin@ximian.com>
24726 * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
24729 2003-06-20 Martin Baulig <martin@ximian.com>
24731 * image.h, mono-debug-debugger.h: Fixed compiler warnings.
24733 2003-06-20 Martin Baulig <martin@ximian.com>
24735 * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed. We
24736 just distinguish between variables in registers and variables at
24737 an offset relative to a register.
24739 2003-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24741 * icall.c: #ifdef out latest changes until mcs is fixed.
24743 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
24745 * icall.c: return members in metadata order.
24747 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
24749 * icall.c: avoid infinite loop in GetTimeZoneData.
24751 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
24753 * icall.c: added Marshal.Prelink/All icalls.
24755 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
24757 * object.c, object.h: fix warnings and do some overflow checking
24758 when creating arrays.
24760 2003-06-17 Dick Porter <dick@ximian.com>
24763 * file-io.c: File attributes need to be tweaked slightly when
24764 passed from the managed to the w32 world.
24766 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
24767 * profiler.h profiler-private.h profiler.c: Rework last patch
24768 based on suggestion by Paolo.
24770 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
24772 * profiler.h profiler-private.h profiler.c: Added infrastructure for
24773 instruction level coverage data collection.
24774 * profiler.h profiler.c (: Added new callback function which can be
24775 used by the profiler to limit which functions should have coverage
24777 * profiler.c (mono_profiler_load): Call g_module_build_path to
24778 generate the file name of the profiler library.
24780 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
24782 * profiler.c, profiler.h, profiler-private.h: added basic block
24783 coverage profiling API.
24785 2003-06-15 Zoltan Varga <vargaz@freemail.hu>
24787 * reflection.c (mono_reflection_create_runtime_class): Add support
24788 for events in dynamically generated code.
24790 * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
24793 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
24795 * icall.c: when getting timezone info, return reasonable values if we
24796 can't get the actual data.
24798 2003-06-14 Dick Porter <dick@ximian.com>
24800 * threads.c (start_wrapper): Remove the reference to the thread
24801 object in the TLS data, so the thread object can be finalized.
24802 This won't be reached if the thread threw an uncaught exception,
24803 so those thread handles will stay referenced :-( (This is due to
24804 missing support for scanning thread-specific data in the Boehm GC
24805 - the io-layer keeps a GC-visible hash of pointers to TLS data.)
24807 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
24809 * reflection.c: ensure streams and tables are first allocated with
24810 ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
24812 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
24814 * icall.c: fixed GetElementType for byrefs (bug# 44792).
24816 2003-06-13 Zoltan Varga <vargaz@freemail.hu>
24818 * reflection.c (mono_reflection_create_runtime_class): Add support for
24819 properties to dynamically created classes.
24820 * reflection.c: Fix a few places where non-MonoObjects were inserted
24821 into the tokens hashtable.
24823 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24825 * object.c: some support to handle out of memory exceptions.
24827 2003-06-12 Dietmar Maurer <dietmar@ximian.com>
24829 * marshal.c (mono_marshal_get_native_wrapper): support reference
24832 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
24834 * object.h, object.c: more portability stuff from Bernie Solomon.
24835 Unexport mono_object_allocate(). Added mono_object_unbox ().
24836 Set exitcode when an unhandled exception is thrown.
24838 2003-06-11 Dietmar Maurer <dietmar@ximian.com>
24840 * marshal.c (mono_marshal_get_native_wrapper): use custom
24841 marshaler for return types.
24843 2003-06-10 Dick Porter <dick@ximian.com>
24845 * socket-io.c: Don't assume that one of struct ip_mreqn or struct
24846 ip_mreq is available
24848 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
24850 * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
24851 mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
24852 by Bernie Solomon <bernard@ugsolutions.com>.
24854 2003-06-10 Zoltan Varga <vargaz@freemail.hu>
24856 * gc.c (mono_gc_init): Avoid error message on shutdown when
24857 GC_DONT_GC=1 is used.
24859 * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal):
24860 New icall to return the GUID of a module.
24862 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
24864 * class.c: ensure instance size always includes the parent's size
24865 even whem class size is set explicitly (fixes bug#44294).
24867 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
24869 * profiler.h, profiler.c: made the simple profiler thread-safe,
24870 get more accurate timing info. Allow the loading of an
24871 externally-developed profiler module.
24873 2003-06-05 Dietmar Maurer <dietmar@ximian.com>
24875 * marshal.c (mono_marshal_get_native_wrapper): improved
24876 class/byref arguments.
24877 (mono_marshal_get_native_wrapper): better string marshaling support.
24879 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
24881 * class.c: ensure .pack and .size are handled correctly and
24882 simplified layout of static fields.
24884 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
24887 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
24889 * loader.c (mono_lookup_pinvoke_call): look for modules in the
24890 current directory (fix bug 44008)
24892 2003-06-03 Dietmar Maurer <dietmar@ximian.com>
24894 * marshal.c (mono_marshal_get_native_wrapper): started support for
24896 (mono_delegate_to_ftnptr): consider marshalling specifications
24898 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
24900 * reflection.c, reflection.h: emit custom marshal info.
24902 2003-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24904 * object.c: free the GError.
24905 * icall.c: added CloseEvent_internal.
24907 (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
24910 2003-06-01 Zoltan Varga <vargaz@freemail.hu>
24912 * loader.c (mono_method_get_signature): Add support for dynamic
24915 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
24917 * reflection.c: fixed bug #43905.
24919 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
24921 * class.c, domain.c, icall.c, metadata.h, object.h: support for
24922 handling TypedReference and ArgIterator.
24923 * loader.c, loader.h: added function to get signature at call site.
24925 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
24927 * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more
24928 data readonly. Buglets and warning fixes. Some MethodSpec support.
24930 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
24932 * class.h, class.c, object.c: remove relative numbering support.
24934 2003-05-26 Miguel de Icaza <miguel@ximian.com>
24936 * marshal.c (mono_marshal_get_native_wrapper): For now, do not
24937 free the string, until we get a chance to fix Gtk#
24939 2003-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24941 * marshal.c: revert last patch.
24943 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
24945 * icall.c: updates for new mono_class_vtable() not calling
24946 the type constructor anymore.
24948 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
24950 * object.h, object.c: separate vtable creation from type
24951 initialization. Make running the .cctor thread safe.
24953 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
24955 * marshal.c (mono_marshal_get_native_wrapper): free string return values.
24957 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
24959 * loader.c (mono_get_method): consider calling convention
24961 2003-05-21 Zoltan Varga <vargaz@freemail.hu>
24963 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
24964 to return the invisible global type for a module.
24966 * reflection.c (mono_image_build_metadata): Emit global fields too.
24968 2003-05-20 Peter Williams <peterw@ximian.com>
24970 * loader.c (mono_lookup_internal_call): Add a few newlines.
24972 2003-05-20 Zoltan Varga <vargaz@freemail.hu>
24974 * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
24977 * appdomain.c (set_domain_search_path): Recalculate search path when
24978 AppDomainSetup.PrivateBinPath changes.
24980 * object.c (mono_class_compute_gc_descriptor): It turns out some
24981 parts of the class libs (like System.Thread) holds pointers to
24982 GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
24983 to treat native int a pointer type here.
24985 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
24987 * appdomain.h, domain.c: add hashtable for jump target resolution.
24989 2003-05-19 Zoltan Varga <vargaz@freemail.hu>
24991 * reflection.h reflection.c icall.c: Added new icalls
24992 GetManifestResourceInfoInternal, GetModulesInternal and support
24995 2003-05-16 Dick Porter <dick@ximian.com>
24999 * file-io.c: Implement System.IO.MonoIO::GetTempPath
25001 2003-05-14 Lluis Sanchez Gual <lluis@ideary.com>
25003 * object.c: mono_store_remote_field: little fix to previous patch.
25005 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
25007 * class.c: add constructors to array classes.
25008 * icall.c: special case array construction for InternalInvoke (),
25010 2003-05-14 Zoltan Varga <vargaz@freemail.hu>
25012 * class.h class.c reflection.c object.c: Added support for field
25013 defaults in dynamically generated classes.
25015 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
25017 * reflection.c: properly encode charset for ddlimport.
25019 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
25021 * threads.c: allow compiling without GC.
25023 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
25025 * appdomain.h, object.c, object.h, threads.c, threads.h: added
25026 handling of thread static data.
25028 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
25030 * reflection.h, reflection.c: added mono_custom_attrs_free ().
25032 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
25034 * class.c (mono_array_class_get): always set the serializable flags
25035 (mono_array_class_get): always set the SEALED attribute for array types
25037 2003-05-12 Dietmar Maurer <dietmar@ximian.com>
25039 * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
25040 attributes (fix for bug 42021).
25042 2003-05-12 Dick Porter <dick@ximian.com>
25044 * gc.c: Don't run finalizers when the finalizer thread is
25045 finishing up, because the default domain has already been
25048 2003-05-11 Miguel de Icaza <miguel@ximian.com>
25050 * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
25051 value is null, we should throw an exception. This is slightly
25052 different than the other conventions used for the constructor.
25054 2003-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25056 * socket-io.c: fixed windows build.
25058 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25060 * socket-io.c: patch by Jerome Laban that fixes bug #42393.
25062 2003-05-10 Zoltan Varga <vargaz@freemail.hu>
25064 * object.c (mono_string_new_wrapper): Compatibility fix for MS
25067 2003-05-09 Zoltan Varga <vargaz@freemail.hu>
25069 * class.c (mono_class_layout_fields): Add experimental GC aware
25070 auto layout facility. Requires class library changes to work correctly.
25072 (mono_class_setup_vtable): Avoid overriding explicit interface
25073 method implementations. Fixes iface3.exe test.
25075 * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
25077 (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
25078 (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
25080 * metadata.h: Add new type classification macro which determines
25081 whenever the type holds an object reference.
25083 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
25085 * marshal.c (mono_marshal_get_native_wrapper): cleanups
25087 2003-05-07 Zoltan Varga <vargaz@freemail.hu>
25089 * gc.c (finalizer_thread): Work around a GC bug.
25091 2003-05-07 Dietmar Maurer <dietmar@ximian.com>
25093 * marshal.c (emit_struct_conv): allow unions
25095 * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
25097 2003-05-06 Dietmar Maurer <dietmar@ximian.com>
25099 * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
25101 2003-05-06 Martin Baulig <martin@ximian.com>
25103 * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
25105 2003-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25108 (Select_internal): allow NULLs, don't create arrays if not needed.
25109 Coupled with Socket.cs changes.
25112 (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
25113 register a finalizer for it that will close the semaphore handle. This
25114 fixes the leak and make Lupus' test run with > 4080 loops.
25116 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
25118 * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
25119 Jerome Laban (bug #42287)
25121 2003-05-02 Martin Baulig <martin@ximian.com>
25123 * debug-mono-symfile.h
25124 (MonoSymbolFile): Moved declaration into mono-debug.h.
25125 (MonoDebugMethodJitInfo): Likewise.
25126 (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
25128 (_mono_debug_address_from_il_offset): Take a
25129 MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
25132 (MonoDebugDomainData): New struct.
25133 (mono_debug_get_domain_data): New function.
25134 (mono_debug_add_method): Take an additional `MonoDomain *'
25136 (mono_debug_source_location_from_address): Likewise.
25137 (mono_debug_il_offset_from_address): Likewise.
25138 (mono_debug_address_from_il_offset): Likewise.
25140 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
25142 * reflection.c: one more check for null type in custom attrs.
25144 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25146 * reflection.c: avoid warning (comparison is always false due to limited
25147 range of data type).
25149 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25151 * icall.c: throw an exception in Type.GetField if the argument 'name'
25154 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
25156 * reflection.c: fixed handling of enums in named arguments to custom
25157 attributes (bug #42123).
25159 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
25161 * reflection.c: use the right array element type and handle
25162 a null for a Type argument, too.
25164 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
25166 * reflection.c: handle arrays as arguments to custom attributes.
25168 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
25170 * reflection.c: handle a string value in a custom attr
25171 ctor that takes an object.
25173 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
25175 * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
25178 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
25180 * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
25182 2003-04-27 Martin Baulig <martin@ximian.com>
25184 * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
25185 MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
25186 MONO_DEBUGGER_EVENT_BREAKPOINT.
25187 (mono_breakpoint_trampoline_code): Removed.
25188 (mono_debugger_event_handler): The last argument is now a
25190 (mono_debugger_insert_breakpoint_full): Removed the
25191 `use_trampoline' argument.
25192 (mono_debugger_method_has_breakpoint): Likewise.
25193 (mono_debugger_trampoline_breakpoint_callback): Renamed to
25194 mono_debugger_breakpoint_callback(); take the method and
25195 breakpoint number as arguments.
25197 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
25199 * metadata.c: fix off by one when loading parameters attributes.
25201 2003-04-24 Martin Baulig <martin@ximian.com>
25203 * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
25205 2003-04-24 Martin Baulig <martin@ximian.com>
25207 * mono-debug-debugger.c: Moved all code which interacts with the
25208 Mono Debugger here.
25210 * debug-mono-symfile.c: This code now just deals with the symbol
25211 file itself, the debugger code is now in mono-debug-debugger.c.
25213 2003-04-23 Martin Baulig <martin@ximian.com>
25215 * mono-debug.c (mono_debug_source_location_from_il_offset):
25216 New method; like mono_debug_source_location_from_address(), but
25217 takes an IL offset instead of a machine address.
25219 2003-04-23 Martin Baulig <martin@ximian.com>
25221 * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
25222 `line' field; this is now computed by the debugger.
25224 2003-04-23 Martin Baulig <martin@ximian.com>
25226 * mono-debug.[ch]: New files. This is the new debugging interface.
25228 * mono-debug-debugger.[ch]: New files. Moved all code which
25229 interacts with the Mono Debugger here.
25231 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
25233 * domain.c (mono_init): initialize mono_defaults.monitor_class
25235 2003-04-21 Miguel de Icaza <miguel@ximian.com>
25237 * reflection.c (method_encode_code): Add a spicy exception to help
25238 future compiler authors.
25240 2003-04-21 Martin Baulig <martin@ximian.com>
25243 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
25244 Make this work with relative pathnames; g_filename_to_uri() needs
25245 an absolute filename.
25247 2003-04-18 Zoltan Varga <vargaz@freemail.hu>
25249 * icall.c: Track name changes in Object and ValueType.
25251 2003-04-18 Dietmar Maurer <dietmar@ximian.com>
25253 * metadata.c (mono_type_stack_size): size should be a multiple of
25256 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25259 (internal_domain_finalize): moved into mono_domain_finalize. No need
25260 to create another thread because the finalizers will be run in the
25263 (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
25264 (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
25265 to be run (MS does this too).
25267 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
25269 * object.c (mono_class_compute_gc_descriptor): Update comment.
25271 * loader.h marshal.h marshal.c: Added synchronized method wrappers.
25273 * image.h: Add synchronized wrapper cache.
25275 * image.c (do_mono_image_open): Initialize cache.
25277 * reflection.c (create_dynamic_mono_image): Initialize cache.
25279 2003-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25281 * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
25282 ves_icall_System_Buffer_ByteLengthInternal.
25284 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
25286 * reflection.c: setup klass->nested_in earlier. Allow
25287 a dash in the assembly name.
25289 2003-04-15 Dietmar Maurer <dietmar@ximian.com>
25291 * metadata.c (mono_type_to_unmanaged): dont access
25292 type->data.klass for MONO_TYPE_OBJECT
25293 (mono_type_to_unmanaged): consider System.Delegate class
25295 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
25297 * class.c: just setup supertypes in the proper place instead of
25298 initializing the full element class for arrays.
25300 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
25302 * class.c: ensure the element class of arrays is initialized.
25303 Setup the supertype info for array classes, too.
25305 2003-04-14 Miguel de Icaza <miguel@ximian.com>
25307 * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
25309 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25311 * Makefile.am: re-added -m option when running cygpath. This way,
25312 MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
25314 * mono-config.c: same codepath for locating mono config file for WIN32
25316 * assembly.c: if mono_assembly_setrootdir is called, don't override
25319 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25321 * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
25322 MONO_ASSEMBLIES variable.
25324 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
25326 * icall.c: added Assembly::GetNamespaces() icall.
25328 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25330 * reflection.c: fix from Jaak <jaak@zd.com.pl>.
25332 2003-04-10 Lluis Sanchez Gual <lluis@ideary.com>
25334 * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
25335 * object.c: fixed bug in the construction of vtable for proxies
25337 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
25339 * object.c (mono_array_new): Mark mono_array_new as an icall.
25341 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25343 * class.c: fixed test for public method when overriding interfaces.
25346 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
25348 * appdomain.h, domain.c: added mono_domain_foreach() to
25349 be able to access the currently loaded appdomains.
25350 * object.c: make string interning work across sppdomains.
25351 Mark some functions for use as icalls.
25353 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
25355 * class.c reflection.c: Fix memory leaks reported by ccmalloc.
25357 * reflection.h reflection.c: Allocate long living data using
25358 GC_MALLOC_ATOMIC so the collector does not need to scan it.
25360 * reflection.c: Double the allocation size in streams instead of
25361 increasing it, to prevent unneccesary copying on large assemblies.
25363 * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
25364 creation if the assembly does not have the Run flag set.
25366 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
25368 * class.h: avoid the C++ keywords in header files (Jerome Laban
25369 spotted and fixed this).
25371 2003-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25374 (mono_unhandled_exception): fill in the arguments for the
25375 UnhandledException event. Only trigger that event for the default
25376 domain (as MS does).
25378 2003-04-04 Zoltan Varga <vargaz@freemail.hu>
25380 * object.c: Improve typed allocation stuff based on suggestions from
25381 Paolo. Also turn it on if the GC library supports it.
25383 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
25385 * object.c object.h class.h: Added experimental typed allocation
25386 facility using the interfaces in gc_gcj.h.
25388 * os/gc_wrapper.h: Added new include files.
25390 2003-04-03 Martin Baulig <martin@ximian.com>
25392 All the following changes are conditional to `WITH_INCLUDED_LIBGC'
25393 which is not yet enabled by default.
25395 * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
25397 (mono_gc_lock, mono_gc_unlock): New static functions.
25399 * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
25400 functions; stop/start the world for the garbage collector. This
25401 is using the windows API; we need to complete the SuspendThread()/
25402 ResumeThread() implementation in the io-layer to make this work on Unix.
25403 (mono_gc_push_all_stacks): New public function; tells the garbage
25404 collector about the stack pointers from all managed threads.
25406 2003-04-03 Martin Baulig <martin@ximian.com>
25408 * object.h (MonoThread): Added `gpointer stack_ptr'.
25410 * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
25412 2003-04-03 Martin Baulig <martin@ximian.com>
25414 * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
25416 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
25418 * reflection.c (typebuilder_setup_fields): Initialize field.first and
25421 2003-04-02 Miguel de Icaza <miguel@ximian.com>
25423 * loader.c (mono_lookup_internal_call): Report the corlib that is
25426 2003-03-05 Aleksey Demakov <avd@openlinksw.com>
25428 * icall.c (ves_icall_type_GetTypeCode): fixed check for
25429 System.DBNull (it's class not valuetype).
25431 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
25433 * reflection.c: set table_idx in MonoReflectionArrayMethod object even
25434 if the array method was already assigned a token (fixes bug#40646).
25436 2003-04-02 Zoltan Varga <vargaz@freemail.hu>
25438 * reflection.c (mono_reflection_get_type): Attempt type resolve even
25439 if no assembly is given.
25441 2003-04-01 Miguel de Icaza <miguel@ximian.com>
25443 * metadata.h: Added the new tables.
25445 * row-indexes.h: Added definitions for new tables.
25447 * metadata.c: Add schemas for new tables, and add support for
25448 computing the sizes of them.
25450 * class.c: Update for handling the new type cases.
25452 2003-04-01 Dietmar Maurer <dietmar@ximian.com>
25454 * metadata.h (MONO_TYPE_IS_VOID): new macro
25456 2003-03-31 Martin Baulig <martin@ximian.com>
25458 * threads.h (MonoThreadCallbacks): Added `thread_created'.
25460 * threads.c (mono_thread_new_init): Call `thread_created' in the
25461 mono_thread_callbacks.
25463 2003-03-31 Lluis Sanchez Gual <lluis@ideary.com>
25465 * loader.h: added marshalbyrefobject_class to mono_defaults
25466 * domain.c: added initialization of mono_defaults.marshalbyrefobject_class
25467 * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
25468 generation of output parameters.
25469 ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
25470 * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
25471 contextbound and the target object belongs to the context of the caller.
25472 * object.h: added context and unwrapped_server variables in MonoRealProxy.
25473 * object.c: Implemented support for interfaces and abstract classes
25474 in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
25475 proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
25477 2003-03-30 Zoltan Varga <vargaz@freemail.hu>
25479 * class.h class.c (mono_class_is_subclass_of): New function.
25481 * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
25482 routines for most common case (calls from ArrayList::ToArray).
25484 * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown
25485 routine so programs which call Environment::Exit() can be profiled.
25487 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
25488 Added MONO_ARCH_SAVE_REGS.
25490 * icall.c (ves_icall_type_is_subtype_of): Use new function.
25492 2003-03-29 Miguel de Icaza <miguel@ximian.com>
25494 * blob.h: Add a couple of new MonoType types definitions.
25496 * tabledefs.h: Add a couple of new call convs.
25498 2003-03-27 Zoltan Varga <vargaz@freemail.h>
25500 * reflection.h (MonoReflectionDynamicAssembly): track changes in
25501 the layout of the class.
25503 * reflection.c (alloc_table): double the size on overflow to avoid
25504 unnecessary copying.
25506 * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
25507 avoid filling out metadata tables and blobs. Also set mb->ilgen to
25508 null so it can be garbage collected.
25510 2003-03-27 Zoltan Varga <vargaz@freemail.hu>
25512 * reflection.c (mono_reflection_get_type): Return the resolved type
25513 only if it is in the assembly we searched.
25515 * reflection.c (ensure_runtime_vtable): Initialize method slots.
25517 * class.c (mono_class_setup_vtable): Set the slot of the overriding
25520 2003-03-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25523 (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
25524 the right one is 'file:///blah', but MS allows it.
25526 (mono_assembly_open): allow 'file://blah'
25528 Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
25530 2003-03-26 Aleksey Demakov <avd@openlinksw.com>
25532 * socket-io.c: fixes bug #40310.
25534 2003-03-25 Zoltan Varga <vargaz@freemail.hu>
25536 * reflection.c (mono_reflection_parse_type): handle deeply nested
25539 * reflection.c (mono_image_create_token): Use unique token values
25540 since they will be put into a hash table.
25542 * class.c (mono_class_setup_vtable): If a method occurs in more than
25543 one place in the vtable, and it gets overriden, then change the
25544 other occurances too.
25546 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
25547 object as return type.
25549 2003-03-22 Pedro Mart?nez Juli? <yoros@wanadoo.es>
25551 * icall.c: Deleted "ToString" implementation for double and float
25552 because they are full implemented in managed code.
25554 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
25556 * reflection.c, reflection.h: implemented and exported functions
25557 to retrieve info about custom attributes.
25559 2003-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25561 * appdomain.c: moved Uri handling to assembly.c
25562 * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
25563 work when using a file Uri in *nix and windows.
25565 * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
25566 GetReferencedAssemblies.
25568 2003-03-18 Dick Porter <dick@ximian.com>
25570 * icall.c: Rename a couple of internal calls
25572 * threads.c: Set the thread state to Stopped when a thread exits.
25575 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
25577 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
25580 * object.c (mono_class_vtable): fix warning.
25582 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
25584 * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
25586 * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
25588 (method_encode_clauses): Create exception info structures in the right
25590 (mono_reflection_setup_internal_class): Initialize supertypes field.
25592 * class.c object.c: Handle interfaces which implement other interfaces
25595 * class.h class.c: Move the supertypes array initialization code into
25596 a separate function so it can be used for dynamic types too. Also call
25597 it earlier, in mono_class_init(), since it can be used before the
25598 type is initialized.
25600 2003-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25604 * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
25609 * object.c: remove warnings.
25611 2003-03-13 Martin Baulig <martin@ximian.com>
25613 * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
25614 (MonoDebugLexicalBlockEntry): New types.
25616 * debug-mono-symfile.c
25617 (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
25619 2003-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25621 * process.c: ret can be any non-zero value accroding to MS doc.
25623 2003-03-07 Miguel de Icaza <miguel@ximian.com>
25625 * class.c (mono_marshal_load_type_info): Fix buglet: Noticed when
25626 fixing a warning for a miss-used prototype, would have cause
25627 random memory corruption.
25629 2003-03-07 Martin Baulig <martin@ximian.com>
25631 * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
25632 getting really annoying ....
25634 2003-03-07 Zoltan Varga <vargaz@freemail.hu>
25636 * reflection.c (fixup_method): added support for array methods.
25638 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
25640 * socket-io.c: handle case when AF_INET6 and AF_IPX are not defined
25641 (pointed out by Michael Adams).
25643 2003-03-04 Dick Porter <dick@ximian.com>
25645 * icall.c: Temporarily reverted the Double and Single ToString()
25646 change, because it broke nunit.
25648 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
25650 * object.h, threads.h: make include files compatible with C++
25651 (patch by Jerome Laban <jlaban@wanadoo.fr>).
25653 2003-03-04 Pedro Mart?nez Juli? <yoros@wanadoo.es>
25655 * icall.c: Erased ToString helper functions for Double and Single.
25656 Now, that implementations ar all in managed code (Double and Single
25659 2003-03-03 Lluis Sanchez Gual <lluis@ideary.com>
25661 * appdomain.c: Added method for initializing the default context of
25662 a domain. Added internal call for getting the default context.
25663 * appdomain.h: Added context variable in MonoDomain struct.
25664 * domain.c: mono_domain_set also sets the default context of the domain
25665 * icall.c: Mapped internal method InternalGetDefaultContext.
25666 * object.c: mono_object_get_virtual_method returns always a remoting
25667 wrapper if the object is a transparent proxy.
25668 mono_runtime_invoke_array: when creating an object by calling the
25669 constructor, if the created object is a proxy, then the constructor should
25670 be called using the a remoting wrapper.
25672 2003-03-03 Dick Porter <dick@ximian.com>
25674 * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
25675 variable so it compiles on solaris. Problem spotted by
25676 Christopher Taylor <ct@cs.clemson.edu>
25678 2003-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25681 (get_info_from_assembly_name): don't leak value.
25684 (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
25687 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
25689 * assembly.c: export mono_image_load_references ().
25690 * class.c: handle function pointers. mono_class_from_name() now
25691 supports nested type names directly.
25693 2003-02-28 Zoltan Varga <vargaz@freemail.hu>
25695 * reflection.h reflection.c: Encode already created dynamic methods
25696 and fields correctly as a DEF instead of a REF.
25698 * reflection.c: Get rid of the force_ref argument to
25699 mono_image_typedef_or_ref since it was wrong in the first place.
25701 * string-icalls.c: add error checking to string constructors according
25704 * reflection.c: Emit types in the order their TypeBuilders were
25705 created. Previously, a new table index was assigned to each type before
25706 the tables were emitted. This was wrong because the signature blob
25707 might already refer to a type by its original table index.
25709 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
25711 * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
25714 2003-02-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25716 * Makefile.am: make assemblies dir have \ instead of / on windows.
25718 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
25720 * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
25721 iterate over the NESTEDCLASS table using a linear search since the
25722 table is not guaranteed to be sorted by the secondary key.
25724 * class.c (mono_class_create_from_typedef): fixed up call to
25725 mono_metadata_nesting_typedef.
25727 2003-02-27 Dietmar Maurer <dietmar@ximian.com>
25729 * marshal.c (mono_string_to_byvalstr): clear the memory as
25730 suggested by Jerome Laban <jlaban@wanadoo.fr>
25732 2003-02-26 Dick Porter <dick@ximian.com>
25734 * process.c: Cope with padding in .rsrc blocks
25736 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
25738 * metadata.h: reverted the filter_len change, it breaks reflection
25740 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
25742 * metadata.h: added a new field to store the filter_len
25745 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
25747 * reflection.c: handle custom attributes for types and members
25748 created with Reflection.Emit (bug#38422).
25750 2003-02-22 Zoltan Varga <vargaz@freemail.hu>
25752 * reflection.c: define RTSpecialName automatically for constructors for
25753 compatibility with MS.NET.
25755 * reflection.c (mono_reflection_create_runtime_class): initialize
25756 nested_in field of dynamically created classes.
25758 2003-02-22 Martin Baulig <martin@ximian.com>
25760 * debug-mono-symfile.h: Incremented version number.
25762 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
25764 * object.h icall.c process.c: fix warnings.
25766 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
25768 * appdomain.h appdomain.c:
25769 (mono_domain_try_type_resolve): split the
25770 name_or_tb argument into a name and a tb argument.
25771 (mono_domain_has_type_resolve): new function to check whenever the
25772 application has registered a TypeResolve event handler.
25774 * icall.c reflection.h reflection.c: move the type resolve logic into
25775 mono_reflection_get_type () so it will be invoked when
25776 Assembly::GetType () is called.
25779 (mono_reflection_get_type): renamed to get_type_internal.
25780 (mono_reflection_get_type): fixed type name generation so it works
25781 for nested types too.
25782 (mono_reflection_get_type): call has_type_resolve () to avoid the
25783 costly type name generation if there is no resolve event handler.
25785 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
25787 * class.c, image.c: load exported types from file references.
25789 2003-02-19 Lluis Sanchez Gual <lluis@ideary.com>
25791 * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
25792 used to cache the managed methods used to create proxies and make
25793 remote invocation of methods.
25794 * class.h: Added in MonoVTable a flag to indicate that a class needs
25795 to be remotely created.
25796 * object.c: Modified the method mono_class_vtable(). It now initializes
25797 the remote flag of the vtable. Modified mono_object_new_specific(),
25798 so now it checks the remote flag.
25799 * icall.c: Added a couple of internal methods, one for enabling instance
25800 creation interception for a type, and one for creating objects bypassing
25803 2003-02-18 Martin Baulig <martin@ximian.com>
25805 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
25806 New interncall to get a method's metadata token.
25808 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
25809 New interncall for the debugger.
25811 2003-02-18 Dietmar Maurer <dietmar@ximian.com>
25813 * class.c (mono_class_setup_vtable): allocate supertype array
25815 2003-02-18 Martin Baulig <martin@ximian.com>
25817 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
25819 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25822 (assembly_name_to_aname): jump over unknown properties (i've found
25823 something like: 'type, assembly, version=xxx, custom=null, public...',
25824 so now will ignore custom=null and still get the rest of the values).
25826 2003-02-17 Dick Porter <dick@ximian.com>
25828 * threads.c: Have Thread.Start() wait for a semaphore to signal
25829 that the thread has set up all its local data. This fixes bug
25830 34323, where Abort() raced the new thread's TLS data.
25832 Also removes the handle_store() call from start_wrapper, because
25833 threads are now always created suspended and there is no longer a
25834 race between the parent and child threads to store the info.
25836 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
25838 * image.c: explain the #- heap issue in a message, hopefully
25839 avoiding FAQs on mono-list.
25841 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25844 (GetEntryAssembly): if the domain has not invoked
25845 AppDomain.ExecuteAssembly yet, return the assembly of the default
25848 2003-02-16 Zoltan Varga <vargaz@freemail.hu>
25850 * class.c (mono_ldtoken): make it work in dynamic assemblies.
25852 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
25854 * metadata.c, reflection.c: simple speedup to type hash
25857 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
25859 * image.c, image.h, class.c, assembly.c: move module loading
25860 to MonoImage. When loading metadata, consider alignemnet from
25861 the start of metadata, not from the metadata address in memory.
25863 2003-02-13 Zoltan Varga <vargaz@freemail.hu>
25865 * reflection.c (mono_reflection_get_custom_attrs): Added support for
25866 AssemblyBuilder objects. Factored out custom attribute creation into
25867 a separate function.
25868 (create_custom_attr): new function to create custom attributes.
25870 2003-02-12 Miguel de Icaza <miguel@ximian.com>
25872 * Makefile.am: Got tired of typing the full pathname to pedump.
25873 Until there is another option, am installing this.
25875 2003-02-12 Dietmar Maurer <dietmar@ximian.com>
25877 * class.c (class_compute_field_layout): always set field->parent
25878 (mono_ldtoken): use mono_defaults.fieldhandle_class;
25880 2003-02-11 Dick Porter <dick@ximian.com>
25883 * monitor.c: Rewrote Monitor, making lock much faster and
25884 Pulse/Wait work as specified. Also uses much fewer handles, and only
25885 creates them as needed.
25887 * exception.c: Added SynchronizationLockException
25889 * threads.c: Deleted old Monitor implementation. The new one is
25892 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
25894 * class.c: handled TypedReference type code. Set the correct size for
25895 class data. Setup interface_offsets for interface classes, too.
25897 2003-02-09 Martin Baulig <martin@ximian.com>
25899 * debug-mono-symfile.h: Reflect latest symbol writer changes.
25901 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
25903 * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
25904 * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
25905 * object.c: fixed mono_object_get_virtual_method () for interfaces.
25906 * verify.c: check for code that runs after the end of the method.
25908 2003-02-08 Pedro Mart?nez Juli? <yoros@wanadoo.es>
25910 * icall.c: Added "System.Math::Floor", "System.Math::Round" and
25911 "System.Math::Round2".
25912 * sysmath.h: Added Floor, Round and Round2 definitions.
25913 * sysmath.c: Modified certain functions that were not 100% compliant
25914 with MS.NET (math precision) and added the implementation of Floor,
25917 2003-02-07 Martin Baulig <martin@ximian.com>
25919 * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
25921 2003-02-07 Martin Baulig <martin@ximian.com>
25923 * debug-mono-symfile.c: Reflected latest symwriter changes.
25924 (mono_debug_create_mono_symbol_file): Removed.
25925 (mono_debug_open_mono_symbol_file): Take an argument which
25926 specifies whether to create a dynamic symbol file.
25928 2003-02-07 Dietmar Maurer <dietmar@ximian.com>
25930 * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
25932 2003-02-05 Martin Baulig <martin@ximian.com>
25934 * reflection.c (mono_image_build_metadata): Make this public,
25935 protect it against being called multiple times, don't create
25936 resources and don't build the compressed metadata here.
25937 (mono_image_create_pefile): Do this here.
25940 ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
25942 2003-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25944 * socket-io.c: fixed bug #36322.
25946 2003-02-06 Piers Haken <piersh@friskit.com>
25950 * debug-mono-symfile.c:
25956 * socket-io.c: warning cleanups
25958 2003-02-06 Dietmar Maurer <dietmar@ximian.com>
25960 * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
25961 function. works like remoting invoke, but does a check for the Proxy first.
25963 2003-02-05 Miguel de Icaza <miguel@ximian.com>
25965 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
25967 2003-02-05 Dietmar Maurer <dietmar@ximian.com>
25969 * marshal.c (mono_marshal_get_native_wrapper): only allocate an
25971 (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
25972 (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
25974 * object.c (mono_store_remote_field_new): used by the new jit
25975 instead of mono_store_remote_field
25976 (mono_load_remote_field_new): used by the new jit
25977 instead of mono_load_remote_field
25979 2003-02-05 Patrik Torstensson
25981 * appdomain.c: changed unload to take the domain id instead
25984 * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
25987 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25989 * appdomain.c: don't look for assemblies in ApplicationBase if
25990 PrivateBinPathProbe is set.
25992 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25994 * object.c: make the first argument in main_args contain the absolute
25995 path to the assembly. Fixes bug #37511.
25997 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25999 * icall.c: get correct UTC offset for countries not using daylight
26000 time saving. Fixes bug #30030.
26002 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26004 * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
26005 and 1 are the family).
26007 2003-02-04 Dietmar Maurer <dietmar@ximian.com>
26009 * icall.c (ves_icall_InternalExecute): removed wrong assertion
26011 * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
26013 2003-02-04 Zoltan Varga <vargaz@freemail.hu>
26015 * reflection.c: added support for SignatureHelper tokens, which is
26016 needed by the Calli opcode.
26018 * reflection.h: track changes to SignatureHelper class.
26020 * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
26022 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26024 * appdomain.c: fixed loading assemblies from PrivateBinPath.
26026 2003-02-03 Patrik Torstensson
26027 * appdomain.[c|h], domain.c :
26028 - Added support for getting a domain via domain id
26029 - Support for setting and getting domain from System.AppDomain
26030 (used in cross appdomain channel)
26031 - Added support for get/set for a MonoAppContext on a thread
26032 (Context class in System.Runtime.Remoting.Contexts),
26033 - Removed hack in Get/SetData and ExecuteAssembly.
26035 * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
26036 the managed world to get control when a proxy is created.
26038 * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
26040 2003-02-03 Miguel de Icaza <miguel@ximian.com>
26043 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
26044 Populate the codebase field as well.
26046 2003-02-02 Martin Baulig <martin@ximian.com>
26048 * debug-mono-symfile.c
26049 (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
26050 (mono_debug_symfile_add_method): Allow interncalls.
26052 2003-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26054 * icall.c: throw parse exception if strtod fails or the string is empty.
26056 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
26058 * marshal.c: handle object type separately from defined
26061 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
26063 * marshal.c: handle NATIVE_LPSTR for strings when it's
26064 explicitly specified.
26066 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
26068 * reflection.c, reflection.h, icall.c: setup the reflection
26069 handle cache for ModuleBuilders and AssemblyBuilders.
26071 2003-01-30 Dietmar Maurer <dietmar@ximian.com>
26073 * reflection.c (reflection_methodbuilder_to_mono_method): set
26076 2003-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26078 * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
26080 2003-01-29 Dick Porter <dick@ximian.com>
26082 * threads.c: No need for the fake_thread kludge now that Thread
26083 doesn't run a class constructor
26085 2003-01-29 Dick Porter <dick@ximian.com>
26087 * threads.c: Use g_direct_hash instead of the rather bogus
26090 2003-01-29 Dietmar Maurer <dietmar@ximian.com>
26092 * marshal.c (mono_marshal_get_native_wrapper): add check for null
26093 (fix pinvoke12.exe)
26094 (mono_marshal_get_struct_to_ptr): generate valid IL code
26095 (mono_marshal_get_ptr_to_struct): generate valid IL code
26096 (*): correctly set sig->pinvoke, we need to memdup the signature
26099 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
26101 * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
26102 to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
26104 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
26106 * profiler.c: provide more callers information.
26108 2003-01-28 Dietmar Maurer <dietmar@ximian.com>
26110 * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
26112 * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
26114 * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
26116 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
26118 * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
26119 exception instead of going into an infinite loop on dates which it
26122 * string-icalls.c (ves_icall_System_String_get_Chars): raise
26123 out-of-range exception if needed.
26125 * class.c (mono_class_setup_vtable): allow a virtual method to provide
26126 an implementation for an interface method and to override an inherited
26127 method at the same time.
26128 Imagine a scenario when a virtual method is used to override a
26129 virtual abstract method in a parent class, and this same method
26130 provides an implementation for an method inherited from an interface.
26131 In this case, the interface resolution code will set im->slot, which
26132 means that the virtual method override pass will skip this method
26133 which means a pointer to the abstract method inherited from the parent
26134 will remain in the vtable of this non-abstract class.
26136 * class.c: (mono_class_setup_vtable): continue search for a real
26137 method if only an abstract method is found.
26139 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
26141 * reflection.c: add size to encoding for ByValStr and ByValArray
26142 marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
26144 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
26146 * class.c (mono_class_setup_vtable): pass the override info as an
26149 * class.c (mono_class_setup_vtable): set the slot of overriding methods
26152 * reflection.c (ensure_runtime_vtable); add support for method
26155 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
26157 * reflection.c (resolution_scope_from_image): Hack to work to work with
26158 dynamic assemblies.
26160 * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and
26161 added a 'force_ref' argument to force this function to allways return
26162 a TypeRef. This is needed by mono_image_get_memberref_token ().
26164 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
26166 * reflection.c (mono_image_get_type_info): interfaces really don't have
26169 * reflection.c (mono_image_basic_init): fill out missing fields of
26172 * reflection.c (mono_image_basic_init): Invoke assembly load hooks for
26173 dynamic assemblies. This is required so dynamic assemblies show up in
26174 AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
26175 Type::GetType() etc. This is consistent with MS behaviour.
26177 * image.c image.h reflection.c: add newly created classes to the name
26178 cache so mono_class_get () will find them.
26180 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
26182 First part of changes to get IKVM.NET running under mono.
26184 * appdomain.h, appdomain.c: added new function
26185 mono_domain_try_type_resolve() which will emit TypeResolve events.
26186 This function will call AppDomain::DoTypeResolve to do the actual work.
26188 * class.h, class.c, loader.c, object.c, reflection.h, reflection.c:
26189 moved existing code dealing with dynamic tokens to a new function
26190 called mono_reflection_lookup_dynamic_token (). This function will
26191 raise TypeResolve events when appropriate. Since reflection.c is not
26192 part of libmetadata, a new hook function called
26193 mono_lookup_dynamic_token() is added to class.c which will call this.
26195 * assembly.h assembly.c: make the invoke_load_hook function public,
26196 so it can be called for dynamic assemblies.
26198 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
26200 * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the
26203 * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a
26204 MonoGHashTable, since it contains pointers to objects which the GC
26207 * assembly.c (search_loaded): remove unused variable.
26209 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
26211 * object.c: fixed issue exposed by gcc-generated IL programs
26212 that use RVA data for pointers.
26214 2003-01-25 Martin Baulig <martin@ximian.com>
26216 * threads.c (start_wrapper): Moved the initialization of
26217 `start_func' above the mono_new_thread_init() call to which we
26218 pass it as argument.
26220 2003-01-24 Martin Baulig <martin@ximian.com>
26222 * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
26223 the MonoThread pointer.
26225 2003-01-21 Miguel de Icaza <miguel@ximian.com>
26227 * icall.c: Rename `PowImpl' to Pow.
26229 2003-01-23 Dick Porter <dick@ximian.com>
26231 * threads.c (start_wrapper): Create a Thread object if needed, so
26232 the Main() thread can do the class initialisation in a subthread
26233 that has been set up to allow managed code execution.
26235 Pass the thread ID instead of the MonoThread pointer to the thread
26236 start and attach callbacks. This change is required, because the
26237 jit thread start callback must be called _before_ the Thread
26238 object can be created.
26240 (mono_thread_init): Removed much object creation code that is no
26241 longer needed. No managed code is called from here now.
26243 * object.c (mono_runtime_exec_managed_code): Create a subthread
26244 for Main, and call back to the runtime to use it.
26245 Set the exit code when Main exits.
26247 * gc.c: Make sure domain finalisation happens in a subthread.
26248 Re-enable threaded GC, fixing bug 31333 (again).
26250 * environment.c: System.Environment internall calls (so far just
26251 ExitCode is here, the others are still in icall.c)
26253 * appdomain.c (mono_runtime_cleanup): All threads running managed
26254 code should have finished before mono_runtime_cleanup() is
26255 reached, so no need to clean up threads.
26257 2003-01-22 Martin Baulig <martin@ximian.com>
26259 * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
26260 `gpointer func' arguments.
26261 (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
26262 but added `MonoThread *thread' argument.
26263 (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
26265 * threads.c (mono_new_thread_init): Added `gpointer func' argument
26266 and pass it to the mono_thread_start_cb callback.
26267 (mono_install_thread_callbacks): New public function to install a
26268 set of callbacks which are set by the debugger.
26269 (mono_thread_init): The last argument is now a MonoThreadAttachCB.
26271 2003-01-22 Martin Baulig <martin@ximian.com>
26273 * Makefile.am: Install debug-mono-symfile.h.
26275 2003-01-21 Aleksey Demakov <avd@openlinksw.com>
26277 * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
26279 2003-01-21 Dietmar Maurer <dietmar@ximian.com>
26281 * added the following fix from Jackson Harper <jackson@latitudegeo.com>
26282 * class.c (mono_ptr_class_get): correctly set access levels of pointers
26283 (mono_array_class_get): correctly set access levels of arrays
26285 2003-01-20 Patrik Torstensson
26286 * image.h (MonoAssemblyName): changed major, minor, build, revision
26287 from signed to unsigned.
26289 2003-01-20 sean kasun <skasun@azstarnet.com>
26291 * reflection.c (load_cattr_value): Now this handles
26292 MONO_TYPE_SZARRAY. Fixes bug #35629
26294 2003-01-20 Miguel de Icaza <miguel@ximian.com>
26296 * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
26299 2003-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26301 * decimal.c: fixed bug #26056.
26303 2003-01-17 Martin Baulig <martin@ximian.com>
26305 * gc.c: Raise an ExecutionEngineException instead of using g_error().
26307 2003-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26310 (mono_get_exception_type_initialization): new function.
26312 * object.c: throw a TypeInitializationException when an exception is
26313 thrown invoking the class constructor.
26315 2003-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26317 * reflection.c: fixed attribute reading.
26319 2003-01-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26322 (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
26323 provided, look for the type in the calling assembly and then in
26324 mscorlib; if the assembly name is provided, only try that one.
26326 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
26328 * object.c: register the vtable before there is a chance it's
26329 queried again recursively.
26331 2003-01-13 Duncan Mak <duncan@ximian.com>
26333 * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
26336 2003-01-12 Patrik Torstensson <totte@race-x-change.com>
26338 * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
26340 2003-01-11 Martin Baulig <martin@ximian.com>
26342 * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
26343 this to 20 for the release.
26345 2003-01-10 Dietmar Maurer <dietmar@ximian.com>
26347 * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
26349 * loader.c (mono_method_get_marshal_info): bug fix
26351 * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
26352 structures with explicit layout
26354 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
26356 * profiler.c: made the output more readable (and sorted).
26357 Added caller information for the allocation profiler.
26359 2003-01-09 Sebastien Pouliot <spouliot@videotron.ca>
26361 * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
26363 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26365 * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
26366 to get value types.
26368 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
26370 * object.c, profiler.h, profiler.c, profiler-private.h:
26371 Added object allocation profiler.
26373 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
26375 * reflection.h, reflection.c: handle global methods.
26376 Compress blob entries.
26378 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
26380 * marshal.c: fix compilation.
26382 2003-01-09 Dietmar Maurer <dietmar@ximian.com>
26384 * loader.c (mono_method_get_marshal_info): impl.
26386 * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
26388 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26390 * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
26391 for reference types.
26393 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
26395 * loader.c: fixed off by one error in loaded parameter names.
26397 2003-01-08 Dietmar Maurer <dietmar@ximian.com>
26399 * marshal.c (mono_marshal_get_icall_wrapper): like
26400 mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
26401 instead of a MonoMethod.
26403 2003-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26405 * decimal.c: fixed bug #36537.
26407 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
26409 * marshal.c: throw a missing method exception if a
26410 P/Invoke method is not found.
26412 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
26414 * icall.c: allow a null this for constructors.
26416 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
26418 * icall.c: raise the proper exceptions if the arguments to the
26419 internal Invoke are incorrect.
26421 2003-01-03 Dietmar Maurer <dietmar@ximian.com>
26423 * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
26425 2003-01-03 Martin Baulig <martin@ximian.com>
26427 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
26429 2002-12-31 Martin Baulig <martin@ximian.com>
26431 * debug-mono-symfile.c: Completely rewrote the type section.
26432 Instead of using individual malloc()ed fields, we use one big
26433 continuous memory area and offsets into this area.
26434 See the comments in the source code for details.
26436 2002-12-30 Martin Baulig <martin@ximian.com>
26438 * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
26440 2002-12-30 Martin Baulig <martin@ximian.com>
26442 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
26443 line number table in this data blob instead of using an external
26446 2002-12-28 Martin Baulig <martin@ximian.com>
26448 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
26450 2002-12-22 Rachel Hestilow <hestilow@ximian.com>
26452 * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
26453 as a boxed return type.
26455 2002-12-21 Miguel de Icaza <miguel@ximian.com>
26458 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
26459 g_build_filename to properly get separators on the filename created.
26461 * object.h: Small change, introduce MonoMarshalByRefObject to
26462 track the layout of that structure in the C# universe as we make
26465 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
26467 * object.c: removed assert to allow static fields on interfaces.
26468 * loader.c: a TypeSpec may be used for any type, not just arrays.
26470 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
26472 * class.c, class.h: added mono_class_array_element_size ().
26473 Ignore static methods in interfaces.
26475 2002-12-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26477 * threads.c: fixed the build under cygwin.
26479 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
26481 * reflection.c: handle nullref constants. Allocate keys for
26482 reflection handles with the GC.
26484 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
26486 * threads.c, threads.h: added mono_thread_get_abort_signal()
26487 to get a suitable signal for thread abort.
26489 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
26491 * metadata.c: fix handling of ExportedType table.
26493 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26495 * icall.c: added WriteWindowsDebugString internal call.
26497 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26499 * reflection.h: added fields to match C# implementation.
26501 2002-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26503 * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
26505 2002-12-12 Juli Mallett <jmallett@FreeBSD.org>
26507 * gc.h, gc-internal.h: Rename header for GC internal calls to
26508 gc-internal.h from gc.h as to not clash with Boehm GC having its
26509 header installed as <gc.h> in outside include paths.
26510 * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
26511 * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
26513 2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26515 * icall.c: assign minor, build and revision in FillName.
26517 2002-12-11 Zoltan Varga <vargaz@freemail.hu>
26519 * image.h reflection.h reflection.c class.h class.c loader.c object.c:
26520 Added support for running code generated by Reflection.Emit.
26522 2002-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26524 * appdomain.c: check for NULL argument in LoadFrom.
26526 2002-12-10 Dick Porter <dick@ximian.com>
26528 * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
26530 2002-12-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26532 * appdomain.c: fix buglet when building exe file name. Handle full
26533 assembly name (needed after latest changes to AssemblyName).
26535 (mono_image_close): free some hashtables.
26537 2002-12-05 Dietmar Maurer <dietmar@ximian.com>
26539 * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN
26540 instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation
26541 on some systems (redhat 7.3)
26543 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
26545 * threads.c: delete the critical section of a sync block,
26546 spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
26548 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
26550 * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
26552 2002-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26554 * appdomain.[ch]: handle the assembly preload event to try loading the
26555 assemblies using the paths we have in the current domain.
26557 * assembly.[ch]: created an assembly preload hook that is called to try
26558 loading the assembly by other means that the ones provided here.
26560 * domain.c: initialize the domain search path.
26562 From now on, assemblies (TODO: except corlib and System) are loaded
26563 according to these rules when using mono_assembly_load ():
26565 1. It tries to load the assembly from the ApplicationBase
26566 of the current domain appending .dll and .exe (TODO: have to
26567 try loading from name/name.dll and name/name.exe).
26569 2. It tries the search path specified in PrivateBinPath for the
26570 current domain (if any).
26572 3. Previous behavior.
26574 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
26576 * icall.c: implemented GetInterfaceMap() related icall.
26577 * domain.c, loader.h: load MethodInfo in mono_defaults.
26579 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
26581 * gc.c: disable the finalizer thread for now, untill all the issues
26582 with it are resolved.
26584 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
26586 * string-icalls.c: handle embedded nulls in string ctor when the
26587 length is specified.
26589 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
26591 * class.c: look for explicit interface implementation in parent
26594 2002-12-03 Dietmar Maurer <dietmar@ximian.com>
26596 * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3)
26598 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
26600 * gc.c: protect handles with a critical section.
26602 2002-12-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26605 (ves_icall_type_from_name): it now has throwOnError and ignoreCase
26606 parameters. If no assembly specified, try getting the type from all
26607 the assemblies in the current domain, else, load the assembly and get
26610 2002-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26612 * marshal.c: applied patch from Aleksey Demakov that fixes
26613 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
26615 2002-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26617 * icall.c: fixed get_location.
26619 2002-11-28 Dietmar Maurer <dietmar@ximian.com>
26621 * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
26622 declarations to make it work with older gcc.
26624 * loader.c (mono_get_method): set signature->pinvoke for native calls
26626 2002-11-20 Dick Porter <dick@ximian.com>
26628 * threads.c (mono_thread_init): Set the main thread's handle
26630 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
26632 * gc.c: allow compilation without GC support. Changed to match the
26635 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
26637 * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
26639 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
26641 * reflection.c: set a public key token on the core assemblies.
26643 2002-11-18 Dick Porter <dick@ximian.com>
26645 * threads.c: Split out some thread initialisation so that other
26646 files can set the start callback function.
26648 * gc.c: Run finalisers in a separate thread, to avoid stack
26649 overflow. Fixes bug 31333.
26651 * appdomain.c: Set up GC finalisation thread.
26655 * domain.c: Use gc.h macros for GC_malloc
26657 2002-11-15 Dick Porter <dick@ximian.com>
26661 * appdomain.c: Removed mono_runtime_init_with_attach(),
26662 mono_thread_create_arg(), and mono_thread_init_with_attach(), by
26663 merging the extra parameter with the existing function. Removed
26664 unneeded code in mono_thread_attach().
26666 2002-11-14 Dietmar Maurer <dietmar@ximian.com>
26668 * image.c (mono_image_loaded_by_guid): a method to get loaded
26670 (load_metadata_ptrs): we store the guid as string.
26672 2002-11-11 Dietmar Maurer <dietmar@ximian.com>
26674 * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
26676 * metadata.c (mono_guid_to_string): imported method form Zoltan
26677 Varga (slightly modified)
26679 * assembly.c (mono_assembly_open): load precompiled code
26681 * loader.h (MonoMethod): we store the method token for use in the
26684 2002-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26686 * appdomain.c: insert the loaded assemblies in the domain->assemblies in
26687 the hook function called when an assembly is loaded.
26689 * domain.c: Modified file.
26690 (mono_domain_assembly_load): removed hash table insertion of assemblies.
26694 2002-11-07 Miguel de Icaza <miguel@ximian.com>
26696 * reflection.c: Map PEFileKind to the value expected by the WinNT
26699 2002-11-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26701 * rand.c: use /dev/urandom. If it fails to open, use the previous one.
26702 Read until the buffer is filled completely.
26704 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26706 * icall.c: implemented MonoType.InternalGetEvent ().
26708 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26710 * appdomain.c: implemented InitAppDomainSetup. Delayed
26711 AppDomain.SetupInformation until mono_runtime_exec_main, where we get
26712 the entry_assembly.
26714 * assembly.c: base_dir is now an absolute path ending with
26717 * icall.c: modified get_location according to the above changes.
26719 * object.c: init AppDomain.SetupInformation for the default domain after
26720 we have the entry assembly.
26722 * domain.c: when unloading a domain, setup = NULL.
26724 2002-11-04 Dietmar Maurer <dietmar@ximian.com>
26726 * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
26728 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
26730 * object.h, object.c: introduced mono_object_get_virtual_method ()
26731 to lookup the method invoked on an object when a callvirt is done on
26733 * icall.c: make MethodInfo::Invoke() always do a virtual call.
26735 2002-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26737 * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
26738 current domain when loaded an assembly and failed to load it.
26740 * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
26742 2002-10-31 Dick Porter <dick@ximian.com>
26746 * file-io.c: Return the error status in a parameter, as the
26747 GetLastError() value has long since been blown away if we try and
26748 look it up in a subsequent internal call invocation. Delete the
26749 GetLastError() internal call, because it's useless.
26751 2002-10-31 Dietmar Maurer <dietmar@ximian.com>
26753 * class.[ch]: added cast_class to fix bug 29517
26755 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
26757 * marshal.c: create valid IL code in the filter clause:
26758 the new JIT is less forgiving:-)
26760 2002-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26762 * icall.c: removed get_property internal call.
26764 2002-10-25 Zoltan Varga <vargaz@freemail.hu>
26766 * appdomain.h domain.c: Added an ID to appdomains.
26768 * threads.c threads.h icall.c: Implement icall
26769 Thread:GetDomainID(), and remove unused icall
26770 CurrentThreadDomain_internal.
26772 2002-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26774 * icall.c: Don't recurse through the base types in GetConstructor.
26777 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
26779 * mempool.h, mempool.c: added mono_mempool_empty() and
26780 mono_mempool_stats().
26782 2002-10-23 Dick Porter <dick@ximian.com>
26786 * icall.c: Added MonoIO.GetFileType internal call
26788 2002-10-17 Dick Porter <dick@ximian.com>
26790 * appdomain.c (mono_runtime_cleanup): Don't signal the async
26791 delegate semaphore before waiting for all threads to finish,
26792 because new threads can also call async delegates. Fixes bug
26795 * threadpool.c (async_invoke_thread): Only wait for 500ms instead
26796 of 3 seconds, in case another async job is queued. (This part is
26797 needed because the bug fix reintroduced the 3s exit lag.) This
26798 makes the mono_runtime_shutdown flag superfluous.
26800 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
26802 * reflection.c: include ehader size in method section headers.
26803 Really check for suplicated modules entries.
26805 2002-10-17 Martin Baulig <martin@gnome.org>
26807 * debug-mono-symfile.c: Added back support for locals.
26809 2002-10-14 Martin Baulig <martin@gnome.org>
26811 * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
26814 2002-10-14 Martin Baulig <martin@gnome.org>
26816 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
26817 mono_class_get() instead of looking in the class cache.
26819 2002-10-13 Martin Baulig <martin@gnome.org>
26821 * debug-mono-symfile.c: Set version number to 28, include the
26822 signature in method names.
26824 2002-10-13 Martin Baulig <martin@gnome.org>
26826 * debug-mono-symfile.h: Set version number to 27.
26828 2002-10-11 Martin Baulig <martin@gnome.org>
26830 * gc.c: Don't register/unregister NULL pointers as disappearing links.
26832 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
26834 * metadata.c, metadata.h: added helper function to allocate signatures.
26836 2002-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26838 * icall.c: added internal call to get the location of machine.config.
26840 2002-10-08 Martin Baulig <martin@gnome.org>
26842 * debug-mono-symfile.c: Ignore classes with a pending init for the
26845 2002-10-03 Dick Porter <dick@ximian.com>
26847 * threads.c: Freebsd pthread_t is a pointer
26849 2002-10-03 Dick Porter <dick@ximian.com>
26851 * socket-io.c: Implemented GetHostName_internal
26853 2002-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26856 (mono_config_parse_file): don't leak the text.
26858 2002-10-02 Martin Baulig <martin@gnome.org>
26860 * debug-mono-symfile.c: Added support for methods.
26862 2002-10-01 Martin Baulig <martin@gnome.org>
26864 * debug-mono-symfile.c: Don't emit methods and line numbers for
26865 the dynamic symbol file, just write the type table. We can easily
26866 have an external helper program which creates a symbol file for an
26869 2002-10-01 Dick Porter <dick@ximian.com>
26871 * threads.c (ves_icall_System_Threading_Thread_Start_internal):
26872 Only add the handle to the cleanup array when we're about to
26873 launch the thread. Bug 31425 deadlocked when the test was run on
26876 2002-10-01 Martin Baulig <martin@gnome.org>
26878 * debug-mono-symfile.c: Added support for properties.
26880 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
26882 * reflection.c: unaligned store fix from Mark Crichton
26883 <crichton@gimp.org>.
26885 2002-09-27 Martin Baulig <martin@gnome.org>
26887 * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
26890 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
26892 * assembly.h, assembly.c: use a sane API to hook into the assembly
26893 loading process instead of a useless special-purpouse hack
26894 (ngen needs a hook, too, for example).
26896 2002-09-27 Dick Porter <dick@ximian.com>
26898 * threads.c (mono_thread_init): Call GetCurrentProcess() so
26899 io-layer can set up some process handle info. Not needed on w32,
26900 but doesn't hurt either.
26902 * process.c: Pass the program name in the second parameter to
26903 CreateProcess, so the path is searched. Include the working
26904 directory. Implemented process name, process enumeration, and some
26905 process detail internal calls.
26907 * icall.c: Added internal calls for process lookup, and some
26910 2002-09-26 Martin Baulig <martin@gnome.org>
26912 * assembly.c (mono_install_open_assembly_hook): New global
26913 function to install a function to be invoked each time a new
26914 assembly is loaded.
26915 (mono_assembly_open): Run this callback function if set.
26917 * debug-mono-symfile.c: Put back line numbers for the dynamic
26918 symbol file and also record the .il file as source file. This
26919 allows us to install the temporary symbol file as `file.dbg' just
26920 like a compiler-generated one.
26922 2002-09-26 Nick Zigarovich <nick@chemlab.org>
26924 * Corrected typo in gc.c (BOHEM vs BOEHM).
26926 2002-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26928 * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
26929 GetProperties. Also avoid calling g_slist_length in GetProperties and
26932 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
26934 * reflection.c: avoid unaligned stores (bug spotted by
26935 Mark Crichton <crichton@gimp.org>).
26937 2002-09-25 Martin Baulig <martin@gnome.org>
26939 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
26940 instead of guint64 for addresses and added prologue/epilogue info.
26942 2002-09-25 Martin Baulig <martin@gnome.org>
26944 * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
26945 store line number info. For the dynamic symbol file, we only need
26946 to provide the JIT generated dynamic line number info for the dynamic
26949 2002-09-25 Martin Baulig <martin@gnome.org>
26951 * debug-mono-symfile.h: Incremented version number.
26953 2002-09-24 Martin Baulig <martin@gnome.org>
26955 * class.c (mono_debugger_class_init_func): New global function
26957 (mono_class_init): If mono_debugger_class_init_func is non-NULL,
26960 * debug-mono-symfile.c (mono_debug_symfile_add_type): New
26961 function. This is called via the mono_debugger_class_init_func
26962 hook to add all types to the dynamic type table.
26963 (ves_icall_MonoDebugger_GetType): New interncall to get a class
26964 from its metadata token.
26966 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
26967 New interncall for the debugger.
26969 2002-09-24 Nick Drochak <ndrochak@gol.com>
26971 * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
26972 before using it in case it is null.
26974 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
26976 * metadata.c: allow custom modifiers in local var signatures
26977 (bug spotted by Zoltan Varga).
26979 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
26981 * class.c: deal with the <Module> class that may have a NULL vtable.
26982 Eliminate warnings.
26984 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
26986 * image.c, image.h: more strong name helpers.
26987 * monosn.c: more work: convert pem keys to cryptoapi format.
26989 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
26991 * string-icalls.c: speedup IndexOf.
26993 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
26995 * icall.c: updates from Zoltan.2.Varga@nokia.com.
26997 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
26999 * icall.c: cleanup: use mono_object_domain ().
27001 2002-09-23 Martin Baulig <martin@gnome.org>
27003 * debug-mono-symfile.c: Improved type support.
27005 2002-09-22 Martin Baulig <martin@gnome.org>
27007 * debug-mono-symfile.c: Added support for reference types and strings.
27009 2002-09-22 Martin Baulig <martin@gnome.org>
27011 * debug-mono-symfile.c: Started to work on the type table.
27013 2002-09-21 Martin Baulig <martin@gnome.org>
27015 * debug-mono-symfile.c: Largely reworked the symbol table format.
27016 The symbol table is now incrementally updated each time a new
27017 method is added. We're now also using our own magic and version
27018 so that you don't need to recompile all your classes if the
27019 dynamic table changes.
27020 (mono_debug_update_mono_symbol_file): Removed.
27021 (mono_debug_symfile_add_method): New function to add a method.
27023 2002-09-21 Martin Baulig <martin@gnome.org>
27026 ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
27029 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
27030 New interncall to get a method from its metadata token.
27032 2002-09-21 Martin Baulig <martin@gnome.org>
27034 * debug-mono-symfile.c: Create type table.
27036 2002-09-20 Martin Baulig <martin@gnome.org>
27038 * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
27040 2002-09-20 Martin Baulig <martin@gnome.org>
27042 * debug-mono-symfile.c: Provide information about params and locals.
27044 2002-09-20 Martin Baulig <martin@gnome.org>
27046 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
27049 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
27050 interncall to get a method from its metadata token.
27052 2002-09-20 Martin Baulig <martin@gnome.org>
27054 * debug-mono-symfile.c: Added a few checks for method->header
27055 being non-NULL. This should never happen, but for the moment
27056 let's use a g_warning() rather than a g_assert().
27058 2002-09-19 Mark Crichton <crichton@gimp.org>
27060 * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
27061 even if support for it isn't present. Added an #ifdef to fix this.
27063 * socket-io.c: Added checks back for Solaris support.
27065 2002-09-19 Martin Baulig <martin@gnome.org>
27067 * debug-mono-symfile.c (read_string, write_string): Reflect latest
27068 changes in the symbol file format.
27070 2002-09-18 Martin Baulig <martin@gnome.org>
27072 * debug-mono-symfile.c: Set version number to 21.
27074 2002-09-18 Dick Porter <dick@ximian.com>
27076 * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
27077 on netbsd. Fixes bug 30051.
27079 2002-09-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27082 (set_version_from_string): little fix.
27084 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
27086 * monosn.c, Makefile.am: added strong name utility.
27087 * reflection.h, reflection.c: implemented delayed signing,
27088 locale, version and hash id assembly attributes.
27090 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
27092 * loader.c, metadata.c: load param attributes in signatures.
27094 2002-09-16 Martin Baulig <martin@gnome.org>
27096 * debug-mono-symfile.c: Added string table with all method names.
27098 2002-09-14 Martin Baulig <martin@gnome.org>
27100 * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
27101 fast method lookup.
27103 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
27105 * reflection.c: record the public key token of referenced assemblies.
27107 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27109 * image.c, image.h: added functions to get the strong name and the
27110 public key of an assembly.
27111 * pedump.c: use them.
27113 2002-09-12 Dietmar Maurer <dietmar@ximian.com>
27115 * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
27117 2002-09-12 Miguel de Icaza <miguel@ximian.com>
27119 * marshal.c (mono_marshal_get_managed_wrapper): Added
27122 2002-09-11 Martin Baulig <martin@gnome.org>
27124 * gc.c: Call GC_unregister_disappearing_link() on all links when
27125 finalizing them, this is necessary to aviod a crash in boehm's
27128 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27130 * gc.c: handle GetTarget for finalized objects spotted and fixed by
27133 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
27135 * icall.c: implemented MonoType::Module.
27136 * reflection.c, reflection.h: mono_module_get_object () from
27137 Tomi Pakarinen <tomi.pakarinen@welho.com>.
27139 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
27141 * icall.c: ignore overridden methods in GetMethods ().
27142 Fix for FieldInfo::SetValue().
27143 * object.c: handle float/double in runtime invoke.
27145 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
27147 * object.c: allow a constructor to be called again on an object.
27149 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27151 * class.h, class.c: move field layout code to it's own function and
27152 export it. Get an interface id earlier. Move fields in MonoClass
27153 so they are more cache friendly and align the bitfields.
27154 * loader.c: temporary handle get_param_names() for a runtime method.
27155 * reflection.c, reflection.h: more code to handle runtime creation of
27158 2002-09-09 Martin Baulig <martin@gnome.org>
27160 * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
27161 signature with the pinvoke field being set for the actual call.
27163 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
27165 * icall.c: removed some unused icalls. Start of map of glib charsets
27166 to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
27168 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
27170 * debug-helpers.c: break infinite loop (found and fixed by
27171 Holger Arnold <harnold@gmx.de>).
27173 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
27175 * icall.c: target may be null in create_delegate.
27177 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
27179 * marshal.c: handle a boolean return type.
27181 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
27183 * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
27185 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27187 * gc.c: fix weakreferences.
27189 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
27191 * icall.c: added icall to get default codepage.
27193 2002-09-03 Dick Porter <dick@ximian.com>
27196 * threads.c: Use MonoThread instead of MonoObject where
27199 Store running thread objects in a hash table, so that we have all
27200 the info to hand when waiting for them to finish
27201 (means we don't need OpenThread() any more, so mingw builds should
27202 be fully functional again.)
27205 * object.h: Added thread ID to MonoThread
27207 2002-09-03 Martin Baulig <martin@gnome.org>
27209 * icall.c (System.Reflection.Assembly::get_location): New interncall.
27211 2002-09-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27213 * icall.c: fixed leak in get_temp_path. Thanks lupus.
27215 2002-09-03 Martin Baulig <martin@gnome.org>
27217 * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
27218 argument to store the end address of the disassembled instruction.
27220 * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
27221 here from debug-symfile.h.
27222 (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
27223 JIT into this struct.
27224 (MonoSymbolFile): Added `char *image_file' field.
27225 (MonoDebugGetMethodFunc): Removed.
27226 (mono_debug_update_mono_symbol_file): Removed the hash table argument.
27227 (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
27228 (mono_debug_find_method): New method.
27230 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
27231 create a full symbol file.
27232 (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
27233 and static symbol files.
27234 (mono_debug_find_method): The symbol file keeps an internal method hash,
27235 call this to get a MonoDebugMethodInfo from a MonoMethod.
27237 * debug-symfile.[ch]: Removed.
27239 2002-08-29 Miguel de Icaza <miguel@ximian.com>
27241 * image.c (do_mono_image_open): Remove linker version check.
27243 2002-08-29 Dietmar Maurer <dietmar@ximian.com>
27245 * marshal.c (mono_marshal_get_managed_wrapper): don't cache
27246 wrappers for instance methods.
27248 2002-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27250 * icall.c: added ves_icall_System_IO_Path_get_temp_path.
27252 2002-08-28 Dick Porter <dick@ximian.com>
27254 * Makefile.am: Export HOST_CC for w32 builds
27256 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
27258 * file-io.c process.c: MonoString are null terminated, no
27259 need for mono_string_to_utf16() anymore.
27261 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27263 * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
27265 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
27267 * icall.c, reflection.h: speedup System.MonoType.
27269 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
27271 * reflection.c: allow null as the value of a string argument in
27272 custom attributes constructors.
27274 2002-08-27 Martin Baulig <martin@gnome.org>
27276 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
27277 `trampoline_address' field.
27279 2002-08-27 Dietmar Maurer <dietmar@ximian.com>
27281 * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
27282 check (fixes bug #29486)
27284 2002-08-27 Martin Baulig <martin@gnome.org>
27286 * debug-mono-symfile.c: Changed the file format in a way that allows us
27287 open it read-only and to use a specially malloced area for all the
27288 dynamic data. We can now also generate a symbol file on-the-fly if we're
27289 debugging IL code and there is no MCS generated symbol file for it.
27291 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
27293 * object.c: added a define for a good string and array
27294 creation speedup (not enabled by default because we need to deal with
27297 2002-08-26 Martin Baulig <martin@gnome.org>
27299 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
27300 function to create a dynamic symbol file. This is used by the
27301 debugger to create a symbol file for IL code on-the-fly.
27303 2002-08-26 Martin Baulig <martin@gnome.org>
27305 * loader.c (mono_lookup_pinvoke_call): Include the error message
27306 from g_module_error() in the error message.
27308 2002-08-24 Martin Baulig <martin@gnome.org>
27310 * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
27311 function to update the symbol file. The symbol file is mmap()ed
27312 writable, but private. This allows us to install the symbol file
27313 together with the assembly.
27315 2002-08-24 Martin Baulig <martin@gnome.org>
27317 * debug-mono-symfile.[ch]: New files. Similar to debug-symfile.[ch]
27318 but they can read the new symbol file format which mcs is now creating.
27320 * debug-symfile.c (mono_debug_find_source_location): Moved to
27321 debug-mono-symfile.c; this is now operating on the new symbol file.
27323 2002-08-23 Martin Baulig <martin@gnome.org>
27325 * debug-helpers.c (mono_method_desc_from_method): New function to get
27326 a MonoMethodDesc from a MonoMethod.
27328 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
27330 * object.c: fixes assertion failure caused by multiple ExecuteAssembly
27331 calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
27333 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
27335 * string-icalls.[ch]: make helper methods static.
27337 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27339 * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
27340 types to it and to SetValueInternal.
27342 * object.c: Moved handle_enum label to its proper place. This was the
27345 This time i compiled mcs and gtk-sharp and they both work.
27347 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27349 * icall.c: reverted partially my previous patch until
27350 object.c:set_value handles enums correcly.
27352 2002-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27355 (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
27356 (ves_icall_System_Environment_get_MachineName): removed warning when
27357 compiling under cygwin.
27359 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27361 * object.c: fixed field_get_value() for reference types.
27363 2002-08-22 Dick Porter <dick@ximian.com>
27365 * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
27366 Don't free a buffer while it's still needed. Patch from Jonathan
27367 Liger <Jonathan.liger@wanadoo.fr>
27369 2002-08-21 Miguel de Icaza <miguel@ximian.com>
27371 * icall.c (ves_icall_System_Environment_get_Platform): Add new
27374 2002-08-21 Dietmar Maurer <dietmar@ximian.com>
27376 * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
27377 (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
27379 * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
27380 we call unmanaged code which throws exceptions.
27382 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27384 * appdomain.h: added per-domain entry_assembly.
27385 * appdomain.c: ensure mono_runtime_exec_main () gets non-null
27387 * icall.c: Assembly::GetEntryAssembly icall.
27388 * object.c: set domain->entry_assembly in mono_runtime_exec_main().
27389 Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
27391 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
27393 * appdomain.h, gc.c: added mono_domain_finalize ().
27395 2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27398 (mono_print_unhandled_exception): changed g_warning by g_printerr
27399 because g_log has a 1024 characters limit (yeah, i got a big stack
27400 trace). Don't print exception name, that should be in ToString
27403 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27405 * icall.c: added ves_icall_FieldInfo_SetValueInternal.
27406 * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
27408 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27411 (mono_print_unhandled_exception): after previous commit, i realized
27412 that MS calls ToString on the exception. I changed this function to
27413 do that. This way we get stack_trace for free.
27415 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27418 (mono_print_unhandled_exception): invoke Message property instead of
27419 getting 'message' field from Exception. Don't allocate memory for
27420 'trace' and 'message' if not needed.
27422 2002-08-18 Dick Porter <dick@ximian.com>
27424 * unicode.c: Fix asserts to match Encoder.cs checks
27426 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27428 * marshal.c: fix unaligned store issue and a few wrong
27429 opcode argument types.
27431 2002-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27433 * icall.c: added GetUninitializedObjectInternal internal call.
27435 2002-08-16 Dietmar Maurer <dietmar@ximian.com>
27437 * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
27438 to the right domain.
27440 2002-08-14 Dietmar Maurer <dietmar@ximian.com>
27442 * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
27444 * class.c (class_compute_field_layout): set blittable to false for Strings
27446 * appdomain.c (mono_domain_transfer_object): added support for ISerializable
27448 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27450 * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
27451 first chunk of code to create types at runtime. Code to
27452 handle ReflectedType/DeclaringType. Make reflection handles
27455 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
27457 * class.c: set correct name in arrays.
27459 2002-08-13 Dietmar Maurer <dietmar@ximian.com>
27461 * appdomain.c (mono_domain_transfer_object): make it work with
27462 valuetypes. bug fixes.
27464 2002-08-12 Dick Porter <dick@ximian.com>
27466 * object.h: Rename some parameters to avoid c++ keywords (Patch
27467 from Joseph Wenninger <kde@jowenn.at>)
27469 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
27471 * icall.c: added icall to implement Assembly.GetFile*.
27473 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
27475 * reflection.h, reflection.c: code to embed managed resources.
27477 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
27479 * class.c: move all the type size stuff into
27480 class_compute_field_layout().
27482 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
27484 * class.c: ensure enums have always the correct instance size.
27485 * unicode.c: remove wrong assert.
27487 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
27489 * assembly.c: fix mem corruption issue.
27490 * image.h, image.c: added mono_image_get_resource () to access
27492 * icall.c: implemented Assembly.EntryPoint property and some
27493 Managed Resources related internalcalls.
27496 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
27498 * image.c, image.h: impemented mono_image_get_entry_point ().
27499 * appdomain.c: use mono_image_get_entry_point.
27501 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
27503 * reflection.c: support the object type argument when loading
27506 2002-08-05 Dietmar Maurer <dietmar@ximian.com>
27508 * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
27509 String as return type.
27511 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
27513 * reflection.c: fix encoding of named args for custom attrs to match
27514 the ms implementation. Read them back when instantiating custom
27517 2002-08-02 Radek Doulik <rodo@ximian.com>
27519 * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
27520 by Dietmar as quick fix
27521 (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
27522 16 as stack size, used on more places as quick fix before Dietmar
27523 will fix it properly
27525 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
27527 * object.h, object.c: added accessors for fields and properties.
27529 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
27531 * class.c, class.h: made mono_class_get_field_from_name ()
27532 loop on parent types.
27533 Added mono_class_get_property_from_name ().
27535 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27537 * class.c, class.h: move the code to setup the type vtable in its own
27538 function so that it can be reused also for types created at runtime.
27539 Eliminate the "class" identifier from the header file.
27540 * reflection.c: setup the vtable for enums so that we can create
27541 objects for use in SetConstant ().
27543 2002-08-02 Dietmar Maurer <dietmar@ximian.com>
27545 * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
27546 instead of the delegate itself as this pointer (bug #28383)
27548 2002-08-01 Dietmar Maurer <dietmar@ximian.com>
27550 * marshal.c (mono_marshal_get_managed_wrapper): added return type
27553 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27555 * loader.c: don't set the pinvoke bit on icalls.
27557 2002-07-31 Dietmar Maurer <dietmar@ximian.com>
27559 * debug-helpers.c (mono_method_full_name): only print a number to
27560 indicate wrapper type (so that the output is more readable in traces).
27562 2002-07-30 Dietmar Maurer <dietmar@ximian.com>
27564 * class.c (mono_class_init): include method override patch from Paolo
27566 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
27568 * icall.c: fixed GetTypeCode().
27570 2002-07-29 Dietmar Maurer <dietmar@ximian.com>
27572 * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
27573 use real delegate invoke function to make it work with multicast
27574 delegates (fix bug# 28291).
27576 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
27578 * object.c: load constant strings.
27580 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
27582 * reflection.c: no magic numbers.
27583 * tabledefs.h: security action enum.
27585 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27587 * assembly.c: fix possible memory corruption.
27589 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
27591 * reflection.h, reflection.c: added support for linking resources.
27592 * verify.c: check we have an updated corlib.
27594 2002-07-25 Dietmar Maurer <dietmar@ximian.com>
27596 * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
27598 (mono_marshal_string_array): null terminate unmanaged string arrays.
27599 (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
27601 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
27603 * icall.c: Type.GetType () can now return also types from the
27606 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
27608 * loader.h, loader.c: stack walking support.
27609 * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
27610 GetCallingAssembly.
27612 2002-07-24 Dietmar Maurer <dietmar@ximian.com>
27614 * marshal.c: added optimisations for blittable types
27616 * class.c (mono_array_class_get): do not set blittable attribute on arrays
27617 (mono_class_setup_mono_type): set blittable attribute for single
27620 * marshal.c (mono_string_utf8_to_builder): impl.
27621 (mono_string_builder_to_utf8): impl.
27622 (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
27624 2002-07-23 Dietmar Maurer <dietmar@ximian.com>
27626 * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
27627 (mono_marshal_get_managed_wrapper): impl. byref types
27629 2002-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27632 (search_method): don't display debug message.
27634 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
27636 * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
27638 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
27640 * appdomain.c: set the missing filename when throwing exception.
27642 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
27644 * metadata.c (mono_type_size): code cleanup
27645 (mono_type_stack_size): removed some test code
27647 2002-07-21 Miguel de Icaza <miguel@ximian.com>
27649 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
27650 mono_get_exception_file_not_found now.
27652 * exception.c (mono_exception_from_name_two_strings): New version
27653 that will call a constructor with two string arguments.
27654 (mono_get_exception_file_not_found): New helper routine, used to
27655 report file-not-found errors.
27657 2002-07-20 Dick Porter <dick@ximian.com>
27660 * process.c: Pass file handles to CreateProcess
27664 * file-io.c: Implemented CreatePipe
27666 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
27668 * metadata.c (mono_get_param_info): set alignment for value types
27670 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
27672 * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
27673 Constify mono_domain_assembly_open().
27674 * loader.c: handle null namespace in icalls.
27676 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
27678 * marshal.c (emit_ptr_to_str_conv): marshal object as structs
27679 (emit_str_to_ptr_conv): marshal object as structs
27681 * metadata.c (mono_type_to_unmanaged): marshal object as structs
27683 * marshal.c (mono_marshal_get_runtime_invoke): support value types
27685 2002-07-18 Dietmar Maurer <dietmar@ximian.com>
27687 * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
27688 (mono_marshal_get_native_wrapper): we an now return value types
27690 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27692 * verify.c: more checks implemented.
27694 2002-07-17 Dietmar Maurer <dietmar@ximian.com>
27696 * marshal.c (mono_delegate_to_ftnptr): invoke the right method
27698 (mono_marshal_get_native_wrapper): allow byref arguments
27699 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
27700 impl. PtrToStringXXX methods
27701 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
27702 (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
27703 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
27704 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
27705 (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
27707 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27709 * reflection.c: fix buglet in parsing an assembly name.
27711 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
27713 * marshal.c (emit_ptr_to_str_conv): first impl.
27715 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
27717 * object.c, class.h: cache the vtable in the class as suggested by
27718 vargaz@freemail.hu (Zoltan Varga).
27720 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
27722 * class.h, loader.c: added mono_field_from_token().
27723 * verify.c: first cut of type checking code.
27725 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
27727 * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
27729 2002-07-15 Dietmar Maurer <dietmar@ximian.com>
27731 * marshal.c (mono_marshal_get_native_wrapper): handle enum types
27733 (mono_marshal_get_remoting_invoke): impl.
27734 (mono_delegate_begin_invoke): impl.
27735 (mono_mb_emit_save_args): impl.
27736 (mono_delegate_end_invoke): impl.
27737 (mono_marshal_get_delegate_begin_invoke):
27738 (mono_marshal_get_delegate_end_invoke):
27739 (mono_marshal_get_delegate_invoke): generate a special name for
27740 those methods (including the signature) and associate them whith
27741 the delegate class.
27743 2002-07-13 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
27746 (mono_reflection_type_from_name): now it has a MonoImage parameter
27747 which is used as the default image to search the type in. If the image
27748 is NULL or getting the type from it fails, it defaults to corlib.
27750 * icall.c: changed 1 call to mono_reflection_type_from_name to match
27753 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
27755 * reflection.c: update the parameter table index.
27757 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
27759 * domain.c: don't include the mark byte in the string hash.
27761 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
27763 * icall.cs: icall for Type.GetTypeCode ().
27764 * verify: a couple of fixes and disabled local initialization checks.
27766 2002-07-12 Dietmar Maurer <dietmar@ximian.com>
27768 * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
27770 * debug-helpers.c (mono_method_full_name): print the type of the
27773 * metadata.c (mono_signature_hash): a hash function for signatures
27774 (mono_signature_hash): better hash algorithm
27776 * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
27778 * debug-helpers.c (mono_method_full_name): this can now generate
27779 method names with signatures
27781 * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
27782 method dont have this pointers.
27784 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
27786 * reflection.c: fixup typebuilder tokens.
27787 * image.c: fix buglet.
27788 * marshal.h: remove whitespace.
27789 * metadata.h, metadata.c: reinstate code that was removed.
27790 * verify.c: handle catch directives and fix another couple of bugs.
27792 2002-07-11 Dietmar Maurer <dietmar@ximian.com>
27794 * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
27795 (mono_marshal_get_native_wrapper): make it comp. with the old code
27796 (mono_marshal_get_native_wrapper): support boolean
27797 (mono_marshal_get_managed_wrapper): support more types
27799 2002-06-25 Dietmar Maurer <dietmar@ximian.com>
27801 * class.c (class_compute_field_layout): compute class->blittable attribute.
27803 2002-07-09 Dick Porter <dick@ximian.com>
27805 * threads.c: Make the thread cleaning up cope with threads that
27808 2002-07-08 Radek Doulik <rodo@ximian.com>
27810 * reflection.c (method_encode_code): use non-translated values to
27811 compute finally_start, this fixes exception handling on ppc, yay!
27813 * decimal.h (struct signscale): fix endianess
27815 2002-07-07 Radek Doulik <rodo@ximian.com>
27817 * reflection.c: swap box_val and not val
27819 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
27821 * reflection.c, reflection.h: handle full assembly info in type name.
27822 Handle Type arguments when loading custom attributes.
27823 * icall.c: updated to use new mono_reflection_type_from_name () method.
27825 2002-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27828 (method_from_memberref): also print assembly name when method not found.
27830 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27833 (ves_icall_TypeGetProperties): fixed bug #27473.
27835 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27837 * reflection.c: display image name and token when cannot find the
27838 .ctor for an attribute.
27840 2002-07-05 Martin Baulig <martin@gnome.org>
27842 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
27844 2002-07-04 Dick Porter <dick@ximian.com>
27846 * threads.c (mono_thread_cleanup): Nasty kludge to get this to
27847 compile on mingw. This will cause mingw builds to not wait for
27848 subthreads to terminate after the main thread does. I've lodged a
27849 bug with the mingw developers for them to wrap OpenThread().
27851 2002-07-03 Dick Porter <dick@ximian.com>
27853 * threads.c: Store thread IDs instead of handles, because
27854 GetCurrentThread() returns a pseudohandle and therefore stores
27855 useless values. mono_thread_cleanup() continues checking the
27856 array of threads until it is empty, to cope with subthreads
27857 spawning new threads after the main thread has finished.
27861 * profiler-private.h: Pass the thread ID to thread profiler
27862 functions, instead of a handle
27864 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
27866 * verify.c: fixes to make it more usable.
27867 * pedump.c: added --verify code to verify IL code in an assembly.
27869 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
27871 * reflection.c: turn errors into warnings to allow compiling corlib.
27873 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
27875 * reflection.c: add special cases to compile corlib.
27877 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27879 * reflection.c: handle properties with only a set method.
27881 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
27883 * opcodes.h: add enum with opcodes in opval order.
27885 2002-07-01 Dick Porter <dick@ximian.com>
27888 * object.c (mono_runtime_run_main): Removed unneeded argument
27890 2002-06-28 Martin Baulig <martin@gnome.org>
27892 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
27894 2002-06-27 Dick Porter <dick@ximian.com>
27896 * threads.c: Store the handle in both the parent thread and in the
27897 subthread, to minimise the time between starting a new thread and
27900 2002-06-26 Dick Porter <dick@ximian.com>
27902 * appdomain.c (mono_runtime_cleanup): Close the socket library
27903 after all the threads have finished, not before
27905 2002-06-26 Martin Baulig <martin@gnome.org>
27907 * debug-symfile.c (mono_debug_find_source_location): Added
27908 `guint32 *line_number' argument. If it's not NULL, store the line number
27909 there and return the file name without the line number.
27911 2002-06-25 Dick Porter <dick@ximian.com>
27915 * process.c: Process forking and other support functions
27917 2002-06-25 Dick Porter <dick@ximian.com>
27919 * image.c (do_mono_image_open): Set ref_count to 1, so that bad
27920 things dont happen when the image is closed.
27921 (mono_image_lookup_resource): Walk the resource section looking
27922 for a particular entry
27924 * cil-coff.h: PE resource section decoding
27926 2002-06-25 Dick Porter <dick@ximian.com>
27930 (mono_assembly_foreach): Accessor functions to walk the list of
27932 (mono_assembly_set_main):
27933 (mono_assembly_get_main): Process methods need to know which
27934 assembly is the "main" one
27936 * object.c (mono_runtime_run_main): Record the main assembly
27938 * debug-helpers.c: Fix typo
27940 2002-06-24 Dietmar Maurer <dietmar@ximian.com>
27942 * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
27943 (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
27945 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
27947 * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
27949 2002-06-21 Miguel de Icaza <miguel@ximian.com>
27951 * image.c (do_mono_image_open): Initialize reference count,
27952 otherwise we leak the MonoImage.
27954 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
27956 * reflection.c: small tweak to handle self-hosting.
27958 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
27960 * reflection.c: fix type name parse code.
27962 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
27964 * reflection.c: break out of the loop.
27965 * image.c: special case corlib.
27967 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
27969 * reflection.c: add all the custom attrs at the end to ensure the
27970 ctors have been properly initialized when the attributes are defined
27971 in the current assembly.
27973 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27975 * reflection.c: handle correctly multiple-nested types.
27977 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
27979 * row-indexes.h: fix typos.
27980 * reflection.c: adjust for typos and fix method_def_or_ref
27981 encoding in MethodImpl table.
27983 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
27985 * reflection.c: fix entry point patching (thanks Serge!).
27987 2002-06-18 Dietmar Maurer <dietmar@ximian.com>
27989 * verify.c: add check for System.Exception
27991 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
27993 * image.c, class.c: minifix for code just c&p'ed.
27994 * reflection.c: warning fix.
27995 * object.h, loader.h, domain.c: load also StringBuilder.
27997 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
27999 * marshal.h, marshal.c: some support code to handle complex marshaling.
28001 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28003 * class.h, class.c, reflection.c: handle ignorecase in GetType ().
28004 Better signatures with vtable error dump.
28006 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
28008 * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
28010 2002-06-17 Dietmar Maurer <dietmar@ximian.com>
28012 * icall.c (ves_icall_Type_GetField): impl.
28014 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28016 * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
28017 to retrieve a marshal description blob for a field or param.
28019 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
28021 * reflection.h, reflection.c: change order of nested type emission
28022 to avoid table corruption. The NestedTypes table is sorted.
28023 * icall.c: change order of GetConstructor results to workaround mcs bug.
28025 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28027 * reflection.h, reflection.c: handle field and param marshal
28030 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28032 * icall.c, marshal.c marshal.h: more Marshal class implementation.
28034 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28036 * reflection.c: fix call convention.
28038 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28040 * reflection.h, reflection.c: mono_image_get_memberref_token()
28041 takes a type instead of a class, now. Added
28042 mono_image_get_array_token() to create tokens for the special
28043 multi-dim array methods.
28045 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28047 * assembly.c: handle modules (no assembly table). Split
28048 loading references in its own function.
28049 * class.c: handle moduleref resolution scope.
28050 * image.c, image.h: cache module name in image.
28052 2002-06-07 Martin Baulig <martin@gnome.org>
28054 * reflection.c (mono_image_get_type_info): Only add a class layout entry
28055 if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
28057 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
28059 * icall.c: more signature fixes that used uint instead of int.
28061 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28063 * reflection.c: fixed signature of field refs.
28065 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28067 * class.c, reflection.c: handle typerefs of nested types
28068 (both on read and when writing files).
28070 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
28072 * icall.c: fix method signatures that tried to workaround the previous
28075 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
28077 * debug-helpers.c: fix typo.
28079 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28081 * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
28082 rewrote the PE/COFF writing code (our programs are understood by the
28085 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
28087 * gc.c, gc.h, icall.c: weakreference support.
28089 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
28091 * Makefile.am, mono-config.c: use $(sysconfdir).
28093 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28095 * icall.c: changed default precision of Double.ToString() to 15.
28096 Fixed memory leak. Unified with Single.ToString.
28098 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
28100 * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
28102 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
28104 * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
28105 gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
28106 warnings and compilation fixes from Dennis Haney (davh@davh.dk)
28109 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28111 * debug-symfile.c, sysmath.c: yet more compilation fixes.
28113 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28115 * reflection.c, socket-io.c: more compilation fixes.
28117 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28119 * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
28120 domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
28121 unicode.c: warning and compiler compatibility fixes.
28123 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28125 * class.h, metadata.c: fixed warnings/compilation errors.
28127 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
28129 * Makefile.am, mono-config.c, mono-config.h: configuration file
28131 * loader.c, loader.h: make Dll mapping configurable at runtime in the
28132 config file. Export methods to insert and lookup mappings.
28134 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
28136 * reflection.c: handle types and boxed objects in custom attr
28139 2002-05-30 Martin Baulig <martin@gnome.org>
28142 (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
28144 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
28146 * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
28147 to lookup the implmap row for a P/Invoke method.
28148 * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
28149 P/Invoke method from the runtime on an as needed basis.
28151 2002-05-28 Dietmar Maurer <dietmar@ximian.com>
28153 * metadata.c (mono_metadata_parse_signature): impl.
28155 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28157 * class.c: handle .pack directive.
28159 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
28161 * object.c: initialize static fields with RVA data.
28163 2002-05-25 Martin Baulig <martin@gnome.org>
28166 (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
28168 2002-05-24 Martin Baulig <martin@gnome.org>
28171 (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
28172 (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
28173 `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
28175 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28177 * object.c: special case string ctros in invoke.
28178 * gc.c: silly whitespace changes.
28180 2002-05-23 Dietmar Maurer <dietmar@ximian.com>
28182 * threadpool.[ch]: impl. a threadpool that can
28183 be used by mint and mono.
28185 2002-05-22 Martin Baulig <martin@gnome.org>
28187 * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
28188 The first argument is now a `MonoReflectionModuleBuilder *', the return
28189 value is a `MonoReflectionModuleBuilder *'. Use the AssemblyBuilder's
28190 `methods' field to get the method builder. The `token' argument is the
28193 * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
28194 invalid characters instead of g_assert_not_reached()ing. This seems
28195 to be the behaviour of mscorlib.
28197 2002-05-22 Dietmar Maurer <dietmar@ximian.com>
28199 * object.c (mono_runtime_invoke_array): applied patch from Rachel
28200 Hestilow to fix bug #25104
28202 2002-05-21 Martin Baulig <martin@gnome.org>
28204 * debug-symfile.c (mono_debug_find_source_location): New function.
28205 Looks up an IL offset in the line number table and returns the source
28206 location as a string.
28208 2002-05-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28211 (mono_double_ToStringImpl): changed %f by %g until we have something
28214 2002-05-21 Nick Drochak <ndrochak@gol.com>
28216 * icall.c : Use different name for Math.Pow's icall. Needed to check
28217 parameters first in C#.
28219 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28221 * icall.c, reflection.h: added icall to get info about an event.
28223 2002-05-20 Radek Doulik <rodo@ximian.com>
28225 * object.c (mono_value_box): don't use memcpy for boxing on BIG
28227 (mono_value_box): don't use memcpy for small sizes on
28228 architectures with unaligned access
28230 2002-05-20 Martin Baulig <martin@gnome.org>
28232 * reflection.c (mono_reflection_setup_internal_class): Don't crash
28233 if `tb->parent == NULL'.
28234 (mono_reflection_create_internal_class): New function. This is
28235 called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
28238 * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
28241 2002-05-19 Martin Baulig <martin@gnome.org>
28243 * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
28244 argument to get the length, don't default to the array length.
28246 2002-05-18 Miguel de Icaza <miguel@ximian.com>
28248 * assembly.c (mono_assembly_setrootdir): New function used to
28249 override the MONO_ASSEMBLIES directory.
28251 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28253 * icall.c: ValueType_GetHashCode() initialize local var.
28255 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28257 * reflection.c: sort custom attributes table.
28259 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28261 * reflection.c: support named args in custom attributes (write support).
28263 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
28265 * reflection.c: fix finally position calculation.
28267 2002-05-15 Radek Doulik <rodo@ximian.com>
28269 * reflection.c: fixed endianess at many places
28271 * icall.c (ves_icall_InitializeArray): comment out debug msg
28273 2002-05-15 Dietmar Maurer <dietmar@ximian.com>
28275 * object.c (mono_unhandled_exception): new function to handle
28276 unhandled exceptions.
28277 (mono_unhandled_exception): call the UnhandledException event.
28278 (mono_runtime_delegate_invoke): impl.
28280 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
28282 * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
28283 returns the RVA, not the direct pointer to the data. Handle the case
28284 when the class size is fixed.
28286 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
28288 * reflection.c: fix some endianess issues.
28290 2002-05-14 Dietmar Maurer <dietmar@ximian.com>
28292 * object.c (mono_runtime_invoke): is now able to catch exceptions.
28294 * threads.c (mono_thread_init): added a callback which is invoked
28297 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
28299 * icall.c: make GetHashCode return non-negative values.
28301 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
28303 * object.c, icall.c, gc.c: revert to address-based hashcode.
28305 2002-05-13 Miguel de Icaza <miguel@ximian.com>
28307 * icall.c (mono_double_ParseImpl): Added ParseImpl method.
28309 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28311 * icall.c, class.c: special case <Module>.
28313 2002-05-13 Dan Lewis <dihlewis@yahoo.co.uk>
28315 * icall.c: fix bug in GetNow().
28317 2002-05-11 Dietmar Maurer <dietmar@ximian.com>
28319 * object.c (mono_runtime_class_init): make sure that we call all
28320 static class constructors.
28322 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
28324 * reflection.c: sort methodsemantics table.
28326 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
28328 * reflection.h, reflection.c: honour init locals setting.
28330 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
28332 * icall.c: copied Double ToStringImpl for Single ToStringImpl
28334 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28336 * reflection.c: support ContructorBuilders in attribute blob creation.
28338 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28340 * reflection.c: some changes to build a binary that can be run
28341 directly in windows.
28343 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
28345 * loader.c: print a big message when an icall can't be found.
28347 2002-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28349 * string-icalls.c: fix bug 24248.
28351 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
28353 * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
28354 icall.c, reflection.h: separate assembly loading by pathname and by
28355 assembly name. Use the MONO_PATH env var to search for assemblies.
28357 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28359 * assembly.c, image.h: add some support for assemblies
28360 with multiple modules.
28361 * class.c, class.h: export mono_class_from_typeref().
28362 * loader.c: remove duplicated code and use mono_class_from_typeref(),
28365 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28367 * unicode.c: Char.IsNumber doesn't include hex digits as the ms
28368 documentation says (the ECMA one is correct).
28370 2002-05-02 Dick Porter <dick@ximian.com>
28372 * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
28373 Don't name the synchronisation mutex.
28375 2002-04-30 Jeffrey Stedfast <fejj@ximian.com>
28378 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
28379 Make the prototypes match.
28380 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
28384 (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
28385 systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
28386 all systems have tm.tm_zone, so use strftime() with %Z to print
28387 the timezone abreviation into a temp string.
28389 * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
28390 rather than mono_array_addr() on a MonoString on Big Endian
28393 2002-04-30 Dietmar Maurer <dietmar@ximian.com>
28395 * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
28398 2002-04-30 Dick Porter <dick@ximian.com>
28400 * socket-io.c: Cope with SOCKET being an integer rather than a
28403 * threads.c: Added Thread_free_internal, to deal with thread
28404 handle cleanup. Moved calls to handle_store() and handle_remove()
28405 to start_wrapper(), so each can only be called once. Allocate
28406 synchronisation blocks with GC_malloc(), and use GC finalisation
28407 to close the handles.
28409 * icall.c: added System.Threading.Thread::Thread_free_internal
28411 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28413 * icall.c: support Environment.Exit, CommandLineArgs().
28415 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
28417 * object.c, object.h: added mono_runtime_run_main () and
28418 mono_runtime_get_main_args () for use in System.Environment.
28420 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
28422 * gc.c: fix thinko, enable actual finalization since the jit is now
28425 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28427 * gc.c, object.c: take into account that an object may be offset wrt the address
28428 returned by GC_malloc().
28430 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
28432 * image.c: handle files without entries in the assembly table (modules).
28434 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
28436 * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow
28437 mcs selfhosting again (build breaker) and did move the check to class instead. parent is
28438 allowed to be null when it's System.Object class setup.
28440 2002-04-27 Martin Baulig <martin@gnome.org>
28442 * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
28443 if `tb->parent == NULL' rather than crashing.
28445 2002-04-28 Nick Drochak <ndrochak@gol.com>
28447 * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error. Was
28448 calling acos() where asin() should have been called.
28450 2002-04-26 Martin Baulig <martin@gnome.org>
28452 * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
28453 instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
28454 there's a subdirectory called `System', but we don't want to read that
28455 subdirectory as an assembly.
28457 2002-04-25 Martin Baulig <martin@gnome.org>
28459 * debug-symfile.c: Reflect latest MonoString changes.
28461 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
28463 * rand.c, rand.h: instance method icalls need to have an explicit
28464 this pointer as first argument in the C implementation.
28466 2002-04-25 Nick Drochak <ndrochak@gol.com>
28468 * icall.c: Fix typo in map for GetNonZeroBytes
28470 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
28472 * string-icalls.c : String does now passes unit tests without any
28473 errors, the following changes has been made:
28475 Implemented replace methods.
28476 Renaming of methods to (try) follow the standard.
28477 Fixed compare ordinal
28478 Made all memory allocated directly to function instead of via icall function.
28479 Small performance fix in is_in_array function
28481 (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
28483 c (mono_string_Internal_ctor_charp_int_int):
28484 (mono_string_Internal_ctor_sbytep_int_int): Removed check for
28485 sindex < 0, throw ArgumentOutOfRangeException instead of
28486 ArgumentNullException.
28488 Added new check for length == 0, however
28489 I need to make it return String.Empty from the C code.
28491 (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
28492 that calculate the length for us here.
28494 (mono_string_Internal_ctor_sbytep_int_int): Replaced
28495 mono_string_new_utf16 with mono_string_new, since value is utf8.
28497 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28499 * object.c: register the object for finalization if needed.
28500 Allocate one more char in the string for the terminating 0 char.
28502 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
28504 * class.c, class.h, image.c: check if a type implemenst a destructor.
28505 Use the proper key for array class lookups.
28506 * icall.c: register the icalls in the System.GC class.
28507 * gc.c, gc.h: GC-related functions and icalls.
28509 2002-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28513 * unicode.c: free some strings gotten from mono_string_to_utf8 and
28514 changed a couple of free () by g_free ().
28516 * decimal.c: one-liner in the comments for decimal2string ().
28518 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
28520 * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
28522 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
28524 * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
28525 * object.c (mono_runtime_invoke_array) : handle null in params
28527 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
28529 * string-icalls.c: fixed bug in split (one off bug)
28531 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
28533 * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
28534 * icalls.c: added String::Equals as internal method
28536 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
28538 * threads.c: fixed bug in the double interlocked functions
28540 2002-04-22 Patrik Torstensson <patrik.torstensson@labs2.com>
28542 * threads.c: implemented all of the new interlocked icalls.
28543 * string-icalls.c: fix a bug in insert.
28544 * icalls.c: added the icalls for interlocked, removed old string functions.
28546 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
28548 * loader.c: fix off-by-one error when reading argument names.
28550 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28552 * profiler.c: win32 counter implementation (untested).
28553 * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
28554 (the latter needs testing and more complete impl. from win32 folks).
28556 2002-04-21 Dan Lewis <dihlewis@yahoo.co.uk>
28558 * object.c: mono_array_new_full workaround mono_array_class_get
28561 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
28563 * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
28564 * object.h (mono_string_chars): Changed casting type.
28566 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
28568 * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
28569 method signatures to use gunichar2 instead of gint16.
28571 2002-04-20 Dan Lewis <dihlewis@yahoo.co.uk>
28573 * object.h, object.c: domain-specific versions of mono_object_new and
28576 2002-04-20 Dietmar Maurer <dietmar@ximian.com>
28578 * object.c: changed String layout
28580 * string-icalls.c (mono_string_Internal_ctor_chara): added
28581 internal string constructors.
28583 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
28585 * threads.c: pass 'this' to the thread start routine.
28587 2002-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28589 * string-icalls.c: fix IndexOf and LastIndexOf. Now
28590 InternalCompareStr don't call twice mono_string_cmp_char for the last
28591 character. Improved performance in mono_string_cmp_char.
28593 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
28595 * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
28596 code into its own library: libmonoruntime.
28598 2002-04-19 Dan Lewis <dihlewis@yahoo.co.uk>
28600 * object.h, object.c: changed array format so that szarrays do not
28601 require a bounds structure.
28602 * icall.c, appdomain.c: support for new szarray format.
28604 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
28606 * metadata.c: compare also the retuns type when comparing signatures:
28607 we didn't do this as an optimization since really overloaded methods
28608 must differ also in the arguments, but this doesn't work with
28609 low-level IL code (or when using explicit conversion operators: see
28610 bug#23498 for an example).
28612 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
28614 * loader.c: SZARRAY types can be saved as TYPESPEC, too.
28616 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
28618 * icall.c: make MonoType::GetElementType its own icall.
28620 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
28622 * icall.c: remove MonoMethod_get_Name().
28623 * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
28626 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
28628 * string-icalls.c: optimized a few methods.
28630 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
28632 * icall.c: added all new string internal calls
28633 * string-icalls.c: added, new string internal call implementation.
28634 * object.c: added mono_string_new_size for allocating a string a size
28636 2002-04-17 Dietmar Maurer <dietmar@ximian.com>
28638 * object.c (mono_object_isinst): use the same code as in the
28639 optimized x86 version.
28641 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
28643 * profiler.c: TSC-based timer code (faster and more accurate).
28644 Not hooked up in configure, yet (set USE_X86TSC to 1).
28646 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
28648 * profiler.c, profiler.h: track time spent compiling methods.
28649 * threads.c: track thread creation/destruction.
28651 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
28653 * profiler.c, profiler.h, profiler-private.h: profiling interface
28654 and sample implementation. Moved here so that it can be used also by
28657 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
28659 * reflection.c, reflection.h: keep types and other handles separate in
28660 the hash tables for referred tokens. Add guid for modules.
28662 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
28664 * assembly.c: fix bugs found with valgrind.
28665 * metadata.h, metadata.c: added mono_metadata_guid_heap().
28667 2002-04-14 Patrik Torstensson <patrik.torstensson@labs2.com>
28669 * threads: added icall support for getting current domain for
28672 2002-04-13 Martin Baulig <martin@gnome.org>
28674 * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
28675 (MonoDebugVarInfo): Added `index' field for register based addresses.
28676 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
28677 (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
28678 `MonoDebugVarInfo *params' and `guint32 this_offset' with
28679 `MonoDebugVarInfo *this_var'.
28681 * debug-symfile.c (relocate_variable): New static function to write
28682 a location description for a local variable or method parameter.
28684 2002-04-12 Martin Baulig <martin@gnome.org>
28686 * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
28687 stack offset and begin/end scope address of a local variable.
28688 (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
28689 'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
28690 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
28692 * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
28693 Added new relocation types for start/end scope of a local variable.
28695 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
28697 * object.h: add mono_object_domain() macro.
28698 * reflection.c: handle typespecs.
28699 * icall.c: MonoMethod::get_Name() implementation.
28701 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28703 * icall.c: String::GetHashCode() icall implementation.
28705 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28707 * icall.c: String::IndexOfAny icall.
28708 * object.c, object.h: make array->max_length more useful.
28709 Intrduced mono_object_class() and mono_string_length() macros.
28711 2002-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28713 * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
28714 instead of g_unichar_isdigit.
28716 2002-04-11 Nick Drochak <ndrochak@gol.com>
28718 * icall.c: Implement a simple Double.ToString().
28720 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
28722 * appdomain.h: only io-layer.h is supposed to be included.
28723 * icall.c: explicitly import environ. Fix warning.
28725 2002-04-10 Nick Drochak <ndrochak@gol.com>
28727 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
28728 return true even if it's not Daylight Savings time.
28729 Only return false for the case where the function isn't
28730 implemented for a plaform (read Windows).
28732 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
28734 * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
28737 2002-04-09 Dietmar Maurer <dietmar@ximian.com>
28739 * mempool.c (mono_mempool_alloc): only use g_malloc when
28740 absolutely necessary.
28742 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
28744 * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
28746 * class.c (mono_class_vtable): use domain mempool to allocate vtable
28747 (mono_class_proxy_vtable): use domain mempool
28749 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
28751 * appdomain.h, appdomain.c: split initialization that requires the
28752 execution engine support into mono_runtime_init().
28754 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
28756 * class.c (mono_class_init): don't include vtable inside MonoClass
28757 to save some memory, gather some statistics.
28758 (mono_class_vtable): use g_malloc instead of GC_malloc when possible
28760 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
28762 * icall.c: internalcall implementation for ValueType.Equals().
28764 2002-04-06 Dietmar Maurer <dietmar@ximian.com>
28766 * object.c (mono_message_init): moved
28767 (mono_runtime_exec_main): new arch. independent impl.
28768 (mono_runtime_invoke_array): new method - like
28769 mono_runtime_invoke, but you can pass an array of objects.
28770 (mono_remoting_invoke): new arch. independent impl.
28771 (mono_message_invoke): new arch. independent impl.
28772 (mono_runtime_class_init): new arch. independent impl.
28773 (mono_runtime_object_init): new arch. independent impl.
28775 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
28777 * metadata.c, object.c, reflection.c: documented the exported
28780 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
28782 * icall.c: simpler code to pass the assembly builder data to corlib.
28783 Implement GetNestedTypes() internalcall.
28785 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
28787 * class.c: warn if a type can't be loaded.
28789 2002-04-04 Dietmar Maurer <dietmar@ximian.com>
28791 * image.h: typedef MonoImageOpenStatus
28792 * types.h: removed unused file
28794 2002-04-04 Dan Lewis <dihlewis@yahoo.co.uk>
28796 * icall.c: Enum_ToObject accepts enum value arguments.
28798 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
28800 * class.c: move initialization of properties, events and nested
28801 classes, so that they happen for interfaces, too.
28803 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
28805 * icall.c: cleanup some ugly casts in Array_SetValue*.
28807 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
28809 * icall.c: the values array fro enums is of the correct type, now.
28810 Implement (correctly) getFullName instead of assQualifiedName for
28812 * reflection.h, reflection.c: added mono_type_get_name ().
28814 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
28816 * assembly.c, image.h: for each MonoImage, record from wich assembly
28818 * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
28819 Make Type.Assembly work.
28821 2002-04-03 Dietmar Maurer <dietmar@ximian.com>
28823 * debug-symfile.h: use char* instead of gpointer to avoid
28826 * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
28828 * icall.c (ves_icall_InternalExecute): impl. FielSetter
28829 (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
28831 2002-03-30 Dietmar Maurer <dietmar@ximian.com>
28833 * icall.c (mono_message_init): impl. (code cleanup)
28834 (ves_icall_InternalExecute): impl. FieldGetter
28836 * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
28837 defined we call all (non-static)methods through the vtable.
28839 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
28841 * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
28842 finalizer even though the memory is still referenced (and the chunk of
28843 memory is not freed).
28845 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
28847 * assembly.c: fix brokeness.
28849 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
28851 * class.c: kill some warnings. Check explicit interface method
28852 implementation also without considering the namespace.
28853 Load also literal strings in static class data.
28855 2002-03-29 Miguel de Icaza <miguel@ximian.com>
28857 * assembly.c (default_assembly_name_resolver): Kill memory leak.
28858 (default_assembly_name_resolver): Make the resolver take the
28859 "base" directory where the assembly was originally defined, so we
28860 can load DLLs that are in the same directory as the assembly that
28861 is being referenced.
28863 2002-03-28 Dick Porter <dick@ximian.com>
28869 * unicode.c: Warning cleanups
28871 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
28873 * object.h, reflection.h: use the correct type instead of MonoObject.
28875 2002-03-28 Martin Baulig <martin@gnome.org>
28877 * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
28878 (mono_debug_update_symbol_file): Initialize classes if necessary.
28880 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
28882 * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
28883 rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
28885 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
28887 * assembly.h: fix function prototype.
28888 * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
28889 * mono-endian.h: use const cast.
28891 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
28893 * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
28895 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
28897 * loader.c: don't assert when a typeref can't be loaded, give
28898 a chance to the runtime to trow an exception instead.
28899 * loader.h: fix warning.
28901 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
28903 * class.c (mono_class_proxy_vtable): added proxy support
28905 2002-03-27 Dan Lewis <dihlewis@yahoo.co.uk>
28907 * icall.c: removed last of PAL calls, added System.Environment
28908 * file-io.h, file-io.c: MonoIO implementation
28909 * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
28911 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
28913 * appdomain.c: do not use the byte marker in ldstr table lookup.
28914 * debug-helpers.c: allow two ':' to separate class and method name.
28915 * object.c: allocate arrays bounds with the GC, too.
28916 * verify: add a few more checks.
28918 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
28920 * reflection.c: output also literal strings. Allocate parameter data
28921 with GC_malloc() (thanks, Martin, for catching this!).
28923 2002-03-26 Martin Baulig <martin@gnome.org>
28925 * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
28926 include the `this' offset in the `param_offsets'.
28928 2002-03-25 Martin Baulig <martin@gnome.org>
28930 * debug-symfile.c (mono_debug_update_symbol_file): Use a new
28931 mono_debug_get_class() function to get the classes. Added new
28932 relocation types for arrays and strings.
28933 (mono_debug_get_class): New static function to search in all
28934 referenced assemblies for a metadata token.
28936 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
28938 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
28940 * reflection.h, reflection.c: use a gc-safe hash for hash tables that
28941 hold gc-allocated objects. Make the string heap a stream like the
28942 others. Removed duplicated code when writing stream info.
28943 Added asserts to catch possible buffer overflows. Set the sorted map
28944 for tables that need sorting. Added some documentation.
28946 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
28948 * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table
28949 for interned strings and vtables.
28951 2002-03-24 Martin Baulig <martin@gnome.org>
28953 * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
28954 it in the array since it was created with g_slist_prepend().
28956 2002-03-24 Martin Baulig <martin@gnome.org>
28958 * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
28959 to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
28960 (mono_debug_method_from_token): Renamed to
28961 ves_icall_Debugger_MonoSymbolWriter_method_from_token().
28962 (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
28964 * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
28967 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
28969 2002-03-24 Martin Baulig <martin@gnome.org>
28971 * debug-symfile.c (mono_debug_local_type_from_signature): New func.
28972 (mono_debug_method_from_token): New func.
28974 * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
28975 New interncall, calls mono_debug_local_type_from_signature().
28976 (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
28977 calls mono_debug_method_from_token().
28979 2002-03-23 Martin Baulig <martin@gnome.org>
28981 * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
28982 specifies the number of bytes to be converted, not the array size.
28983 Return the number of chars, not the number of bytes.
28984 (ves_icall_iconv_get_chars): The `byteCount' argument
28985 specifies the number of bytes to be converted, not the array size.
28987 2002-03-23 Martin Baulig <martin@gnome.org>
28989 * reflection.h (MonoReflectionSigHelper): New type.
28991 * reflection.c (mono_reflection_sighelper_get_signature_local),
28992 (mono_reflection_sighelper_get_signature_local): New functions.
28994 * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
28995 (System.Reflection.Emit.SignatureHelper::get_signature_field): New
28998 2002-03-23 Martin Baulig <martin@gnome.org>
29000 * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
29001 is_writeable is set.
29002 (mono_raw_buffer_update): New function to write the modified map
29005 * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
29007 * debug-symfile.c (mono_debug_update_symbol_file): Call
29008 mono_raw_buffer_update() when done writing.
29010 2002-03-23 Martin Baulig <martin@gnome.org>
29012 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
29014 * debug-symfile.c: Added support for arguments and local variables.
29016 2002-03-23 Dick Porter <dick@ximian.com>
29018 * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
29019 protected by ifdefs, hence breaking the w32 build.
29021 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29023 * object.c: implement is_interned() the right way.
29025 2002-03-21 Martin Baulig <martin@gnome.org>
29027 * debug-symfile.[ch]: New files to handle debugging information
29028 files. There's also support to dynamically update these symbol
29029 files to include machine dependent information.
29031 2002-03-20 Dietmar Maurer <dietmar@ximian.com>
29033 * threads.c (mono_thread_create): new function to create thread
29036 2002-03-20 Martin Baulig <martin@gnome.org>
29038 * icall.c (ves_icall_InternalInvoke): Create a new object if the
29039 method is a constructor.
29040 (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
29041 points to ves_icall_InternalInvoke().
29043 2002-03-20 Dan Lewis <dihlewis@yahoo.co.uk>
29045 * file-io.c: Flush shouldn't throw exceptions.
29047 2002-03-19 Dan Lewis <dihlewis@yahoo.co.uk>
29049 * file-io.c: FileStream flush support; FileSetLength now
29050 restores file pointer.
29052 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
29054 * class.c: set image for pointer classes.
29056 2002/03/19 Nick Drochak <ndrochak@gol.com>
29058 * sysmath.c: Forgot one.
29060 2002-03-18 Miguel de Icaza <miguel@ximian.com>
29062 * sysmath.c: Avoid redefining existing names.
29064 2002-03-18 Dan Lewis <dihlewis@yahoo.co.uk>
29066 * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
29067 handled by runtime as icall rather than dllimport from libm.so
29068 * file-io.c, file-io.h: fixed handle argument type.
29070 2002-03-18 Dick Porter <dick@ximian.com>
29072 * reflection.c (mono_image_get_type_info): rename interface to
29073 iface, because of "#define interface struct" on windows.
29075 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
29077 * class.c, class.h: rename and export mono_ptr_class_get().
29078 * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
29079 * reflection.c, reflection.h, icall.c: better/saner type name
29080 parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
29083 2002-03-14 Dietmar Maurer <dietmar@ximian.com>
29085 * class.c (mono_class_init): removed hardcoded GHC_SLOT
29087 * icall.c (ves_icall_InternalInvoke): impl.
29089 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
29091 * reflection.c: output the interface map table, too.
29093 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
29095 * class.c (class_compute_field_layout): separate computation of
29096 static field layout
29098 2002-03-12 Dan Lewis <dihlewis@yahoo.co.uk>
29100 * icall.c: added System.Buffer support.
29101 * file-io.c: moved file icalls from PAL to FileStream.
29103 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
29105 * icall.c (ves_icall_System_Object_GetHashCode): impl.
29107 2002-03-11 Dietmar Maurer <dietmar@ximian.com>
29109 * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
29111 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
29113 * verify.c, verify.h: moved here the corlib/runtime consistency checks.
29115 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
29117 * debug-helpers.{c,h}: moved here from monograph some useful functions
29118 to locate a method by name/signature in a class or image. Included
29119 also a small and flexible IL disassembler.
29121 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
29123 * reflection.c: fixup tokens in methods with small header size, too.
29125 2002-03-08 Dietmar Maurer <dietmar@ximian.com>
29127 * object.c (mono_string_to_utf8): remove assert(!error), instead
29130 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
29132 * icall.c: update to the new mono_Array_class_get interface.
29134 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
29136 * appdomain.c, object.c: Boehm-GC enable.
29137 * icall.c: make get_data_chunk() support split data requests.
29138 Ensure a class is initialized in more cases. Return only the first
29139 property found in GetProperties() or the compiler gets confused.
29140 Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
29141 * reflection.h, reflection.c: add fixup mechanism for field and method
29142 tokens. Initialize assembly->typeref in a single place. Output
29143 properties after events. Support custom attributes for events, too.
29144 Typo fix for paramter custom attrs.
29146 2002-03-07 Martin Baulig <martin@gnome.org>
29148 * icall.c (ves_icall_System_Array_FastCopy): Small fix.
29150 2002-03-07 Dietmar Maurer <dietmar@ximian.com>
29152 * class.c (mono_array_class_get): fix. for multi. dim. arrays
29154 2002-03-06 Martin Baulig <martin@gnome.org>
29156 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
29157 non-zero lower bounds. See testcases #F10-#F13.
29159 2002-03-05 Martin Baulig <martin@gnome.org>
29161 * exception.c (mono_get_exception_argument_out_of_range): New exception.
29163 * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
29164 ves_icall_System_Array_GetValue(), only calculate the absolute array position
29166 (ves_icall_System_Array_SetValue): Likewise.
29167 (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
29168 as argument and does the actual work. This function is used when copying a
29169 multi-dimensional array.
29170 (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
29171 now do all the widening conversions of value types.
29172 (ves_icall_System_Array_CreateInstanceImpl): Implemented.
29174 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29176 * class.c: remove some magic numbers and use the smbolic names,
29177 instead. Added init_events() to load event info at class init time.
29178 * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
29179 and mono_metadata_methods_from_event().
29180 * reflection.h, reflection.c: added support for writing out the evnets
29181 related information.
29183 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
29185 * reflection.h, icall.c: use a different method (GetInterfaces)
29186 to gather interface info and add isbyref, isprimitive and
29187 ispointer to the ves_icall_get_type_info() return value.
29189 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
29191 * class.h: stared adding support for events.
29192 * icall.c: split find_members implementation. Added debug icall to get
29193 the address of an object.
29194 * reflection.c: handle TypeBuilders in mono_type_get_object().
29196 2002-03-01 Martin Baulig <martin@gnome.org>
29198 * icall.c (ves_icall_System_Array_GetLength): This must throw an
29199 ArgumentOutOfRangeException(), not an ArgumentException().
29200 (ves_icall_System_Array_GetLowerBound): Likewise.
29201 (ves_icall_System_Array_GetValue): Improved argument checking.
29202 (ves_icall_System_Array_SetValue): Improved argument checking.
29204 2002-03-01 Martin Baulig <martin@gnome.org>
29206 * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
29207 called with invalid arguments rather than just dying with g_assert().
29208 (ves_icall_System_Array_SetValue): Likewise.
29209 (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
29210 raise a NotImplementedException instead.
29211 (ves_icall_System_Array_GetLength): Added argument checking.
29212 (ves_icall_System_Array_GetLowerBound): Added argument checking.
29214 2002-03-01 Dietmar Maurer <dietmar@ximian.com>
29216 * object.h (mono_assert): new macros mono_assert and
29217 mono_assert_not_reached
29219 2002-02-28 Martin Baulig <martin@gnome.org>
29221 * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
29222 and "System::String::IsInterned" to "System::String::_IsInterned".
29224 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
29226 * icall.c: remove hacks for typebuilder. Added icall to create a
29227 modified type from a tybebuilder.
29228 * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
29229 in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
29230 to create a backing MonoClass for a TypeBuilder.
29232 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
29234 * class.c, class.h: more refactoring of class init.
29235 Export mono_class_setup_mono_type() and mono_class_setup_parent().
29237 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
29239 * marshal.c, marshal.h: start of marshaling interface.
29241 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
29243 * icall.c: fix order in assembly qualified name icall.
29245 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
29247 * class.c: do not free str, since we store it in the hash table.
29248 * reflection.h: add label field to MonoILExceptionInfo.
29249 * reflection.c: handle references to more than one assembly. Handle
29250 case when there isn't a module created in the assembly.
29252 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
29254 * class.c: Fix typo. Start refactoring of class init code.
29256 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
29258 * appdomain.c: exit with 1 on error.
29259 * class.c: we already have the name in MonoClassField.
29260 * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
29261 MonoStreamHeader instead of an offset of image->raw_metadata.
29263 2002-02-26 Miguel de Icaza <miguel@ximian.com>
29265 * appdomain.c (mono_init): Be even more descriptive about the error.
29267 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
29269 * appdomain.c: give the user an informative message when corlib can't
29272 2002-02-26 Martin Baulig <martin@gnome.org>
29274 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
29275 New icall to get the time zone data.
29277 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
29279 * reflection.c: set virtual and raw size of section correctly.
29280 * threads.c: transfer domain information to newly created threads.
29282 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
29284 * class.c: when instancing a class in a domain, load the default
29285 vaules for static fields from the constant table. Fix System.Enum to
29287 * icall.c: implement Object::GetType() internalcall. Implemented
29288 MonoField::GetValue() internalcall. Avoid SEGV in search_method().
29289 Fixed checking of binding flags in find_members().
29290 * metadata.c, metadata.h: introduce mono_metadata_type_hash().
29291 * reflection.c: handle enumerations when writing to the constant
29292 table. Use a different object cache for types.
29295 2002-02-22 Dietmar Maurer <dietmar@ximian.com>
29297 * object.c (mono_object_isinst): fix for arrays
29299 * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
29301 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
29303 * object.c: don't use mprotect () and fix intern pool hash table
29304 lookup for big endian systems.
29306 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
29308 * icall.c: change type_is_subtype_of () signature.
29310 2002-02-21 Mark Crichton <crichton@gimp.org>
29312 * rand.c, rand.h: Added random number generator for
29313 System.Security.Cryptography classes.
29315 * exception.c, exception.h: Added mono_get_exception_not_implemeted.
29317 * icall.c: Added System.Security.Cryptography calls.
29319 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
29321 * class.c, icall.c, metadata.c: better support for pointer types.
29322 Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
29323 * reflection.c: Add support for getting custom attrs for properties
29324 and simplify some code.
29326 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
29328 * icall.c: change getToken () and add custom attribute GetBlob()helper
29330 * reflection.h: add custom attrs array to the reflection builder structures.
29331 * reflection.c: encode and emit custom attributes for all the relevant
29332 reflection objects. Cache fieldref and methodref tokens. Change
29333 mono_image_create_token() interface to take a MonoDynamicAssembly.
29334 More complete custom attributes decoder. Load custom attributes for
29335 Assembly, Field, Method and Constructor objects, too. Make the
29336 returned array an Attribute[] one, not object[]. Added
29337 mono_reflection_get_custom_attrs_blob() to encode the arguments of a
29338 custom attribute constructor.
29340 2002-02-20 Dick Porter <dick@ximian.com>
29344 * socket-io.c: Windows portability fixes (sometimes just ifdeffing
29345 problem code out for now).
29347 2002-02-19 Radek Doulik <rodo@ximian.com>
29349 * object.c (mono_ldstr): use hash table to avoid multiple swapping
29351 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
29353 * icall.c: register the GetCustomAttributes method.
29354 * object.c, object.h: add mono_string_new_len ().
29355 * reflection.h, reflection.c: added mono_runtime_invoke(),
29356 mono_install_runtime_invoke(). Added
29357 mono_reflection_get_custom_attrs () to load custom attributes and
29358 create the attribute objects.
29360 2002-02-19 Dick Porter <dick@ximian.com>
29361 * threads-dummy-types.c:
29362 * threads-dummy-types.h:
29365 * threads-pthread-types.c:
29366 * threads-pthread-types.h:
29367 * threads-pthread.c:
29368 * threads-pthread.h: Deleted obsolete files
29370 2002-02-19 Dietmar Maurer <dietmar@ximian.com>
29372 * class.c (mono_class_vtable): runtime init the class when we
29373 allocate static class data.
29375 * icall.c (ves_icall_System_Array_SetValue): check for null values.
29377 * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
29378 and String - but we will need generic marshalling support in the
29380 (mono_init): set the domain name in a ms compatible way
29382 * object.c (mono_string_new_utf16): bug fix: use char[] instead of
29385 2002-02-18 Dietmar Maurer <dietmar@ximian.com>
29387 * object.c (mono_array_clone): use alloca() instead of g_malloc
29390 * appdomain.c (mono_domain_unload): impl.
29392 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
29394 * appdomain.c, object.c: fix intern pool implementation.
29395 * class.c: fix alignment code.
29397 2002-02-16 Radek Doulik <rodo@ximian.com>
29399 * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
29400 and s2 > s1, just copy lower bytes to be compatible with little
29401 endian (i.e. 64bit value & 0xffffffff --> 32bit value)
29402 (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
29404 * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
29405 force big_endian to be 1 for big endian machines
29406 (ves_icall_iconv_new_decoder): ditto
29408 2002-02-16 Jeffrey Stedfast <fejj@ximian.com>
29410 * socket-io.c (convert_sockopt_level_and_name): If the system
29411 doesn't define SOL_IP or SOL_TCP, get them by hand using
29412 getprotobyname() and caching the values (because this could be a
29414 (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
29415 Use the appropriate struct when the system does support it. Ie,
29416 not all systems have struct ip_mreqn so use struct ip_mreq when
29419 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
29421 * reflection.c: handle finally clauses.
29423 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
29425 * socket-io.c: use g_snprintf() instead of snprintf.
29427 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
29429 * reflection.c (mono_param_get_objects): Cast second argument to
29430 mono_method_get_param_names to a const char** to silence the
29433 * appdomain.c (mono_domain_assembly_open): Put parens around the
29434 truth statement in the for-loop.
29436 * unicode.c (iconv_convert): Got rid of a compiler warning about
29437 int i being unused when the system has a new iconv.
29438 (iconv_get_length): Same.
29440 * image.c (load_class_names): Cast the second argument to
29441 g_hash_table_insert() to char* to hush compiler warnings about the
29443 (mono_image_open): Same here.
29445 * socket-io.c: Don't conditionally include sys/filio.h or
29446 sys/sockio.h here anymore since we now get them from
29447 io-layer/io-layer.h
29448 (inet_pton): If the system doesn't support inet_aton, implement
29449 using inet_addr and also #define INADDR_NONE if it isn't defined
29452 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
29454 * metadata.c, metadata.h: added function to get packing and size info
29456 * reflection.h, reflection.c: handle field RVA data. Save info about
29457 the table layout if needed. Assign typedef indexes to all the types
29458 before dumping the info about them to avoid forward reference problems.
29460 2002-02-14 Dietmar Maurer <dietmar@ximian.com>
29462 * socket-io.c (convert_sockopt_level_and_name): ifdef
29463 SO_ACCEPTCONN because it is not defined on my system (old debian)
29465 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
29467 * opcode.c: use stddef.h to get NULL.
29469 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
29471 * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
29472 for FIONBIO, FIONREAD and SIOCATMARK.
29473 (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
29474 define INADDR_NONE and besides, inet_addr() is deprecated and
29475 should not be used. Use inet_pton() instead - it also has the
29476 added bonus that it can easily handle IPv6 addresses as well.
29477 (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
29479 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
29481 * decimal.c: remove _MSC_VER conditional.
29483 2002-02-13 Dick Porter <dick@ximian.com>
29486 * icall.c: Internal calls for Blocking, Select, Shutdown,
29487 GetSocketOption and SetSocketOption
29489 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29491 * assembly.cs: better resolver: use it instead of some kludgy
29494 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
29496 * reflection.c: the best way to speed-up the compiler is to avoid
29499 2002-02-13 Dietmar Maurer <dietmar@ximian.com>
29501 * class.c (mono_class_vtable): changed the object layout
29502 (obj->vtable->class).
29503 (mono_class_create_from_typespec): consider MONO_TYPE_PTR
29505 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
29507 * assembly.c: look for assemblies in the assembly dir, too.
29509 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
29511 * class.c: fix thinko in mono_class_from_type().
29513 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
29515 * exception.h, exception.c: added TypeLoadException.
29516 * object.h, object.c: added mono_array_clone ().
29517 * icall.c: handle throwOnError in AssemblyGetType().
29518 Added Array.Clone().
29519 * opcode.h, opcode.c: use a single value for the opcode val.
29520 Compile fix for non-gcc compilers.
29522 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
29524 * opcodes.c, opcodes.h: export interesting info about opcodes.
29526 2002-02-05 Dietmar Maurer <dietmar@ximian.com>
29528 * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
29531 * class.c (class_compute_field_layout): set element_class for enums
29532 (mono_class_create_from_typedef): set element_class for normal classes
29534 * icall.c (ves_icall_System_Enum_get_value): impl.
29536 * class.c (mono_class_create_from_typedef): do not set valuetype
29537 flag for System.ValueType and System.Enum
29539 2002-02-04 Dietmar Maurer <dietmar@ximian.com>
29541 * unicode.c (iconv_convert): fix big endian problem.
29543 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
29545 * class.c: add asserts if we are ever going to scribble over memory.
29546 * socket-io.c: not all systems have AF_IRDA defined.
29548 2002-01-31 Dietmar Maurer <dietmar@ximian.com>
29550 * class.c (class_compute_field_layout): do not consider static
29551 fields to compute alignment
29553 2002-01-25 Dietmar Maurer <dietmar@ximian.com>
29555 * appdomain.c (mono_appdomain_get): impl.
29556 (ves_icall_System_AppDomain_ExecuteAssembly): impl.
29558 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
29560 * icall.c: ignore "file://" prefix when loading an assembly.
29562 2002-01-23 Dick Porter <dick@ximian.com>
29566 * Makefile.am: Added socket support
29568 2002-01-23 Miguel de Icaza <miguel@ximian.com>
29570 * icall.c (ves_icall_appdomain_get_default_assemblies): put this
29571 code back. This should return the assemblies that are loaded by
29572 the runtime on behalf of an application domain.
29574 The current implementation is still broken, it just returns every
29575 assembly loaded, but until we get real applications domain this
29578 2002-01-23 Dietmar Maurer <dietmar@ximian.com>
29580 * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
29583 2002-01-23 Miguel de Icaza <miguel@ximian.com>
29585 * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
29586 the mono_class_from_name lookup.
29587 (ves_icall_get_parameter_info): ditto.
29588 (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
29590 (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
29592 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
29594 * class.c: load also nested classes on class init.
29595 System.ValueType instance methods gets passed boxed
29596 values, unless methods in derived classed that get a pointer to the
29598 * icall.c: use better name parsing code in GetType().
29599 * image.c, image.h: add mono_image_loaded ().
29600 * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
29601 * reflection.c, reflection.h: added mono_reflection_parse_type().
29603 2002-01-22 Veronica De Santis <veron78@interfree.it>
29605 * icall.c : Added mapping of internal calls for Manual and Auto reset events
29606 * threads.c : Added the implementation of internal calls for events
29607 * threads.h : Added prototypes of internal calls for events
29609 2002-01-21 Radek Doulik <rodo@ximian.com>
29611 * icall.c (ves_icall_InitializeArray): swap bytes on big endians
29613 2002-01-21 Dietmar Maurer <dietmar@ximian.com>
29615 * class.c (mono_class_init): set min_align to 1 (instead of 0)
29616 (mono_class_value_size): use min_align
29618 2002-01-20 Dick Porter <dick@ximian.com>
29621 * threads.c: Replaced all instances of WapiHandle * with HANDLE,
29622 so it compiles on w32.
29624 2002-01-17 Dietmar Maurer <dietmar@ximian.com>
29626 * metadata.c (mono_type_stack_size): impl.
29628 * class.c (mono_class_get_field): impl. memberref token
29630 2002-01-16 Veronica De Santis <veron78@@interfree.it>
29632 * icall.h : Added the internal calls mapping for CreateMutex_internal
29633 and ReleaseMutex_internal.
29634 * threads.h : Added the prototype of mutexes internal calls.
29635 * threads.c : Added the implementations of mutexes internal calls.
29637 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
29639 * metaparse.h: removed unused file.
29640 * reflection.c, reflection.h: added stream_data_align () function
29641 to align data in streams and keep stream aligned. Add support for
29642 exception support in method headers.
29644 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
29646 * unicode.c: make iconv_convert () return the number of bytess written
29647 in the output buffer.
29649 2002-01-15 Dick Porter <dick@ximian.com>
29650 * threads.c: Make the runtime's idea of infinite timeouts coincide
29651 with the class library's
29653 Fix a particularly egregious bug in mono_thread_cleanup(). That
29654 code was so utterly bogus it must have been written on a Monday.
29656 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
29658 * reflection.h: add subtypes field to TypeBuilder.
29659 * reflection.c: encode constants for literal fields.
29660 Handle subtypes. Fix user string token (and add a zero byte)
29663 2002-01-14 Dietmar Maurer <dietmar@ximian.com>
29665 * class.c (mono_class_init): bug fix: assign slot numbers for
29668 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
29670 * reflection.c: don't try to output a code RVA for abstract methods.
29671 Small fixes for method header format. Output parameter info to the
29672 ParamDef table. Save method overriding info to MethodImpl table.
29673 Fix property support. Allow typedef.extends to be a type in the
29675 * verify.c: fix off-by-one error.
29677 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
29679 * class.c: fix mono_class_from_mono_type () for szarray types.
29680 Remove unused cache check in mono_class_from_type_spec().
29681 * icall.c: *type_from_name () functions handle simple arrays and byref.
29682 * reflection.c: handle byref and szarray types. Handle methods without
29683 body (gets P/Invoke compilation working). Handle types and fields in
29685 * reflection.h: add rank to MonoTypeInfo.
29687 2002-01-10 Dick Porter <dick@ximian.com>
29689 * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
29692 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
29694 * icall.c: initialize class in type_from_handle ().
29695 Loop also in parent classes for get_method ().
29696 * reflection.c: properly encode class and valuetype types.
29697 Start on encoding TypeBuilder types. Handle fieldrefs.
29698 Use correct length when registering a user string.
29699 Handle ConstructorBuilder and MonoMethod in get_token ().
29700 Make mono_type_get_object () aware of cached types.
29701 * object.c: back out change to mono_string_new ().
29703 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
29704 * object.c: mono_string_new should return a NULL when the string
29705 passed in is NULL -- not try to deference it.
29707 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
29709 * icall.c: hack to make IsSubType work for TypeBuilders.
29710 * reflection.c: emit constructors before methods.
29711 Retrieve param names in mono_param_get_objects().
29713 2002/01/05 Nick Drochak <ndrochak@gol.com>
29715 * Makefile.am: fix list of headers and sources so automake 1.5
29716 doesn't complain. Removed \# at end of list.
29718 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
29720 * reflection.c: get token for a method ref. Set return type of
29721 constructor to void.
29722 * loader.c: debug message.
29723 * class.c: typo fix.
29725 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
29727 * icall.c: fix array init with rank > 1. FindMembers
29728 loops in parent class as well.
29729 * image.c: do not insert nested types in name cache.
29730 * reflection.c: warning fix.
29731 * reflection.h: add override method (for interface impl).
29733 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
29735 * metadata.c: fix customattr decoding.
29737 2001-12-21 Miguel de Icaza <miguel@ximian.com>
29739 * rawbuffer.cs: Added native Win32 implementation, avoids using
29740 mmap on Cygwin. This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
29742 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
29744 * class.c: make the low-level routines handle the cache.
29746 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
29748 * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
29750 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
29752 * class.c: fix mono_array_element_size() for objects.
29753 * class.h, class.c: add properties to MonoClass and load them
29755 * icall.c: check with isinst() when assigning a value to an array
29756 instead of requiring the classes to match exactly.
29757 Implemented icall for System.Type::GetType().
29758 Implemented icalls to get ParameterInfo, ProprtyInfo and info about
29759 enums. Handle bindingflags when looking for methods and fields.
29760 * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
29761 and mono_metadata_methods_from_property().
29762 * reflection.h, reflection.c: added structures for propreties,
29763 parameters and enums. Implemented mono_property_get_object() and
29764 mono_param_get_objects().
29766 2001-12-18 Dick Porter <dick@ximian.com>
29768 * file-io.c: Use mono_string_to_utf16() instead of
29769 mono_string_chars()
29771 * object.c: Added mono_string_to_utf16(), which copies the non
29772 NULL-terminated MonoString into a new double-null-terminated
29775 2001-12-17 Dietmar Maurer <dietmar@ximian.com>
29777 * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
29779 2001-12-16 Dietmar Maurer <dietmar@ximian.com>
29781 * file-io.c: raise exceptions if handle is invalid.
29783 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
29785 * assembly.c: yet another check for mscorlib.
29786 * class.c, class.h: load nesting info for classes.
29787 * icall.c: many new functions to support the Reflection classes.
29788 * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
29789 * reflection.h, reflection.c: mono_image_create_token(),
29790 mono_assembly_get_object(), mono_type_get_object(),
29791 mono_method_get_object(), mono_field_get_object(): methods to return
29792 objects that parallel the C representation of assemblies, types,
29795 2001-12-11 Dick Porter <dick@ximian.com>
29798 * file-io.c: Internal calls for file IO.
29800 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
29802 * tabledefs.h: missing FileAttributes.
29803 * verify.h, verify.c: use is_valid_string () to simplify and check for
29804 valid strings more correctly. Fix warnings and speeling.
29805 Check more tables: Filed, File, ModuleRef, StandAloneSig.
29806 Check code: branches, maxstack, method calls.
29808 2001-12-04 Dietmar Maurer <dietmar@ximian.com>
29810 * object.c (mono_object_allocate): removed static, so that the jit
29811 can allocate value types.
29813 * icall.c (ves_icall_System_DateTime_GetNow): impl.
29815 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
29817 * class.c: init enum types right away and register the
29818 token->MonoClass map in mono_class_create_from_typedef ().
29819 * verify.h, verify.c: first cut of the verifier.
29820 * pedump.c: add --verify switch to verify metadata tables.
29821 * tabledefs.h: add some missing enums.
29823 2001-11-30 Dietmar Maurer <dietmar@ximian.com>
29825 * class.c (mono_install_runtime_class_init): impl.
29826 (mono_class_init): renamed mono_class_metadata_init to
29827 mono_class_init, also removed the metadata_inited flag
29829 * object.c (mono_object_isinst): use faster algorithm
29831 2001-11-30 Radek Doulik <rodo@ximian.com>
29833 * mono-endian.h: reverted last change
29834 added function prototypes
29836 * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
29837 add mono-endian.c back
29839 * mono-endian.c: returned back, as Paolo pointed out, it's needed
29840 for unaligned access, I've mistaked it with endianess. I am
29842 (mono_read16): fix reverted endianess
29843 (mono_read64): ditto
29844 (mono_read32): ditto
29846 2001-11-30 Dick Porter <dick@ximian.com>
29848 * exception.c: Implement mono_exception_from_name()
29850 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
29852 * metadata.h, metadata.c: remove params_size and locals_size and their
29853 calculation from the metadata code: they are only usefult to the
29856 2001-11-29 Radek Doulik <rodo@ximian.com>
29858 * object.c (mono_ldstr): swap bytes here, it's probably not the
29859 best place, but works for me now, I'll redo it once I know mono
29860 better, also note that I add PROT_WRITE and don't reset back, also
29861 note that it's only affects big endians, so x86 should be OK
29863 * mono-endian.h (read16): use just glib macros for both endians
29865 * mono-endian.c: removed as glib macros are used in in
29866 mono-endian.h so we don't need to care about endianess for read
29867 macros as glib does that for us already
29869 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
29871 * class.h, class.h: take minimum alignment into consideration so
29872 that the fields of a class remain aligned also when in an array.
29874 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
29876 * loader.h, loader.c: add mono_method_get_param_names().
29877 * class.c: 0-init class fields.
29879 2001-11-26 Dick Porter <dick@ximian.com>
29883 * threads.c: New file that handles System.Threading on all platforms
29886 * object.h: Remove the synchronisation struct from MonoObject,
29887 replace it with a pointer that gets initialised on demand
29889 * Makefile.am: Replace all the system-specific threading code with
29890 a single file that uses the new wrapper library
29892 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
29894 * class.c, class.h: add mono_install_trampoline() so that the runtime
29895 can register a function to create a trampoline: removes the ugly
29896 requirement that a runtime needed to export arch_create_jit_trampoline.
29897 * object.h, object.c: added mono_install_handler() so that the runtime
29898 can install an handler for exceptions generated in C code (with
29899 mono_raise_exception()). Added C struct for System.Delegate.
29900 * pedump.c: removed arch_create_jit_trampoline.
29901 * reflection.c: some cleanups to allow registering user strings and
29902 later getting a token for methodrefs and fieldrefs before the assembly
29904 * row-indexes.h: updates and fixes from the new ECMA specs.
29906 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
29908 * class.h, class.c: add enum_basetype field to MonoClass.
29909 * metadata.h, metadata.c: add mono_metadata_get_constant_index()
29910 to get index in the constant table reated to a field, param or
29912 * reflection.h, reflection.c: handle constructors. Set public-key and
29913 version number of the built assembly to 0.
29914 * row-indexes.h: update from new ECMA spec.
29916 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
29918 * class.h, class.c: add a max_interface_id to MonoClass.
29919 * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
29920 since it's used to do that. Added mono_type_type_from_obj().
29921 Make GetType() return NULL instead of segfaulting if the type was not
29922 found. Handle simple arrays in assQualifiedName.
29923 * object.h: add a struct to represent an Exception.
29924 * reflection.c: output call convention in method signature.
29925 Add code to support P/Invoke methods and fixed offsets for fields.
29927 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
29929 * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
29931 * icall.c: use mono_array_addr instead of array->vector: fixes the
29932 reflection image writing.
29933 * reflection.c: init call convention byte to 0 in method signature.
29934 Encode the property signature. Don't output property-related methods
29935 twice. Really process the properties for a type (don't cast a field to
29936 a property, my mom always told me that).
29937 Fix 64 bit issues in pointer alignment in a different and more
29940 2001-11-10 Sean MacIsaac <macisaac@ximian.com>
29942 * loader.h: Removed type class from MonoDefaults, added monotype
29944 * loader.c: Loaded MonoType, removed loading of Type
29946 * icall.c (my_mono_new_object): Now returns a System.MonoType,
29947 and fills in System.Type._impl with a RuntimeTypeHandle rather
29948 than the actual MonoClass *
29950 (ves_icall_type_from_handle): change from type_class to
29953 (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
29956 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
29959 (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
29961 (ves_icall_System_Reflection_Assembly_GetType): implemented
29963 (ves_icall_System_MonoType_assQualifiedName): implemented
29965 (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
29967 2001-11-09 Miguel de Icaza <miguel@ximian.com>
29969 * assembly.c (mono_assembly_open): Implement a cache for the
29972 (mono_assembly_close): only destroy the assembly when the last
29975 2001-11-09 Dick Porter <dick@ximian.com>
29977 * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
29979 2001-11-09 Dietmar Maurer <dietmar@ximian.com>
29981 * class.c (mono_class_metadata_init): bug fix: compute the right slot
29983 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
29985 * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
29986 from Martin Weindel.
29987 * object.h: add mono_string_chars ().
29989 2001-11-07 Miguel de Icaza <miguel@ximian.com>
29991 * reflection.c (build_compressed_metadata): Eliminates warnings
29992 and uses 64-bit clean code.
29994 * metadata.c (mono_type_hash): Change signature to eliminate warnings.
29995 (mono_type_equal): Change signature to eliminate warnings.
29997 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
29999 * icall.c, loader.c: remove the internalcall array constructors.
30000 Changes to match the new MonoArray structure.
30001 * object.h, object.c: an array object doesn't allocate an extra
30002 vector. Add mono_array_new_full () to create jagged arrays easily.
30004 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
30006 * metadata.h, metadata.c: add mono_metadata_field_info () to
30007 retreive all the info about a field from vairous tables.
30008 * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
30009 * class.h, class.c: augment MonoClassField with more info.
30010 Implemented mono_ldtoken for fields. Implemented ExplicitLayout
30011 policy and load a field's RVA if needed.
30013 2001-11-05 Dietmar Maurer <dietmar@ximian.com>
30015 * class.c (mono_class_metadata_init): create a trampoline for all
30016 virtual functions instead of actually compiling them.
30018 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
30020 * class.h, class.c: include name in MonoClassField.
30021 * class.c: fix fundamental type of System.Object and System.String.
30022 Set the right fundamental type for SZARRAY, too. Handle TypeSpec
30024 * icall.c: remove internalcalls for the Reflection stuff that is now
30026 * loader.c: mono_field_from_memberref () implementation.
30027 * mono-endian.c: thinko (s/struct/union/g).
30028 * object.c, object.h: make the mono_string_* prototypes actually use
30029 MonoString instead of MonoObject.
30030 * reflection.c, reflection.h: updates for changes in the reflection
30031 code in corlib: we use C structures that map to the actual C# classes.
30032 Handle SZARRAYs when encoding types. Handle locals in methods. Use a
30033 fat method header if needed and use the info from the ILGenerator for
30034 methods. Handle fields in types. Misc fixes.
30036 2001-10-17 Dietmar Maurer <dietmar@ximian.com>
30038 * class.c (mono_class_metadata_init): bug fix: always allocate
30039 space for static class data
30041 2001-10-25 Dietmar Maurer <dietmar@ximian.com>
30043 * class.c (mono_compute_relative_numbering): use relative
30044 numbering to support fast runtime type checks.
30046 2001-10-17 Sean MacIsaac <macisaac@ximian.com>
30048 * class.c (mono_class_create_from_typeref): added debugging output
30049 to print class name when MonoDummy is returned instead of real class
30051 2001-10-15 Dietmar Maurer <dietmar@ximian.com>
30053 * class.c (mono_class_metadata_init): interface offset table now
30054 contains pointers into the vtable - this is more efficient for the jit
30056 2001-10-12 Dietmar Maurer <dietmar@ximian.com>
30058 * class.c (mono_class_metadata_init): use a temporary vtable (the
30059 old algorithm only worked for the interpreter, but not for the jit)
30061 2001-10-11 Dietmar Maurer <dietmar@ximian.com>
30063 * loader.c (method_from_memberref): use mono_class_get to get the
30064 class of an array instead of using System.Array directly.
30065 (mono_get_method): also add MEMBERREF methods to the method cache
30066 which usefull for arrays.
30068 2001-10-10 Dietmar Maurer <dietmar@ximian.com>
30070 * pedump.c (arch_compile_method): added to compute vtable entry
30072 * metadata.c (mono_metadata_interfaces_from_typedef): also return the
30073 number of interfaces.
30075 * class.h: merged MonoArrayClass into MonoClass
30077 * class.c (mono_class_create_from_typedef): compute the vtable size and
30078 allocate space to include the vtable inside MonoClass
30079 (mono_class_metadata_init): initialize the vtable
30081 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
30083 * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
30084 Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
30085 * image.c: endian fixes by Laurent Rioux.
30086 * object.h, object.c: rename MonoStringObject to MonoString and
30087 MonoArrayObject to MonoArray. Change some function names to conform to
30088 the style mono_<object>_<action>. mono_string_new_utf16 () takes a
30089 guint16* as first argument, so don't use char*.
30090 Provide macros to do the interesting things on arrays in a portable way.
30091 * threads-pthread.c: updates for the API changes and #include <sched.h>
30092 (required for sched_yield()).
30093 * icall.c: updates for the API changes above.
30094 * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
30095 platforms that need them.
30097 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
30099 * class.c: set the correct type for all the fundamental
30100 type when loading the class.
30102 2001-10-05 Dick Porter <dick@ximian.com>
30104 * threads-pthread.c (pthread_mutex_timedlock): Simple
30105 compatibility version for C libraries that lack this call.
30107 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
30109 * class.c: MonoTypes stored in MonoClass are stored as
30110 fundamental MonoTypes when the class represents a
30111 fundamental type (System.Int32, ...).
30112 The TypeHandle return by ldtoken is a MonoType*.
30113 * icall.c: ves_icall_get_data_chunk () write out all the
30114 PE/COFF stuff. Implement ves_icall_define_method (),
30115 ves_icall_set_method_body (), ves_icall_type_from_handle ().
30116 * image.c: properly skip unknown streams.
30117 * loader.h, loader.c: add type_class to mono_defaults.
30118 * metadata.c, metadata.h: export compute_size () as
30119 mono_metadata_compute_size () with a better interface.
30120 Typo and C&P fixes.
30121 * pedump.c: don't try to print the entry point RVA if there is no entry point.
30122 * reflection.c, reflection.h: many cleanups, fixes, output method
30123 signatures and headers, typedef and typeref info, compress the metadata
30124 tables, output all the heap streams, cli header etc.
30125 * row-indexes.h: typo fixes.
30127 2001-10-04 Dick Porter <dick@ximian.com>
30129 * object.h: Add a synchronisation mutex struct to MonoObject
30131 * object.c (mono_new_object): Initialise the object
30132 synchronisation mutexes
30134 * icall.c: System.Threading.Monitor internal calls
30136 * threads-pthread.h:
30137 * threads-pthread.c: System.Threading.Monitor internal calls
30139 * threads-types.h: New file, includes the system-specific thread
30142 * threads-pthread-types.h:
30143 * threads-pthread-types.c: New files, handle pthread-specific
30144 synchronisation types
30146 * threads-dummy-types.h:
30147 * threads-dummy-types.c: New files of dummy support for
30148 thread-specific types
30152 * pedump.c: include mono-endian.h not endian.h
30154 * Makefile.am: More threads files.
30155 Name mono-endian.h not endian.h
30157 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
30159 * Makefile.am, reflection.h, reflection.c: move here the reflection related
30160 stuff and implement a few more bits.
30161 * icall.c: a field needs to be dereferenced twice. Do not use the same
30162 name for two variables in the same scope.
30163 * image.c, image.h: cleanups.
30165 2001-10-02 Dietmar Maurer <dietmar@ximian.com>
30167 * class.c (mono_class_metadata_init): bug fix: compute the right size
30169 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
30171 * icall.c: implemented some of the Reflection internalcalls.
30172 * image.c, image.h: start writing out the PE/COFF image.
30173 * metadata.h, metadata.c: implement mono_metadata_encode_value ()
30174 that does the reverse than decode_blob_size ().
30175 * object.c: use mono_metadata_encode_value (). Move here
30176 temporary implementation of mono_string_to_utf8 ().
30177 * rawbuffer.c: make malloc_map static.
30179 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
30181 * metadata.c: fix type comparison for arrays.
30182 * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
30183 Added a couple of new classes to monodefaults.
30184 * icall.c: added a couple of Reflection-related internalcalls.
30185 * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
30186 Added a byval_arg MonoType to MonoClass.
30188 2001-09-28 Dick Porter <dick@ximian.com>
30191 * threads-pthread.h:
30192 * threads-pthread.c: Implemented internal calls for
30193 LocalDataStoreSlot operations. Applied mutexes around all shared
30194 data. Reworked the thread creation and Start() operations to
30195 avoid a race condition.
30198 * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
30200 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
30202 * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
30204 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
30206 * class.c, loader.c: warn and return NULL instead of erroring out.
30207 * icall.c: added System.AppDomain::getCurDomain().
30208 * loader.c: we don't need to lookup the typedef again for p/invoke calls.
30210 2001-09-25 Dick Porter <dick@ximian.com>
30212 * threads-pthread.h:
30213 * threads-pthread.c: Implemented timed thread joining and added
30214 System.Threading.Thread::Join_internal internal call
30216 * icall.c: Added System.Threading.Thread::Join_internal internal call
30219 * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
30221 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
30223 * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
30224 mono_string_intern () to implement the semantics of the ldstr opcode
30225 and the interning of System.Strings.
30226 * icall.c: provide hooks to make String::IsIntern and String::Intern
30229 2001-09-23 Dick Porter <dick@ximian.com>
30232 * threads-dummy.h: New files of dummy threading routines
30234 * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
30235 support code based on system specifics
30237 Rename PTHREAD_LIBS to THREAD_LIBS
30239 2001-09-23 Dick Porter <dick@ximian.com>
30241 * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
30242 Schedule (called when asked to Sleep for 0 ms) and CurrentThread
30244 (mono_thread_init): Set up a Thread object instance to return when
30245 the main thread calls Thread.CurrentThread
30246 (mono_thread_cleanup): Wait for all subthreads to exit
30248 * icall.c: New internal calls for System.Threading.Thread::Sleep
30249 (including Schedule) and CurrentThread
30251 * threads.h: New file, to insulate thread-specific stuff from the
30254 2001-09-21 Dick Porter <dick@ximian.com>
30256 * threads-pthread.h:
30257 * threads-pthread.c: New file, for handling pthreads-style
30258 threading support. Start() now starts a new thread and executes
30259 the ThreadStart delegate instance.
30261 * icall.c: Added the internalcall for
30262 System.Threading.Thread::Start_internal
30264 * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
30266 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
30268 * loader.c: work around the different signatures for delegates
30269 constructors csc generates in compiled code vs the ones compiled in mscorlib.
30271 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
30273 * class.h, class.c: add mono_class_get_field_from_name ().
30274 * *: Fix C comments and other ANSI C issues.
30276 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
30278 * endian.h, assembly.c: fix some endianness issues.
30280 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
30282 * loader.h, load.c: add delegate_class to mono_defaults.
30283 Handle runtime provided methods in mono_get_method ().
30285 2001-08-29 Dietmar Maurer <dietmar@ximian.com>
30287 * loader.c (mono_get_method): use pinvoke for internal call
30289 * icall.c: use pinvoke for internal call
30291 * loader.c (method_from_memberref): set the method name
30293 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
30295 * metadata.c: help the compiler generate better code for
30296 mono_class_from_mono_type ().
30298 2001-08-28 Dietmar Maurer <dietmar@ximian.com>
30300 * class.c (mono_class_metadata_init): delayed computing of the
30301 class size to mono_class_metadata_init ()
30303 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
30305 * class.c, class.h: add an interfaces member to MonoClass.
30306 * image.c, image.h: add assembly_name field to MonoImage
30307 from the assembly table.
30308 * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
30310 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
30312 * class.c: Handle Array in mono_class_from_mono_type ().
30313 * metadata.c, pedump.c: some endian fixes.
30315 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
30317 * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
30318 * metadata.c: fix small problem introduced with the latest commit.
30320 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
30322 * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
30323 We don't need a MonoMetadata pointer anymore to compare signatures in
30324 mono_metadata_signature_equal (), update callers.
30325 Reduced memory usage an number of allocations for MonoMethodHeader and
30326 MonoMethodSignature.
30328 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
30330 * metadata.c: added compare for szarray.
30332 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
30334 * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
30335 and add a couple more types to it and mono_defaults. Give an hint on
30336 classes that need implementing in our corlib and are referenced
30339 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
30341 * class.h, class.c: keep track if a class is also an Enum.
30342 * loader.c: Implement a couple more types for use in libffi
30343 marshalling. Gives better diagnostics when failing to dlopen
30344 a library. Set method->klass for P/Invoke methods, too.
30346 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
30348 * class.c, class.h: add a MonoType this_arg to MonoClass that
30349 represents a pointer to an object of the class' type that
30350 can be used by the interpreter and later the type cache.
30351 Add best guess alignment info for valuetype objects.
30353 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
30355 * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
30356 into MonoType: one less level of indirection and allocation and
30357 simplifies quite a bit of code. Added cache for MonoTypes that are
30358 used frequently, so that we don't need to allocate them all the time.
30360 2001-08-24 Dietmar Maurer <dietmar@ximian.com>
30362 * class.c (mono_class_create_from_typedef): System.Enum is also a
30363 value type, although it does not derive from System.ValueType
30364 (maybe a bug in the ms compiler?)
30366 * metadata.c (mono_type_size): return the right size for value types
30368 * loader.c (mono_get_method): only initialize method header if not abstract
30370 * class.c (mono_class_from_mono_type): use mono_default values.
30372 2001-08-23 Dietmar Maurer <dietmar@ximian.com>
30374 * *: use MonoClass pointers instead of <type_tokens>
30376 * class.h: new flag: metadata_inited.
30378 * class.c (mono_class_metadata_init): impl.
30379 (mono_class_instance_size): impl.
30380 (mono_class_data_size): impl.
30382 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
30384 * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
30385 MonoClass now has the name and name_space fields.
30386 MonoMethod has a pointer to its MonoClass, instead of MonoImage.
30387 mono_get_method () takes and optional MonoClass as argument.
30388 Removed mono_typedef_from_name() and added mono_class_token_from_name()
30389 instead that takes advantage of a map from class names to typedef
30390 tokens in MonoImage.
30392 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
30394 * metadata.c: zero is not a valid alignment boundary.
30395 Merge MONO_TYPE_VOID in default decoding code.
30397 2001-08-21 Dietmar Maurer <dietmar@ximian.com>
30399 * image.h: merged MonoMetadata into MonoImage
30401 * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
30402 identify the type of elements.
30404 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
30406 * blob.h: fix MONO_TYPE_TYPEDBYREF value.
30407 * cil-coff.h: split MonoMSDOSHeader and add size info.
30408 * image.c: add some consistency checks.
30409 * metadata.c: fix row size computation: one programmer
30410 error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
30411 add explanation for the locator routine.
30412 Fix decoding of size in method header.
30414 2001-08-20 Miguel de Icaza <miguel@ximian.com>
30416 * assembly.c (g_concat_dir_and_file): Use _S for string concat.
30417 (g_concat_dir_and_file): Bring g_concat_dir_and_file
30418 function from gnome-libs. This uses the right path separator
30419 based on the OS, and also works around a bug in some systems where
30420 a double slash is not allowed.
30421 (default_assembly_name_resolver): Use g_concat_dir_and_file
30422 (mono_assembly_open): ditto.
30424 2001-08-20 Dietmar Maurer <dietmar@ximian.com>
30426 * metadata.c (mono_metadata_signature_equal): impl.
30428 * *: void is now a realy MonoType (instead of using NULL)
30430 * metadata.c (do_mono_metadata_parse_type): use
30431 mono_metadata_parse_type to parse void value.
30433 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
30435 * metadata.c, metadata.h: in the signature and method header store
30436 only the space required for holding the loca vars and incoming arguments.
30438 2001-08-15 Dietmar Maurer <dietmar@ximian.com>
30440 * metadata.c (do_mono_metadata_parse_type): treat void like any
30441 other type (instead of assigning NULL);
30443 2001-08-14 Dietmar Maurer <dietmar@ximian.com>
30445 * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
30447 2001-08-09 Dietmar Maurer <dietmar@ximian.com>
30449 * image.c (do_mono_image_open): added a cache for arrays.
30451 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
30453 * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
30454 decode a single column from a row in a metadata table and changes
30455 to take advantage of it in the typedef locator (gives a nice speed up).
30456 Store offset info for function params.
30458 2001-08-02 Dietmar Maurer <dietmar@ximian.com>
30460 * image.h (MONO_IMAGE_IS_CORLIB): removed
30462 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
30464 * assembly.c: how could mono_assembly_close () had ever worked?
30465 * metadata.c, metadata.h: provide offset info for local vars.
30466 Implement mono_type_size () to take care of alignment as well
30467 as size (it was mono_field_type_size in cli/class.c before).
30469 2001-08-01 Dietmar Maurer <dietmar@ximian.com>
30471 * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
30473 * assembly.h (CORLIB_NAME): set to corlib.dll
30475 * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
30477 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
30479 * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
30480 cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
30481 tokentype.h: massive namespace cleanup.
30483 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
30485 * metadata.h, metadata.c: decode exception clauses when parsing method header.
30487 2001-07-27 Dietmar Maurer <dietmar@ximian.com>
30489 * metadata.c (mono_metadata_free_type): added check for type !=
30490 NULL (void) before calling mono_metadata_free_type()
30492 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
30494 * metadata.h, row_indexes.h: added header with enumerations to use
30495 to index in the columns from tables in metadata and to decode coded
30496 tokens: we should start using this instead of embedding magic numbers
30499 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
30501 * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
30502 Move metadata_t info from cli_image_info_t to MonoImage, where
30503 it's easily accessible. Changed all the uses accordingly.
30504 Added the method and class caches to MonoImage.
30505 * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
30506 and mono_metadata_decode_value () signature to be more consistent
30507 with the other parse functions (and simplify code). Taken advantage
30508 of zero-length array allocation with GCC. Removed reduntant (and
30509 wrong) MonoFieldType struct and use MonoParam instead. Changed
30510 mono_metadata_parse_field_type () to use common code for parsing.
30511 Added mono_metadata_typedef_from_field () and
30512 mono_metadata_typedef_from_method () to lookup a typedef index from a
30513 field or method token.
30514 Pack the MonoRetType structure more tightly (fits in 8 bytes now).
30516 2001-07-23 Miguel de Icaza <miguel@ximian.com>
30518 * metadata.c (mono_metadata_parse_field_type): Implement.
30519 (do_mono_metadata_parse_type): Split engine from
30520 mono_metadata_parse_type, so that we can create smaller structures
30521 for things that just have one pointer to the MonoType (look at
30524 2001-07-20 Miguel de Icaza <miguel@ximian.com>
30526 * metadata.c (mono_metadata_parse_mh): Correct the implementation,
30527 as Jan Gray found out, it is incorrect.
30529 2001-07-18 Miguel de Icaza <miguel@ximian.com>
30531 * assembly.c: Implement asssembly loading. This loads an image
30532 and loads all the referenced assemblies. Come to think of it, we
30533 could always do lazy loading of the assemblies.
30535 * image.c (mono_image_open): Keep loaded images in a hashtable.
30537 * image.h (MonoImage): Add reference count.
30539 2001-07-17 Miguel de Icaza <miguel@ximian.com>
30541 * assembly.c (mono_assembly_open): Keep track of the file name in
30542 case the assembly has no ASSEMBLY table.
30544 * metadata.h: Fixed Paolo's quick hack. Put the documnentation
30547 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
30549 * metadata.c, metadata.h: decode local vars in method header
30550 parse function. Change callers accordingly.
30552 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
30554 * metadata.h, cil-coff.h: protect against multiple inclusion.
30555 Added some new structures to hold information decoded from metadata:
30556 MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
30557 and relevant decoding/free functions.
30558 * metadata.c: implement decoding functions. Add warning for out of bounds
30559 index in mono_metadata_locate(). Implement mono_get_method () to retreive
30560 all the info about a method signature and invocation. Remove check on
30561 uninitialized local var in parse_mh() and fix memory leak.
30563 2001-07-12 Miguel de Icaza <miguel@ximian.com>
30565 * metadata.h: More macros.
30567 * tokentype.h: New file.
30569 Fri Jul 6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
30571 * assembly.c: added a consistency check and initialize
30572 some structures with g_new0().
30573 * metadata.c: fixed a couple more bugs in table size computation
30574 and add other checks for out-of bound access to metadata.
30576 Thu Jul 5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
30578 * metatada.c: fix bugs computing table sizes. Spew a
30579 warning when index in string heap is out of bounds.
30581 2001-07-04 Miguel de Icaza <miguel@ximian.com>
30583 * metadata.h: Add a couple of macros to manipulate tokens.
30585 Tue Jul 3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
30587 * assembly.c: g_free(ii->cli_sections) (and avoid double free of
30588 cli_section_tables).
30590 2001-07-01 Miguel de Icaza <miguel@ximian.com>
30592 * metadata.c (mono_metadata_user_string): New function, provides
30593 access to the UserString heap.
30595 2001-06-27 Miguel de Icaza <miguel@ximian.com>
30597 * metadata.c: Add inline documentation.
30599 2001-06-26 Miguel de Icaza <miguel@ximian.com>
30601 * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
30604 2001-06-22 Miguel de Icaza <miguel@ximian.com>
30606 * typeattr.h: New file, TypeAttribute flags.
30608 2001-06-21 Miguel de Icaza <miguel@ximian.com>
30610 * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
30611 mono_assembly_ensure_section): Section loading code.
30612 (load_section_tables): Load the sections.
30614 * mono/metadata/metadata.c (mono_metadata_locate_token,
30615 mono_metadata_locate): Functions to locate the information
30616 definition given a token or a table and an index.
30617 (mono_metadata_compute_table_bases): New.
30618 (compute_size): New function to compute the sizes of the various
30621 * mono/metadata/metadata.h: Finish listing the different index
30624 * mono/metadata/pedump.c: Improve to dump new information.
30626 2001-06-19 Miguel de Icaza <miguel@ximian.com>
30628 * mono/metadata/metadata.c: Entered all the tables matching
30631 * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2