Sun Jan 16 12:25:22 CET 2005 Paolo Molaro * reflection.c, reflection.h, icall.c: add a function to check if an attribute type is defined for a metadata object. 2005-01-14 Lluis Sanchez Gual * object-internals.h: Added some needed fields from StringBuilder class. * marshal.c: Set the maxCapacity when creating a StringBuilder. 2005-01-13 Zoltan Varga * icall.c (ves_icall_System_Environment_Exit): Suspend all managed threads before shutting down the runtime. * threads.c (mono_thread_suspend_all_other_threads): New helper function. Thu Jan 13 18:16:35 CET 2005 Paolo Molaro * object-internal.h, threads.c: implement stacksize and parameterized thread start functionality (requires matching corlib). Marked broken code for later removal. 2005-01-12 Martin Baulig * class-internals.h (MonoGenericClass): Moved the `initialized' flag to MonoDynamicGenericClass, removed `init_pending'. (MonoGenericInst): Added `is_reference' flag. 2005-01-12 Zoltan Varga * reflection.c (mono_image_create_pefile): Only set the pe_offset inside the MSDOS header. Fixes #71201. * gc.c (mono_gc_cleanup): Handle the case when this is called from the gc thread. (mono_domain_finalize): Ditto. 2005-01-12 Martin Baulig * class.c (mono_get_shared_generic_class): Use the cache for non-dynamic generic classes. * class-internals.h (mono_class_create_generic_2): Removed function prototype, this function is now static inside class.c. * class.c (mono_class_create_generic_2): Made this static, only call it from mono_class_init() and mono_class_setup_parent(). (collect_implemented_interfaces_aux): Call mono_class_init() on the interfaces we collect. (mono_class_setup_vtable): Call mono_class_init (class->parent). 2005-01-11 Zoltan Varga * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make it a real thread handle. * domain-internals.h: Move exvar_offset from MonoJitInfo to MonoJitExceptionInfo, since each catch clause needs its own variable. 2005-01-11 Dick Porter * image.c (mono_pe_file_open): New variant on mono_image_open() that does not set up the CLI metadata; used for FileVersionInfo so it can get the data for windows binaries too. * process.c (process_read_string_block): Don't read off the end of the StringTable block. These both fix bug 70766. Tue Jan 11 15:26:00 CET 2005 Paolo Molaro * gc.c: set some fields to NULL at GC cleanup time. * threads.c: if we quit the main thread, call exit (). 2005-01-11 Zoltan Varga * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32. Mon Jan 10 18:47:28 CET 2005 Paolo Molaro * threads.h, threads.c, object.c: added accessor and settor for main_thread. Handle it specially when exiting from it: wait for other foreground threads to exit. Mon Jan 10 12:06:18 CET 2005 Paolo Molaro * process.c, verify.c: remove some bloat. 2005-01-09 Zoltan Varga * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change the calling convention to cdecl under win32. 2005-01-08 Ben Maurer * object.c (mono_object_get_size): New function to get the size of an object instance. * profiler.c (simple_allocation): Use above. 2005-01-08 Sebastien Pouliot * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by ves_icall_System_AppDomain_getRootDomain (as it's not required to get an appdomain by it's id and we can't assume the root's id is 0). * domain-internals.h: Change the function prototype to match. * icall.c: Change the icall table for AppDomain. 2005-01-08 Miguel de Icaza * locales.c (string_invariant_compare_char): Only compute GUnicodeTypes in the case where we need them. Test for ordinality first and return if so. From the commit: /* * FIXME: here we must use the information from c1type and c2type * to find out the proper collation, even on the InvariantCulture, the * sorting is not done by computing the unicode values, but their * actual sort order. */ Sat Jan 8 19:03:26 CET 2005 Paolo Molaro * loader.c: for P/Invoke methods, allow the "Internal" shared library name to refer to the calling process symbol namespace. 2005-01-07 Sebastien Pouliot * Makefile.am: Add the security manager to the build. * security-manager.c|h: New. Initialization of the security manager. 2005-01-07 Dick Porter * threads.c: * monitor.c: Update thread state during Monitor and WaitHandle waits. Fixes bug 71031. 2005-01-07 Zoltan Varga * reflection.c (property_encode_signature): Correctly handle when the property has no methods. 2005-01-06 Zoltan Varga * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff. * reflection.c (reflection_methodbuilder_from_method_builder): Copy fields from mb, not rmb. Fixes #71017. * marshal.c (emit_ptr_to_str_conv): Add support for ByValTStr -> string conversion. Fixes #71015. * appdomain.c (mono_domain_owns_vtable_slot): New helper function. * mempool.c (mono_mempool_contains_addr): New helper function. 2005-01-05 Zoltan Varga * metadata.c (mono_metadata_compute_size): Fix size calculation of HasSematics encoded fields. * metadata.c (mono_type_to_unmanaged): Improve error message for invalid string marshalling. * metadata.c: Fix warnings. Wed Jan 5 16:17:27 CET 2005 Paolo Molaro * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical profiler support. 2005-01-05 Zoltan Varga * domain.c object.c domain-internals.h: Revert part of r38077 since the keys to proxy_vtable_hash are GCd objects. Fixes running the class lib tests. 2005-01-03 Zoltan Varga * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places, so methods containing these can be AOTed. 2005-01-03 Martin Baulig * loader.c (find_method): Removed the hack for generic instances. (method_from_memberref): If our parent is a generic instance, pass its generic type definition to find_method() and then inflate the method. (mono_get_method_constrained): Pass the generic type definition to find_method() and inflate the method later. * class-internals.h (MonoStats): Added `generic_class_count'. * icall.c (ves_icall_MonoGenericMethod_get_reflected_type): Renamed to ves_icall_MonoGenericMethod_get_ReflectedType(). * reflection.c (mono_custom_attrs_from_params): Don't ignore generic type definitions. 2004-12-30 Zoltan Varga * loader.c icall.c: Fix warnings. 2004-12-29 Zoltan Varga * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of blittable types. Fixes #70864. 2004-12-29 Martin Baulig * icall.c (ves_icall_MonoGenericMethod_get_reflected_type): New interncall. * reflection.c (mono_method_get_object): Create a "System.Reflection.MonoGenericMethod" for inflated methods; don't call mono_get_inflated_method(). * class-internals.h (MonoStats): Added `inflated_method_count_2'. 2004-12-27 Martin Baulig * class-internals.h (MonoMethod): Added `is_inflated' flag. (MonoMethodInflated): Added `inflated' field. * class.c (mono_class_inflate_generic_method): Don't really inflate the method here; just set the `is_inflated' flag in the MonoMethod. (mono_class_get_inflated_method): Actually inflate the method here if it's not already inflated; we use the MonoMethodInflated's new `inflated' field as a cache. 2004-12-26 Martin Baulig * class.c (inflate_generic_class): Moved some code out of inflate_generic_type(). (mono_class_inflate_generic_method): If we're already inflated, inflate the context and use the declaring method; ie. make sure the declaring method of an inflated method is always the generic method definition. (mono_class_create_from_typedef): Create `class->generic_container->context->gclass'. 2004-12-24 Ben Maurer * metadata-internals.h, marshal.c, reflection.c: More MonoGHashTable->GHashTable. * domain-internals.h, class.c: Change MonoGHashTable's into GHashTables for some cases where no gc stuff is used All users: update apis 2004-12-23 Ben Maurer * metadata.c (builtin_types): Make this `const'. Makes this get put into the shareable section. (mono_metadata_init): Casts to make gcc happy. 2004-12-22 Zoltan Varga * gc.c (mono_gc_init): Add a '\n' to the valgrind warning. 2004-12-21 Sebastien Pouliot * icall.c: Added an internal call to retrieve the position and length of assembly-level declarative security attributes (RequestMinimum, RequestOptional and RequestRefuse). This is used by the Assembly class to re-create the corresponding permission sets. Tue Dec 21 14:50:31 CET 2004 Paolo Molaro * marshal.c: fix the stelemref wrapper to be type correct (and faster). 2004-12-20 Ben Maurer * icall.c (ves_icall_System_Object_GetHashCode): There was no need to do key & 0x7fffffff. Hashtable already does this. It just results in longer code. 2004-12-20 Sebastien Pouliot * appdomain.c: Bump corlib version. * class-internals.h: Added RuntimeSecurityFrame to mono_defaults. * domain.c: Add RuntimeSecurityFrame to mono_defaults. * reflection.c|h: Add functions to get declarative security infos (blob position and length) for assemblies, classes and methods. Mon Dec 20 15:28:54 CET 2004 Paolo Molaro * reflection.c: sort the constant table (bug #70693). Mon Dec 20 12:19:37 CET 2004 Paolo Molaro * object-internals.h, threads.c, domain.c: add accessors for the MonoThread and MonoDomain tls keys. 2004-12-18 Martin Baulig * class.c (inflate_generic_type): If we're inflating a generic instance, set `ngclass->context->container = context->container'; ie. the container we inflated into. * metadata.c (mono_metadata_parse_generic_param): Reflect above inflate_generic_type() changes. 2004-12-17 Martin Baulig * class-internals.h (MonoGenericClass): Replaced `MonoType *generic_type' with `MonoClass *generic_class'. Removed `dynamic_info'; if `is_dynamic' is true, we're a `MonoDynamicGenericClass'. (MonoDynamicGenericClass): Derive from `MonoGenericClass'. 2004-12-16 Zoltan Varga * exception.c (mono_exception_from_token): New helper function. 2004-12-15 Zoltan Varga * assembly.c (mono_assembly_load_with_partial_name): Call mono_assembly_loaded before invoking the preload hooks. Fixes #70564. * object-internals.h (MonoThread): Change culture_info and ui_culture_info into an array. * threads.c: Cache culture info objects from more than one appdomain. * threads.c threads-types.h icall.c: Add icalls for manipulating the current UI culture. 2004-12-14 Zoltan Varga * threads.h threads.c appdomain.c: Clear the culture_info field of all threads during unloading if they point to an object in the dying appdomain. 2004-12-13 Ben Maurer * culture-info.h (TextInfoEntry): New struct * object-internals.h: sync with managed * locales.c: fill the `text_info_data' field * culture-info-tables.h: update Mon Dec 13 18:10:50 CET 2004 Paolo Molaro * Makefile.am, monodiet.c: add monodiet, an IL code garbage collector. 2004-12-12 Ben Maurer * icall.c (ves_icall_ModuleBuilder_getToken): Check for null (ves_icall_ModuleBuilder_getMethodToken): Ditto 2004-12-12 Martin Baulig * mono-debug-debugger.c (write_type): If we're an enum and the builtin types have already been initialized, call mono_class_init(). 2004-12-11 Martin Baulig * metadata.c (mono_metadata_load_generic_params): Added `MonoGenericContainer *parent_container' argument; automatically compute `container->is_method'; pass the correct owner to get_constraints(). * reflection.c (compare_genericparam): Sort the GenericParam table according to increasing owners. Fri Dec 10 18:43:46 CET 2004 Paolo Molaro * profiler.c: allow disabling the default profiler. Fri Dec 10 18:42:11 CET 2004 Paolo Molaro * decimal.c, icall.c: allow disabling System.Decimal support. 2004-12-09 Marek Safar * reflection.c: Add support for null attribute arguments. 2004-12-09 Martin Baulig * metadata.h, loader.h: Use `idx' instead of `index' in parameter names to get rid of compiler warnings. 2004-12-08 Zoltan Varga * marshal.c (mono_marshal_get_struct_to_ptr): Call mono_marshal_load_type_info (). Fixes #69625. (mono_marshal_get_ptr_to_struct): Likewise. 2004-12-08 Martin Baulig * mono-debug.h: Bumped version number to 47. * mono-debug-debugger.c (mono_debugger_event_handler, mono_debugger_event): Take two guint64 arguments insteed of a gpointer and a guint32. 2004-12-08 Martin Baulig * debug-mono-symfile.h (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and `address' to `native_offset'. 2004-12-08 Martin Baulig * class.c (mono_class_create_from_typespec): Only inflate if we either have `context->gclass' or `context->gmethod'. 2004-12-08 Zoltan Varga * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field. * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder. * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder. * reflection.c (mono_assembly_get_object): Remove the workaround put in for the release. * appdomain.c: Use the corlib_internal field from MonoAssembly. * appdomain.c: Bump corlib version. * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't be visible in other appdomains. 2004-12-07 Ben Maurer * threads.c: Interlocked inc and dec for longs were messed up, use a KISS based impl for this. Fixes 70234 2004-12-07 Zoltan Varga * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less. Tue Dec 7 10:47:09 CET 2004 Paolo Molaro * icall.c: fix to follow policy not to allow struct arguments in icalls. 2004-12-06 Gonzalo Paniagua Javier * process.c: make the patch that handles spaces in file paths work on mono/windows too. 2004-12-06 Martin Baulig * class.c (mono_class_create_generic): Call mono_class_setup_supertypes() if we're dynamic. (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'. 2004-12-06 Zoltan Varga * object-internals.h: Add new fields to MonoThread. * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version. * icall.c threads-types.h threads.c: Add new icalls. * object-internals.h (MonoThread): Remove unused 'unmanaged' field. * object-internals.h (MonoReflectionAssembly): Sync object layout with managed side. * appdomain.c: Bump corlib version. * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip internal assemblies. Fixes #69181. 2004-12-05 Martin Baulig * class.c (mono_class_inflate_generic_signature): Make this a no-op if `context' is NULL or we don't have any type parameters; also copy `sentinelpos'. 2004-12-04 Zoltan Varga * image.c: Add unbox_wrapper_cache. * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX. * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper function generator. * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary. Fixes #70173. * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache. 2004-12-04 Martin Baulig * loader.c (mono_method_get_signature_full): New public function; like mono_method_get_signature(), but with an additional `MonoGenericContext *' argument. * class.c (mono_class_inflate_generic_signature): Formerly known as inflate_generic_signature(); make this public. 2004-12-04 Martin Baulig * metadata.c (mono_metadata_parse_type_full): Take a `MonoGenericContext *' instead of a `MonoGenericContainer *'. (mono_metadata_parse_array_full): Likewise. (mono_metadata_parse_signature_full): Likewise. (mono_metadata_parse_method_signature_full): Likewise. (mono_metadata_parse_generic_inst): Likewise. (mono_metadata_parse_generic_param): Likewise. (mono_metadata_parse_mh_full): Likewise. (mono_type_create_from_typespec_full): Likewise. 2004-12-03 Martin Baulig * class-internals.h (MonoGenericContainer): Replaced the `MonoGenericContext * pointer with a `MonoGenericContext' structure and made it the first element. 2004-12-03 Martin Baulig * class.c (inflate_generic_type): Set the `context->container' when creating a new MonoGenericContext. (mono_class_inflate_generic_method): Likewise. (mono_class_create_from_typespec): Just use `context->container' to get the container. * loader.c (method_from_methodspec): Set `context->parent' from `context->container' - and if that's a method container, use its parent. Also set the `context->container' when creating a new MonoGenericContext. (mono_get_method_from_token): Use just `context->container' to get the container. * metadata.c (do_mono_metadata_parse_generic_class): Also set `gclass->context->container'. * reflection.c (do_mono_reflection_bind_generic_parameters): Set the `context->container' when creating a new MonoGenericContext. 2004-12-03 Zoltan Varga * reflection.c (compare_genericparam): Sort params with identical owner by their number. Fixes gen-111 on sparc. 2004-12-02 Zoltan Varga * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref around the domain changes. * appdomain.c (mono_domain_unload): Handle the case when the thread calling Unload is itself being aborted during unloading. Fixes #70022. * appdomain.h: Add prototype for mono_install_runtime_cleanup. * marshal.c (emit_thread_interrupt_checkpoint_call): Call checkpoint_func as an icall so it gets a wrapper. (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref () in the cross-appdomain wrappers too. * threads.c (mono_thread_has_appdomain_ref): Make this public. * assembly.c (mono_assembly_open_from_bundle): Fix warning. * reflection.c: Fix some memory leaks. 2004-12-02 Martin Baulig * metadata-internals.h (MonoImage): Removed `generic_class_cache'. * metadata.c (generic_class_cache): New static hashtable. (mono_metadata_lookup_generic_class): New public method. 2004-12-02 Martin Baulig * class.c (mono_class_create_from_typedef): Call mono_class_setup_parent() and mono_class_create_mono_type() before parsing the interfaces. 2004-12-02 Martin Baulig * metadata.c (generic_inst_cache): New static hashtable. (mono_metadata_lookup_generic_inst): New public function. (mono_metadata_inflate_generic_inst): New public function. (mono_metadata_parse_generic_inst): New public function. (do_mono_metadata_parse_generic_class): Use the new mono_metadata_parse_generic_inst() for parsing the `gclass->inst' since this'll also use the cache. * reflection.c (mono_reflection_bind_generic_method_parameters): Use mono_metadata_lookup_generic_inst() to use the new cache. * class.c (inflate_mono_type): Use mono_metadata_inflate_generic_inst() to inflate a generic instance; this'll also use the new cache. * loader.c (method_from_methodspec): Use mono_metadata_parse_generic_inst() and mono_metadata_inflate_generic_inst() rather than parsing it manually, so we can use the new cache. 2004-12-02 Zoltan Varga * threads.c (wait_for_tids): Do not incorrectly free threads when the wait times out. 2004-12-01 Neale Ferguson * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of iter->args based on whether parameters are passed in registers (i.e. MONO_ARCH_REGPARMS is defined) 2004-12-01 Zoltan Varga * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in the exception message. Fixes #70070. (method_from_methodspec): Fix warnings. 2004-12-01 Gonzalo Paniagua Javier * process.c: (complete_path) return the path quoted 2004-12-01 Martin Baulig * class-internals.h (MonoGenericInst): New structure. (MonoGenericClass): Replaced `type_argc', `type_argv' and `is_open' with `MonoGenericInst *inst'. (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and `is_open' with `MonoGenericInst *inst'. 2004-11-30 Martin Baulig Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass. * metadata-internals.h (MonoImage): Renamed `generic_inst_cache' to `generic_class_cache'. * metadata.c (mono_generic_inst_hash): Renamed to mono_generic_class_hash(). (mono_generic_inst_equal): Renamed to mono_generic_class_equal(). (mono_generic_inst_is_valuetype): Renamed to mono_generic_class_is_valuetype(). * class-internals.h (MonoGenericInst): Renamed to MonoGenericClass. (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass. (MonoClass): Renamed `generic_inst' to `generic_class'. (MonoGenericContext): Renamed `ginst' to `gclass'. * object-internals.h (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass. * reflection.c (mono_reflection_generic_inst_initialize): Renamed to mono_reflection_generic_class_initialize(). * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is now known as "System.Reflection.MonoGenericClass". (monogenericinst_icalls): Renamed to monogenericclass_icalls. 2004-11-29 Sebastien Pouliot * class-internals.h: Added a flag field to MonoClass to cache the declarative security attributes actions associated with the class. * domain-internals.h: Added booleans to MonoJitInfo to cache the (class or method level) stack modifiers (Assert, Deny and PermitOnly) applicable to the JITted method. * reflection.c|h: Added functions to extract (as flags) which security actions are available (declaratively) for a method, class or assembly. * metadata.c|h: Added functions to search the declarative security table in the metadata. 2004-11-29 Ben Maurer * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): EXPORTEDTYPES are already in the class name cache, so there is no need to add extra code here to look at them. Just removes a bit of cruft. (ves_icall_System_Environment_get_TickCount): No need for #if WINDOWS. We already have the code in io-layer. 2004-11-28 Martin Baulig * loader.c (method_from_methodspec): Also inflate the `gmethod->mtype_argv'. Fixes gen-112.cs. 2004-11-27 Miguel de Icaza * assembly.c (do_mono_assembly_open): Instead of having a conditional WITH_BUNDLE, incorporate support for bundles here, by having a global `bundles' variable holding a pointer to the actual bundles. (mono_register_bundled_assemblies): New API call used by the bundle code. See mkbundle.1 for details. 2004-11-27 Martin Baulig * object.c (mono_class_vtable): Store the `MonoMethod *' itself in the vtable for generic methods. 2004-11-26 Martin Baulig * metadata.c (mono_metadata_generic_method_hash): New public function. (mono_metadata_generic_method_equal): Likewise. * class-internals.h (MonoGenericContainer): Added `GHashTable *method_hash'. * reflection.c (ReflectionMethodBuilder): Added `MonoGenericContainer *generic_container'. (reflection_methodbuilder_to_mono_method): Don't create a new MonoGenericContainer each time we're called. (mono_reflection_bind_generic_method_parameters): Use `container->method_hash' to cache the results so we don't create a different method if we're called several times with the same arguments. * loader.c (method_from_methodspec): Use the new `container->method_hash' here, too. 2004-11-26 Martin Baulig * class.c (inflate_generic_signature): Correctly compute `res->has_type_parameters'. (mono_class_vtable): Use the `has_type_parameters' flag to determine whether we're a generic method. * metadata.c (mono_metadata_parse_method_signature_full): Likewise. 2004-11-25 Zoltan Varga * object.c (mono_runtime_run_main): Fix a small memory leak. 2004-11-25 Martin Baulig * class.c (set_generic_param_owner): Fixed the loop. 2004-11-25 Martin Baulig * object.c (mono_class_vtable): Don't create any JIT wrappers for generic methods. 2004-11-24 Zoltan Varga * reflection.c: Allow all kinds of whitespace, not just ' ' in type names. Fixes #69787. 2004-11-24 Martin Baulig * class.c (mono_class_create_generic_2): If we don't have a `ginst->parent', inflate `gklass->parent' to get our parent. 2004-11-24 Martin Baulig * reflection.c (compare_genericparam): Correctly sort the GenericParam table; fixes #69779. 2004-11-23 Ben Maurer * reflection.c: When writing a PE file, don't create a huge buffer in memory. Just write the arrays we have to the file. This reduces memory usage. * metadata-internals.h: MonoDynamicStream pefile is no longer used globally. 2004-11-17 Martin Baulig * class.c (mono_class_init): Don't setup `class->parent' for dynamic instances; moved this to mono_class_generic_2(). (mono_class_create_generic): Also set `klass->inited' for dynamic generic instances. (mono_class_create_generic_2): Don't do anything for dynamic generic instances. Set `klass->parent' here and also call mono_class_setup_parent() here. * reflection.c (do_mono_reflection_bind_generic_parameters): Added `MonoType *parent' argument; set `ginst->parent' before calling mono_class_create_generic_2(), so we set the correct parent. Thu Nov 18 17:10:32 CET 2004 Paolo Molaro * reflection.c: allow getting attributes from ModuleBuilder (used by ikvm). 2004-11-17 Martin Baulig * class.c (mono_class_create_from_typedef): If a type parameter is inherited from an outer class, set its owner to that class. 2004-11-17 Atsushi Enomoto * reflection.c: (mono_image_create_pefile): Don't use NULL argument for (int*) written size. This fixes bug #69592. 2004-11-15 Sebastien Pouliot * icall.c: Added IsAuthenticodePresnet internal call. * image.c|h: New function that check a MonoImage for an Authenticode signature in the certificate PE data directory. * security.c|h: New internal call to ask the runtime if an Authenticode signature seems referenced in the PE header. 2004-11-15 Zoltan Varga * icall.c (ves_icall_type_isprimitive): Native int is a primitive type. * reflection.c (mono_image_create_pefile): Free the assembly streams after writing out the assembly file. * object.c (mono_runtime_run_main): Fix small memory leak. * icall.c (ves_icall_Type_GetPropertiesByName): Add support for property access modifiers. Fixes #69389. Mon Nov 15 11:54:22 CET 2004 Paolo Molaro * domain.c, object.c, object-internals.h, domain-internals.h, object.h, marshal.c: keep dynamic code info per domain. 2004-11-15 Martin Baulig * class.c (mono_type_get_name_recurse): Put type arguments in `[',`]' instead of in `<','>'. Thanks to Atsushi for the patch, see bug #68387. 2004-11-15 Martin Baulig * class.c (mono_type_get_name_recurse): Added `include_ns' flag. (mono_class_setup_vtable): When computing `the_cname' for a generic instance, don't include the namespace since we'd otherwise add it twice. 2004-11-15 Martin Baulig * class.c (mono_class_create_generic): Changed return type to void. (mono_class_create_generic_2): New public function; setup `class->method', `class->field' and `class->interfaces' here instead of in mono_class_init(). * class.h (mono_class_create_generic): Moved to class-internals.h. 2004-11-14 Ben Maurer * reflection.c (mono_image_create_pefile): take a file HANDLE. rather than writing to memory, write to this file. Right now, we are just writting into a buffer, and copying that. However we can avoid the buffer later. (mono_dynamic_stream_reset): new function * icall.c, object-internals.h: update for the above. 2004-11-13 Ben Maurer * reflection.c: Remove *_ATOMIC macros. We really shouldn't have been using gc'd memory. First it is slower, unlikely the comment in the source code said, secondly, it increases our footprint to do it in the gc. * icall.c (WriteToFile): rename of getDataChunk. Rewrite the method so that it does not have to copy to managed code. 2004-11-12 Zoltan Varga * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY. 2004-11-12 Martin Baulig * reflection.c (mono_image_create_token): Allow generic method definitions here, since they may appear in an `.override'; see gen-98/gen-99 for an example. 2004-11-11 Zoltan Varga * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes #69365. * marshal.c (mono_string_to_ansibstr): Make g_error messages more descriptive. 2004-11-11 Martin Baulig * class.c (mono_class_setup_vtable): In an explicit interface implementation, the method name now includes the arity. 2004-11-10 Zoltan Varga * object.c (mono_array_full_copy): Fix warning. 2004-11-10 Lluis Sanchez Gual * appdomain.c: Removed look_for_method_by_name(). Use the new method mono_class_get_method_from_name() instead. * class-internals.h: Added two new types of wrappers. Added MonoRemotingTarget enum. Added new trampoline function type, which takes an additional MonoRemotingTarget value as parameter, so it is possible to request a trampoline for a specific target. * class.c: Added new mono_class_get_method_from_name() method. * class.h: In MonoRemoteClass, we can have now to vtables, one for general remoting sinks and one specific for cross domain calls. * debug-helpers.c: Added new wrapper names. * icall.c: Use the new method mono_remote_class_vtable() to get the vtable of a remote class. * image.c: Porperly delete value objects form the remoting invoke hashtable. * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together with several other methods (mono_marshal_get_xappdomain_dispatch, mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception, and others) can generate a fast remoting wrapper for cross domain calls. More information can be found in docs/remoting. Other changes: Removed mono_find_method_by_name, and used mono_class_get_method_from_name instead. Remoting wrappers are now stored in a MonoRemotingMethods struct, which is stored in the remoting invoke hashtable. * marshal.h: published the new method for getting the xdomain wrapper, and also added a method for getting the adequate wrapper for a given method and target. * object-internals.h, object.c: Added a couple of methods for capying and cloning arrays. Modified mono_install_remoting_trampoline, which takes the new remoting trampoline that has a remoting target as parameter. mono_class_proxy_vtable now also takes a remoting target as parameter, and will return the most suitable vtable for the target. Added mono_remote_class_vtable, which returns the vtable of a remote class (which can be the normal remoting vtable or the xdomain vtable). * threads.c: the xdomain invoke and dispatch wrappers must also be protected against interruptions. 2004-11-09 Gonzalo Paniagua Javier * icall.c: use memmove in BlockCopyInternal when the source and destination arrays are the same. 2004-11-09 Martin Baulig * class-internals.h (MonoGenericContainer): Removed `method' and `signature', replaced them with `is_method' and `is_signature' flags. Added `context'. * loader.c (method_from_methodspec): Take a `MonoGenericContext *' instead of a `MonoGenericContainer *'. * metadata.c (mono_metadata_generic_param_equal): Removed the hack for dynamic type parameters. (mono_metadata_load_generic_params): Setup `container->context'. * reflection.c (mono_reflection_setup_generic_class): Setup `tb->generic_container->context'. (do_mono_reflection_bind_generic_parameters): Use mono_class_inflate_generic_type() to correctly inflate types, rather than using our own hack just for MONO_TYPE_VAR. 2004-11-09 Martin Baulig * class.c (mono_class_inflate_generic_method): Small fix; don't crash here. * icall.c (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types. (ves_icall_Type_get_IsGenericTypeDefinition): Likewise. (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise. (ves_icall_Type_BindGenericParameters): Likewise. (ves_icall_Type_get_IsGenericInstance): Likewise. (ves_icall_Type_GetGenericParameterPosition): Likewise. (ves_icall_MonoType_get_HasGenericArguments): Likewise. (ves_icall_MonoType_get_IsGenericParameter): Likewise. (ves_icall_MonoType_get_DeclaringMethod): Likewise. 2004-11-09 Zoltan Varga * assembly.c (mono_assembly_names_equal): Reenable the comparison of assembly versions and public key tokens. Fixes #69113. Tue Nov 9 17:34:05 CET 2004 Paolo Molaro * metadata.c: fix bug introduced with the type cache changes on 2004-11-06. Tue Nov 9 17:26:29 CET 2004 Paolo Molaro * metadata.h, metadata.c, domain-internals.h, marshal.c: include the MonoClass pointer instead of the token in exception clauses. * reflection.c: updates for the above and make the code not depend on the structure of MonoExceptionClause. 2004-11-08 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Add support for dynamic assemblies. Fixes #69114. * loader.c (mono_method_get_header): Handle icalls and pinvoke methods. 2004-11-07 Ben Maurer * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke since most only those methods use it. the code member of MonoMethodPInvoke was dead, so that can be removed too. Also, remove inline_count (again, not used), and move slot so that it can share bits with some other flags. This saves 8 bytes in the structure and gives us about 50 kb back for mcs helloworld.cs * *.[ch]: Do naming changes for the above. * loader.c (mono_method_get_header): Lazily init the header on first access. (mono_get_method_from_token): don't init the header here (mono_free_method): the header may never be allocated Overall, this saves 150 kb of unmanaged allocations for mcs helloworld.cs. That accounts for 10% of the unmanaged memory at runtime. * loader.c, loader.h (mono_method_get_header): new accessor. * *.[ch]: use the above method. Prepares us to lazily load the header. * *.[ch]: Clean up all the pesky warnings. gcc now only gives three warnings, which are actual bugs (see 69206). * class-internals.h (MonoMethod): Remove remoting_tramp. It is unused. Saves a cool 4 bytes / method. 2004-11-06 Ben Maurer * metadata.c (builtin_types): Add types for System.Object here. (mono_metadata_parse_type_full): Cache MonoType*'s that are for a class or valuetype from klass->this_arg or klass->byval_arg. On mcs for a hello world, this gets us down from 21836 MonoType's to 14560. (mono_metadata_free_type): Account for the above change. 2004-11-06 Zoltan Varga * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an exception instead of asserting if name is null. (ves_icall_System_AppDomain_GetData): Ditto. 2004-11-05 Zoltan Varga (ves_icall_get_enum_info): Avoid crash when called on a non-finished EnumBuilder. * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): Return NULL when the domain does not have entry_assembly set. * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): Add a 'resource_modules' argument. (ves_icall_type_GetTypeCode): Fix typecode of byref types. * reflection.c (mono_reflection_create_runtime_class): Move setting of wastypebuilder here, so mono_get_type_object () returns a MonoType for enums too. * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior. (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len): Throw an ArgumentNullException if 'ptr' is null. * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic assemblies here. Fixes #69020. 2004-11-05 Geoff Norton * reflection.c (build_compressed_metadata): Fix the previous patch for big endian systems. GUINT32_FROM_LE isn't needed on strlen and was overwriting the stack. 2004-11-04 Zoltan Varga * assembly.c (mono_assembly_names_equal): Allow a match if one of the cultures is false. Fixes #69090. * reflection.c (build_compressed_metadata): Fix invalid memory read detected by valgrind. * reflection.c (mono_reflection_get_type): Avoid triggering a TypeResolve multiple times for the same type. Fixes #65577. 2004-11-04 Ben Maurer * marshal.c: Avoid using ldftn to call managed functions. It is much slower than just a call. * reflection.c (mono_module_get_object): free the basename we allocate here from glib. * reflection.c (ensure_runtime_vtable): make sure to free overrides. Also, we were allocating an array of MonoMethod not an array of MonoMethod*. * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here. * image.c (mono_image_close): free image->guid here. 2004-11-02 Zoltan Varga * reflection.c: Fix some spec conformance issues with the PE file structures so mcs compiled apps run on the Net 2.0 beta. 2004-11-01 Zoltan Varga * string-icalls.c (ves_icall_System_String_ctor_encoding): Implement this. Fixes #67264. * debug-helpers.h debug-helpers.c marshal.c: Move mono_find_method_by_name to debug-helpers.c. 2004-10-31 Zoltan Varga * object.c (mono_release_type_locks): type_initialization_hash is a GHashTable. * reflection.c object.c object-internals.h: Fix warnings. * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties without accessors. Fixes #61561. * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit application base from the root domain if not set. Fixes #65641. (mono_runtime_init): Fix warning. 2004-10-29 Gonzalo Paniagua Javier * appdomain.c: call mono_thread_pool_init. * threadpool.[ch]: new mono_thread_pool_init that sets the max. number of worker threads based on the number of CPUs and the environment variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25) for non-windows (windows) systems. 2004-10-27 Chris Toshok * mono-debug-debugger.c (write_class): don't call mono_class_init here, as even with the check for (!klass->init_pending), we get into a situation where we're hitting cycles in class initialization. Fixes #68816. 2004-10-25 Zoltan Varga * image.c: Avoid overwriting values in the loaded_images_hash when an assembly is loaded multiple times. Fixes #61152. * assembly.c (mono_assembly_names_equal): Compare the cultures as well, so multiple satellite assemblies for the same name can be loaded. Fixes #68259. * mono_domain_assembly_preload: Actually return the loaded assembly, not NULL. * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types. (ves_icall_type_is_assignable_from): Ditto. Fixes #68582. * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so pending finalizers are not invoked after the appdomain has been unloaded. Fixes #67862. 2004-10-22 Martin Baulig * mono-debug-debugger.c (mono_debugger_runtime_invoke): Don't box valuetypes. 2004-10-22 Chris Toshok * mono-debug-debugger.c (do_write_class): handle .cctors too, and don't hide private methods. 2004-10-22 Sebastien Pouliot * icall.c: Allows the runtime to "share" (when known) the public key token of an assembly. This avoid the need to recalculate the token (from the public key) in managed code. 2004-10-21 Chris Toshok * debug-helpers.c (append_class_name): argh, revert last patch. 2004-10-21 Chris Toshok * debug-helpers.c (append_class_name): use '+' as the delimiter, not '/', so that it matches what the debugger uses to look up methods. 2004-10-21 Martin Baulig * mono-debug-debugger.c (mono_debugger_throw_exception): New public method; this is called each time an exception is thrown and allows the debugger to use exception catch points. 2004-10-21 Martin Baulig * mono-debug-debugger.c (mono_debugger_handle_exception): Write the stack pointer and the exception object in some struct and pass that to the debugger. 2004-10-21 Chris Toshok * mono-debug-debugger.c (do_write_class): add instance/static event support. We don't expose "raise" or "other" yet. (event_is_static): new method. 2004-10-20 Bernie Solomon * mono-debug-debugger.c (mono_debugger_handle_exception): Remove bogus return value for fussy compilers. 2004-10-20 Martin Baulig * mono-debug-debugger.c (mono_debugger_unhandled_exception): Added `gpointer stack' argument. (mono_debugger_handled_exception): Likewise. 2004-10-20 Martin Baulig * mono-debug-debugger.h (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_EXCEPTION. * mono-debug-debugger.c (mono_debugger_handle_exception): New public function to send the debugger a notification for an exception and inform it about a catch/finally clause. 2004-10-19 Zoltan Varga * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really fix 2.95 build. * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95. 2004-10-18 Zoltan Varga * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is marshalled as [In,Out]. Fixes #58325. 2004-10-14 Zoltan Varga * reflection.c (mono_method_body_get_object): Implement some fields. 2004-10-12 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): Small fix, correctly retrieve our parent from a generic instance. 2004-10-12 Martin Baulig * metadata.c (mono_metadata_generic_param_equal): We always have an owner. * class.c (mono_class_from_generic_parameter): We need to have an owner. (my_mono_class_from_generic_parameter): Likewise. * reflection.c (mono_reflection_setup_generic_class): Renamed to mono_reflection_create_generic_class() and added a new mono_reflection_setup_generic_class(). (mono_reflection_initialize_generic_param): If we're a nested generic type and inherited from the containing class, set our owner to the outer class. 2004-10-11 Zoltan Varga * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall. * reflection.c (mono_method_body_get_object): New function to create a MethodBody object. * object-internals.h object.h: Add MonoReflectionMethodBody structure. 2004-10-11 Martin Baulig * metadata.c (_mono_metadata_type_equal): Renamed to do_mono_metadata_type_equal() and made static. 2004-10-11 Martin Baulig * appdomain.c: Bump corlib version number to 28. 2004-10-10 Martin Baulig * class-internals.h (MonoGenericInst): Added `MonoGenericContainer *container'. (MonoGenericMethod): Likewise. (MonoGenericContext): Likewise. (MonoGenericParam): Added `MonoGenericContainer *owner'. * metadata.c (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument. (do_mono_metadata_parse_generic_inst): Likewise. (mono_metadata_parse_type_full): New public method. This is the actual mono_metadata_parse_type() implementation - with an additional `MonoGenericContainer *' argument. (mono_metadata_parse_array_full): Likewise. (mono_metadata_parse_signature_full): Likewise. (mono_metadata_parse_method_signature_full): Likewise. (mono_metadata_parse_mh_full): Likewise. (mono_type_create_from_typespec): Likewise. (mono_metadata_interfaces_from_typedef_full): New public method; this is similar to the other _full() methods, but we take a `MonoGenericContext *' since we have to pass it to mono_class_get_full(). (mono_metadata_parse_generic_param): Take an additional `MonoGenericContainer *' argument and lookup the MonoGenericParam from that container. (mono_metadata_generic_param_equal): New static method to compare two type parameters. (_mono_metadata_type_equal): New static method; takes an additional `gboolean signature_only' argument - if true, we don't compare the owners of generic parameters. (mono_metadata_signature_equal): Call _mono_metadata_type_equal() with a TRUE argument - do a signature-only comparision. * loader.c: Use the new _full() methods and pass the MonoGenericContainer to them. * object-internals.h (MonoReflectionTypeBuilder): Added `MonoGenericContainer *generic_container' field. (MonoReflectionMethodBuilder): Likewise. 2004-10-08 Zoltan Varga * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special case initial images of dynamic assemblies. * reflection.c (mono_image_basic_init): Set 'initial_image' field. * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field. * reflection.c (mono_reflection_event_builder_get_event_info): Fix length of event->other array. (typebuilder_setup_events): Ditto. * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to 'assembly_by_name' and add an 'assemblies' list. * assembly.h assembly.c: Add a new search hook for determining whenever an assembly is already loaded. Use this instead of searching in the loaded_assemblies list. * domain.c appdomain.c: Implement the new search hook so loaded assemblies are now scoped by appdomain. Fixes #67727. 2004-10-07 Zoltan Varga * threads.c (mono_thread_attach): Initialize synch_lock field so mono_thread_detach works again. * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with 'lib' too. Fixes #63130. 2004-10-06 Jackson Harper * culture-info-tables.h: regenerated. 2004-10-06 Zoltan Varga * icall.c (ves_icall_Type_GetInterfaces): Include interfaces implemented by other interfaces in the result. Fixes #65764. * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Handle unloadable modules without crashing. * image.c (load_modules): Revert the previous patch since modules must have a fixed index inside the array. * image.c (load_modules): Don't include native modules in the modules array. 2004-10-05 Zoltan Varga * reflection.h: Add param_defaults field. * reflection.c: Add support for parameter defaults in dynamic methods. Fixes #64595. * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of an empty string when a type has no namespace. Fixes #64230. 2004-10-04 Sebastien Pouliot * tabledefs.h: Added "internal" security actions to support non-CAS permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. Note: they do not seems to be used anymore in 2.0 (new metadata format) 2004-10-04 Zoltan Varga * icall.c (ves_icall_InternalInvoke): Throw an exception when calling constructor of abstract class. Fixes #61689. 2004-10-04 Martin Baulig * class-internals.h (MonoGenericContainer): New type. (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with `MonoGenericContainer *generic_container'. (MonoClass): Replaced `gen_params' and `num_gen_params' with `MonoGenericContainer *generic_container'. * metadata.c (mono_metadata_load_generic_params): Return a `MonoGenericContainer *' instead of a `MonoGenericParam *'; removed the `num' argument. 2004-10-03 Zoltan Varga * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support for dynamic images. * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and machine fields. * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields. * reflection.c: Save pe_kind and machine values into the generated image file. * appdomain.c: Bump corlib version number. * object-internals.h: Reorganize layout of LocalBuilder. * class-internals.h class.c (mono_class_get_implemented_interfaces): New helper function. * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the created MonoType for dynamic types. Fixes #66180. 2004-10-02 Ben Maurer * threadpool.c: the ares hashtable needs a critical section around it. this prevents some nasty segfaults 2004-10-02 Massimiliano Mantione * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see bug 67324). 2004-09-30 Zoltan Varga * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field. 2004-09-30 Lluis Sanchez Gual * image.c: Always canonicalize image file names, to avoid loading the same assembly twice when referenced using a relative path. 2004-09-30 Zoltan Varga * marshal.h marshal.c icall.c: Fix bugs in previous patch. * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall. * marshal.c: Fix warnings. 2004-09-29 Geoff Norton * marshal.c (mono_ftnptr_to_delegate): This method was improperly attempting to marshal the delegate_trampoline as the method_addr. This patch has a static hashtable of marshalled delegates so that we can map delegate_trampoline addresses back to delegates. This allows a delegate passed to managed code to be passed back into native code. Fixes #67039 2004-09-28 Zoltan Varga * icall.c: Add GetFunctionPointerForDelegateInternal icall. * reflection.c (method_encode_code): Align method headers properly. Fixes #66025. 2004-09-28 Lluis Sanchez Gual * marshal.c: In the runtime invoke wrapper, reset the abort exception if it is cached. This avoids the automatic rethrowal of the exception after the catch of the wrapper. Also check for pending interruptions before calling the managed method. This is done using the new method emit_thread_force_interrupt_checkpoint, since the normal checkpoint method is ignored when running the invoke wrapper. * object.c: If the abort exception is rethrown, set the abort_exc field of the thread, so it will be rethrown aftere every catch. * threadpool.c: Only run an interruption checkpoint if what has been requested is a stop of the thread (aborts will be ignored). * threads.c: By default, a thread will now never be interrumped while running the runtime invoke wrapper (this ensures that runtime_invoke will always return to the caller if an exception pointer is provided). There is a new special method mono_thread_force_interruption_checkpoint() to force an interruption checkpoint even if running a protected wrapper, which is used by the same runtime invoke wrapper to do a check at a safe point. 2004-09-28 Lluis Sanchez Gual * object.c, object-internals.h: Implemented mono_release_type_locks, which releases the cctor locks held by a thread. * threads.c, threads.h: In thread_cleanup, release cctor locks held by a thread. Added mono_thread_exit() method to be used to safely stop a thread. 2004-09-28 Raja R Harinath * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Move null check before dereference. Avoid indexing beyond the end of the 'modules' array. 2004-09-28 Raja R Harinath * metadata-internals.h (MonoImage): Add module_count field. * image.c (load_modules): Set image->module_count. (mono_image_load_file_for_image): Use image->module_count. * reflection.c (mono_image_load_module): Append to image->modules array of dynamic assembly. (mono_module_get_object): Fix loop to actually increment index. Use image->module_count. * assembly.c (mono_assembly_load_references): Use image->module_count. * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Likewise. 2004-09-28 Zoltan Varga * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Avoid assert on generic types. 2004-09-26 Zoltan Varga * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall. * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field. * reflection.c (mono_reflection_marshal_from_marshal_spec): New function to convert a MarshalSpec structure to its managed counterpart. * reflection.c: Fix warnings. * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl field. * icall.c (mono_create_icall_signature): Fix build. 2004-09-25 Zoltan Varga * icall.c: Add MakePointType icall. * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix warnings. 2004-09-25 Gonzalo Paniagua Javier * threadpool.c: reuse allocated slots in the queue. 2004-09-24 Zoltan Varga * object-internals.h (MonoReflectionDllImportAttribute): New structure. * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset. * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert previous change. * tabledefs.h: Add constants for pinvoke attributes BestFit and ThrowOnUnmappableChar. * icall.c (ves_icall_Type_GetPacking): New icall. 2004-09-24 Martin Baulig * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall. 2004-09-23 Gonzalo Paniagua Javier * appdomain.c: (mono_domain_set): allow setting a domain that is being unloaded. (mono_domain_unload): invoke the DomainUnload callbacks in the domain being unloaded. 2004-09-23 Zoltan Varga * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to the GetCustomAttributes icall. 2004-09-23 Martin Baulig * object-internals.h (MonoReflectionGenericParam): Replaced 'has_ctor_constraint', `has_reference_type' and `has_value_type' with `guint32 attrs'. 2004-09-23 Martin Baulig * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall. 2004-09-23 Martin Baulig * object-internals.h (GenericParameterAttributes): New enum. 2004-09-23 Zoltan Varga * object-internals.h (MonoEventInfo): Add 'other_methods' field. * class.c (init_events): Fill out event->other field. * class.c: Fix warnings. * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field. Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro * class-internals.h, icall.c, loader.c, loader.h: added a faster stack walk which doesn't supply the IL offset. 2004-09-22 Martin Baulig * reflection.c (mono_reflection_setup_internal_class): If we're System.ValueType, System.Object or System.Enum, set `klass->instance_size' and create the vtable. (mono_reflection_create_internal_class): If we're an enum type, get the base class from our current corlib. 2004-09-22 Zoltan Varga * reflection.h (MonoResolveTokenError): New type. * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New icall. * icall.c: Add an 'error' argument to the ResolveToken icalls. 2004-09-22 Lluis Sanchez Gual * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute. Support also calling constructors, but only for already allocated objects. 2004-09-17 Geoff Norton * reflection.c (type_get_qualified_name): If the klass is null return the typename to avoid a NullRefEx. (encode_cattr_value): Get the qualified name of the boxed type, not the underlying enumtype. Fixes #62984. 2004-09-21 Zoltan Varga * marshal.c: Fix problems with previous checkin. 2004-09-21 * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows. * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free. 2004-09-21 Geoff Norton * icall.c (ves_icall_MonoType_GetElementType): GetElementType should only return a type for pointers, arrays, and passbyref types. Fixes bug #63841. 2004-09-21 Martin Baulig * domain.c (mono_debugger_check_runtime_version): New public function. * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall. 2004-09-20 Sebastien Pouliot * reflection.c: Added missing sort to the declarative security attributes table. MS implementation stops seeing the attributes if the token number regress in the table (as shown by ildasm and permview). 2004-09-20 Zoltan Varga * object-internals.h (MonoReflectionModule): Add 'token' field. * reflection.c (mono_reflection_get_token): Add support for Module and Assembly. (mono_module_get_object): Set 'token' field. (mono_module_file_get_object): Set 'token' field. * icall.c: Add new Assembly and Module icalls. * appdomain.c: Bump corlib version. 2004-09-19 Zoltan Varga * loader.h loader.c class.h class.c: Add helper functions for obtaining tokens of metadata objects. * reflection.h reflection.c (mono_reflection_get_token): New function to obtain the token of a metadata object. * icall.c: Add icalls for MetadataToken and ModuleHandle methods. 2004-09-17 Zoltan Varga * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well. * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling. 2004-09-16 Sebastien Pouliot * appdomain.c: Bumped MONO_CORLIB_VERSION to 25. * object-internals.h: Added 3 MonoArray* members to MonoReflection AssemblyBuilder to access the permissions set in the class lib. * reflection.c: Added security attributes encoding step in mono_image_build_metadata. * tabledefs.h: Added new security actions defined in 2.0: LinkDemandChoice, InheritanceDemandChoice and DemandChoice. 2004-09-16 Lluis Sanchez Gual * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the macro parameter. 2004-09-16 Lluis Sanchez Gual * locales.c: nullify the ICU_collator member of CompareInfo when it is finalized. There where random SIGSEVs at program termination, when an object being finalized was trying to do a string comparison and the current culture was already finalized. 2004-09-16 Gonzalo Paniagua Javier * threads.c: call thread_cleanup before finishing the thread if we get there. 2004-09-16 Zoltan Varga * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all assemblies from the parent. Fixes #65665. 2004-09-15 Zoltan Varga * metadata.c (mono_metadata_parse_type): Fix parsing of custom modifiers. 2004-09-14 Bernie Solomon * reflection.h: add prototype for mono_get_dbnull_object * reflection.c: add prototypes for get_default_param_value_blobs and mono_get_object_from_blob for fussier compilers 2004-09-14 Lluis Sanchez Gual * object.c: Added a "done" flag to TypeInitializationLock. This avoids false deadlock checks in class initialization. 2004-09-13 Zoltan Varga * image.c (mono_image_addref): Fix comment. * metadata.c (mono_metadata_parse_type): Avoid memory allocations if possible. 2004-09-12 Jambunathan K * reflection.c (mono_param_get_objects): Modified to return ParameterInfo.DefaultValue object. (get_default_param_value_blobs): (mono_get_object_from_blob): (mono_get_dbnull_object): New helper routines. * object.c (mono_get_constant_value_from_blob): New helper routine carved out from get_default_field_value () * object-internals.h (mono_get_constant_value_from_blob): Added function declaration. 2004-09-11 Zoltan Varga * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load referenced assemblies. Fixes #62135. * exception.h exception.c (mono_get_exception_file_not_found2): New helper function. 2004-09-10 Zoltan Varga * class.h class.c: Add mono_type_get_underlying_type (). 2004-09-09 Geoff Norton * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix GetTypes() to support dynamically created assemblies. 2004-09-09 Zoltan Varga * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO. * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in previous patch. * reflection.h reflection.c loader.c: Allow dynamic construction of pinvoke methods. Fixes #65571. * reflection.c (mono_reflection_get_type): Revert previous change since it causes regressions. 2004-09-08 Martin Baulig * class.c (class_compute_field_layout): Don't call mono_class_layout_fields() for open generic instances. 2004-09-08 Bernie Solomon * threads.c appdomain.c: fix typo in GC macro 2004-09-08 Gonzalo Paniagua Javier * threads.c: don't call mono_thread_detach() in start_wrapper(), avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379. 2004-09-08 Zoltan Varga * image.c (mono_image_close): Applied patch from vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an assembly is loaded multiple times from data. * image.c (mono_image_open): Fix warning. 2004-09-07 Zoltan Varga * reflection.h reflection.c icall.c: Only call TypeResolve handlers once. Fixes #58334. * reflection.c (mono_reflection_create_runtime_class): Initialize klass->nested_classes. Fixes #61224. Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro * threads.c: sched_yield() on exit, to allow threads to quit. 2004-09-07 Zoltan Varga * object.c (mono_unhandled_exception): Remove leftover debug code. 2004-09-07 Atsushi Enomoto * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none 2004-09-07 Zoltan Varga * marshal.c (emit_marshal_array): Really null terminate string arrays. * marshal.c (emit_marshal_string): Fix freeing of unicode strings. 2004-09-06 Zoltan Varga * marshal.c (emit_marshal_array): Null terminate string arrays. * marshal.c (raise_auto_layout_exception): Fix warning. * reflection.c (mono_param_get_objects): Initialize the default value with DBNull.Value, not null. Fixes #62123. 2004-09-01 Miguel de Icaza * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and throw an exception with a cute explanation. 2004-09-06 Dick Porter * process.c (ves_icall_System_Diagnostics_Process_Start_internal): Close the new process's thread handle, as we don't use it. The handle stays around forever otherwise. 2004-09-06 Zoltan Varga * object.c (arith_overflow): Fix warning. * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged calling conventions in method refs. Fixes #65352. * reflection.c: Fix warnings. 2004-09-06 Ben Maurer * icall.c: Add a new icall for Array.Clear 2004-09-06 Ben Maurer * object.c: When allocating an array, we have to throw an overflow exception if any of the lengths are < 0. 2004-09-06 Zoltan Varga * marshal.h marshal.c: Free unmanaged memory allocated by managed code properly. Also move implementation of string array marshalling to managed code. Fixes #42316. 2004-09-05 Gonzalo Paniagua Javier * assembly.c: provide more information when loading an assembly fails. 2004-09-04 Gonzalo Paniagua Javier * filewatcher.c: don't expect the development fam package to be installed. 2004-09-03 Zoltan Varga * marshal.c: Make a copy of the signature cookie since it will be freed by the caller. * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch. * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks. * metadata.c (mono_metadata_free_marshal_spec): New function to free marshal specs. * marshal.c: More refactoring. * marshal.c: Refactor the mono_marshal_get_native_wrapper function into smaller functions. 2004-09-03 Lluis Sanchez Gual * object.c: In mono_message_invoke, fill the output parameter array after calling the managed method (it was done before the call). This fixes bug #59299. 2004-09-02 Zoltan Varga * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0 as well. 2004-09-02 Martin Baulig * class.c (mono_class_instance_size): Don't allow generic type definitions or open generic instances. (mono_class_array_element_size): If we're a value type, call mono_class_instance_size() on the original class. * metadata.c (mono_type_size, mono_type_stack_size): Correctly handle generic instances. * mono-debug-debugger.c (write_type): Handle generic instances like classes. 2004-09-02 Zoltan Varga * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if the allocation request fails. Fixes #65089. * object.c (mono_runtime_free_method): Do not call mono_free_method. * object.c (mono_runtime_free_method): New function to free a dynamic method. * marshal.c (mono_delegate_free_ftnptr): New function to free the delegate trampoline. * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper with hasthis as dynamic, * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall. * domain.c (mono_jit_info_table_remove): New function to remove an entry from the jit info table. * class-internals.h (MonoMethod): Add 'dynamic' field. * loader.c: Fix warnings. 2004-09-01 Martin Baulig * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock() instead of mono_debugger_lock() because the latter one is a no-op unless running in the debugger. 2004-09-01 Zoltan Varga * class.c (class_compute_field_layout): Classes with auto-layout or reference fields are not blittable. 2004-09-01 Dick Porter * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use mono_image_get_filename() to get the assembly location. * icall.c: * metadata.h: Fix compile warnings 2004-09-01 Zoltan Varga * class.c (class_compute_field_layout): System.Object is blittable. * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes as in/out. Fixes #59909. 2004-09-01 Martin Baulig * metadata.h (MONO_TYPE_ISREFERENCE): Call mono_metadata_generic_inst_is_valuetype() if we're a generic instance to check whether our underlying type is a reference type. 2004-09-01 Martin Baulig * metadata.c (mono_type_size): If we're a generic instance, call mono_class_value_size() for value types. 2004-08-31 Zoltan Varga * marshal.c: Implement more custom marshalling functionality. Fixes #64915. Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro * mono-debug.c, debug-mono-symfile.c: add some locking love. 2004-08-30 Zoltan Varga * domain-internals.h domain.c: Add a per-domain jump trampoline hash. * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal. * icall.c: Fix some warnings. * threads.c (abort_appdomain_thread): Fix unref errors. (mono_thread_current): Fix THREAD_DEBUG define. 2004-08-29 Zoltan Varga * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning. * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall. 2004-08-28 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Add support for byref string arrays. 2004-08-28 Martin Baulig * metadata.c (mono_metadata_generic_inst_is_valuetype): New public function. * metadata.h (MONO_TYPE_ISSTRUCT): Call mono_metadata_generic_inst_is_valuetype() if we're a generic instance to check whether our underlying type is a valuetype. 2004-08-26 Zoltan Varga * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes #63768. 2004-08-25 Martin Baulig * loader.c (mono_get_method_from_token): Abstract methods can also be generic and thus have type parameters. * metadata-internals.h (MonoDynamicImage): Added `GPtrArray *gen_params'. * reflection.c (mono_image_get_generic_param_info): Don't create a metadata row, just add an entry to the `gen_params' array. (build_compressed_metadata): Sort the `gen_params' array and then actually create the metadata. 2004-08-25 Gonzalo Paniagua Javier * threadpool.c: remove unneeded 'if' around mono_monitor_enter. 2004-08-25 Zoltan Varga * debug-helpers.c: Handle MONO_TYPE_GENERICINST. 2004-08-24 Martin Baulig * class.cs (mono_class_is_subclass_of): Like an interface, a generic instance also derives from System.Object. 2004-08-23 Zoltan Varga * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and custom modifiers to be in any order. Fixes #61990. 2004-08-20 Zoltan Varga * object.c: Register mono_object_new_fast icall. * object.c (mono_class_get_allocation_ftn): Return to calling mono_object_new_fast, since it seems faster to compute the object size in unmanaged code than passing it as a parameter. * object.c (mono_class_get_allocation_ftn): Add marshalbyref case. * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register this function with Boehm as the oom handler, so we don't have to check the result of GC_malloc. * object.c: Remove checks for oom. * object.h object.c (mono_class_get_allocation_ftn): New function to return the icall which can be used to allocate an instance of a given class. * object.c: Handle common allocation requests using GC_gcj_fast_malloc. * class-internals.h: Add 'enabled' field. 2004-08-19 Zoltan Varga * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT (). 2004-08-18 Jambunathan K * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right value 0x0010. 2004-08-18 Ben Maurer * appdomain.c: use the Tls function for appdomain too, at Zoltan's request. Actually return in mono_context_get * appdomain.c, profiler.c, threads.c: use __thread 2004-08-18 Zoltan Varga * appdomain.c threads.c: Call GC_CreateThread on windows. * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into multiple libraries since this don't work on windows. 2004-08-18 Martin Baulig * class-internals.h (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from MonoMethodHeader. * metadata.h (MonoMethodHeader): Moved the `gen_params' field to MonoMethodNormal since we also need it for abstract and interface methods. * reflection.c (build_compressed_metadata): Sort the GenericParam table. (mono_image_create_token): Added `gboolean create_methodspec' argument; this is false when generating a MethodImpl token. (reflection_methodbuilder_to_mono_method): Abstract and interface methods may also have generic parameters. 2004-08-17 Ben Maurer * appdomain.c: thread local alloc 2004-08-17 Martin Baulig * appdomain.c: Bumped MONO_CORLIB_VERSION to 24. * icall.c (ves_icall_System_MonoType_getFullName): Added `gboolean full_name' argument. * class.c (mono_type_get_full_name): New public function. (mono_type_get_name): Don't include the type arguments. 2004-08-16 Zoltan Varga * Makefile.am: Build static versions of libmetadata and libmonoruntime for inclusion into the mono executable. 2004-08-16 Martin Baulig * metadata.c (do_mono_metadata_parse_generic_inst): Store the MonoGenericInst, not the MonoType in the `generic_inst_cache'. 2004-08-14 Martin Baulig * class.c (dup_type): Also copy the `byref' field. 2004-08-15 Zoltan Varga * reflection.c (create_dynamic_mono_image): Revert the last change since it breaks bootstrap. 2004-08-14 Zoltan Varga * reflection.c (create_dynamic_mono_image): Set ref_count to 1. * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do not free them with g_free. 2004-08-11 Martin Baulig * reflection.c (mono_reflection_setup_internal_class): Also call mono_class_setup_mono_type() if we already have a `tb->type.type'. 2004-08-09 Sebastien Pouliot * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when called during default (first) AppDomain creation. Keep track of Evidence when loading assemblies. Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro * opcodes.c, opcodes.h: reduce runtime relocations. Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro * culture-info.h, locales.c: fixes and chages to sue the new optimized format of the locale data. * culture-info-tables.h: regenerated. 2004-08-06 Geoff Norton * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher 2004-08-05 Sebastien Pouliot * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id. * domain-internals.h: icall declaration. * icall.c: icall registration. * object-internals.h: New fields in MonoAssembly for CAS. 2004-08-05 Duncan Mak * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to CEE_LDELEM_ANY. Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro * reflection.c: fix to deal with object[] arrays in custom ctors (bug #62550). 2004-08-05 Martin Baulig * class.c (mono_class_array_element_size): Added support for generic instances and correctly handle "recursive" types. 2004-08-05 Zoltan Varga * assembly.c: Fix warnings. 2004-08-04 Martin Baulig * class.c (mono_type_get_name_recurse): Added `gboolean include_arity' argument specifying whether or not we should include the generic arity in the type name. (_mono_type_get_name): New static function. (mono_class_setup_vtable): If we're a generic instance, don't include the generic arity in the names of explicit method implementations. 2004-08-03 Martin Baulig * class.c (mono_type_get_name_recurse): Enclose the generic type arguments in `<', '>'. Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro * gc.c: make GC warning messages use the trace API, they are just noise to most of the users. 2004-08-03 Martin Baulig * debug-mono-symfile.c (read_string): Correctly read the string. 2004-07-30 Zoltan Varga * marshal.c (signature_dup_add_this): Fix bug in previous patch. * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg icalls. (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods. 2004-07-30 Martin Baulig * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c: Reflect latest symbol writer changes. Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro * object.c: always create an object if null is passed to Invoke() where a valuetype is expected. 2004-07-29 Bernie Solomon * marshal.c (mono_marshal_init): make managed signatures match native ones better for 64bits. 2004-07-29 Gonzalo Paniagua Javier * appdomain.c: hack to build correctly the private bin path on windows. Fixes bug #61991. 2004-07-28 Lluis Sanchez Gual * assembly.c: Load mscorlib from the correct framework directory (mono//mscorlib.dll). * appdomain.h: Added prototypes for new functions. * internals.h: Added some prototypes. * domain.c: When initializing the runtime, get from the executable and the configuration files the runtime version that the app supports. Added support methods for reading app.exe.config. Added list of versions supported by the JIT. Added two new methods: mono_init_from_assembly, which initializes the runtime and determines the required version from the provided exe file, and mono_init_version, which initializes the runtime using the provided version. * icall.c: Get machine.config from version-specific directory. * reflection.c: When generating an image, embed the version number of the current runtime. 2004-07-28 Dick Porter * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check returned sockaddr size before creating the remote address object. Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug 61608. 2004-07-28 Dick Porter * locales.c (string_invariant_compare_char): Fix invariant char compares between upper and lower cases. Fixes bug 61458. 2004-07-27 Ben Maurer * marshal.c: actually cache stelem.ref wrappers. Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image sections and remove the mono_cli_rva_map () function. Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro * debug-mono-symfile.c: fix one more endianess issue, from a patch by Geoff Norton (). Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro * class.c: fix class loads for pointer types (typeof(int) != typeof(int*)). 2004-07-27 Martin Baulig * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support reading the debugging information from an external ".mdb" file. 2004-07-24 Martin Baulig * reflection.c (mono_image_get_type_info): Only write a class layout entry if we actually have a size or a packing size. 2004-07-21 Bernie Solomon * reflection.c (type_get_fully_qualified_name): insert cast to get type checking of ?: with non-gcc compilers 2004-07-21 Bernie Solomon * rand.c: use g_getenv for both lookups of MONO_EGD_SOCKET 2004-07-17 Martin Baulig * reflection.c (mono_reflection_bind_generic_method_parameters): Set `gmethod->reflection_info'. 2004-07-17 Martin Baulig * class.c (mono_class_create_from_typedef): Insert the newly created class into the hash table before computing the interfaces since we could be called recursively. 2004-07-16 Ben Maurer * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper function to implement stelem.ref in managed code * class-internals.h, debug-helpers.c: a new wrapper type for the above. Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro * gc.c: allow GC handles to work even when no GC is compiled in. Fix part of bug #61134 (GetAddrOfPinnedObject). 2004-07-13 Peter Williams * process.c (complete_path): Make sure we don't attempt to execute directories. 2004-07-12 Geoff Norton * DateTime.cs: Patch for bug #61112. Our DateTime wasn't roundtripping over timezone boundaries properly. This patch checkes ToLocalTime() to see if we're tripping over a boundary and will add/subtract the hour if needed 2004-07-12 Martin Baulig * reflection.c (mono_field_get_object): If we have `field->generic_info', take the attributes from `field->generic_info->generic_type'. 2004-07-12 Martin Baulig * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'. This function must be called before initializing the runtime. (mono_debug_init_1): New function; call this after initializing the runtime, but before loading the assembly. It tells the debugger to load corlib and the builtin types. * mono-debug-debugger.c: Did some larger changes in the debugging code; support recursive class declarations, make sure we actually add all classes. 2004-07-11 Gonzalo Paniagua Javier * debug-helpers.c: undo my previous patch and fixed the real issue in ../mini/exceptions-x86.c 2004-07-11 Gonzalo Paniagua Javier * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc when no HOME env. variable was set and a NullRef was thrown in a .cctor called from other .cctors. 2004-07-09 Miguel de Icaza * loader.c: Removed the mono_loader_wine_init hack now that we are doing a managed version of Windows.Forms. 2004-07-09 Ben Maurer * domain.c, gc.c, marshal.c, mono-debug-debugger.c, threadpool.c, threads.c: remove static data from rootset. 2004-07-09 Dick Porter * locales.c (ves_icall_System_String_InternalReplace_Str_Comp): Don't do any more processing if the matched length was 0. It was increasing the size of the string before. Fixes bug 61167. 2004-07-09 Dick Porter * socket-io.h: * socket-io.c (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal): Add support for SO_PEERCRED if its available. 2004-07-09 Peter Bartok * loader.c: winelib.exe.so error message is now only displayed if MONO_DEBUG is set. To help us avoid questions when people are trying out the new Managed.Windows.Forms. 2004-07-08 Zoltan Varga * class-internals.h debug-helpers.c marshal.c: Add new wrapper types for isinst and castclass wrappers. * class-internals.h icall.c: Move registration and lookup of JIT icalls to libmetadata from the JIT, so they could be used by the marshalling code and the interpreter. * marshal.c: Register marshalling related JIT icalls here instead of in mini.c. Use CEE_MONO_ICALL instead of the family of CEE_MONO_PROC opcodes to call marshalling functions. * metadata.h: Remove unneeded marshalling conversions. * opcodes.c: Update for new opcodes. 2004-07-08 Martin Baulig * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere. (mono_debug_get_domain_data): Make this function static. Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro * gc.c, object.h: add nice GC handle API for embedders. 2004-07-06 Ben Maurer * reflection.c: more changes for the new api * object.c: When we reflect on a field w/ a constant value, it will not have a memory location, so we must access metadata. Also, allow easier reading of strings so that we can read them from the constant data. * class.c (mono_class_layout_fields): no need for literal fields here. * class-internals.h: api changes for const fields * icall.c (ves_icall_get_enum_info): use new apis for const fields 2004-07-06 Martin Baulig * mono-debug.h: Increment version number to 44. * mono-debug.c (mono_debug_add_wrapper): The second argument is now a gpointer, rewrote this whole method. * mono-debug-debugger.c (mono_debugger_add_wrapper): New function. Add information about the wrapper in a new "misc table". * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields for the new misc table. 2004-07-05 Zoltan Varga * metadata-internals.h image.c: Add a cache for helper signatures. * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX. 2004-07-03 Zoltan Varga * marshal.c (mono_marshal_get_managed_wrapper): Handle returning delegates from a delegate. Fixes #61033. * marshal.c: Fix managed->native stringbuilder marshalling. Implement marshalling of stringbuilder arrays. Fixes #59900. 2004-07-02 Zoltan Varga * icall.c: Add EnumBuilder:setup_enum_type icall. 2004-06-30 Ben Maurer * icall.c: Added a new icall for the property version of OffsetOfStringData. 2004-06-30 Zoltan Varga * class-internals.h (MonoVTable): Make max_interface_id a guint32 so it has a constant size across platforms. * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no stack trace. 2004-06-29 Martin Baulig * mono-debug.c (mono_debug_add_method): Protect the whole function in mono_debugger_lock(), not just parts of it. Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro * reflection.c: make sure padding bytes in heaps are zeroed. 2004-06-24 David Waite * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c, image.c, loader.c, locales.c, marshal.c, metadata.c, mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c, string-icalls.c, threads.c: change to C90-style comments from C99 / C++ -style 2004-06-24 Dick Porter * threads.c (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly return createdNew. Fixes bug 60412. * threads-types.h: * icall.c: Add createdNew parameter to CreateMutex icall Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro * reflection.c, object-internals.h: save default value in params. 2004-06-23 Gonzalo Paniagua Javier * appdomain.c: for paths in PrivateBinPath that are absolute, there's no need to build a new path combining that with the application base. Fixes bug #60442. Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro * reflection.c: fixed minor standard compliance issues. Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro * reflection.c: fixed issue with encoding some custom attributes (arrays in properties and fields, bug #60411). 2004-06-23 Gonzalo Paniagua Javier * reflection.c: fix start address when copying the public key token. 2004-06-23 Martin Baulig * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store the `exc' object in a static object to put it into the GC's root set. Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro * reflection.c: make mono_reflection_setup_internal_class () callable a second time to setup a new parent class. 2004-06-23 Dick Porter * threads.c: Check for WAIT_IO_COMPLETION return values. 2004-06-22 Sebastien Pouliot * appdomain.c: Removed the g_free on the public key token. Now copy the pk token string into the MonoAssemblyName buffer using g_strlcpy. * assembly.c: Added public key token string value when loading assemblies. Fix bug #60439. * icall.c: Added missing informations (like public key) in GetReferencedAssemblies. Fix #60519. * image.h: Changed definition for public key token from const char* public_tok_value to guchar public_key_token [17]; * reflection.c: Updated for changes to public key token. 2004-06-22 Lluis Sanchez Gual * icall.c: In ves_icall_InternalExecute, when setting a filed, also look for the field in base classes. Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h: mark headers as not supported, they are installed only for use by the debugger. Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro * *.c, *.h: avoid namespace pollution in public headers. 2004-06-21 Martin Baulig * exception.c (mono_get_exception_security): It's in "System.Security", not in "System". * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all the exception classes. 2004-06-21 Martin Baulig * mono-debug-debugger.c (mono_debugger_unhandled_exception): Protect the exception object from being finalized. 2004-06-21 Martin Baulig * mono-debug-debugger.h (mono_debugger_unhandled_exception): New public function. 2004-06-21 Sebastien Pouliot * reflection.c: Load the assembly in mono_reflection_type_from_name, if it was not loaded before. Fix parts of #60439. Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke () code that was broken since Ben's change: wrappers are now dependent on the method signature only again. 2004-06-21 Martin Baulig * mono-debug-debugger.c (write_class): Cleaned this up a bit and added interface support. 2004-06-21 Martin Baulig * class.c (mono_vtable_get_static_field_data): New public method. 2004-06-20 Atsushi Enomoto * filewatcher.c : Windows build fix to be compliant with API changes. Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro * class.h, class.c: more accessors. * metadata.h, metadata.c: prepare for hiding MonoType and MonoMethodSignature: people should use the accessors from now on outside of the tree. Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro * *.c, *.h: more API cleanups. 2004-06-18 Jackson Harper * assembly.c: Trace loading assemblies. * loader.c: Trace loading native libraries. * mono-config.c: Trace loading config files. 2004-06-18 Dick Porter * locales.c: Tell ICU the lengths of strings, it can cope with embedded \0 then. Fixes bug 59274, and doesn't break bug 55822. Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro * image.c: swapped name/filename; 2004-06-18 Martin Baulig * mono-debug-debugger.c (write_class): Write the parent class at the end of the header. Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro * *.c, *.h, Makefile.am: more API cleanups and bugfixes. 2004-06-17 Raja R Harinath * Makefile.am (PLATFORM_LIB): New. Possibly refer to ../os/libmonoos.la. (bundle_obj): New conditional define. (BUILT_SOURCES): Remove. ($(bundle_srcs)): Make parallel-make safe. (libmonoruntime_la_LIBADD): Make unconditional. (libmetadata_la_LIBADD): Make unconditional. Refer to $(bundle_obj). (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs). 2004-06-17 Atsushi Enomoto * culture-info-tables.h: It was inconsistent with the latest supp info files. 2004-06-17 Zoltan Varga * assembly.c (mono_assembly_open): Fix crash when the assembly can't be loaded. * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation with gcc 2.95. Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro * threads.h, icall.c, object.c, threadpool.c, threads-types.h: cleaned up public header threads.h. Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro * Makefile.am, *.c, *.h: more API cleanups. Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro * Makefile.am: removed monosn from compilation. * appdomain.c, assembly.c, assembly.h, blob.h, class.c, debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c, image.c, image.h, loader.c, marshal.c, metadata-internals.h, metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c, mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c, reflection.c, reflection.h, verify.c: more API cleanups and fixes. 2004-06-15 Jackson Harper * assembly.c: Make locales lower case when searching the GAC for assemblies. gacutil will always make locales lowercase when installing so this effectively makes them case insensitive. 2004-06-15 Lluis Sanchez Gual * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter. * monitor.c: New method mono_monitor_try_enter_internal, which takes a new parameter which allows to choose whether the wait can be interrupted or not. Also added the method mono_monitor_enter(), which locks the monitor using an infinite wait and without allowing interruption. In the Monitor.Enter and Wait icalls, retry the lock if the wait is interrupted. * object.h: Added new fields in MonoThread. suspend_event holds the event used to susped/resume the thread. synch_lock is the lock object to use for modifying the thread state. * threads.c: Use the new synch_lock object for locking, instead of "this", which can generate deadlocks. Moved thread state change in Thread.Sleep and Thread.Join from managed to unmanaged code. This avoids a deadlock when the thread was suspended just after acquiring the thread lock. In general, use mono_monitor_enter instead of mono_monitor_try_enter. Implemented Thread.Suspend using an event instead of ThreadSuspend, which is not fully implemented in the io-layer. * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails. Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h, threads-types.h: more API cleanups. Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro * domain-internals.h, Makefile.am, appdomain.c, appdomain.h, domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c, threadpool.c, threads.c: first pass at the exported API cleanup. Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls. 2004-06-15 Gonzalo Paniagua Javier * icall.c: added internalGetHome. 2004-06-14 Dick Porter * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was possible to return successfully when '.' or '..' were the only entries in a directory, but were skipped. The MonoIOStat was not filled in in that case. Now return ERROR_NO_MORE_FILES instead. Fixes bug 59574. Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro * reflection.c: make binaries run on .Net 1.1 by default. Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro * threadpool.c, threadpool.h: use the correct return type in SetMinThreads (). Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro * marshal.c: keep track of struct size with explicit layout (bug #59979). 2004-06-12 Martin Baulig * mono-debug-debugger.c: Comment out a debugging g_message(). Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro * reflection.c, reflection.h: do not free custom attrs that are cached. * icall.c: use braces to make code clearer. 2004-06-11 Martin Baulig * class.h (MonoInflatedField): New type. (MonoClassField): Replaced `MonoType *generic_type' with `MonoInflatedField *generic_info'. * icall.c (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall. 2004-06-11 Martin Baulig * reflection.c (mono_image_create_method_token): Correctly encode varargs methods. 2004-06-11 Martin Baulig * metadata.c (mono_metadata_parse_method_signature): When parsing a MethodDef which has VarArgs, also set sentinelpos if we don't have any parameters. 2004-06-11 Martin Baulig * verify.c (mono_method_verify): In CEE_CALL, use mono_method_get_signature() to get the method's signature, unless we're a PInvoke method. 2004-06-10 Jackson Harper * assembly.c: Use /lib/mono/gac for the extra paths lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more logical name as the supplied path is just a prefix to the gac not the direct path to it. Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro * reflection.c: make the token for a created method match the token of the MethodBuilder it was created from (IKVM requires this behaviour now). Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c, reflection.c, socket-io.c: leak fixes. Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro * icall.c: handle sentinel pos in vararg methods in position different from 0. 2004-06-09 Gonzalo Paniagua Javier * culture-info-tables.h: freshly generated. 2004-06-09 Martin Baulig * loader.c (mono_get_method_constrained): Call `mono_class_init (constrained_class)'. 2004-06-08 Gert Driesen * icall.c (ves_icall_MonoType_GetEvent): Handle events without any methods. Fixes #59629. 2004-06-08 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-06-08 Dick Porter * object.h: * locales.c: Fixed compile warnings, including a real bug in CompareInfo_internal_compare. 2004-06-08 Dick Porter * locales.c (ves_icall_System_Globalization_CompareInfo_internal_index): (ves_icall_System_Globalization_CompareInfo_internal_index_char): Double-check the resuls of usearches, because ICU currently ignores most of the collator settings here. Fixes bug 59720. 2004-06-08 Dick Porter * locales.c (ves_icall_System_Globalization_CompareInfo_internal_index_char): Fix memory leak and segfault-causing typo. No idea how this one lasted so long without being noticed. 2004-06-09 Zoltan Varga * icall.c (ves_icall_Type_GetEvents_internal): Handle events without any methods. Fixes #59629. 2004-06-08 Gonzalo Paniagua Javier * assembly.c: (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't own the critical section before). Removed dead code (that's done in the preload hook). (mono_assembly_load_with_partial_name): call the preload hook. 2004-06-08 Martin Baulig * metadata.c (mono_metadata_signature_alloc): Default `sentinelpos' to -1. * reflection.c (mono_image_get_array_token): Likewise. 2004-06-08 Martin Baulig * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall. * metadata.c (mono_metadata_parse_method_signature): When parsing a MethodDef which has VarArgs, set sentinelpos. * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed `gint16' since we're using -1 for non-varargs methods. * reflection.c (ReflectionMethodBuilder): Added `MonoArray *opt_types'. (method_encode_signature): Added varargs support. (method_builder_encode_signature): Likewise. (mono_image_get_varargs_method_token): New static method. (mono_image_create_method_token): New public method; this is called via an icall instead of mono_image_create_token() when calling a varargs method. 2004-06-08 Lluis Sanchez Gual * locales.c: Fixed memory leak in Char.ToLower/ToUpper. 2004-06-08 Atsushi Enomoto * culture-info-tables.h : Reflecting the latest locale-builder that fixed empty array representation ({} to {0}). 2004-06-07 Jackson Harper * assembly.c: It should be /lib/mono/gac when looking up extra gac paths. This allows MONO_GAC_PATH to act exactly like a prefix. 2004-06-08 Zoltan Varga * reflection.c (mono_reflection_type_from_name): Make a copy of the type name before modifying it. Fixes #59405. 2004-06-08 Atsushi Enomoto * culture-info.h: added fields for "all datetime patterns". * locales.c: ( ves_icall_System_Globalization_CultureInfo _construct_datetime_format ()): fill xxx_patterns fields. * object.h: added fields for "all datetime patterns" to MonoDateTimeFormatInfo. * culture-info-tables.h: reflecting locale-builder updates. 2004-06-08 Zoltan Varga * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when the event has no add and remove methods. Fixes #59629. 2004-06-05 Sebastien Pouliot * object.c: Fixed possible integer overflow when allocating large strings. 2004-06-05 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-06-05 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-06-03 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-06-03 Lluis Sanchez Gual * threads.c: Made Thread.Sleep abortable. 2004-06-02 Martin Baulig * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41. * debug-mono-symfile.h: Bumped symbol file version number to 37. 2004-05-31 Zoltan Varga * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs. 2004-05-30 Jackson Harper * reflection.c: Do not hardcode assembly versions or public key tokens anymore. All of this except the corlib section was dead code anyways. 2004-05-29 Zoltan Varga * object.c (mono_runtime_invoke_array): Automatically create boxed objects for byref valuetypes if needed. Fixes #59300. * object.c (mono_method_return_message_restore): Handle MONO_TYPE_OBJECT as well. 2004-05-28 Jackson Harper * reflection.c: The modified type encoding was causing build problems. Reverted for now. 2004-05-28 Jackson Harper * reflection.c/h: Take an assembly ref so that we dont create fully qualified names when encoding types in the same assembly as the custom attribute being emitted. * appdomain.c: Increment version number. 2004-05-26 Duncan Mak * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Set the full version number (major, minor, build, revision). 2004-05-28 Vladimir Vukicevic * marshal.c (emit_struct_conv): increment src/dst after blit (mono_marshal_get_managed_wrapper, mono_marshal_get_native_wrapper): make sure we have marshalling info before marshalling params (info computation affects blittable) * class.c (class_compute_field_layout): correctly deal with blittable (mono_class_layout_fields): Don't do gc_aware_layout for AUTO value types (as per what windows dows by default) (mono_class_setup_mono_type): System.ValueType is blittable (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are blittable * marshal.c (mono_marshal_load_type_info): flag types as non-blittable if the native layout doesn't match the managed layout 2004-05-28 Gonzalo Paniagua Javier * appdomain.c: don't add stuff in the private search path that is above the application base. If application base is not set, there's no private search path. 2004-05-28 Zoltan Varga * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for byref struct arguments in native->managed marshalling. 2004-05-28 Patrik Torstensson * marshal.c (mono_marshal_get_runtime_invoke): correctly cache methods using signature (special case for methods that are value type or string class) * image.c (mono_image_close): clean up allocated GSList's in runtime_invoke_cache. 2004-05-28 Gonzalo Paniagua Javier * mono-config.c: set the correct path for mono_cfg_dir on windows when there's no MONO_CFG_DIR environment variable defined. 2004-05-28 Gonzalo Paniagua Javier * threads.c: windows version must be >= 0x0500 to include OpenThread. 2004-05-28 Lluis Sanchez Gual * threadpool.c: Really wait for 500ms after the async call, even if the wait is interrumped. * threads.c: In mono_thread_manage, call OpenThread to ref each handle before waiting for it, and call CloseHandle after the wait to unref it. This will make sure that handles are not disposed too early. 2004-05-28 Gonzalo Paniagua Javier * appdomain.c: * appdomain.h: * icall.c: removed ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not needed now. * object.c: se the application_base only for the domain that runs Main. Fixes bug #59216, 2004-05-28 Gonzalo Paniagua Javier * appdomain.c: * object.c: only the domain in which Main is run have SetupInformation.ConfigurationFile set, so moved a few lines from appdomain.c to object.c. 2004-05-28 Gonzalo Paniagua Javier * appdomain.c: we tried to load [name].(dll|exe), but according to bug #57710, we must also try [culture]/[name].(dll|exe) and [culture]/[name]/[name](dll|exe). This patch fixes the bug. There's a test case attached to bug #58922. 2004-05-27 Dick Porter * icall.c: * file-io.c: Implemented icalls for locking and unlocking regions in a file. (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns FALSE on error (fixes both compiler warning and real bug.) 2004-05-27 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. (Added missing ChangeLog entry for 05/26) 2004-05-27 Jackson Harper * locales.c: Fix some cut and paste errors. 2004-05-27 Gonzalo Paniagua Javier * mono-config.c: set the correct path for config. directory on windows. 2004-05-26 Atsushi Enomoto * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc on win32. 2004-05-26 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Free strings returned from pinvoke functions. * marshal.c (mono_ftnptr_to_delegate): Implement this. 2004-05-26 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-05-26 Zoltan Varga * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes #59086. 2004-05-26 Sebastien Pouliot * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20. * icall.c: Modified icalls for RNG. * rand.c|h: Changed RNG interface to allow thread-safe usage under Windows (CryptoAPI). 2004-05-25 Zoltan Varga * locales.c: Fix build. 2004-05-25 Atsushi Enomoto * culture-info-tables.h: reflecting locale-builder updates. 2004-05-25 Jackson Harper * locales.c: When creating the current culture use the $LANGs specific culture. So DateTimeFormat and NumberFormat entries are created. 2004-05-25 Zoltan Varga * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take a char array as parameter. 2004-05-24 Lluis Sanchez Gual * image.c: In mono_image_open(), always use an absolute path name to look for already loaded images. 2004-05-24 Sebastien Pouliot * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is missing in the windows build (like older cygwin include files). 2004-05-23 Sebastien Pouliot * icall.c: Fixed check for possible integer overflow in Buffer_ BlockCopy icall. Replaced comments style // by /* */. 2004-05-22 Zoltan Varga * marshal.c (mono_ftnptr_to_delegate): Fix warning. * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt check after MONO_VTADDR. Fixes pinvoke2.exe. * marshal.h marshal.c metadata.h: Add beginnings of support for ftnptr -> delegate marshalling. 2004-05-21 Zoltan Varga * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95. * threads.c: Fix warnings. 2004-05-20 Lluis Sanchez Gual * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx. * icall.c: Registered icalls for Suspend and Resume. * locales.c: Beware, mono_monitor_try_enter can now be interrupted by Thread.Abort. * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints. * mono-debug-debugger.c: Use WaitForSingleObjectEx et al. * process.c: Use WaitForSingleObjectEx. * threadpool.c: Use WaitForSingleObjectEx. Added some interruption checkpoints. * threads.c, threads.h: Make use of new Ex wait methods. Improved implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls for Suspend and Resume. Added new mono_thread_stop, used for stoping background threads. Added basic support for Abort in Windows. Start new threads using a managed delegate invoke wrapper. This wrapper has an interruption checkpoint that is needed since an interruption can be requested before the thread leaves the unmanaged code that starts the thread. * marshal.c: Added interruption checkpoint after every native call, and also before managed calls for wrappers called from unmanaged code to go into managed code. * object.h: Added new field in MonoThread to keep track of interruption requests. 2004-05-20 Zoltan Varga * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native calls. 2004-05-20 Gonzalo Paniagua Javier * appdomain.c: * assembly.c: * gc.c: * locales.c: * mono-config.c: * rand.c: getenv -> g_getenv (windows!) * process.c: complete_path is also used on non-windows platforms. 2004-05-19 Gonzalo Paniagua Javier * icall.c: new signature for Process_Start. * process.[ch]: new signature for Process_Start. If we're on windows and UseShellExecute is false, we have to search for the program by ourselves if we don't get a full path. 2004-05-18 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Fix up custom marshalling and call CleanUpNativeData if needed. Fixes #58646. 2004-05-18 Gonzalo Paniagua Javier * socket-io.c: field value changed for Int32 from 'value' to 'm_value'. Fixes bug #58373. 2004-05-17 Gonzalo Paniagua Javier * process.c: use double quotes to quote program name and arguments on windows. Fixes bug #58575. 2004-05-17 Gonzalo Paniagua Javier * file-io.c: don't return "." and ".." when using windows Find*File. 2003-05-17 Patrik Torstensson * marshal.c: Don't pass wrappers to message init because method addressed used to lookup metadata. part of remoting[2|3] fix. 2004-05-15 Jackson Harper * assembly.c: Remove user gac and implement MONO_GAC_PATH, this path is essentially the same as MONO_PATH except that it points to GACs instead of lib directories. * loader.h: The user gac is gone so we dont need function to enable/disable it. * mono-config.c: user gac option is now gone. 2004-05-15 Jackson Harper * culture-info.h: Make defines more consistent, add calendar data to the culture info table. * culture-info-tables.h: Add basic calendar data. Basically everyone gets default gregorian until all the data is updated. * locales.c: Use the new consistent defines. Set calendar data for culture info objects. * object.h: add a field for calendar data to CultureInfo 2004-05-14 Ben Maurer * image.c: image->runtime_invoke_cache is keyed on signatures now. * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with a signature. (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above. (mono_marshal_get_runtime_invoke): The runtime invoke method now takes an extra param that is the pointer of the method to invoke. The IL for the invoke method is no longer specific to the method, but to the signature of the method. Thus, we can share the same code for multiple methods. This reduces the number of methods that have to be compiled. 2004-05-14 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning. * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version. * icall.c: Optimize Buffer.BlockCopy. 2004-05-14 Gonzalo Paniagua Javier * culture-info-tables.h: seems like Spanish and Portuguese cultures had DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single quote). Changed them to "MMMM yyyy". 2004-05-12 Miguel de Icaza * rand.c (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 2004-05-13 Zoltan Varga * reflection.h: Updated after changes to managed structures. * appdomain.c: Bump corlib version. 2004-05-12 Gonzalo Paniagua Javier * Makefile.am: also add libmonoos to libmetadata. Fixes the build on windows. 2004-05-12 Gonzalo Paniagua Javier * Makefile.am: link to ../os/libmonoos.la on windows. * assembly.c: -If MONO_DEBUG, warn about non-existing directories in MONO_PATH. -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES compile time variable. -Removed init_default_path and call mono_set_rootdir from libmonoos.a instead (windows only). * assembly.h: declare mono_assembly_getrootdir(). * domain.c: * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES. * loader.c: s/getenv/g_getenv/ 2004-05-11 Zoltan Varga * marshal.{h,c}: Add support for UnmanagedType.AsAny. * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate. * metadata.h: Add new marshalling conversions. * metadata.h metadata.c (mono_metadata_signature_dup): New helper function. * reflection.c (mono_reflection_get_type): Lookup the type in all modules of a multi-module assembly. Fixes #58291. 2004-05-11 Lluis Sanchez Gual * threads.c: Before aborting a background, set the StopRequested state. This avoids throwing the Abort exception. In mono_thread_manage, don't continue with the shutdown until all aborted threads have actually stopped. 2004-05-10 Jackson Harper * locales.c: Remove the modifier from culture names. 2004-05-10 Gonzalo Paniagua Javier * Makefile.am: monosn is not installed any more. It has been deprecated in favor of sn. 2004-05-07 Jackson Harper * locales.c (ves_icall_System_Globalization_CultureInfo_internal_get_cultures): Fix array construction, add bailout if the length is 0. 2004-05-07 Dick Porter * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the machine doesn't have a DNS entry. Patch by Urs Muff (umuff@quark.com), fixes bug 57928. 2004-05-06 Jackson Harper * reflection.c: Handle null PublicTokens properly. alloc mem for assembly names culture so we dont crash when freeing it. 2004-05-06 Jackson Harper * assembly.c: Check the usergac when loading with partial names. 2004-05-05 Sebastien Pouliot * rand.c|h: Added new icall for (optionally) seeding the PRNG. This does nothing for now (not required for Linux/Windows) but the class library can call it (and a newer or modified runtime could need it). * icall.c: Registred icall. 2004-05-06 Gonzalo Paniagua Javier * loader.c: prints a message on module loading error we set MONO_DEBUG environment variable. 2004-05-05 Jackson Harper * appdomain.c: Handle PublicKeyToken=null properly. 2004-05-05 Sebastien Pouliot * environment.c|h: Added icall ves_icall_System_Environment_ GetOSVersionString to get the current OS version as a string. * icall.c: Registred icall. 2004-05-05 Lluis Sanchez Gual * object.c: in mono_object_get_virtual_method(), take into account that non-virtual methods don't have a slot in the vtable. Check needed when the object is a proxy. 2004-05-05 Zoltan Varga * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement. * object.c (mono_class_compute_gc_descriptor): Fix warning. * object.c (mono_runtime_invoke_array): Add an assert so null cannot be passed when a valuetype is expected. * object.c (mono_unhandled_exception): Only set the exit code if the exception happens in the main thread. Fixes thread5.exe. * appdomain.c (get_info_from_assembly_name): Fix infinite loop on invalid names. Fixes #58047. 2004-05-03 Jackson Harper * assembly.c: This line was committed accidently and is unneeded. 2004-05-03 Jackson Harper * icall.c: Add new icall for Assembly::LoadWithPartialName * assembly.c/.h: new function that probes the GAC to load partial assembly names by Paolo Molaro. 2004-05-03 Gonzalo Paniagua Javier * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al. * reflection.c: use g_strncasecmp when looking for 'Culture=' et al. (type_get_fully_qualified_name): Added PublicKeyToken when building a full type name. 2004-05-03 Gonzalo Paniagua Javier * appdomain.c: fixed check for 'neutral' culture and removed warning. * reflection.c: fix bug when parsing a full type name and Version is not the last thing in the string. 2004-05-03 Zoltan Varga * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent crashes when it is freed. 2004-05-03 Gonzalo Paniagua Javier * assembly.c: print the compat warning to stderr. 2004-05-01 Miguel de Icaza * assembly.c (mono_assembly_load_references): Add a compatibility hack to run old applications that might be still referencing the 3300-based assemblies, only do this for System.xxx. 2004-05-01 Jackson Harper * appdomain.c: If the culture is neutral we set it to "". 2004-04-29 Jackson Harper * locales.c: Add some missing MONO_ARCH_SAVE_REGS'. 2004-04-29 Andreas Nahr * string-icalls.c: added low overhead function for copying chars * icall.c: added needed icall for the above function 2004-04-29 Gonzalo Paniagua Javier * icall.c: fix return value of get_global_assembly_cache. Implemented Environment.GetLogicalDrives. 2004-04-28 Bernie Solomon * rand.c: try and talk to egd or prngd for random bytes if opening devices fail. 2004-04-28 Zoltan Varga * marshal.c (mono_marshal_load_type_info): Calculate the minimum alignment for the type using the native alignment of its members instead of using klass->min_align. * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF. 2004-04-28 Gonzalo Paniagua Javier * file-io.c: * socket-io.c: added check for sys/aio.h. 2004-04-28 Dick Porter * threads.c: Don't abort a thread thats already aborting, when terminating everything. 2004-04-28 Gonzalo Paniagua Javier * icall.c: added 2 new async calls for Socket. * socket-io.[ch]: fixed some warnings. Added support for asynchronous IO on *nix systems. * threadpool.c: removed unused variable. 2004-04-27 Zoltan Varga * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706. Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro * locales.c: put back string_invariant_tolower () and string_invariant_toupper (). 2004-04-26 David Waite * file-io.h: * socket-io.h: * threads.h: * unicode.h: remove comma from end of enumeration declarations 2004-04-26 David Waite * debug-mono-symfile.h: * decimal.c: * mono_debug.h: * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL) 2004-04-26 Jackson Harper * appdomain.c: Increment version number. 2004-04-26 Jackson Harper * appdomain.c: Set assembly references public token value when PublicKeyToken is specified, not the hash_value. Free public token values when free assembly name data. Previously the public key token was hex decoded, however we are using hex encoded public key tokens, so this is not neccasary. * assembly.c: Lookup assemblies in the gac if their public token value is set. Add function to allow enabling user gac lookups. Specify whether or not the assembly was loaded from the GAC. Compare full assembly names when checking the cache for assemblies (Temporarily disabled see comment in code). Remove mscorlib -> corlib mapping cruft. Add trace-loading. When a user specifies trace-loader they get extra info to stdout on the loading of assemblies. * image.h: Add a field for an assembly references public token value to MonoAssemblyname. Add a field to MonoAssembly to specifiy whether an assembly has been loaded from the GAC. * image.c: Remove a corlib -> mscorlib name mapping. * loader.h: Add function to enable/disable the user gac. * mono-config.c: Check if the usergac is enabled in the config file. * icall.c: New icall to determine whether or not an assembly has been loaded from the GAC. Remove some mscorlib -> corlib mappings. * tabldefs.h: Add constant for assemblyref flag that specifies a full public key is used instead of a public token. * reflection.c: Remove mscorlib -> corlib mappings. Set PublicTokenValue instead of hash value. This value is a hex string so it does not need to be expanded. 2004-04-26 Martin Baulig * mono-debug-debugger.c (mono_debugger_initialize): Set `mono_debugger_initialized' before calling mono_debug_lock(). 2004-04-42 Robert Shade * icall.c: icalls for Char.ToUpper/ToLower are now hooked to InternalToUpper/InternalToLower. * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp) removed invariant culture shortcut. This is now done in managed code. * locales.c: (string_invariant_toupper/tolower) removed. 2004-04-24 Gonzalo Paniagua Javier * icall.c: added GetSupportsAsync for Socket (same as MonoIO). Added Poll internal call. * socket-io.[ch]: _wapi_socket == WSASocket. Added internal call for Poll. Select was too heavy for polling a single socket. * threadpool.[ch]: added mono_threadpool_cleanup. * threads.c: use it. Don't use Thread_Abort on windows. 2004-04-23 Martin Baulig * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function. 2004-04-23 Sebastien Pouliot * icall.c: Registred new icalls for key pair protection and added an icall for Environment.GetFolderPath on Windows. * security.c|h: Added new icalls for key pair protection. 2004-04-22 Gonzalo Paniagua Javier * socket-io.c: don't display the non-supported family warning for known families. Now this is not displayed on windows when checking support for IPv4/IPv6. 2004-04-22 Gonzalo Paniagua Javier * class.c: don't display the layout warning for static fields. 2004-04-21 Lluis Sanchez Gual * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper. * locales.c, locales.h: Added new icalls for culture-specific Char.ToLower and Char.ToUpper. 2004-04-20 Gonzalo Paniagua Javier * threads.c: the 2nd argument when aborting a thread is NULL now. Patch by David Waite. 2004-04-20 Martin Baulig * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy of the type name before passing it to mono_reflection_type_from_name(). 2004-04-19 Zoltan Varga * marshal.c (mono_marshal_get_managed_wrapper): Handle different string encodings here. Fixes #56965. 2004-04-18 Bernie Solomon * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): fix test on strstr result not that I can see anything that relies on the result. 2004-04-18 Zoltan Varga * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well. Fixes #57081. * marshal.c (mono_marshal_get_string_encoding): New helper function. * marshal.c (mono_marshal_get_native_wrapper): Use the new helper function to determine which marshalling to use for strings. Fixes #56965. * marshal.c (mono_marshal_string_array_to_unicode): Fix warning. * reflection.c (encode_marshal_blob): Add support for LPARRAY. 2004-04-15 Bernie Solomon * icall.c: #include mono-config.h 2004-04-15 Jackson Harper * culture-info-tables.h: Fix date formats for en-US culture. 2004-04-15 Lluis Sanchez Gual * icall.c: Registered icalls for ThreadPool.GetMinThreads and ThreadPool.SetMinThreads. * threadpool.c: Implemented ThreadPool.GetMinThreads and ThreadPool.SetMinThreads. Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro * mono-config.c: also load the .config file in the directory where the assembly was found. Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro * assembly.c: load per-assembly config files. * icall.c: decrapified code to get the config dir and moved to mono-config.c. * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow per-assembly config files. When doing a dll map lookup give precedence to the per-assembly data. 2004-04-14 Martin Baulig * mono-debug-debugger.h (MonoDebuggerEvent): Removed MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS. * mono-debugger-debugger.c: While the debugger is locked, remember whether the symbol tables have changes and send one single MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock. 2004-04-14 Zoltan Varga * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention. * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New function. * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into account when marshalling string arrays. Fixes #56965. 2004-04-13 Sebastien Pouliot * icall.c: Add new icalls mapping for security. * security.c|h: Add internal calls for WindowsIdentity, WindowsImpersonationContext and WindowsPrincipal. 2004-04-13 Gert Driesen (drieseng@users.sourceforge.net) * class.c: Added comment to ensure the System.MonoDummy class is removed when no longer necessary 2004-04-13 Miguel de Icaza * appdomain.c: Pass arguments to the bootstraping exceptions to minimize JITed methods at boot * metadata.c (mono_exception_from_name_two_strings): Allow for the second string to be null. * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Change the protocol to minimize the JIT methods at startup. Now it Returns the internal codepage, if the value of "int_code_page" is 1 at entry, and we can not compute a suitable code page number, returns the code page as a string. 2004-04-13 Jackson Harper * culture-info-tables.h: Fix number of decimal digits for all english locales. 2004-04-13 Jackson Harper * icall.c: Clairfy out of sync error message. It is not always your corlib that is out of sync. 2004-04-13 Zoltan Varga * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate properties when only the set accessor is overriden. Fixes #55874. 2004-04-09 Zoltan Varga * assembly.c (mono_assembly_load_references): Make this thread safe. Fixes #56327. 2004-04-08 Zoltan Varga * monosn.c: Add missing initialization calls. 2004-04-08 Bernie Solomon * locales.c: ves_icall_System_Globalization_CultureInfo_construct_number_format Fix g_assert so it compiles on fussier compilers re int/ptr mismatch 2004-04-08 Dick Porter * socket-io.h: * socket-io.c: Don't set SO_REUSEADDR on windows. Fixes bug 53992. Also rearrange the code so that the internal calls return an error value and exceptions are thrown from managed code. * icall.c: Add type info to the socket icalls. 2004-04-08 Gonzalo Paniagua Javier * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone owes me a beer. 2004-04-07 Martin Baulig * class.c (mono_class_from_generic_parameter): Don't default `klass->parent' to `mono_defaults.object_type'. 2004-04-07 Martin Baulig * reflection.c (mono_reflection_initialize_generic_parameter): Set `param->pklass->reflection_info'. 2004-04-07 Jackson Harper * culture-info-tables.h: Fix date separator symbol. 2004-04-07 Martin Baulig * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall from System.Type to System.MonoType. 2004-04-07 Martin Baulig * reflection.h (MonoReflectionGenericParam): Added `has_reference_type' and `has_value_type' fields. * reflection.c (mono_image_get_generic_param_info): Encode the correct flags if we have the `class' or `struct' constraint. 2004-04-07 Martin Baulig * reflection.h (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'. 2004-04-07 Jackson Harper * appdomain.c: Revert extra patches, just wanted to bump the version number. 2004-04-07 Jackson Harper * Makefile.am: Add culture-info private headers. * icall.c: Add new icalls for contructing locales. * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU. * locales.h: Declare new culture info construction methods. * object.h: Add new fields used to avoid the CultureMap to MonoCultureInfo. * culture-info.h: Definition of structs used in the culture info tables. * culture-info-tables.h: Autogenerated tables that contain culture info data. This file was generated with the locale-builder tool. * appdomain.c: Incement corlib version number. 2004-04-07 Bernie Solomon * appdomain.c: (mono_runtime_init) move mono_thread_init to before mono_object_new calls so critical sections are initialized before use. 2004-04-07 Martin Baulig * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Removed. (ves_icall_MethodBuilder_define_generic_parameter): Removed. (ves_icall_MonoGenericParam_initialize): Removed. (monogenericparam_icalls): Removed. (generictypeparambuilder_icalls): Added new table for System.Reflection.Emit.GenericTypeParameterBuilder. * reflection.c (mono_reflection_define_generic_parameter): Removed. (mono_reflection_initialize_generic_parameter): This is now called from GenericTypeParameterBuilder's .ctor. 2004-04-06 Martin Baulig * class.c (mono_class_init): Don't inflate nested classes in a generic instance. (mono_type_get_name_recurse): Include the generic arguments for generic instances and generic type declarations. (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY. (_mono_class_get_instantiation_name): Removed. (mono_class_create_generic): Always use `gklass->name' as our name. * class.h (MonoGenericInst): Removed `nested_in', and `nested'. * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed. (ves_icall_MonoGenericInst_GetNestedTypes): Removed. (ves_icall_MonoMethod_GetGenericParameters): Renamed to ves_icall_MonoMethod_GetGenericArguments() and correctly handle closed generic methods here. * reflection.c (mono_reflection_generic_inst_get_nested_types): Removed. (inflate_mono_method): Copy the generic parameters from the MonoMethodHeader into out MonoGenericMethod. 2004-04-06 Martin Baulig * row-indexes.h (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed. * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint". * reflection.c (build_compressed_metadata): If we have any entries in the GenericParam, MethodSpec or GenericParamConstraint tables, set the header version to 1.1. 2004-04-06 Martin Baulig * class.c (mono_class_init): If we're a generic instance, initialize our nested classes, too. (_mono_class_get_instantiation_name): Deal with the new `!%d' suffix. 2004-04-06 Gonzalo Paniagua Javier * process.c: quote the argument passed to the shell on windows. 2004-04-05 Zoltan Varga * threads.c (mono_alloc_special_static_data): Allow this to be called during startup. 2004-04-02 Martin Baulig * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): New icall. 2004-04-02 Zoltan Varga * icall.c: Fix build. 2004-04-02 Sebastien Pouliot * Makefile.am: Added security.c|h. * icall.c: Added icall for get_UserName; * security.c: New file for security related icalls. Added function get_UserName for System.Environment (fix #56144). * security.h: New. Header file for security.c 2004-04-02 Dick Porter * icall.c: Deleted the icalls that were obsoleted some time ago by the ICU string code, and which were mixed into the icall rearranging. Fixes bug 55969. * string-icalls.h: * string-icalls.c: Deleted the code that those icalls reference. 2004-04-01 Martin Baulig * metadata.h (MONO_CLASS_IS_INTERFACE): New macro. * class.c (mono_class_from_generic_parameter): Don't set TYPE_ATTRIBUTE_INTERFACE. (my_mono_class_from_generic_parameter): Likewise. 2004-04-01 Martin Baulig * loader.c (find_method): Added an optional `MonoClass *ic' argument to search in a specific interface. (mono_get_method_constrained): New public function. 2004-04-01 Martin Baulig * reflection.c (mono_image_get_generic_field_token): Use the `handleref' cache here. 2004-04-01 Martin Baulig * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'. * reflection.c (create_generic_typespec): Use the `typespec' hash here, not the `typeref' one. 2004-04-01 Martin Baulig * class.c (mono_class_inflate_generic_type): Moved the functionality into a new static inflate_generic_type() which returns NULL if it didn't do anything. Only increment the `mono_stats.inflated_type_count' if we actually inflated something. (mono_class_get_full): Check the classes type to see whether we need to inflate it; also inflate MONO_TYPE_(M)VAR. 2004-04-01 Jackson Harper * reflection.c: Set culture for assembly references. 2004-04-01 Ben Maurer * reflection.[ch], icall.[ch], Fix support for pinning variables. 2004-04-01 Gonzalo Paniagua Javier * assembly.c: (do_mono_assembly_open): the critical section also covers mono_image_open and mono_image_open_from_data. Fixes bug #56327. 2004-03-31 Gonzalo Paniagua Javier * threads.c: (mono_manage_threads): abort the background threads when finishing. Fixes bug #47232. 2004-03-31 Gonzalo Paniagua Javier * gc.c: only close the done_event handle if there was no timeout. C-ified comments. 2004-03-30 Martin Baulig * icall.c (icall_entries): It's called "System.Activator", not "System.Activation". 2004-03-30 Martin Baulig * class.c (mono_ldtoken): Added `MonoGenericContext *' argument. (mono_class_create_from_typespec): Likewise. 2004-03-30 Martin Baulig * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for `has_ctor_constraint' and `initialized'. 2004-03-30 Martin Baulig * reflection.c (encode_new_constraint): New static function to add the constructor constraint attribute to a type parameter. (encode_constraints): Call encode_new_constraint() if necessary. * reflection.h (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'. * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR. 2004-03-29 Ben Maurer * reflection.c, icall.c: add support for pinning variables. 2004-03-29 Bernie Solomon * marshal.c (mono_marshal_get_managed_wrapper): init bool local with zero rather than null. 2004-03-29 Martin Baulig * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show the "official" behavior here. (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall. 2004-03-29 Martin Baulig * icall.c: Reflect latest API changes. 2004-03-29 Martin Baulig * loader.c (mono_get_method_from_token): Also call mono_metadata_load_generic_params () for abstract and interface methods; replace the type arguments in the method signature with the ones which are loaded from the metadata. 2004-03-29 Lluis Sanchez Gual * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner of the lock is not the current thread. MS.NET don't do it, in spite of what the documentation says. See bug #56157. 2004-03-28 Martin Baulig * class.c (mono_class_init): Don't call init_properties() and init_events() for generic instances; set `prop->parent' when inflating properties. * reflection.c (mono_generic_inst_get_object): Call `mono_class_init (ginst->klass)'. (mono_type_get_object): Only create a MonoGenericInst if your generic type is a TypeBuilder. (do_mono_reflection_bind_generic_parameters): Only set `ginst->is_dynamic' if our generic type is a TypeBuilder. 2004-03-28 Zoltan Varga * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash. Fixes #56091. 2004-03-25 Gonzalo Paniagua Javier * icall.c: added Kill_internal icall. * process.[ch]: added Kill_internal icall. 2004-03-25 Martin Baulig * class.h (MonoStats): Added `generic_instance_count', `inflated_method_count', `inflated_type_count' and `generics_metadata_size'. 2004-03-25 Gonzalo Paniagua Javier * reflection.c: no warnings now. 2004-03-25 Martin Baulig * class.c (mono_class_get_full): New public function; does a mono_class_get(), but also takes a `MonoGenericContext *'. * loader.c (mono_field_from_memberref): Renamed to `field_from_memberref', made static and added `MonoGenericContext *' argument. (mono_field_from_token): Added `MonoGenericInst *' argument. (method_from_memberef): Likewise. (mono_get_method_from_token): Likewise. (mono_get_method_full): New public function; does a mono_get_method(), but also takes a `MonoGenericContext *'. * verify.c (mono_method_verify): Get the method's generic context and pass it to mono_field_from_token(), mono_get_method_full() and mono_class_get_full(). 2004-03-25 Martin Baulig * class.c (mono_class_inflate_generic_type): Take a `MonoGenericContext *' instead of a `MonoGenericInst *' and a `MonoGenericMethod *'. 2004-03-25 Martin Baulig * loader.h (MonoMethodInflated): Store the MonoGenericContext instead of the MonoGenericMethod here. 2004-03-25 Martin Baulig * class.h (MonoGenericInst): Added `MonoGenericContext *context'; each time we create a new MonoGenericInst, we also create a new context which points back to us. * class.c (inflate_method): Use `ginst->context' instead of creating a new context. * loader.c (method_from_memberref): Use `klass->generic_inst->context' instead of creating a new context. 2004-03-25 Martin Baulig * class.h (MonoGenericContext): New struct. (MonoGenericMethod): Removed `generic_inst'. * class.c (mono_class_inflate_generic_method): Take a `MonoGenericContext *' instead of a `MonoGenericMethod *'. 2004-03-25 Martin Baulig * loader.h (MonoMethodInflated): New typedef. * metadata.h (MonoMethodSignature): Removed `gen_method', make `generic_param_count' consume just 30 bits, added `is_inflated' and `has_type_parameters' flags (one bit each). * class.c (mono_class_inflate_generic_method): Create a MonoMethodInflated instead of a MonoMethodNormal and set `is_inflated' in the method signature. * class.h (MonoGenericMethod): Removed `generic_method'. 2004-03-25 Lluis Sanchez Gual * image.c: Make sure the name of a MonoImage is always an absolute path. This fixes bug #54415. 2004-03-24 Martin Baulig * class.c (mono_class_setup_vtable): If we're a generic instance, use our generic type's vtable size. 2004-03-24 Zoltan Varga * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add MONO_NO_UNLOAD env var as a temporary workaround for unloading problems. 2004-03-23 Martin Baulig * class.h (MonoDynamicGenericInst): Added `int count_events' and `MonoEvent *events'. * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall. (typebuilder_icalls): Added "get_event_info"; calls mono_reflection_event_builder_get_event_info(). * reflection.c (mono_reflection_generic_inst_initialize): Added `MonoArray *events'. (mono_reflection_event_builder_get_event_info): New function. 2004-03-23 Bernie Solomon * object.h: add mono_type_initialization_init * object.c (mono_runtime_class_init): implement class constructor synchronization rules to cope with threading issues. add mono_type_initialization_init * appdomain.c (mono_runtime_init): call mono_type_initialization_init * class.h: removing initializing field from MonoVTable 2004-03-23 Martin Baulig * class.c (my_mono_class_from_generic_parameter): Use `param->name' if it's not NULL. 2004-03-22 Ben Maurer * class.c: do not insert non-virtual methods in the vtable. * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1, that means the method is non-virtual. This never would have happened before. 2004-03-22 Lluis Sanchez Gual * profiler.c: Added lock for accessing coverage_hash. 2004-03-22 Martin Baulig * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use `method->method->signature->generic_param_count != 0' to make it work for interface methods. 2004-03-19 Gonzalo Paniagua Javier * process.c: quote the string passed to the shell using g_shell_quote. 2004-03-19 Gonzalo Paniagua Javier * threads.c: (mono_threads_manage): don't remove the finalizer thread and self from the threads hash table so that mono_thread_manage can be called more than once. 2004-03-19 Gonzalo Paniagua Javier * process.c: quote the arguments when UseShellExecute is true. Fixes bug #55790. 2004-03-18 Gonzalo Paniagua Javier * threads.c: set mono_thread_detach as a cleanup routine for every thread. This way it's always executed upon thread termination, either aborted or finished normally. No more xsp hangs! 2004-03-17 Martin Baulig * class.h (MonoGenericInst): Replaced the `GList *nested' with an `int count_nested' and a `MonoType **nested'. * reflection.c (mono_reflection_bind_generic_parameters): Moved most of the functionality into a new static do_mono_reflection_bind_generic_parameters() and don't take a `MonoType *nested_in' argument any more. Don't compute nested types here. (mono_reflection_generic_inst_get_nested_types): New public method to get nested types. * class.c (mono_class_create_generic): Set `klass->nested_in' if we're a nested class. * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call mono_reflection_generic_inst_get_nested_types() to compute the nested types. 2004-03-17 Zoltan Varga * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more descriptive error message under windows. 2004-03-17 Martin Baulig * class.c (dup_type): Added `const MonoType *original' argument; copy the attrs from the original type. 2004-03-17 Martin Baulig * metadata.c (do_mono_metadata_parse_generic_inst): Use the `m->generic_inst_cache' here. 2004-03-17 Zoltan Varga * exception.h exception.c: Add stack_overflow_exception. 2004-03-16 Gonzalo Paniagua Javier * threadpool.c: (overlapped_callback): call SetEvent *after* invoking the callback. No need to call CloseHandle. 2004-03-16 Martin Baulig * reflection.c (mono_image_get_fieldref_token): Take a `MonoReflectionField *' instead of a `MonoClassField *' and a `MonoClass *'; store the `MonoReflectionField *' in the hash. 2004-03-16 Gonzalo Paniagua Javier * appdomain.c: don't add the culture to the filename we're looking for if it's neutral or NULL. Fixes bug #53788. Removed redundant memset. 2004-03-16 Gonzalo Paniagua Javier * locales.c: don't ignore symbols when doing case insensitive compares. Thanks Dick! Fixes bug #54046. * threads.c: surround 'threads' usage with enter/leave in mono_thread_manage. 2004-03-16 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Char arrays are implicitly marshalled as [Out]. Fixes #55450. (mono_marshal_get_runtime_invoke): Zero out the result if there is an exception. 2004-03-16 Martin Baulig * class.c (mono_class_from_generic_parameter): Use the actual parameter name. 2004-03-16 Martin Baulig * reflection.c (type_get_signature_size): New static function. Compues the size of the type in a method signature. (method_get_signature_size): New static function; calls type_get_signature_size() to compute the actual size of the method's signature. (method_encode_signature): Use method_get_signature_size() to get the signature's size rather than using `nparams * 10'. 2004-03-16 Gonzalo Paniagua Javier * file-io.h: define here WapiOverlapped on windows. I don't want the regular OVERLAPPED one. * file-io.c: * threadpool.c: somehow, BindIoCompletionCallback is not found. Disabling AIO on windows. 2004-03-15 Gonzalo Paniagua Javier * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes bug #55385. 2004-03-15 Gonzalo Paniagua Javier * appdomain.c: upgraded corlib version. * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead and BeginWrite. Allow opening files for asynchrnous operations. * file-io.h: new struct that maps FileStreamAsyncResult. * icall.c: added new icalls. * process.[ch]: support setting child process environment variables and use the SHELL or COMSPEC when UseShellExecute is true. * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The callback for async. IO is here and also BindHandle. * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls from here. 2004-03-14 Zoltan Varga * reflection.c (create_custom_attr): Allow len == 0. * object.c (mono_class_compute_gc_descriptor): Fix descriptor computation on big-endian machines. 2004-03-13 Martin Baulig * class.h (MonoGenericInst): Added `int count_ifaces'. * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use `ginst->count_ifaces' instead `klass->interface_count' since we may get called before the vtable is created. * loader.c (mono_method_get_param_names): If we're a generic instance, return and don't initialize the class. * reflection.c (mono_reflection_setup_generic_class): Don't call ensure_runtime_vtable(). (mono_reflection_bind_generic_parameters): Set `ginst->count_ifaces'. 2004-03-11 Jackson Harper * icall.c: * unicode.c: * unicode.h: Remove unused System.Char icalls. 2004-03-11 Miguel de Icaza * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init code when we P/Invoke the first library in Windows.Forms, instead of when we first open the assembly. * assembly.c: Drop the lookup from here. 2004-03-10 Martin Baulig * reflection.c (mono_reflection_get_custom_attrs): Use the correct class for properties, fields and events. Finally fixes #54945. 2004-03-10 Martin Baulig * metadata.c (mono_metadata_class_equal): New static function; checks whether two generic instances or two generic parameters are equal. (mono_metadata_type_equal): Use mono_metadata_class_equal() to compare classes. 2004-03-10 Martin Baulig * class.h (MonoGenericMethod): Added `gpointer reflection_info'. * reflection.c (inflate_mono_method): Added `MonoObject *obj' argument and write it into the `reflection_info' field. * icall.c (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall. (ves_icall_MethodBase_get_HasGenericParameters): New interncall. 2004-03-09 Jackson Harper * char-conversions.h: use 8 bits for numeric data its all we need * icall.c: numeric data is only 8 bits now. 2004-03-09 Martin Baulig * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'. * class.c (init_properties, init_events): Initialize the new `parent' field. * reflection.c (typebuilder_setup_properties): Likewise. (typebuilder_setup_events): Likewise. * reflection.h (MonoEventInfo): Replaced `parent with `declaring_type' and `reflected_type'. * icall.c (ves_icall_get_property_info): Distinguish between declaring and reflected type. (ves_icall_get_event_info): Likewise. 2004-03-09 Martin Baulig * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST. (ves_icall_Type_GetField): Correctly set field->klass. 2004-03-09 Zoltan Varga * loader.h: Fix warning. 2004-03-08 Miguel de Icaza * loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib library routine if present. Notice that it will still continue executing even if its missing, for those working on the Gtk# edition of Windows.Forms. * assembly.c (do_mono_assembly_open): If loading the System.Windows.Forms call mono_loader_wini_init. 2004-03-04 Lluis Sanchez Gual * class.h: Added MonoRemoteClass struct. * domain.c: Changed hash function for proxy_vtable_hash. It now uses a function for MonoStrings. * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy. Added internal call for getting the proxy type. * marshal.c: Get the type of transparent proxies from its remote_class. Added methods that generate the IL for type checks and casts: mono_marshal_get_isinst, mono_marshal_get_castclass, mono_marshal_get_proxy_cancast. * marshal.h: Declaration of the previous new methods. * object.c: Added new moethods for creating and updating MonoRemoteClass instances: mono_remote_class, mono_upgrade_remote_class, * object.h: Added MonoRemoteClass reference in MonoTransparentProxy. * verify.c: FIx transparent_proxy_fields layout. * appdomain.c: Bump corlib version. 2004-03-04 Jackson Harper * icall.c: Add icall to access char conversion tables. * char-conversions.h: Character conversion tables. * Makefile.am: Add char-conversions.h private header file. 2004-03-04 Zoltan Varga * appdomain.c (unload_thread_main): Increase unloading timeout to 10 sec as a temporary workaround for Nant problems. 2004-02-29 Zoltan Varga * gc.c: Add checks for GC_enable and GC_disable. * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski (jaak@zd.com.pl). Fix memory corruption in String.Replace (bug #54988). 2004-02-27 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): Take a `MonoReflectionType *' instead of a `MonoType *'. 2004-02-26 Zoltan Varga * gc.c (run_finalize): Avoid finalizing the object representing the finalizer thread. (finalizer_thread): Fix warning. 2004-02-25 Martin Baulig * class.c (_mono_class_get_instantiation_name): Added `int offset' argument for nested types. (mono_class_create_generic): Added support for nested generictypes. * class.h (MonoGenericInst): Added `MonoType *nested_in' and `GList *nested'. * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall. * reflection.c (method_encode_signature): Increase the minimum value of `size' from 10 to 11. (mono_reflection_bind_generic_parameters): Take `int type_argc' and `MonoType **types' arguments instead of the `MonoArray *types'; added `MonoType *nested_in'. Recursively instantiate nested classes. 2004-02-23 Zoltan Varga * appdomain.h (MonoDomain): Add preallocated null_reference_ex and stack_overflow_ex members which are used by exception handling. * appdomain.c (mono_runtime_init): Initialize the new members. * gc.c (mono_gc_enable): New helper function. * gc.c (mono_gc_disable): New helper function. 2004-02-23 Martin Baulig * icall.c: I must have been really stupid - make it actually work this time ;-) 2004-02-23 Martin Baulig * loader.c (method_from_memberref): Only inflate the method if it's in another klass. 2004-02-23 Martin Baulig * class.c (mono_class_inflate_generic_type): Fixed two bugs. (mono_class_init): If we're a generic instance and an interface, compute `class->interface_id'; also create `class->interfaces' here and inflate them. * metadata.c (do_mono_metadata_parse_generic_inst): Compute `ginst->is_open'. (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST. * reflection.c (mono_image_create_token): Allow "MonoGenericInst". 2004-02-15 Miguel de Icaza * reflection.c (method_encode_code): Improved the error message generated by the exception. 2004-02-22 Gonzalo Paniagua Javier * icall.c: Martin did not do what he said in the ChangeLog for 2004-02-18, but put back the changes for properties and events. Commenting those changes out again and adding comment to bug #54518. * process.c: removed warning. 2004-02-20 Zoltan Varga * marshal.c (emit_struct_conv): Print an error message instead of asserting when a type does not have the StructLayout attribute. 2004-02-20 Martin Baulig * reflection.c (mono_type_get_object): Also use the cache for generic instances. (mono_reflection_bind_generic_parameters): Always compute `ginst->ifaces'. 2004-02-20 Martin Baulig * class.h (MonoGenericMethod): Removed `klass'. * class.c (mono_class_inflate_generic_method): Added `MonoClass *klass' argument. 2004-02-20 Martin Baulig * reflection.c (method_encode_methodspec): Actually use the uninflated signature for the memberref. 2004-02-20 Martin Baulig * class.h (MonoGenericMethod): Removed `declaring'. * class.c (mono_class_inflate_generic_method): If `gmethod->klass' is NULL, compute it here. 2004-02-20 Martin Baulig * image.h (MonoImage): Added `GHashTable *generic_inst_cache'. * metadata.c (mono_metadata_generic_inst_hash): New method. (mono_metadata_generic_inst_equal): New method. * reflection.c (mono_reflection_bind_generic_parameters): Use the `klass->image->generic_inst_cache' cache to avoid creating duplicate MonoGenericInst's. * class.c (mono_class_inflate_generic_type): Use the cache. Thu Feb 19 19:39:09 CET 2004 Paolo Molaro * object.c: fixed gc descriptor calculation for embedded valuetypes. 2004-02-19 Gonzalo Paniagua Javier * icall.c: added Socket.WSAIoctl icall. * socket-io.[ch]: implemented ves_icall_System_Net_Sockets_Socket_WSAIoctl. 2004-02-19 Atsushi Enomoto * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls. 2004-02-18 Urs C Muff * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make this work on PPC and other big-endian architectures. * debug-mono-symfile.h: Prepended the names of all the `guint32' fields with an underscore to make sure they're only accessed by the read32() macro. 2004-02-18 Martin Baulig * icall.c: Put the klass->refclass changes back for methods and fields, but not for properties and events. We're currently not distinguishing between DeclaringType and ReflectedType for properties and events, that's what caused the regressions. 2004-02-18 Gonzalo Paniagua Javier * object.c: (mono_async_result_new): the handle can be NULL. * threadpool.c: Use an event instead of a semaphore, don't initialize it until needed. This saves quite a few semaphores from being created when using the threadpool. 2004-02-18 Zoltan Varga * object.c (mono_string_is_interned_lookup): Fix interning of long strings. Fixes #54473. * domain.c (ldstr_equal): Optimize if the two strings are equal. * icall.c: Revert the klass->refclass changes since they introduce regressions (bug #54518). 2004-02-18 Martin Baulig * class.c (mono_class_init): If we're a generic instance and don't come from a TypeBuilder, inflate our members here. (mono_class_from_generic): Removed; just use `ginst->klass' instead. (mono_class_create_generic): New public method. (mono_class_initialize_generic): Removed. (get_instantiation_name): Renamed to _mono_class_get_instantiation_name() and made it public. 2004-02-18 Martin Baulig * class.c (mono_class_inflate_generic_type): Clear the new instance's `nginst->klass' when inflating a generic instance. (mono_class_is_subclass_of): Added (basic) support for generic instances. Tue Feb 17 21:40:16 CET 2004 Paolo Molaro * appdomain.h, domain.c: use a MonoCodeManager instead of a MonoMempool to hold compiled native code. 2004-02-17 Martin Baulig * class.h (MonoDynamicGenericInst): Added `count_properties' and `properties'. * reflection.c (mono_reflection_generic_inst_initialize): Added `MonoArray *properties' argument. * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall. 2004-02-17 Martin Baulig * icall.c (ves_icall_Type_GetFields): Renamed to ves_icall_Type_GetFields_internal() and added a `MonoReflectionType *rtype' argument; pass it to mono_field_get_object() to set the field's "reflected" type. (ves_icall_Type_GetConstructors): Likewise. (ves_icall_Type_GetEvents): Likewise. (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype' argument; pass it to mono_method_get_object() to set the method's "reflected" type. 2004-02-17 Martin Baulig * class.h (MonoDynamicGenericInst): New type. (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields. * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall. (ves_icall_MonoGenericInst_GetConstructors): New interncall. (ves_icall_MonoGenericInst_GetFields): New interncall. * class.c (mono_class_from_generic): Don't call mono_class_initialize_generic() if this is a dynamic instance; ie. it's being created from a TypeBuilder. Use MONO_TYPE_GENERICINST for `class->this_arg.type' and `class->byval_arg.type'. * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed to `inflate_method' and made static. (mono_reflection_inflate_field): Removed. (mono_reflection_generic_inst_initialize): New public method. * reflection.h (MonoReflectionGenericInst): Removed `methods', `ctors' and `fields'; added `initialized'. 2004-02-14 Zoltan Varga * debug-helpers.c (mono_method_full_name): Fix output for empty namespaces. 2004-02-12 Martin Baulig * class.h (MonoClassField): Added `MonoType *generic_type'. * reflection.c (mono_image_get_fieldref_token): Added support for instantiated generic types. (field_encode_inflated_field): Removed. (mono_image_get_inflated_field_token): Removed. (mono_reflection_inflate_field): Return a `MonoReflectionField *'. * reflection.h (MonoReflectionInflatedField): Removed. 2004-02-12 Martin Baulig * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the `gen_method' field from MonoMethodHeader to MonoMethodSignature. * reflection.c (mono_image_get_methodspec_token): Take a `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'. (mono_image_create_token): Check whether we have a `method->signature->gen_method' and call mono_image_get_methodspec_token() if appropriate. (inflated_method_get_object): Removed. (mono_reflection_bind_generic_method_parameters): Return a `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'. (mono_reflection_inflate_method_or_ctor): Likewise. * reflection.h (MonoReflectionInflatedMethod): Removed. 2004-02-12 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Implement proper support for custom valuetype marshalling. * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261. 2004-02-11 Gonzalo Paniagua Javier * icall.c: fixed WSAGetLastError_internal name. 2004-02-11 Zoltan Varga * threads.c (mono_thread_attach): Allow this to be called multiple times for a thread. * threads.c (build_wait_tids): Do not wait for ourselves. * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the appdomain list is empty. * marshal.c (mono_marshal_get_native_wrapper): Do not free the memory returned by mono_string_builder_to_utf16, since it points into managed memory. Thanks to Bernie Solomon for noticing this. * icall.c: Add AppDomainSetup icalls. * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field. * reflection.c (mono_custom_attrs_from_param): Add support for dynamic types. * reflection.c (reflection_methodbuilder_to_mono_method): Save custom attributes to the method_aux struct. Also fix array indexes etc. * loader.c (mono_method_get_param_names): Make dynamic case work again. Tue Feb 10 17:03:04 CET 2004 Paolo Molaro * icall.c, loader.c: icall cleanup: we save quite a bit of memory (both static and runtime) and reduce startup time. 2004-02-10 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on AsAny marshalling conversion instead of crashing. * marshal.c: Fix warnings. 2004-02-09 Martin Baulig * class.h (MonoGenericMethod): Added `MonoMethod *declaring'. * reflection.h (MonoReflectionInflatedMethod): Removed the `declaring' field, it's now in the unmanaged MonoGenericMethod. * reflection.c (method_encode_methodspec): Removed the `method' argument; we get it from `gmethod->declaring'. (inflated_method_get_object): Removed the `declaring' argument. 2004-02-09 Martin Baulig * class.h (MonoGenericMethod): New type. (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and `generic_method'. * metadata.h (MonoMethodHeader): Replaced the `geninst' field with a `MonoGenericMethod *gen_method' one. * class.c (mono_class_inflate_generic_type): Take an additional `MonoGenericMethod * argument. This is only non-NULL if we're inflating types for a generic method. (mono_class_inflate_generic_signature): Renamed to inflate_generic_signature() and made static; take a `MonoGenericMethod *' argument instead of a `MonoGenericInst *'. (inflate_generic_header): Take a `MonoGenericMethod *' argument instead of a `MonoGenericInst *' one. (mono_class_inflate_generic_method): Likewise. * reflection.c (encode_generic_method_sig): Take a `MonoGenericMethod *' argument instead of a `MonoGenericInst *'. (method_encode_methodspec): Likewise. (inflated_method_get_object): Likewise. * reflection.h (MonoReflectionGenericInst): Replaced the `ginst' field with a `MonoGenericMethod *gmethod' one. 2004-02-08 Bernie Solomon * class.h (mono_class_has_parent): add parens to expansion so you can ! this. 2004-02-08 Martin Baulig * image.h (MonoImage): Removed `generics_cache'. * class.c (mono_class_from_generic): Take a `MonoGenericInst *' instead of a `MonoType *' argument; removed the `inflate_methods' argument. Don't inflate methods here. * loader.c (find_method): If it's a generic instance, call mono_class_init() on the `sclass->generic_inst->generic_type'. * metadata.c (mono_type_size): Make this work on uninitialized generic instances; call it on the `ginst->generic_type's class. * reflection.c (mono_reflection_bind_generic_parameters): Call mono_class_from_generic() to create the `ginst->klass'. 2004-02-08 Martin Baulig * class.h (MonoClass): Changed type of `generic_inst' from `MonoType *' to `MonoGenericInst *'. 2004-02-08 Martin Baulig * icall.c (ves_icall_Type_BindGenericParameters): Just call mono_type_get_object(), this is now creating a `MonoGenericInst' for MONO_TYPE_GENERICINST. (ves_icall_MonoGenericInst_GetParentType): Likewise. (ves_icall_MonoGenericInst_GetInterfaces): Likewise. * reflection.c (mono_type_get_object): Return a `MonoGenericInst' instead instead of a `MonoType' for MONO_TYPE_GENERICINST. (inflated_method_get_object): Added `MonoClass *refclass' argument. (mono_reflection_inflate_method_or_ctor): Correctly set declaring and reflected type. * reflection.h (MonoReflectionInflatedMethod): Removed `declaring_type' and `reflected_type'. 2004-02-08 Martin Baulig * class.h (MonoGenericInst): Added `MonoType *parent' and `MonoType **ifaces'. * reflection.h (MonoReflectionGenericInst): Removed `klass', `parent' and `interfaces'. * reflection.c (mono_reflection_bind_generic_parameters): Take a `MonoType *' argument and return a `MonoType *'. * icall.c (ves_icall_MonoGenericInst_GetParentType): New interncall. (ves_icall_MonoGenericInst_GetInterfaces): Likewise. 2004-02-06 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Add support for custom valuetype marshalling. 2004-02-06 Martin Baulig * class.c (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC. (my_mono_class_from_generic_parameter): Likewise. 2004-02-06 Zoltan Varga * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the contents of the symbol files lazily. * object.h (MonoThread): Add 'name' and 'name_len' fields. * threads.h threads.c icall.c: New icalls for getting and setting the threads name. 2004-02-05 Zoltan Varga * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): Raise an exception when the domain is not found. 2004-02-03 Martin Baulig * reflection.c (mono_image_get_methodspec_token): Use the uninflated signature; fixes gen-33. 2004-02-02 Zoltan Varga * gc.c threads.c: Make the finalizer thread a normal managed thread so the finalizer code can use thread functionality. * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for the finalizer thread. * threads.c: Make some functions more robust. * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532. * metadata.h: Add new marshalling conventions. * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode stringbuilder marshalling. Fixes #53700. * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field. * reflection.c (mono_image_get_type_info): Save declarative security info. * reflection.c (mono_image_get_field_info): Handle uninitialized unmanaged fields as well. * appdomain.c: Bump corlib version. 2004-02-01 Martin Baulig * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for method type arguments. 2004-01-30 Duncan Mak * marshal.h: Add prototype for "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem" and "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to fix the build. 2004-01-30 Zoltan Varga * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall. (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall. 2004-01-29 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Add support for custom marshalling of valuetypes. * marshal.c: Fix some warnings. 2004-01-29 Martin Baulig * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv' for generic method parameters. * reflection.c (method_encode_methodspec): Write the uninflated signature into the methodspec table. (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring' is always the uninflated method. (reflection_methodbuilder_to_mono_method): Copy the generic parameters from the MethodBuilder into `header->gen_params'. 2004-01-29 Zoltan Varga * class.c (mono_class_from_generic_parameter): Fix warning. 2004-01-27 Martin Baulig * class.c (mono_class_from_generic_parameter): Don't create `klass->methods' here. 2004-01-26 Zoltan Varga * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll extension since it does not work with libraries named lib.dll.so. 2004-01-25 Martin Baulig * class.c (mono_class_inflate_generic_type): Added support for MONO_TYPE_GENERICINST. * reflection.c (mono_reflection_inflate_method_or_ctor): Also inflate methods on open constructed types. 2004-01-24 Gonzalo Paniagua Javier * object.c: fire ProcessExit event in the root AppDomain after running Main. Fixes bug #53299. Fri Jan 23 21:27:40 CET 2004 Paolo Molaro * socket-io.c: include the new socket-wrappers.h header. Use the wrappers instead of the unix socket functions to make the code more clear. 2004-01-23 Zoltan Varga * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010. * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names. Fixes #22532. 2004-01-22 Zoltan Varga * reflection.c (mono_image_create_pefile): Handle the case when the entry point is not a MethodBuilder. * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point' field to ReflectionMethod since it is not allways a builder. * reflection.c (type_get_fully_qualified_name): New helper function to return the fully qualified name of a type. * reflection.c (encode_marshal_blob): Always emit the fully qualified type name for custom marshallers. * reflection.c (mono_marshal_spec_from_builder): Ditto. * class.c (mono_class_setup_vtable): If a parent class already implements an interface, use the implementing methods from that class. Fixes #53148. 2004-01-22 Gonzalo Paniagua Javier * threadpool.c: just return instead of ExitThread to allow for thread clean up earlier. 2004-01-21 Zoltan Varga * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion when closing resource modules. * reflection.c (mono_image_create_pefile): Handle the case when the entry point is not a MethodBuilder. * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point' field to ReflectionMethod since it is not allways a builder. 2004-01-20 Bernie Solomon * marshal.c (mono_marshal_get_managed_wrapper): mono_marshal_alloc takes native int so CONV_I the arg for 64bits. 2004-01-20 Zoltan Varga * reflection.c (fixup_cattrs): New function to fixup the methoddef tokens in the cattr table. Fixes #53108. 2004-01-20 Gonzalo Paniagua Javier * loader.c: don't trim ".dll" before looking up in the config file. Don't leak orig_scope. Reopened bug #22532 in the meanwhile. 2004-01-19 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Return the module which contains the resource as well. (ves_icall_System_Reflection_Module_Close): New icall. * appdomain.c: Bump corlib version number. * image.c (mono_image_addref): New public function. * assembly.c: Call mono_image_addref. * reflection.c (mono_module_get_object): Increase reference count of the image. * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names. Fixes #22532. * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c: Applied patch from Bernie Solomon . Throw proper exceptions on DllImport problems. Mon Jan 19 17:50:27 CET 2004 Paolo Molaro * class.c, metadata.c: eliminate CSIZE macro. 2004-01-19 Lluis Sanchez Gual * icall.c: Added ves_icall_type_IsInstanceOf internal call. * object.h: Added async_callback field in MonoAsyncResult. * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback. * verify.c: Added async_callback in MonoAsyncResult layout. 2004-01-17 Zoltan Varga * reflection.c (mono_reflection_get_custom_attrs): Add support for Modules. 2004-01-16 Zoltan Varga * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder marshalling. (mono_marshal_method_from_wrapper): Add null pointer check. 2004-01-16 Martin Baulig * debug-mono-symfile.h: Set version number to 36 and reflect latest symbol writer changes. 2004-01-16 Zoltan Varga * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for multi-dimensional arrays. (mono_class_is_assignable_from): Check vectors<->one dim. arrays. (mono_class_from_mono_type): Use bounded_array_class_get. * class.c (mono_bounded_array_class_get): New function which takes a 'bounded' bool argument to distinguish vectors from one dimensional arrays. * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call bounded_array_class_get if the array has bounds. * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Search modules loaded using AssemblyBuilder:AddModule as well. 2004-01-16 Gonzalo Paniagua Javier * appdomain.c: increased corlib version. * filewatcher.c: removed g_print. * icall.c: (get_property_info): only allocate what is actually requested. (ves_icall_Type_GetInterfaces): free the bitset in case of early error. 2004-01-16 Gonzalo Paniagua Javier * Makefile.am: added filewatcher.[ch] * filewatcher.[ch]: FileSystemWatcher runtime support. * icall.c: added new FSW icalls. Tue Jan 13 20:03:17 CET 2004 Paolo Molaro * string-icalls.c: fix stringbuilder regression as suggested by Iain McCoy . 2004-01-13 Zoltan Varga * process.c (process_read_stringtable_block): Recognize '007f' as a language neutral stringtable block. 2004-01-12 Patrik Torstensson * object.h (MonoStringBuilder) : Changed layout to support our new stringbuilder class. * marshal.c: Change marshalling to support the new layout of string builder. * appdomain.c: increased version number because new layout of string builder. 2004-01-12 Zoltan Varga * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the assembly name as an string instead of an AssemblyName, since it is easier to extract info from it. * appdomain.c (mono_domain_assembly_preload): Look for assemblies in the culture subdirectories too. Fixes #52231. 2004-01-12 Gonzalo Paniagua Javier * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName. It takes 2 new parameters with an optional name for the method to look for and case ignoring info. * threadpool.c: removed unused variable. 2004-01-11 Gonzalo Paniagua Javier * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName. It takes 2 new parameters with an optional name for the property to look for and case ignoring info. Fixes bug #52753. 2004-01-09 Zoltan Varga * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net). Fix #52451. 2004-01-08 Gonzalo Paniagua Javier * appdomain.c: * assembly.c: escape the uri before passing it to g_filename_from_uri. Fixes bug #52630. 2004-01-07 Zoltan Varga * reflection.c: Add support for more than one unmanaged resource. * icall.c (ves_icall_get_enum_info): Store the value of the enum fields in field->def_value, as done in all other cases. * reflection.c (mono_reflection_get_custom_attrs): Add support for TypeBuilders. * reflection.c (mono_reflection_create_runtime_class): Remove errorneous assignment to klass->element_class, since it is already done in mono_reflection_setup_internal_class. 2004-01-07 Gonzalo Paniagua Javier * gc.c: added missing LeaveCriticalSection. * icall.c: indented a couple of lines. * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever if we call EndInvoke inside a callback. Fixes bug #52601. 2004-01-07 Martin Baulig * mono-debug-debugger.h (MonoDebuggerIOLayer): Added `GetCurrentThreadID'. 2004-01-06 Miguel de Icaza * appdomain.c: Use messages in NotImplementedException. * exception.c (mono_get_exception_not_implemented): Now this takes a message argument. * marshal.c (emit_str_to_ptr_conv): g_warning and throw an exception instead of g_asserting an aborting when something is not implemented. Add some inline docs. 2004-01-05 Zoltan Varga * reflection.h: Update after changes to object layout. * reflection.c: Implement saving of unmanaged aka win32 resources. * appdomain.c: Bump version number. * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): Handle missing domains gracefully. 2004-01-05 Atsushi Enomoto * file-io.c : On Windows, there are much more invalid_path_chars. Fri Jan 2 13:35:48 CET 2004 Paolo Molaro * class.h, object.c: prepare for GetType () speedup. 2003-12-24 Atsushi Enomoto * profiler.c: workaround for --profile null reference exception on cygwin. Patch by Patrik Torstensson. 2003-12-22 Bernie Solomon * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX) make work for unaligned access. Mon Dec 22 18:37:02 CET 2003 Paolo Molaro * class.c: small cleanup (class->fields [i] -> field). * image.c: check address of metadata is valid. 2003-12-22 Zoltan Varga * assembly.h assembly.c (mono_assembly_loaded): New public function to search the list of loaded assemblies. * reflection.c (mono_reflection_type_from_name): Use mono_assembly_loaded instead of mono_image_loaded. * reflection.c: Fix warnings. 2003-12-20 Zoltan Varga * image.h (MonoImage): Add a new 'dynamic' field to denote that the image is dynamic. This is needed since an assembly can contain both dynamic and non-dynamic images. * class.c loader.c metadata.c object.c: Use image->dynamic instead of assembly->dynamic. * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall. * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field to store modules loaded using AddModule. * reflection.c (mono_image_fill_file_table): Generalize this so it works on Modules. * reflection.c (mono_image_fill_export_table_from_class): New helper function. * reflection.c (mono_image_fill_export_table_from_module): New function to fill out the EXPORTEDTYPES table from a module. * reflection.c (mono_image_emit_manifest): Refactor manifest creation code into a separate function. Also handle loaded non-dynamic modules. * reflection.c (mono_image_basic_init): Fix memory allocation. * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version. * assembly.c (mono_assembly_load_references): Make this public. 2003-12-19 Martin Baulig * class.c (mono_class_initialize_generic): Made this static, take a `MonoGenericInst *' instead of a `MonoClass *'. (mono_class_from_generic): Call mono_class_initialize_generic() unless we're already initialized or being called from do_mono_metadata_parse_generic_inst(). * class.h (MonoGenericInst): Added `initialized' and `init_pending' flags. * metadata.c (do_mono_metadata_parse_generic_inst): Don't call `mono_class_init (gklass)' or mono_class_initialize_generic() here; set `generic_inst->init_pending' while parsing the `type_argv'. 2003-12-19 Bernie Solomon * locales.c: include string.h for memxxx prototypes 2003-12-19 Zoltan Varga * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class constructor when accessing literal fields. 2003-12-17 Zoltan Varga * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version. * reflection.c (assembly_add_resource_manifest): New function to fill the MANIFESTRESOURCE table. * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table. * reflection.h: Update to changes in class layout. * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): Reenable call to mono_runtime_is_shutting_down (). * appdomain.c (mono_runtime_is_shutting_down): New helper function to determine if the runtime is shutting down. 2003-12-16 Jackson Harper * icall.c: comment out call to mono_runtime_is_shutting_down to fix build. 2003-12-16 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules. (ves_icall_System_Environment_get_HasShutdownStarted): New icall. 2003-12-15 Bernie Solomon * reflection.c: move definition of swap_with_size to before its first call 2003-12-15 Zoltan Varga * appdomain.c (mono_runtime_is_shutting_down): New public function. * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New icall. * object.c: Fix warnings. * icall.c (ves_icall_Type_Get...): Only consider inherited static members if FlattenHierarchy is set. * reflection.c (mono_image_add_decl_security): New function to emit declarative security. * reflection.h reflection.c: Add support for declarative security. * appdomain.c (MONO_CORLIB_VERSION): Bump version number. 2003-12-13 Zoltan Varga appdomain.c (MONO_CORLIB_VERSION): Bump version number. * appdomain.c verify.c: Moved corlib version checking into its own function in appdomain.c since it needs to create vtables etc. 2003-12-13 Patrik Torstensson * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this instead of unwrapped server. 2003-12-12 Zoltan Varga * verify.c (check_corlib): Fix field index. 2003-12-10 Zoltan Varga * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New GetGacPath icall. 2003-12-10 Bernie Solomon * process.c: (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal ves_icall_System_Diagnostics_Process_SetWorkingSet_internal): cope with sizeof(size_t) != sizeof(guint32). 2003-12-10 Gonzalo Paniagua Javier * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError in case of failure. 2003-12-10 Mark Crichton * icall.c: removed the GetNonZeroBytes. We now handle this case in managed code. * rand.c, rand.h: Same here. Also cleaned up the clode slightly. Tue Dec 9 15:36:18 CET 2003 Paolo Molaro * class.h, class.c, icall.c, marshal.c, object.c: ignore fields marked as deleted. 2003-12-09 Zoltan Varga * verify.c (check_corlib): Handle the case when the version field is initialized by a static constructor. 2003-12-08 Patrik Torstensson * rand.c (InternalGetBytes): Implemented win32 version with cryptapi 2003-12-08 Martin Baulig * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return a MonoReflectionGenericParameter, also take the parameter index and name as arguments. (ves_icall_MethodBuilder_define_generic_parameter): Likewise. (ves_icall_MonoGenericParam_initialize): New interncall. (ves_icall_Type_make_byref_type): New interncall. * reflection.h (MonoReflectionGenericParam): Derive from MonoReflectionType, not just from MonoObject. Added `refobj' and `index' fields. * reflection.c (mono_reflection_define_generic_parameter): Create and return a new MonoReflectionGenericParam; don't initialize the constraints here. (mono_reflection_initialize_generic_parameter): New public method; initializes the constraints and creates the `param->pklass'. 2003-12-08 Zoltan Varga * reflection.h reflection.c: Use the new fields 'num_types', 'num_fields' and 'num_methods' to track the number of types etc. * verify.c (check_corlib): Check corlib version number. 2003-12-07 Zoltan Varga * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this function works on all methods. 2003-12-07 Lluis Sanchez Gual * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults. * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set the custom_type_info flag of the transparent proxy. * object.c: Added method mono_object_isinst_mbyref for casting mbyref objects that supports IRemotingTypeInfo. * object.h: Added custom_type_info field in transparent proxy. 2003-12-06 Martin Baulig * class.c (mono_class_create_from_generic): Removed. (mono_class_from_generic): Check `ginst->klass' before doing anything else. This is important to fully support "recursive" generic types. * metadata.c (do_mono_metadata_parse_generic_inst): Create an empty `generic_inst->klass' before doing anything else. 2003-12-06 Dick Porter * verify.c: * object.h: * icall.c: * locales.c: Use C structs to access class fields. Don't do a conversion between MonoString and UChar because both are platform-endian UTF-16. Compare now takes startindex and count parameters. Add a char overload for IndexOf. Speed up the invariant string IndexOf. 2003-12-05 Zoltan Varga * Makefile.am (monosn_LDADD): Fix parallel build. 2003-12-04 Martin Baulig * icall.c (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR. (ves_icall_Type_make_array_type): New interncall. 2003-12-04 Martin Baulig * locales.c: also change it in the !HAVE_ICU case. 2003-12-04 Dick Porter * icall.c: * locales.c: construct_compareinfo is now in CompareInfo, not CultureInfo. 2003-12-04 Zoltan Varga * image.c (mono_image_load_file_for_image): Cache loaded images in the image->files array. * image.c (load_class_name): Load class names from the EXPORTEDTYPES table as well. * assembly.c (mono_assembly_load_references): Only load references once. * class.c (mono_class_from_name): Avoid linear search of the EXPORTEDTYPE table. * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well. 2003-12-03 Zoltan Varga * image.h (MonoImage): Add 'field_cache' field. * loader.c (mono_field_from_token): Cache field lookups. * reflection.c (mono_module_get_object): Fix name property. * icall.c (ves_icall_get_enum_info): Update after changes to mono_metadata_get_constant_index (). * icall.c: Get rid of get_type_info icall, use a separate icall for each type property to avoid needless memory allocations. Fixes #51514. * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter to avoid needless binary searches. * class.c (class_compute_field_layout): Move the initialization of field->def_value to mono_class_vtable (). * class.c (mono_class_layout_fields): Enable GC aware auto layout for non-corlib types. * object.c (mono_object_allocate): Make it inline. * object.c (mono_object_allocate_spec): Make it inline. 2003-12-02 Dick Porter * locales.c (create_NumberFormat): NumberFormatInfo construction. Patch by Mohammad DAMT (mdamt@cdl2000.com). 2003-12-01 Dick Porter * threads.c: Fix signature and call in CreateMutex and CreateEvent. 2003-12-01 Dick Porter * icall.c: * locales.c: Implement string compares and searching * object.h: Add extra Thread field 2003-11-30 Zoltan Varga * reflection.c (fixup_method): Add support for MonoCMethod. 2003-11-28 Zoltan Varga * gc.c: Fix hangs and error messages when GC_DONT_GC is set. * reflection.c (assembly_name_to_aname): Allow extra characters in assembly names. Fixes #51468. 2003-11-26 Zoltan Varga * exception.c (mono_exception_from_name_domain): New helper function. * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the exception object in the correct domain. * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix formatting + make a copy a the input data. * loader.c (mono_get_method_from_token): Methods which contain native code do not have entries in the ImplMap. (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw. Thanks to Gonzalo for spotting this. * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall. * assembly.h (mono_assembly_load_from): Split the second part of assembly loading into a new public function. * exception.h (mono_get_exception_bad_image_format): New function. 2003-11-24 Zoltan Varga icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Enumerate all modules inside a dynamic assembly. Fixes #51293. * icall.c: Add new icall for creating dynamic methods. * loader.h debug-helpers.c: Add new wrapper type for dynamic methods. * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields. * reflection.c (mono_reflection_create_dynamic_method): New icall to create a dynamic method. * reflection.c (resolve_object): New helper function. * reflection.c: Generalize ReflectionMethodBuilder and the functions which manipulate it so they can also work on dynamic methods. * reflection.c (reflection_method_builder_to_mono_method): Avoid creating the MonoReflectionMethodAux structure if it is not needed. * reflection.h verify.c: Update after changes to object layout. * reflection.c (method_builder_encode_signature): Fix compilation on gcc 2.95.x. 2003-11-21 Lluis Sanchez Gual * appdomain.h: Added support for context static fields. Added static_data field to MonoAppContext and renamed thread_static_fields to a more generic special_static_fields in MonoAppDomain, since it can now contain context static fields. * domain.c: Updated hashtable name. * object.c: Replaced field_is_thread_static() for a more generic field_is_special_static() which also checks for context static attribute. In mono_class_vtable(), added support for static context fields. * threads.c: Changed methods that manage thread static fields to more generic methods so they can be reused both for thread and context static data. * threads.h: Declared some new methods. 2003-11-21 Zoltan Varga * reflection.h: Update after changes to the managed types. * reflection.c (encode_custom_modifiers): New helper function. * reflection.c (method_encode_signature): Emit custom modifiers. * reflection.c (field_encode_signature): Emit custom modifiers. 2003-11-18 Zoltan Varga * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field. * icall.c (ves_icall_System_ValueType_Equals): New optimized implementation. * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New icall. * object.c (mono_field_get_value_object): New function. * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain specific. 2003-11-17 Zoltan Varga * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to return a preallocated out-of-memory exception instance. * object.c (out_of_memory): Use the new function. * metadata.c (mono_metadata_parse_type): Handle the case when the byref flag is before the custom modifiers. Fixes #49802. 2003-11-16 Martin Baulig * class.c (mono_class_is_open_constructed_type): Implemented the MONO_TYPE_GENERICINST case. 2003-11-16 Zoltan Varga * assembly.c (mono_assembly_fill_assembly_name): New function to fill out the MonoAssemblyName structure. (mono_assembly_open): Use the new function. * icall.c (fill_reflection_assembly_name): New helper function. * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the new function. * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall. 2003-11-15 Martin Baulig * class.c (mono_class_is_open_constructed_type): New public function; checks whether a type is an open constructed type, ie. whether it still contains type parameters. (mono_class_inflate_generic_type): If we're a type parameter and the inflated type is also a MONO_TYPE_(M)VAR, return the original type. * class.h (MonoGenericInst): Added `guint32 is_open'. * loader.c (method_from_methodspec): Check whether we're an open or closed constructed type and set `ginst->is_open'. * reflection.c (mono_reflection_bind_generic_parameters): Check whether we're an open or closed constructed type and set `ginst->is_open'. (mono_reflection_inflate_method_or_ctor): Don't inflate methods from open constructed types. 2003-11-15 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): If we're a generic instance (instead of a generic type declaration) with unbound generic parameters, bind them to our actual types. 2003-11-14 Martin Baulig * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'. * reflection.c (mono_reflection_bind_generic_parameters): If we're an interface type, populate `res->interfaces' with instantiated versions of all the interfaces we inherit. 2003-11-13 Aleksey Demakov * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll when MONO_PATH is set but doesn't contain the install dir. 2003-11-13 Gonzalo Paniagua Javier * icall.c: (ves_icall_Type_GetInterfaces): don't return an interface twice when it's also implemented in base classes. Fixes bug #50927. 2003-11-13 Zoltan Varga * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks if this method is called from a finalizer. Fixes #50913. 2003-11-12 Miguel de Icaza * threads.c: Implement VolatileRead/VolatileWrite * icall.c: Add new icalls for VolatileRead/VolatileWrite 2003-11-12 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc 2.95.3. * assembly.c (mono_assembly_open): Fix windows build. Applied patch from Peter Ross (pro@missioncriticalit.com). 2003-11-12 Lluis Sanchez Gual * icall.c: Added internal call for System.Environment::GetMachineConfigPath 2003-11-12 Zoltan Varga * assembly.c (mono_assembly_load_references): Disable check because it triggers on older corlibs which lots of people have. 2003-11-12 Jackson Harper * assembly.c: Change corlib name to mscorlib. Add a temp. hack to load corlib.dll if mscorlib.dll is not found. * assembly.h: Remove corlib name define. * class.c: * domain.c: * image.c: Change corlib name to mscorlib. 2003-11-12 Zoltan Varga * debug-mono-symfile.c: Add patch from FreeBSD ports tree. 2003-11-11 Miguel de Icaza * appdomain.h: Added loader_optimization here to sync with the C# code, and add disallow_binding_redirects field. 2003-11-11 Zoltan Varga * mono-debug.c (mono_debug_add_method): Ignore unknown modules. * reflection.c (mono_image_build_metadata): Fix crash on modules with no types. * reflection.h (MonoMethodInfo): Track changes to the managed structure. * icall.c (ves_icall_get_method_info): Return callingConvention as well. * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add namespaces from the EXPORTEDTYPE table as well. * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types from all modules inside the assembly. 2003-11-11 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): Make this work for interfaces. 2003-11-11 Martin Baulig * mono-debug.c (mono_debug_add_type): Ignore unknown modules. 2003-11-11 Martin Baulig * reflection.c (mono_reflection_inflate_method_or_ctor): Allow "MonoInflatedMethod" and "MonoInflatedCtor". 2003-11-11 Zoltan Varga * reflection.c (resolution_scope_from_image): Use the assembly table from the manifest module, since other modules don't have it. * debug-helpers.c (mono_type_full_name): New helper function. * image.h (MonoAssembly): Change 'dynamic' to a boolean. * image.c (mono_image_load_file_for_image): New public function which is a replacement for the load_file_for_image in class.c. * assembly.c (mono_assembly_load_module): A wrapper for the function above which does assembly association and reference loading too. * class.c (mono_class_from_name): Call mono_assembly_load_module. 2003-11-11 Gonzalo Paniagua Javier * appdomain.c: not all of the attributes for the full assembly name are required and the order doesn't matter. Fixes bug #50787. 2003-11-10 Dick Porter * locales.c: Use platform-endian UTF16 2003-11-10 Zoltan Varga * reflection.c: Emit FILE and EXPORTEDTYPE tables. 2003-11-10 Martin Baulig * metadata.c (mono_metadata_load_generic_params): Make this actually work. * reflection.c (mono_reflection_bind_generic_parameters): If our parent is a generic instance, pass all the `types' to it, no matter whether it has the same number of type parameters or not. 2003-11-10 Zoltan Varga * reflection.c: Emit FILE and EXPORTEDTYPE tables. * assembly.c (mono_assembly_load_references): Move the image<->assembly assignment code to this function so it gets called recursively for all modules. * image.c (load_modules): Remove the assembly assignment since it is now done by mono_assembly_load_references. * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Add 'module' argument. (mono_module_get_types): New helper function. (ves_icall_System_Reflection_Module_InternalGetTypes): New icall. 2003-11-08 Martin Baulig * class.c (mono_class_inflate_generic_method): Interface method don't have a header. * reflection.c (mono_image_get_methodspec_token): Take an additional `MonoGenericInst *' argument instead of reading it from the header; this is necessary to support interfaces. (mono_image_create_token): Pass the `MonoGenericInst *' from the MonoReflectionInflatedMethod to mono_image_get_methodspec_token(). (inflated_method_get_object): Take an additional `MonoGenericInst *' argument. * reflection.h (MonoReflectionInflatedMethod): Added `MonoGenericInst *ginst'. 2003-11-07 Zoltan Varga * gc.c (mono_domain_finalize): Fix compilation for no GC case. 2003-11-06 Zoltan Varga * appdomain.c (mono_domain_unload): Add a workaround for bug #27663. 2003-11-06 Zoltan Varga * reflection.c (reflection_methodbuilder_from_method_builder): (reflection_methodbuilder_from_ctor_builder): New helper functions to initialize a ReflectionMethodBuilder structure. (mono_image_get_methodbuilder_token): (mono_image_get_ctorbuilder_token): New functions to emit memberref tokens which point to types in another module inside the same assembly. * reflection.c: Use the new helper functions. * reflection.c (mono_image_basic_init): Initialize basedir and culture. * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image instead of AssemblyBuilder->dynamic_assembly in the appropriate places. * reflection.c (resolution_scope_from_image): Emit a moduleref if neccesary. * reflection.c (mono_image_build_metadata): Emit metadata only for the current module. Emit the manifest only for the main module. * reflection.c (mono_image_create_token): Add assertion when a memberref needs to be created. * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields. * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a larger buffer for the custom attribute blob. Fixes #50637. 2003-11-03 Gonzalo Paniagua Javier * threadpool.c: notify listener on async processing handles after invoking the async callback. Thanks to Zoltan. 2003-11-03 Zoltan Varga * reflection.c (create_dynamic_mono_image): Call mono_image_init to avoid code duplication. * reflection.h (MonoDynamicImage): New type which is currently unused, but will be used through the ref.emit code in place of MonoDynamicAssembly. * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the object layout. * reflection.c (create_dynamic_mono_image): Rewrote so it now creates a MonoDynamicImage instead of just a MonoImage. * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder icalls to ModuleBuilder but keep their semantics, so they will work with moduleb->assemblyb. This will change later. 2003-11-03 Zoltan Varga * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the object layout. * reflection.c (mono_image_build_metadata): Avoid creation of a default main module, since it is now done by the managed code. 2003-11-03 Martin Baulig * reflection.c (mono_reflection_inflate_method_or_ctor): Set `ginst->klass' here. (method_encode_methodspec): Don't use the `ginst->generic_method's klass if it's a generic instance, use `ginst->klass' in this case. 2003-11-03 Martin Baulig * reflection.c (mono_image_get_generic_method_param_info): Removed, use mono_image_get_generic_param_info() instead. (mono_image_get_type_info): Write the GenericParam table before the Method table. This is neccessary because in the GenericParam table, type parameters of the class (ie. '!0' etc.) must come before the ones from its generic methods (ie. '!!0' etc). 2003-11-03 Zoltan Varga * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469. 2003-11-02 Martin Baulig * reflection.c (create_generic_typespec): Take a `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get the generic parameters from it. 2003-11-02 Martin Baulig * reflection.c (fieldref_encode_signature): Take a `MonoType *' instead of a `MonoClassField *' since we just need the type. (create_generic_typespec): New static function. Creates a TypeSpec token for a generic type declaration. (mono_image_get_generic_field_token): New static function. (mono_image_create_token): If we're a FieldBuilder in a generic type declaration, call mono_image_get_generic_field_token() to get the token. 2003-11-02 Martin Baulig * reflection.h (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added `MonoReflectionGenericInst *declaring_type' and `MonoReflectionGenericInst *reflected_type' fields. * reflection.c (mono_reflection_inflate_method_or_ctor): Take a `MonoReflectionGenericInst *declaring_type' and a `MonoReflectionGenericInst *reflected_type' argument instead of a single `MonoReflectionGenericInst *type' one. Set `res->declaring_type' and `res->reflected_type' from them. (mono_reflection_inflate_field): Likewise. 2003-11-02 Martin Baulig * class.c (mono_class_setup_vtable): Don't store generic methods in the vtable. 2003-11-02 Martin Baulig * reflection.h (MonoReflectionGenericInst): Added `MonoReflectionType *declaring_type'. * reflection.c (mono_reflection_bind_generic_parameters): Use `if (tb->parent)' instead of `klass->parent'. 2003-11-01 Zoltan Varga * assembly.c (mono_assembly_open): Avoid crash if a module is loaded with an empty ASSEMBLY table. * reflection.c (mono_image_build_metadata): Avoid using the same loop variable in the inner and outer loops. 2003-10-31 Zoltan Varga * metadata.h (mono_metadata_make_token): Put parentheses around macro argument. * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature. * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain icalls. Instead, do everything in managed code. This is needed since it is hard to restore the original domain etc. in unmanaged code in the presence of undeniable exceptions. * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): New icalls to push and pop appdomain refs. 2003-10-31 Martin Baulig * class.c (inflate_generic_type): Renamed to mono_class_inflate_generic_type() and made it public. * icall.c ("System.Reflection.MonoGenericInst::inflate_field"): New interncall. * loader.c (mono_field_from_memberref): Also set the retklass for typespecs. * fielder.c (mono_image_get_inflated_field_token): New static method; creates a metadata token for an inflated field. (mono_image_create_token, fixup_method): Added support for "MonoInflatedField". (fieldbuilder_to_mono_class_field): New static function. (mono_reflection_inflate_field): New public function. * reflection.h (MonoReflectionGenericInst): Added `MonoArray *fields'. (MonoReflectionInflatedField): New typedef. 2003-10-30 Bernie Solomon * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix for Solaris and other platforms without s6_addr16 2003-10-30 Martin Baulig * class.c (inflate_generic_type): Take just one `MonoGenericInst *' argument instead of two. (mono_class_inflate_generic_signature): Likewise. (inflate_generic_header): Likewise. (mono_class_inflate_generic_method): Likewise. In addition, if `ginst->klass' is set, it becomes the new `method->klass'. * class.h (MonoGenericInst): Removed the `gpointer mbuilder' field. * reflection.c (encode_generic_method_sig): Write a 0xa as the first byte. [FIXME] (method_encode_methodspec): If we have generic parameters, create a MethodSpec instead of a MethodRef. (fixup_method): Added support for "MonoInflatedMethod" and "MonoInflatedCtor". (mono_image_create_token): Added support for "MonoInflatedMethod" and "MonoInflatedCtor". (inflated_method_get_object): New static function; returns a managed "System.Reflection.MonoInflatedMethod" object. (mono_reflection_bind_generic_method_parameters): Return a `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'. (mono_reflection_inflate_method_or_ctor): Likewise. (mono_image_get_generic_method_param_info): Initialize unused fields to zero. (mono_image_get_generic_param_info): Likewise. * reflection.h (MonoReflectionInflatedMethod): New public typedef. Corresponds to the managed "S.R.MonoInflatedMethod" and "S.R.MonoInflatedCtor" classes. * loader.c (method_from_memberref): If we're a TypeSpec and it resolves to a generic instance, inflate the method. 2003-10-28 Dick Porter * object.c (mono_runtime_run_main): Convert command-line arguments into utf8, falling back to the user's locale encoding to do so. 2003-10-27 Zoltan Varga * loader.c (mono_get_method_from_token): Avoid looking up the icalls at this time. * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here. * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking up icalls at method definition time. Partially fixes #33569. 2003-10-25 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out] marshalling of arrays. Fixes #50116. * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall. * appdomain.c (unload_thread_main): Clear class->cached_vtable if it points to a vtable in the dying appdomain. * appdomain.c (mono_domain_unload): Move the notification of OnUnload listeners into unmanaged code inside the lock. * object.c (mono_class_vtable): Turn off typed allocation in non-root domains and add some comments. 2003-10-25 Martin Baulig * class.h (MonoGenericInst): Added `MonoClass *klass' field. * image.h (MonoImage): Added `GHashTable *typespec_cache'. * metadata.c (mono_metadata_parse_generic_inst): Renamed to `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're currently parsing. Create the generic class and store it in `generic_inst->klass' before parsing the type arguments. This is required to support "recursive" definitions; see mcs/tests/gen-23.cs for an example. (mono_type_create_from_typespec): Use a new `image->typespec_cache' to support recursive typespec entries. * class.c (mono_class_setup_parent): If our parent is a generic instance, we may get called before it has its name set. (mono_class_from_generic): Splitted into mono_class_create_from_generic() and mono_class_initialize_generic(). 2003-10-25 Martin Baulig * icall.c (ves_icall_Type_BindGenericParameters): Return a `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'. ("System.Reflection.MonoGenericInst::inflate_method"): New interncall. ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall. * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST. (create_typespec): Likewise. (mono_reflection_bind_generic_parameters): Return a `MonoReflectionGenericInst *' instead of a `MonoClass *'. (mono_reflection_inflate_method_or_ctor): New public function. * reflection.h (MonoReflectionGenericInst): New typedef. 2003-10-24 Zoltan Varga * object.c (mono_class_proxy_vtable): Run the whole vtable construction inside the domain lock. Fixes #49993. * object.c (mono_class_vtable): When typed allocation is used, allocate vtables in the GC heap instead of in the mempool, since the vtables contain GC descriptors which are used by the collector even after the domain owning the mempool is unloaded. * domain.c (mono_domain_set): Rename to mono_domain_set_internal. * domain.c (mono_domain_unload): Rename to mono_domain_free to better reflect what it does. Also invalidate mempools instead of freeing them if a define is set. * appdomain.h (MonoAppDomainState): New enumeration to hold the state of the appdomain. * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to hold the finalizable objects in this domain. * appdomain.h (_MonoDomain): New field 'state' to hold the state of the appdomain. * appdomain.c (mono_domain_set): New function to set the current appdomain, but only if it is not being unloaded. * appdomain.c threads.c threadpool.c object.c: Avoid entering an appdomain which is being unloaded. * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent unloading of the root appdomain. * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New icall to execute a method in another appdomain. Intended as a replacement for InternalSetDomain, which can confuse the code generation in the JIT. * appdomain.c (mono_domain_is_unloading): New function to determine whenever an appdomain is unloading. * appdomain.c (mono_domain_unload): New function to correctly unload an appdomain. * assembly.c (mono_assembly_load_references): Check that an assembly does not references itself. * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a domain manually, it asks the finalizer thread to do it, then waits for the result. Also added a timeout. * icall.c: Register the new icalls. * threads.h threads.c: Export the mono_gc_stop_world and mono_gc_start_world functions. * mempool.h mempool.c (mono_mempool_invalidate): New debugging function to fill out the mempool with 0x2a. 2003-10-22 Zoltan Varga * reflection.h (MonoReflectionMethodAux): New structure to store information which is rarely used, thus is not in the MonoMethod structure. * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to store the aux info. * reflection.c (mono_methodbuilder_to_mono_method): Store param names and marshalling info into the aux structure. * loader.c (mono_method_get_marshal_info): Retrieve the marshal info from the aux structure. * loader.c (mono_method_get_param_names): Retrieve the param names from the aux structure. 2003-10-21 Zoltan Varga * exception.h exception.c: Add AppDomainUnloadedException && fix warning. 2003-10-21 Dick Porter * socket-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied patch from Laramie Leavitt moving divide out of loop. (Bug 45381). 2003-10-21 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): `klass->parent' is NULL for interfaces. 2003-10-21 Martin Baulig * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR. 2003-10-20 Zoltan Varga * exception.c (mono_exception_from_name_msg): New helper function for creating exceptions and initializing their message field. * exception.c: Simplify functions using the new helper. * exception.h exception.c (mono_get_exception_cannot_unload_appdomain): New function. * object.h object.c: Remove G_GNUC_NORETURN from the signature of mono_raise_exception, since otherwise gcc doesn't generate the function epilog for raise_exception, confusing the stack unwinding in the JIT. Fixes #45043. * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux. Fixes #49499. 2003-10-18 Gonzalo Paniagua Javier * icall.c: OutputDebugStringW expects 16-bit unicode characters, not utf8. 2003-10-18 Lluis Sanchez Gual * icall.c: Removed GetUninitializedObject method because AllocateUninitializedClassInstance does the same. 2003-10-18 Martin Baulig * class.c (inflate_generic_signature): Renamed to mono_class_inflate_generic_signature() and made it public. (my_mono_class_from_generic_parameter): New static function; if we don't already have the generic parameter's MonoClass, create a very simple one which is just used internally in the runtime and not passed back to managed code. * class.h (MonoGenericInst): Added `gpointer mbuilder' field. * metadata.h (MonoMethodSignature): Moved the `MonoGenericParam *gen_params' to the MonoMethodHeader. (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here. * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to ves_icall_MonoMethod_GetGenericArguments(); this is now an interncall on the MonoMethod class, not on MethodInfo. (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now calling mono_reflection_bind_generic_method_parameters() directly. * loader.c (mono_method_get_signature): If this is a MethodSpec; return the already computed `method->signature'. (method_from_methodspec): New static function to load a method from a MethodSpec entry. (mono_get_method_from_token): Call the new method_from_methodspec() for MethodSpec tokens. (mono_get_method_from_token): If we're a generic method, load the type parameters. * reflection.c (mono_image_get_memberref_token): Allow MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec table. (fixup_method): Added support for MONO_TABLE_METHODSPEC. (mono_image_create_token): First check whether it's a generic method (so we'd need to create a MethodSpec), then do the other two alternatives. (mono_reflection_bind_generic_method_parameters): Return a `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now called directly from the interncall. 2003-10-17 Zoltan Varga * reflection.c (load_public_key): Move loading of the public key into managed code. * image.h (MonoAssemblyName): Add public_key and hash_alg fields. * assembly.c (mono_assembly_open): Fill in public_key and hash_alg fields. * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in culture, hash_alg and public_key. Fixes #49555. 2003-10-17 Martin Baulig * class.h (MonoGenericInst): Moved this declaration here and added `MonoMethod *generic_method'. * icall.c (ves_icall_MethodInfo_GetGenericArguments): New interncall. (ves_icall_MethodInfo_BindGenericParameters): New interncall. * metadata.c (mono_metadata_type_equal): Two types of MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same index; ie. don't compare the address of the `MonoGenericParam' structure. (mono_metadata_load_generic_params): Removed the `MonoMethod *method' argument. * metadata.h (MonoGenericInst): Moved declaration to class.h. (MonoMethodHeader): Added `MonoGenericInst *geninst'. * reflection.c (method_encode_signature): Encode the number of generic parameters. (encode_generic_method_sig): New static function. (method_encode_methodspec): New static function; creates an entry in the MethodSpec table for a generic method. (mono_image_get_methodspec_token): New static function. (mono_image_create_token): Call mono_image_get_methodspec_token() for generic methods. (mono_reflection_bind_generic_method_parameters): New public function. Instantiates a generic method. 2003-10-16 Martin Baulig * metadata.h (MonoMethodSignature): Moved `MonoGenericParam *gen_params' here from MonoMethodHeader. * metadata.c (mono_metadata_parse_method_signature): If we have generic parameters, initialize `method->gen_params' and then set the correct `type->data.generic_param' in all the parameters. 2003-10-16 Zoltan Varga * threads.c (mono_threads_get_default_stacksize): New function to return the default stacksize. * gc.c (mono_gc_cleanup): Use a separate event for waiting for the termination of the finalizer thread, since the previous method had race conditions. Fixes #49628. * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread as for the other managed threads. 2003-10-16 Martin Baulig * class.c (inflate_generic_signature): Copy `generic_param_count' and `gen_params'. * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition): New interncall. * metadata.c (mono_metadata_parse_method_signature): Actually set the `method->generic_param_count' here. (mono_metadata_load_generic_params): Initialize `pklass' to NULL. 2003-10-15 Zoltan Varga * object.h: Add a new field to TypedRef to simplify the implementation of the REFANY opcodes in the JIT. * icall.c: Make use of the new field. * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types dynamically. 2003-10-15 Martin Baulig * class.c (mono_class_from_gen_param): Renamed to mono_class_from_generic_parameter() and moved most of the functionality from mono_reflection_define_generic_parameter() here; ie. we create a "real" class here. (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and MONO_TYPE_MVAR if mono_class_from_generic_parameter() has previously been called. * class.h (MonoGenericParam): Moved the declaration of this struct here from metadata.h and added `MonoMethod *method'. * icall.c (ves_icall_MonoType_get_DeclaringMethod): New interncall. * loader.c (mono_get_method_from_token): If we have any generic parameters, call mono_metadata_load_generic_params() to read them from the MONO_TABLE_GENERICPAR. * metadata.c (mono_metadata_load_generic_params): Added `MonoMethod *method' argument which is used MONO_TYPE_MVAR. * metadata.h (MonoMethodSignature): Replaced `MonoGenericInst *geninst' with `guint16 generic_param_count'. (MonoMethodHeader): Added `MonoGenericParam *gen_params'. * reflection.c (mono_reflection_define_generic_parameter): Moved most of the functionality into the new mono_class_from_generic_parameter(); set the `method' field if we're a method parameter. 2003-10-13 Bernie Solomon * marshal.c (emit_struct_conv): if native size is 0 emit no code. 2003-10-14 Martin Baulig * icall.c: The generics API has changed in the spec since it was added to System.Type; these modifications make it match the spec again. (ves_icall_Type_GetGenericParameters): Renamed to `ves_icall_Type_GetGenericArguments'. (ves_icall_Type_get_IsGenericTypeDefinition): New interncall. (ves_icall_MonoType_get_HasGenericParameteres): Renamed to `ves_icall_MonoType_get_HasGenericArguments'. (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to `ves_icall_MonoType_get_IsGenericParameter'. (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed; this is no interncall anymore. (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to `ves_icall_TypeBuilder_get_IsGenericParameter'. 2003-10-14 Martin Baulig * reflection.c (mono_reflection_bind_generic_parameters): Also inflate generic methods if we're reading the class from IL. 2003-10-13 Martin Baulig * reflection.c (mono_reflection_define_generic_parameter): This method isn't called directly from the icall anymore; take a `MonoReflectionAssemblyBuilder *' so we can use this for type and method generic parameters. (ReflectionMethodBuilder): Added `MonoArray *generic_param'. (method_builder_encode_signature): Encode generic parameters. (mono_image_get_method_info): Write generic params to the MONO_TABLE_GENERICPARAM table. * reflection.h (MonoReflectionMethodBuilder): Added `MonoArray *generic_params'. * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'. * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added wrapper for mono_reflection_define_generic_parameter(). (ves_icall_MethodBuilder_define_generic_parameter): Likewise. 2003-10-13 Zoltan Varga * marshal.h: Add missing function to fix build. * marshal.c (mono_marshal_get_native_wrapper): Add support for the SetLastError pinvoke attribute. * marshal.c (mono_marshal_set_last_error): New helper function called by the generated code. * marshal.c (mono_mb_emit_branch): New helper function. * marshal.c (mono_mb_emit_exception): Added exception name parameter. * marshal.c (mono_marshal_get_managed_wrapper): Added support for classes as parameters and return values of delegates. Fixes #29256. 2003-10-12 Bernie Solomon * locales.c: use gint32 in non HAVE_ICU case 2003-10-11 Martin Baulig * mono-debug.c (mono_debug_add_method): Added a workaround for bug #48591. 2003-10-10 Zoltan Varga * marshal.c (mono_marshal_get_managed_wrapper): Under windows, delegates passed to native code must use the STDCALL calling convention. Fixes #35987. 2003-10-10 Martin Baulig * class.c (inflate_generic_type): If we're inflating for a generic type instance (and not for a generic method), return MONO_TYPE_MVAR unchanged. 2003-10-10 Gonzalo Paniagua Javier * string-icalls.c: Join ignores null strings in the source array. * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads. * threads.c: GetAvailableTheads is slightly more accurate. 2003-10-09 Bernie Solomon * threads.h threads.c : add mono_threads_set_default_stacksize and pass default to CreateThread calls. 2003-10-09 Dick Porter * icall.c: * locales.h: * locales.c: Internal calls for constructing CultureInfo and related objects from libicu (if its available.) 2003-10-09 Zoltan Varga * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type. 2003-10-09 Gonzalo Paniagua Javier * threadpool.c: added an argument to async_invoke_thread that is the item to process, pass the MonoAsyncResult to the thread start function when creating a new thread. This way we don't need to acquire any lock when we're creating a new thread. Readded a semaphore for faster response times (instead of that Sleep i added). 2003-10-08 Bernie Solomon * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): get daylight change dates better on Windows, fix handling of platforms without tm_gmtoff. 2003-10-06 Martin Baulig * class.c (inflate_generic_method): Renamed to mono_class_inflate_generic_method() and made public. (mono_class_init): Don't inflate the generic methods here. (mono_class_from_generic): Added `gboolean inflate_methods' argument. Inflate the methods here. * loader.c (mono_method_get_param_names): Ignore instances of generic types for the moment. * reflection.c (fixup_method): Added support for inflated methods. (mono_image_create_token): Use mono_image_get_methodref_token() for inflated methods. (mono_custom_attrs_from_param): Ignore instances of generic types for the moment. (mono_reflection_bind_generic_parameters): New public function. Moved all the functionality from ves_icall_Type_BindGenericParameters() here and added support for dynamic types. (mono_reflection_define_generic_parameter): Initialize `klass->methods' here. * icall.c (ves_icall_Type_BindGenericParameters): Moved all the functionality into mono_reflection_define_generic_parameter(). (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a TypeBuilder, return that TypeBuilder. 2003-10-08 Gonzalo Paniagua Javier * appdomain.c: removed mono_delegate_semaphore. * threadpool.c: (mono_thread_pool_add): moved hash table creation inside and the thread creation outside of the critical region. (mono_thread_pool_finish): removed obsolete code. (async_invoke_thread): don't use the semaphore. Use a plain Sleep and continue or exit the thread depending on the queue. 2003-10-07 Bernie Solomon * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1 marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper): handle more bool marshalling options 2003-10-07 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of arrays of structs. Also add a more descriptive error message when a structure member is marshalled as LPArray. 2003-10-06 Zoltan Varga * marshal.c (mono_marshal_get_native_wrapper): Add support for marshalling arrays of complex types. Fixes #29098. Also remove an usused and incomplete function. Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro * gc.c: report heap_size - free_bytes as total memory allocated (bug#49362). 2003-10-05 Zoltan Varga * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally fix timezone handling problems on Windows. * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid asserts when the year is outside the range handled by ms the functions. * class.c (setup_interface_offsets): If the class is an interface, fill out its interface_offsets slot. 2003-10-03 Gonzalo Paniagua Javier * threadpool.c: mark threadpool threads as background. 2003-10-03 Bernie Solomon * decimal.c - define DECINLINE to nothing if not using GCC 2003-10-03 Zoltan Varga * assembly.c: More refcount fixes. 2003-10-03 Gonzalo Paniagua Javier * string-icalls.c: if we're not trimming, return the same string. When not splitting, don't create a new string. 2003-10-03 Gonzalo Paniagua Javier * image.c: (mono_image_open): increment the ref_count inside the critical section. 2003-10-02 Zoltan Varga * image.c (mono_image_open): Fix reference counting bug. 2003-09-30 Bernie Solomon * marshal.c (mono_marshal_type_size) struct alignment changed for 64bit machines. (emit_ptr_to_str_conv) Fix bool conversions for 64bits. Avoid leak in mono_marshal_get_native_wrapper when mono_lookup_pinvoke_call throws. 2003-09-30 Zoltan Varga * reflection.c (mono_reflection_parse_type): Fix #49114. * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add temporary workaround for cygwin header problem. * object.c (mono_object_isinst): Synchronize this with the code generated by the JIT for casts. 2003-09-29 Zoltan Varga * reflection.c (encode_type): Fix #38332. 2003-09-26 Zoltan Varga * marshal.c (mono_marshal_method_from_wrapper): New function to return the original method from the wrapper method. 2003-09-25 Martin Baulig * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this interncall since it was identical to `Type.GetGenericTypeDefinition()'. (ves_icall_Type_get_IsGenericInstance): New interncall. 2003-09-24 Bernie Solomon * object.c: fix cast warning in big endian code. 2003-09-19 Jackson Harper * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu) 2003-09-19 Gonzalo Paniagua Javier * assembly.c: don't call check_env from mono_assembly_load. It's already done once in mono_assemblies_init and may cause headaches when multiple threads are loading assemblies. 2003-09-19 Martin Baulig * reflection.c (mono_reflection_define_generic_parameter): Don't allocate `klass->methods', set `klass->flags' to TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT. 2003-09-18 Martin Baulig * class.c (mono_class_init): Don't create `class->methods' if it's already initialized. * metadata.c (mono_metadata_load_generic_params): Make this actually work. * reflection.c (mono_reflection_define_generic_parameter): Set parent class and interfaces from the constraints. * reflection.h (MonoReflectionGenericParam): Added `guint32 flags' to keep this struct in sync with the declaration in TypeBuilder.cs. 2003-09-17 Martin Baulig * metadata.h (MonoType): Replaced the data's `int type_param' field with `MonoGenericParam *generic_param'. (MonoGenericParam): Added `MonoClass *klass'. * class.c (mono_class_from_gen_param): Removed the `MonoImage *image' and `int type_num' arguments. * metadata.c (mono_metadata_parse_generic_param): New static method; creates a MonoGenericParam which just contains the index. (do_mono_metadata_parse_type): Call mono_metadata_parse_generic_param() for MONO_TYPE_VAR and MONO_TYPE_MVAR. * reflection.c (mono_image_typedef_or_ref): Generic type parameters may be in the same assembly, but never use a typedef for them. (mono_reflection_define_generic_parameter): We're now creating a "real" class for the type parameter; it's now safe to call mono_class_from_mono_type() on the class'es type, it'll do the right thing. 2003-09-16 Martin Baulig * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize `symfile->range_entry_size' and `symfile->class_entry_size' here; the `symfile' data structure must be fully initialized before it gets added to the table. 2003-09-15 Zoltan Varga * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS. * appdomain.h domain.c (MonoDomain): Added new hashtable to store the class init trampolines. 2003-09-11 Zoltan Varga * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options to the built-in profiler to turn off time and allocation profiling respectively. 2003-09-10 Zoltan Varga * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of g_direct_equal. * debug-helpers.c (mono_method_full_name): Print the wrapper type in human readable form. 2003-09-08 Zoltan Varga * reflection.c icall.c: Fixed warnings. * image.c (load_class_names): Use a temporary hash table to hold the namespaces in order to avoid doing many string comparisons. * image.h: Fix typo. * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c: Pass NULL instead of g_direct_equal to the GHashTable constructor since the NULL case is short-circuited inside g_hash_table_lookup, leading to better performance. * metadata.c (mono_metadata_custom_attrs_from_index): New function to obtain the first custom attribute for a given index. Depends on the CustomAttribute table being sorted by the parent field. * reflection.c (mono_custom_attrs_from_index): Use the new function for better performance. 2003-09-07 Martin Baulig * class.c (mono_class_init): If we're a generic instance, inflate all our methods instead of loading them from the image. (mono_class_from_generic): Set `class->methods = gklass->methods'. 2003-09-07 Martin Baulig * mono-debug-debugger.c: Added support for constructors. 2003-09-06 Martin Baulig * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): New interncall. * reflection.c (mono_reflection_setup_generic_class): Call ensure_runtime_vtable() to create the vtable. 2003-09-05 Martin Baulig * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR. 2003-09-04 Martin Baulig * reflection.c (mono_reflection_define_generic_parameter): Generic parameters start with zero. 2003-09-04 Martin Baulig * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR. * reflection.h (MonoReflectionGenericParam): New typedef. (MonoReflectionTypeBuilder): Added `generic_params' fields to get the generic parameters from the managed TypeBuilder. * reflection.c (mono_reflection_define_generic_parameter): New function. (mono_reflection_create_runtime_class): Encode generic parameters. (mono_reflection_setup_generic_class): New function; this is called after adding adding all generic params to the TypeBuilder. (encode_type): Added MONO_TYPE_VAR. 2003-09-04 Zoltan Varga * class.h class.c (mono_class_needs_cctor_run): Moved this method here from the JIT. * assembly.h assembly.c: Moved the AOT loading code into an assembly load hook. 2003-09-03 Zoltan Varga * reflection.h reflection.c class.h class.c: Delete duplicate definition of mono_type_get_name () from reflection.c and export the one in class.c. * class.c: Class loading fixes from Bernie Solomon (bernard@ugsolutions.com). * reflection.c: Endianness fixes from Bernie Solomon (bernard@ugsolutions.com). 2003-09-01 Zoltan Varga * assembly.h assembly.c: Define a file format version for AOT libraries. * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s. * appdomain.h (MonoJitInfo): New field to determine whenever the code is domain neutral. 2003-08-31 Miguel de Icaza * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR 2003-08-30 Zoltan Varga * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path): Avoid caching the result since strings must be domain specific. Fixes #48050. 2003-08-29 Zoltan Varga * marshal.c (mono_marshal_init): Make this callable multiple times since it is hard to find a correct place to call it. * object.c (mono_runtime_class_init): Execute static constructors in the correct appdomain. * image.c (build_guid_table): Handle the case when multiple images have the same GUID. 2003-08-29 Gonzalo Paniagua Javier * icall.c: added a couple of icalls for System.Web. 2003-08-28 Martin Baulig * icall.c (ves_icall_Type_BindGenericParameters): Use `klass->generic_inst' instead of `&klass->byval_arg' in the mono_type_get_object() call. The returned type must be MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS. 2003-08-27 Zoltan Varga * NOTES: New file. * object.c (mono_class_proxy_vtable): Make it thread safe. * pedump.c: Fix warning. * object.c appdomain.h: Get rid of metadata_section. It is no longer needed and it was causing deadlocks with domain->lock. * appdomain.c (add_assemblies_to_domain): Make it thread safe. 2003-08-26 Martin Baulig * pedump.c (main): Don't call mono_image_close() if `verify_pe'. 2003-08-26 Martin Baulig * pedump.c (main): Call mono_metadata_init(), mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init() and mono_loader_init(). 2003-08-26 Zoltan Varga * loader.h: Add missing include to fix build. * image.h: mono_image_load_references is no more. * assembly.c: Reworked assembly loading to make it really thread safe. After these changes, the assembly returned by mono_assembly_open is fully initialized, i.e. all its references assemblies are loaded. * assembly.c (mono_image_load_references): Renamed to mono_assembly_load_references, and made private, since clients no longer need to call it. * class.c: Removed calls to mono_assembly_load_references, since it was a source of deadlocks. * loader.h loader.c class.h class.c: Protect data structures using a new lock, the loader lock. * class.c (mono_class_setup_vtable): Create temporary hash tables and GPtrArrays only when needed. * class.c (mono_class_layout_fields): Ignore the dummy field inserted into empty structures by mcs. Fixes pinvoke7.cs. * domain.c (mono_init): Call a new initialization function. * appdomain.c (mono_runtime_init): Call the new initializer function of the marshal module. * marshal.c (mono_marshal_load_type_info): Ignore the dummy field inserted into empty structures by mcs. Fixes pinvoke7.cs. * marshal.h marshal.c: Added locks around the wrapper caches to make this module thread safe. * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a this argument. Fixes pinvoke1.exe. 2003-08-25 Lluis Sanchez * object.h: Added call_type field to MonoMethodMessage and the corresponding enumeration of values. Removed fields to store remote call output values in MonoAsyncResult. Not needed any more. * object.c: Initialize call_type and async_result fields in mono_message_init. * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before dispatching the message. mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the async call to finish. To do it use a message with EndInvoke call type. 2003-08-25 Zoltan Varga * loader.h loader.c (mono_method_hash_marhal_info): New function which determines whenever a method has marshalling info. 2003-08-23 Gonzalo Paniagua Javier * assembly.c: fix the build on windows. 2003-08-22 Lluis Sanchez * object.cs: Fixed bug #47785. 2003-08-22 Jackson Harper * string-icalls.c (StringReplace): If their are no occurances of the old string found return a reference to the supplied string. This saves some memory and matches MS behavoir. 2003-08-22 Gonzalo Paniagua Javier * socket-io.c: fixed compilation for systems that define AF_INET6 and don't define SOL_IP/SOL_IPV6. 2003-08-21 Zoltan Varga * object.c (mono_object_isinst): Fix casts to TransparentProxy in the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com). * rawbuffer.c rawbuffer.h: Make this module thread safe. * domain.c: Make this module thread safe. * domain.c (mono_init): Call new initialization function. * icall.c (ves_icall_System_Array_SetValueImpl): Check types for reference types too. Fixes #38812. * image.c (mono_image_init): Fixed warnings. * class.c (mono_class_from_typeref): Handle assembly load failure correctly. * appdomain.c (add_assemblies_to_domain): Handle the case when the references of an assembly are not yet loaded. * metadata.c image.c assembly.c: Moved initialization of global variables to a separate function called at startup since lazy initialization of these variables is not thread safe. * image.c assembly.c: Made this module thread safe by adding locks in the appropriate places. * domain.c (mono_init): Call the new initialization functions of the three modules. 2003-08-20 Lluis Sanchez Gual * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy, make a direct call. It is proxy's work to make the call asynchronous. mono_delegate_end_invoke(): If the targe is a proxy, just collect the return values. * object.cs: mono_method_call_message_new(): read AsyncResult and state object from parameters list, if this info is requested. * object.h: Added fields to store remote call output values in MonoAsyncResult. Added AsyncResult field in MonoMethodMessage. Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro * object.h: add needed fields to MonoThread. * threads.c, threads.h: allow registering a function to cleanup data allocated per thread by the JIT. Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro * loader.h: portability fix by Bernie Solomon * . 2003-08-16 Zoltan Varga * reflection.h reflection.c (mono_param_get_objects): Changed this to return a MonoArray. This simplifies the code and also ensures that the cache allways contains an object reference as a value. * icall.c (ves_icall_get_parameter_info): Simplified using the new function. 2003-08-16 Gonzalo Paniagua Javier * socket-io.c: patch by Bernie Solomon that fixes a problem with byte ordering when getting the address family for a socket. 2003-08-15 Zoltan Varga * .cvsignore: Added monosn. * reflection.h reflection.c loader.c: Added support for parameter marshalling to dynamically created types. Fixes #47295. Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro * rand.c: remove useless warnings. Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro * class.c: implemented ldtoken for methods and fieldrefs. 2003-08-11 Gonzalo Paniagua Javier * threadpool.c: when mono_async_invoke was called, no one took care of monitoring the queue. So if the method invoked took some time and we got new async invoke requests after 500 ms (the thread created waited that long in WaitForSingleObject), the new async invoke was not called until the previous one finished. This is fixed now. Thanks to Totte for helping with it. 2003-08-11 Gonzalo Paniagua Javier * threadpool.c: set threadpool_thread to TRUE. Patch by totte. 2003-08-11 Martin Baulig * mono-debug-debugger.c (mono_debugger_lookup_type): New function. 2003-08-06 Martin Baulig * mono-debug-debugger.c: Added support for static fields, properties and methods. 2003-08-06 Martin Baulig * mono-debug-debugger.c: Don't store the MonoString's vtable to make this work for applications with multiple application domains. 2003-08-04 Martin Baulig * mono-debug-debugger.c: Completely reworked the type support; the most important thing is that we're now just using one single `MonoType' instance per type. Sat Aug 2 13:05:27 BST 2003 Malte Hildingson * mono-endian.h, mono-endian.c, icall.c: Added icall ves_icall_System_Double_AssertEndianity to assert double word endianity on ARM (FPA). The icall uses a macro defined in mono-endian.h. Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro * class.c, class.h, reflection.c, metadata.c, icall.c: more generics support, icalls and fixes. 2003-07-31 Miguel de Icaza * unicode.c (ves_icall_System_Char_IsPunctuation): The set of classes that are a punctuation character in .NET is not the same a g_unichar_ispunct. Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es). 2003-07-29 Miguel de Icaza * icall.c: Add new MemCopy internalcall. (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Simplified code; It is not necessary to handle all the cases here, as the C# code takes care of it. Only handle the case of the name resource embedded into the assembly. Changed signature to return the data pointer and the size of the data. 2003-07-26 Miguel de Icaza * reflection.c (mono_image_get_method_info): Allow for 0x40 to be encoded. (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr). 2003-07-29 Lluis Sanchez Gual * socket-io.c: ignore EINTR error in select. Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro * class.h, class.c: removed unused subclasses field in MonoClass. 2003-07-29 Lluis Sanchez Gual * icall.c: improve fix of get_base_definition(). If the parent class doesn't have the mehod, look at the parent of the parent. * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT to check if a parameter is an in or out parameter (PARAM_ATTRIBUTE_IN is not set by default). mono_method_return_message_restore(): Use mono_class_value_size to get the size of a value type. mono_type_stack_size (parameterType) does not return the correct value if parameterType is byRef. mono_load_remote_field(), mono_load_remote_field_new(), mono_store_remote_field(), mono_store_remote_field_new(): raise exception if the remote call returns an exception. 2003-07-28 Martin Baulig * mono-debug-debugger.c (mono_debugger_runtime_invoke): New method. This is a wrapper around mono_runtime_invoke() which boxes the instance object if neccessary. Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro * class.c, class.h, image.c, image.h, loader.c, metadata.c, metadata.h, row-indexes.h, verify.c: first cut of generics support. Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro * icall.c: disable mcs bug workaround. 2003-07-21 Miguel de Icaza * object.c (mono_runtime_class_init): Take the metadata_section mutex before obtaining the domain mutex. * appdomain.h: Added definition of metadata_section mutex here. * object.c: define metadata_mutex here. 2003-07-24 Ravi Pratap * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been fixed. 2003-07-24 Lluis Sanchez Gual * reflection.c: Fix bug #46669 2003-07-23 Gonzalo Paniagua Javier * exception.c: * exception.h: * icall.c: * object.h: fill in the type name for TypeLoadException. 2003-07-23 Ravi Pratap * class.c: Fixes from Paolo in response to bug #45415 (Subclass relationship between TypeBuilders while compiling corlib) and bug 45993 (Array types returned from the runtime while compiling corlib were from the loaded corlib). 2003-07-22 Martin Baulig * mono-debug-debugger.c: Reworked the type support a bit more; distinguish between types and classes. Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro * icall.c: add IsArrayImpl icall. 2003-07-22 Zoltan Varga * class.c (mono_class_layout_fields): Fix gc aware auto layout by initializing real_size only once. Also fix bug #46602. 2003-07-21 Jerome Laban * object.c: Renamed mono_metadata_section to metadata_section. 2003-07-21 Lluis Sanchez Gual * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an empty array if the type is an array. Fixed. ves_icall_MonoMethod_get_base_definition: if the base method is abstract, get the MethodInfo from the list of methods of the class. * reflection.c: ParameterInfo.PositionImpl should be zero-based and it was 1-based. Fixed in mono_param_get_objects. 2003-07-20 Martin Baulig * mono-debug.h: Set version number to 31. (mono_debug_init): Added `MonoDomain *' argument. * mono-debug-debugger.c: Reworked the type support; explicitly tell the debugger about builtin types; pass the `klass' address to the debugger. 2003-07-20 Jackson Harper * image.c: Allow new metadata tables to be loaded without a warning. Also update the warning message to give the new constant value. Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c, metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: array type representation changes. Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro * icall.c, appdomain.h, appdomain.c: support full runtime shutdown on Environment.Exit () call. Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro * icall.c, reflection.h, reflection.c, verify.c: cleanups, requires a matching corlib. 2003-07-17 Lluis Sanchez Gual * Changelog: My editor decided to add a CR to each line. Sorry about that. Committed again without the CRs. 2003-07-17 Lluis Sanchez Gual * socket-io.c: Get system_assembly using mono_image_loaded(), instead getting it from the "this" socket instance. Did not work if the socket is a subclass of Socket. Also fixed bug #35371. Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro * metadata.c: fixed size for TypedByRef. * loader.c: when searching for a method, consider the vararg amrker. * unicode.c, decimal.c: constify some arrays. 2003-07-15 Dick Porter * socket-io.c: Fixed compilation for gcc < 3.2. Fixed compilation for machines that don't have AF_INET6 (thanks to Bernie Solomon for that part.) Fixed compile warnings. Fixed formatting and line endings. 2003-07-14 Jerome Laban * socket-io.h: * socket-io.c: Added IPv6 support. 2003-07-13 Zoltan Varga * class.c (mono_class_is_assignable_from): New function to implement the is_assignable_from logic. Used by mono_object_isinst, Type::IsAssignableFrom () and the interpreter. * class.c (mono_class_is_subclass_of): Make all classes a subclass of Object, even interfaces. * object.c (mono_object_isinst): Implement in terms of is_assignable_from. * icall.c (ves_icall_type_is_assignable_from): New icall. 2003-07-11 Zoltan Varga * domain.c (foreach_domain): fix compiler warning. 2003-07-11 Dietmar Maurer * image.c (load_metadata_ptrs): use g_strndup because strndup is not available on all plattforms 2003-07-10 Zoltan Varga * image.h image.c: Store the metadata version string in MonoImage. * icall.c: New icall to retrieve the image version. * reflection.c (create_dynamic_image): Fill in the image version field * reflection.c (build_compressed_metadata): Use the image version from the image structure. 2003-07-08 Gonzalo Paniagua Javier * appdomain.c: modified comment. * gc.c: finalizer_thread can call finalizers even when finished == TRUE. That will be its last iteration when mono_gc_cleanup is called from mono_runtime_cleanup and before the domain is unloaded. Fixes bug #45962. 2003-07-04 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): fixes for [out] attributes. Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c, rawbuffer.c: more 64 bit and picky (or old) compiler fixes from Bernie Solomon . Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro * object.c, object.h: provide mono_object_new_fast() for faster allocation in some special cases. Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro * object.h, reflection.h, verify.c: fixes for some 64bit issues, mostly from a patch by Laramie Leavitt . Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro * threadpool.c: fix leaks. 2003-07-01 Dick Porter * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when using MonoGHashTables. Fixes threadpool bug posted to list. Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro * image.h, image.c: added support to load an assembly from a byte array. * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added assembly bundle support. 2003-06-27 Dietmar Maurer * threadpool.c (mono_thread_pool_add): keep a reference to the AsyncResult to prevent GC Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro * class.c: leak fix. 2003-06-25 Dick Porter * threadpool.c (mono_thread_pool_add): Don't set up a finaliser for the async object, the WaitHandle object will close the handle. Fixes bug 45321. Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro * class.c: in mono_array_class_get (), lookup from the hash with the same type we insert: this works around a bug in mono_metadata_type_hash() with SZARRAY and fixes a leak reported by lluis. The real fix will have to wait for after the release. Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro * icall.c: fix memory leak when getting type members. Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro * reflection.c: added more pubtoken special cases. Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro * class.c: handle field offset correctly when class size is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)). 2003-06-20 Martin Baulig * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage *image' field. 2003-06-20 Martin Baulig * image.h, mono-debug-debugger.h: Fixed compiler warnings. 2003-06-20 Martin Baulig * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed. We just distinguish between variables in registers and variables at an offset relative to a register. 2003-06-20 Gonzalo Paniagua Javier * icall.c: #ifdef out latest changes until mcs is fixed. Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro * icall.c: return members in metadata order. Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro * icall.c: avoid infinite loop in GetTimeZoneData. Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro * icall.c: added Marshal.Prelink/All icalls. Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro * object.c, object.h: fix warnings and do some overflow checking when creating arrays. 2003-06-17 Dick Porter * file-io.h: * file-io.c: File attributes need to be tweaked slightly when passed from the managed to the w32 world. 2003-06-17 Zoltan Varga * profiler.h profiler-private.h profiler.c: Rework last patch based on suggestion by Paolo. 2003-06-17 Zoltan Varga * profiler.h profiler-private.h profiler.c: Added infrastructure for instruction level coverage data collection. * profiler.h profiler.c (: Added new callback function which can be used by the profiler to limit which functions should have coverage instrumentation. * profiler.c (mono_profiler_load): Call g_module_build_path to generate the file name of the profiler library. Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro * profiler.c, profiler.h, profiler-private.h: added basic block coverage profiling API. 2003-06-15 Zoltan Varga * reflection.c (mono_reflection_create_runtime_class): Add support for events in dynamically generated code. * gc.c: Start GCHandle indexes from 1, since 0 means the handle is not allocated. Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro * icall.c: when getting timezone info, return reasonable values if we can't get the actual data. 2003-06-14 Dick Porter * threads.c (start_wrapper): Remove the reference to the thread object in the TLS data, so the thread object can be finalized. This won't be reached if the thread threw an uncaught exception, so those thread handles will stay referenced :-( (This is due to missing support for scanning thread-specific data in the Boehm GC - the io-layer keeps a GC-visible hash of pointers to TLS data.) Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro * reflection.c: ensure streams and tables are first allocated with ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise). Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro * icall.c: fixed GetElementType for byrefs (bug# 44792). 2003-06-13 Zoltan Varga * reflection.c (mono_reflection_create_runtime_class): Add support for properties to dynamically created classes. * reflection.c: Fix a few places where non-MonoObjects were inserted into the tokens hashtable. Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro * object.c: some support to handle out of memory exceptions. 2003-06-12 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): support reference return types Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro * object.h, object.c: more portability stuff from Bernie Solomon. Unexport mono_object_allocate(). Added mono_object_unbox (). Set exitcode when an unhandled exception is thrown. 2003-06-11 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): use custom marshaler for return types. 2003-06-10 Dick Porter * socket-io.c: Don't assume that one of struct ip_mreqn or struct ip_mreq is available Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c, mono-debug-debugger.c, mono-debug.c, process.c: portability fixes by Bernie Solomon . 2003-06-10 Zoltan Varga * gc.c (mono_gc_init): Avoid error message on shutdown when GC_DONT_GC=1 is used. * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): New icall to return the GUID of a module. Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro * class.c: ensure instance size always includes the parent's size even whem class size is set explicitly (fixes bug#44294). Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro * profiler.h, profiler.c: made the simple profiler thread-safe, get more accurate timing info. Allow the loading of an externally-developed profiler module. 2003-06-05 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): improved class/byref arguments. (mono_marshal_get_native_wrapper): better string marshaling support. Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro * class.c: ensure .pack and .size are handled correctly and simplified layout of static fields. 2003-06-04 Dietmar Maurer * appdomain.c (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934 * loader.c (mono_lookup_pinvoke_call): look for modules in the current directory (fix bug 44008) 2003-06-03 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): started support for custom marshalers. (mono_delegate_to_ftnptr): consider marshalling specifications Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro * reflection.c, reflection.h: emit custom marshal info. 2003-06-02 Gonzalo Paniagua Javier * object.c: free the GError. * icall.c: added CloseEvent_internal. * threads.[ch]: (ves_icall_System_Threading_Events_CloseEvent_internal): new internal call. 2003-06-01 Zoltan Varga * loader.c (mono_method_get_signature): Add support for dynamic assemblies. Sat May 31 15:22:07 CEST 2003 Paolo Molaro * reflection.c: fixed bug #43905. Fri May 30 12:56:29 CEST 2003 Paolo Molaro * class.c, domain.c, icall.c, metadata.h, object.h: support for handling TypedReference and ArgIterator. * loader.c, loader.h: added function to get signature at call site. Thu May 29 11:34:55 CEST 2003 Paolo Molaro * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more data readonly. Buglets and warning fixes. Some MethodSpec support. Tue May 27 16:34:39 CEST 2003 Paolo Molaro * class.h, class.c, object.c: remove relative numbering support. 2003-05-26 Miguel de Icaza * marshal.c (mono_marshal_get_native_wrapper): For now, do not free the string, until we get a chance to fix Gtk# 2003-05-27 Gonzalo Paniagua Javier * marshal.c: revert last patch. Mon May 26 20:21:52 CEST 2003 Paolo Molaro * icall.c: updates for new mono_class_vtable() not calling the type constructor anymore. Mon May 26 12:10:35 CEST 2003 Paolo Molaro * object.h, object.c: separate vtable creation from type initialization. Make running the .cctor thread safe. 2003-05-26 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): free string return values. 2003-05-21 Dietmar Maurer * loader.c (mono_get_method): consider calling convention 2003-05-21 Zoltan Varga * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall to return the invisible global type for a module. * reflection.c (mono_image_build_metadata): Emit global fields too. 2003-05-20 Peter Williams * loader.c (mono_lookup_internal_call): Add a few newlines. 2003-05-20 Zoltan Varga * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic literal strings. * appdomain.c (set_domain_search_path): Recalculate search path when AppDomainSetup.PrivateBinPath changes. * object.c (mono_class_compute_gc_descriptor): It turns out some parts of the class libs (like System.Thread) holds pointers to GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is to treat native int a pointer type here. Tue May 20 17:18:16 CEST 2003 Paolo Molaro * appdomain.h, domain.c: add hashtable for jump target resolution. 2003-05-19 Zoltan Varga * reflection.h reflection.c icall.c: Added new icalls GetManifestResourceInfoInternal, GetModulesInternal and support infrastructure. 2003-05-16 Dick Porter * icall.c: * file-io.h: * file-io.c: Implement System.IO.MonoIO::GetTempPath 2003-05-14 Lluis Sanchez Gual * object.c: mono_store_remote_field: little fix to previous patch. Wed May 14 18:10:42 CEST 2003 Paolo Molaro * class.c: add constructors to array classes. * icall.c: special case array construction for InternalInvoke (), 2003-05-14 Zoltan Varga * class.h class.c reflection.c object.c: Added support for field defaults in dynamically generated classes. Wed May 14 13:35:27 CEST 2003 Paolo Molaro * reflection.c: properly encode charset for ddlimport. Wed May 14 11:14:54 CEST 2003 Paolo Molaro * threads.c: allow compiling without GC. Tue May 13 16:41:49 CEST 2003 Paolo Molaro * appdomain.h, object.c, object.h, threads.c, threads.h: added handling of thread static data. Tue May 13 16:36:08 CEST 2003 Paolo Molaro * reflection.h, reflection.c: added mono_custom_attrs_free (). 2003-05-13 Dietmar Maurer * class.c (mono_array_class_get): always set the serializable flags (mono_array_class_get): always set the SEALED attribute for array types 2003-05-12 Dietmar Maurer * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode attributes (fix for bug 42021). 2003-05-12 Dick Porter * gc.c: Don't run finalizers when the finalizer thread is finishing up, because the default domain has already been destroyed. 2003-05-11 Miguel de Icaza * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if value is null, we should throw an exception. This is slightly different than the other conventions used for the constructor. 2003-05-12 Gonzalo Paniagua Javier * socket-io.c: fixed windows build. 2003-05-11 Gonzalo Paniagua Javier * socket-io.c: patch by Jerome Laban that fixes bug #42393. 2003-05-10 Zoltan Varga * object.c (mono_string_new_wrapper): Compatibility fix for MS compilers. 2003-05-09 Zoltan Varga * class.c (mono_class_layout_fields): Add experimental GC aware auto layout facility. Requires class library changes to work correctly. (mono_class_setup_vtable): Avoid overriding explicit interface method implementations. Fixes iface3.exe test. * object.c (mono_class_compute_gc_descriptor): Type I can't hold an object reference. (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS. (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS. * metadata.h: Add new type classification macro which determines whenever the type holds an object reference. 2003-05-08 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): cleanups 2003-05-07 Zoltan Varga * gc.c (finalizer_thread): Work around a GC bug. 2003-05-07 Dietmar Maurer * marshal.c (emit_struct_conv): allow unions * class.c (class_compute_field_layout): added patches from Jerome Laban 2003-05-06 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke 2003-05-06 Martin Baulig * mono-debug-debugger.h: #include . 2003-05-05 Gonzalo Paniagua Javier * socket-io.c: (Select_internal): allow NULLs, don't create arrays if not needed. Coupled with Socket.cs changes. * threadpool.c: (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and register a finalizer for it that will close the semaphore handle. This fixes the leak and make Lupus' test run with > 4080 loops. 2003-05-05 Dietmar Maurer * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from Jerome Laban (bug #42287) 2003-05-02 Martin Baulig * debug-mono-symfile.h (MonoSymbolFile): Moved declaration into mono-debug.h. (MonoDebugMethodJitInfo): Likewise. (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as argument. (_mono_debug_address_from_il_offset): Take a MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo. * mono-debug.h (MonoDebugDomainData): New struct. (mono_debug_get_domain_data): New function. (mono_debug_add_method): Take an additional `MonoDomain *' argument. (mono_debug_source_location_from_address): Likewise. (mono_debug_il_offset_from_address): Likewise. (mono_debug_address_from_il_offset): Likewise. Thu May 1 19:40:37 CEST 2003 Paolo Molaro * reflection.c: one more check for null type in custom attrs. 2003-05-01 Gonzalo Paniagua Javier * reflection.c: avoid warning (comparison is always false due to limited range of data type). 2003-05-01 Gonzalo Paniagua Javier * icall.c: throw an exception in Type.GetField if the argument 'name' is NULL. Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro * reflection.c: fixed handling of enums in named arguments to custom attributes (bug #42123). Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro * reflection.c: use the right array element type and handle a null for a Type argument, too. Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro * reflection.c: handle arrays as arguments to custom attributes. Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro * reflection.c: handle a string value in a custom attr ctor that takes an object. 2003-04-29 Dietmar Maurer * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR (fix bug #42063) 2003-04-28 Zoltan Varga * icall.c (ves_icall_Type_GetNestedType): Fixed warnings. 2003-04-27 Martin Baulig * mono-debug-debugger.h (MonoDebuggerEvent): Renamed MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to MONO_DEBUGGER_EVENT_BREAKPOINT. (mono_breakpoint_trampoline_code): Removed. (mono_debugger_event_handler): The last argument is now a `guint32'. (mono_debugger_insert_breakpoint_full): Removed the `use_trampoline' argument. (mono_debugger_method_has_breakpoint): Likewise. (mono_debugger_trampoline_breakpoint_callback): Renamed to mono_debugger_breakpoint_callback(); take the method and breakpoint number as arguments. Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro * metadata.c: fix off by one when loading parameters attributes. 2003-04-24 Martin Baulig * mono-debug-debugger.c (mono_debugger_io_layer): Put this back. 2003-04-24 Martin Baulig * mono-debug-debugger.c: Moved all code which interacts with the Mono Debugger here. * debug-mono-symfile.c: This code now just deals with the symbol file itself, the debugger code is now in mono-debug-debugger.c. 2003-04-23 Martin Baulig * mono-debug.c (mono_debug_source_location_from_il_offset): New method; like mono_debug_source_location_from_address(), but takes an IL offset instead of a machine address. 2003-04-23 Martin Baulig * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the `line' field; this is now computed by the debugger. 2003-04-23 Martin Baulig * mono-debug.[ch]: New files. This is the new debugging interface. * mono-debug-debugger.[ch]: New files. Moved all code which interacts with the Mono Debugger here. 2003-04-22 Dietmar Maurer * domain.c (mono_init): initialize mono_defaults.monitor_class 2003-04-21 Miguel de Icaza * reflection.c (method_encode_code): Add a spicy exception to help future compiler authors. 2003-04-21 Martin Baulig * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Make this work with relative pathnames; g_filename_to_uri() needs an absolute filename. 2003-04-18 Zoltan Varga * icall.c: Track name changes in Object and ValueType. 2003-04-18 Dietmar Maurer * metadata.c (mono_type_stack_size): size should be a multiple of sizeof (gpointer) 2003-04-17 Gonzalo Paniagua Javier * gc.c: (internal_domain_finalize): moved into mono_domain_finalize. No need to create another thread because the finalizers will be run in the finalizer thread. (ves_icall_System_GC_WaitForPendingFinalizers): implemented. (finalizer_notify): if shutting down, wait 2 seconds for the finalizers to be run (MS does this too). 2003-04-17 Zoltan Varga * object.c (mono_class_compute_gc_descriptor): Update comment. * loader.h marshal.h marshal.c: Added synchronized method wrappers. * image.h: Add synchronized wrapper cache. * image.c (do_mono_image_open): Initialize cache. * reflection.c (create_dynamic_mono_image): Initialize cache. 2003-04-16 Gonzalo Paniagua Javier * icall.c: patch by Jerome Laban that fixes ves_icall_System_Buffer_ByteLengthInternal. Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro * reflection.c: setup klass->nested_in earlier. Allow a dash in the assembly name. 2003-04-15 Dietmar Maurer * metadata.c (mono_type_to_unmanaged): dont access type->data.klass for MONO_TYPE_OBJECT (mono_type_to_unmanaged): consider System.Delegate class Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro * class.c: just setup supertypes in the proper place instead of initializing the full element class for arrays. Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro * class.c: ensure the element class of arrays is initialized. Setup the supertype info for array classes, too. 2003-04-14 Miguel de Icaza * icall.c (ves_icall_Type_GetNestedType): Add new internal call. 2003-04-12 Gonzalo Paniagua Javier * Makefile.am: re-added -m option when running cygpath. This way, MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory separator. * mono-config.c: same codepath for locating mono config file for WIN32 and the rest. * assembly.c: if mono_assembly_setrootdir is called, don't override the value set. 2003-04-12 Gonzalo Paniagua Javier * Makefile.am: patch by Urs Muff that fixes MONO_ASSEMBLIES variable. Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro * icall.c: added Assembly::GetNamespaces() icall. 2003-04-10 Gonzalo Paniagua Javier * reflection.c: fix from Jaak . 2003-04-10 Lluis Sanchez Gual * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid * object.c: fixed bug in the construction of vtable for proxies 2003-04-10 Zoltan Varga * object.c (mono_array_new): Mark mono_array_new as an icall. 2003-04-10 Gonzalo Paniagua Javier * class.c: fixed test for public method when overriding interfaces. Closes bug #40970. Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro * appdomain.h, domain.c: added mono_domain_foreach() to be able to access the currently loaded appdomains. * object.c: make string interning work across sppdomains. Mark some functions for use as icalls. 2003-04-09 Zoltan Varga * class.c reflection.c: Fix memory leaks reported by ccmalloc. * reflection.h reflection.c: Allocate long living data using GC_MALLOC_ATOMIC so the collector does not need to scan it. * reflection.c: Double the allocation size in streams instead of increasing it, to prevent unneccesary copying on large assemblies. * reflection.c (mono_reflection_create_runtime_class): Avoid vtable creation if the assembly does not have the Run flag set. Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro * class.h: avoid the C++ keywords in header files (Jerome Laban spotted and fixed this). 2003-04-06 Gonzalo Paniagua Javier * object.c: (mono_unhandled_exception): fill in the arguments for the UnhandledException event. Only trigger that event for the default domain (as MS does). 2003-04-04 Zoltan Varga * object.c: Improve typed allocation stuff based on suggestions from Paolo. Also turn it on if the GC library supports it. 2003-04-03 Zoltan Varga * object.c object.h class.h: Added experimental typed allocation facility using the interfaces in gc_gcj.h. * os/gc_wrapper.h: Added new include files. 2003-04-03 Martin Baulig All the following changes are conditional to `WITH_INCLUDED_LIBGC' which is not yet enabled by default. * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread functions. (mono_gc_lock, mono_gc_unlock): New static functions. * threads.c (mono_gc_stop_world, mono_gc_start_world): New public functions; stop/start the world for the garbage collector. This is using the windows API; we need to complete the SuspendThread()/ ResumeThread() implementation in the io-layer to make this work on Unix. (mono_gc_push_all_stacks): New public function; tells the garbage collector about the stack pointers from all managed threads. 2003-04-03 Martin Baulig * object.h (MonoThread): Added `gpointer stack_ptr'. * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'. 2003-04-03 Martin Baulig * Makefile.am: It's called `cygpath -w', not `cygpath -m'. 2003-04-03 Zoltan Varga * reflection.c (typebuilder_setup_fields): Initialize field.first and field.last. 2003-04-02 Miguel de Icaza * loader.c (mono_lookup_internal_call): Report the corlib that is out of sync. 2003-03-05 Aleksey Demakov * icall.c (ves_icall_type_GetTypeCode): fixed check for System.DBNull (it's class not valuetype). Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro * reflection.c: set table_idx in MonoReflectionArrayMethod object even if the array method was already assigned a token (fixes bug#40646). 2003-04-02 Zoltan Varga * reflection.c (mono_reflection_get_type): Attempt type resolve even if no assembly is given. 2003-04-01 Miguel de Icaza * metadata.h: Added the new tables. * row-indexes.h: Added definitions for new tables. * metadata.c: Add schemas for new tables, and add support for computing the sizes of them. * class.c: Update for handling the new type cases. 2003-04-01 Dietmar Maurer * metadata.h (MONO_TYPE_IS_VOID): new macro 2003-03-31 Martin Baulig * threads.h (MonoThreadCallbacks): Added `thread_created'. * threads.c (mono_thread_new_init): Call `thread_created' in the mono_thread_callbacks. 2003-03-31 Lluis Sanchez Gual * loader.h: added marshalbyrefobject_class to mono_defaults * domain.c: added initialization of mono_defaults.marshalbyrefobject_class * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the generation of output parameters. ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces. * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is contextbound and the target object belongs to the context of the caller. * object.h: added context and unwrapped_server variables in MonoRealProxy. * object.c: Implemented support for interfaces and abstract classes in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array. 2003-03-30 Zoltan Varga * class.h class.c (mono_class_is_subclass_of): New function. * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy routines for most common case (calls from ArrayList::ToArray). * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown routine so programs which call Environment::Exit() can be profiled. * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): Added MONO_ARCH_SAVE_REGS. * icall.c (ves_icall_type_is_subtype_of): Use new function. 2003-03-29 Miguel de Icaza * blob.h: Add a couple of new MonoType types definitions. * tabledefs.h: Add a couple of new call convs. 2003-03-27 Zoltan Varga * reflection.h (MonoReflectionDynamicAssembly): track changes in the layout of the class. * reflection.c (alloc_table): double the size on overflow to avoid unnecessary copying. * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then avoid filling out metadata tables and blobs. Also set mb->ilgen to null so it can be garbage collected. 2003-03-27 Zoltan Varga * reflection.c (mono_reflection_get_type): Return the resolved type only if it is in the assembly we searched. * reflection.c (ensure_runtime_vtable): Initialize method slots. * class.c (mono_class_setup_vtable): Set the slot of the overriding method. 2003-03-26 Gonzalo Paniagua Javier * appdomain.c: (set_domain_search_path): allow 'file://blah'. It's an invalid URI, the right one is 'file:///blah', but MS allows it. * assembly.c: (mono_assembly_open): allow 'file://blah' Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk). 2003-03-26 Aleksey Demakov * socket-io.c: fixes bug #40310. 2003-03-25 Zoltan Varga * reflection.c (mono_reflection_parse_type): handle deeply nested types correctly. * reflection.c (mono_image_create_token): Use unique token values since they will be put into a hash table. * class.c (mono_class_setup_vtable): If a method occurs in more than one place in the vtable, and it gets overriden, then change the other occurances too. * marshal.c (mono_marshal_get_managed_wrapper): Added support for object as return type. 2003-03-22 Pedro Mart�nez Juli� * icall.c: Deleted "ToString" implementation for double and float because they are full implemented in managed code. Wed Mar 19 18:05:57 CET 2003 Paolo Molaro * reflection.c, reflection.h: implemented and exported functions to retrieve info about custom attributes. 2003-03-19 Gonzalo Paniagua Javier * appdomain.c: moved Uri handling to assembly.c * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom work when using a file Uri in *nix and windows. * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for GetReferencedAssemblies. 2003-03-18 Dick Porter * icall.c: Rename a couple of internal calls * threads.c: Set the thread state to Stopped when a thread exits. Fixes bug 39377. 2003-03-17 Zoltan Varga * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): New icall. * object.c (mono_class_vtable): fix warning. 2003-03-17 Zoltan Varga * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation. * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized memory. (method_encode_clauses): Create exception info structures in the right order. (mono_reflection_setup_internal_class): Initialize supertypes field. * class.c object.c: Handle interfaces which implement other interfaces correctly. * class.h class.c: Move the supertypes array initialization code into a separate function so it can be used for dynamic types too. Also call it earlier, in mono_class_init(), since it can be used before the type is initialized. 2003-03-16 Gonzalo Paniagua Javier * Makefile.am: * assembly.c: * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows. * appdomain.c: * appdomain.h: * marshal.c: * object.c: remove warnings. 2003-03-13 Martin Baulig * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type. (MonoDebugLexicalBlockEntry): New types. * debug-mono-symfile.c (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c. 2003-03-13 Gonzalo Paniagua Javier * process.c: ret can be any non-zero value accroding to MS doc. 2003-03-07 Miguel de Icaza * class.c (mono_marshal_load_type_info): Fix buglet: Noticed when fixing a warning for a miss-used prototype, would have cause random memory corruption. 2003-03-07 Martin Baulig * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was getting really annoying .... 2003-03-07 Zoltan Varga * reflection.c (fixup_method): added support for array methods. Tue Mar 4 18:03:27 CET 2003 Paolo Molaro * socket-io.c: handle case when AF_INET6 and AF_IPX are not defined (pointed out by Michael Adams). 2003-03-04 Dick Porter * icall.c: Temporarily reverted the Double and Single ToString() change, because it broke nunit. Tue Mar 4 12:40:58 CET 2003 Paolo Molaro * object.h, threads.h: make include files compatible with C++ (patch by Jerome Laban ). 2003-03-04 Pedro Mart�nez Juli� * icall.c: Erased ToString helper functions for Double and Single. Now, that implementations ar all in managed code (Double and Single Formatters). 2003-03-03 Lluis Sanchez Gual * appdomain.c: Added method for initializing the default context of a domain. Added internal call for getting the default context. * appdomain.h: Added context variable in MonoDomain struct. * domain.c: mono_domain_set also sets the default context of the domain * icall.c: Mapped internal method InternalGetDefaultContext. * object.c: mono_object_get_virtual_method returns always a remoting wrapper if the object is a transparent proxy. mono_runtime_invoke_array: when creating an object by calling the constructor, if the created object is a proxy, then the constructor should be called using the a remoting wrapper. 2003-03-03 Dick Porter * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un variable so it compiles on solaris. Problem spotted by Christopher Taylor 2003-03-01 Gonzalo Paniagua Javier * appdomain.c: (get_info_from_assembly_name): don't leak value. * icall.c: (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize result. Sat Mar 1 15:32:56 CET 2003 Paolo Molaro * assembly.c: export mono_image_load_references (). * class.c: handle function pointers. mono_class_from_name() now supports nested type names directly. 2003-02-28 Zoltan Varga * reflection.h reflection.c: Encode already created dynamic methods and fields correctly as a DEF instead of a REF. * reflection.c: Get rid of the force_ref argument to mono_image_typedef_or_ref since it was wrong in the first place. * string-icalls.c: add error checking to string constructors according to the MSDN docs. * reflection.c: Emit types in the order their TypeBuilders were created. Previously, a new table index was assigned to each type before the tables were emitted. This was wrong because the signature blob might already refer to a type by its original table index. 2003-02-27 Zoltan Varga * metadata.c (mono_metadata_nesting_typedef): fix bug in previous change. 2003-02-27 Gonzalo Paniagua Javier * Makefile.am: make assemblies dir have \ instead of / on windows. 2003-02-27 Zoltan Varga * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to iterate over the NESTEDCLASS table using a linear search since the table is not guaranteed to be sorted by the secondary key. * class.c (mono_class_create_from_typedef): fixed up call to mono_metadata_nesting_typedef. 2003-02-27 Dietmar Maurer * marshal.c (mono_string_to_byvalstr): clear the memory as suggested by Jerome Laban 2003-02-26 Dick Porter * process.c: Cope with padding in .rsrc blocks 2003-02-26 Dietmar Maurer * metadata.h: reverted the filter_len change, it breaks reflection 2003-02-26 Dietmar Maurer * metadata.h: added a new field to store the filter_len Tue Feb 25 10:56:16 CET 2003 Paolo Molaro * reflection.c: handle custom attributes for types and members created with Reflection.Emit (bug#38422). 2003-02-22 Zoltan Varga * reflection.c: define RTSpecialName automatically for constructors for compatibility with MS.NET. * reflection.c (mono_reflection_create_runtime_class): initialize nested_in field of dynamically created classes. 2003-02-22 Martin Baulig * debug-mono-symfile.h: Incremented version number. 2003-02-21 Zoltan Varga * object.h icall.c process.c: fix warnings. 2003-02-21 Zoltan Varga * appdomain.h appdomain.c: (mono_domain_try_type_resolve): split the name_or_tb argument into a name and a tb argument. (mono_domain_has_type_resolve): new function to check whenever the application has registered a TypeResolve event handler. * icall.c reflection.h reflection.c: move the type resolve logic into mono_reflection_get_type () so it will be invoked when Assembly::GetType () is called. * reflection.c: (mono_reflection_get_type): renamed to get_type_internal. (mono_reflection_get_type): fixed type name generation so it works for nested types too. (mono_reflection_get_type): call has_type_resolve () to avoid the costly type name generation if there is no resolve event handler. Fri Feb 21 11:36:57 CET 2003 Paolo Molaro * class.c, image.c: load exported types from file references. 2003-02-19 Lluis Sanchez Gual * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables used to cache the managed methods used to create proxies and make remote invocation of methods. * class.h: Added in MonoVTable a flag to indicate that a class needs to be remotely created. * object.c: Modified the method mono_class_vtable(). It now initializes the remote flag of the vtable. Modified mono_object_new_specific(), so now it checks the remote flag. * icall.c: Added a couple of internal methods, one for enabling instance creation interception for a type, and one for creating objects bypassing the remote check. 2003-02-18 Martin Baulig * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken): New interncall to get a method's metadata token. * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"): New interncall for the debugger. 2003-02-18 Dietmar Maurer * class.c (mono_class_setup_vtable): allocate supertype array 2003-02-18 Martin Baulig * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'. 2003-02-17 Gonzalo Paniagua Javier * reflection.c: (assembly_name_to_aname): jump over unknown properties (i've found something like: 'type, assembly, version=xxx, custom=null, public...', so now will ignore custom=null and still get the rest of the values). 2003-02-17 Dick Porter * threads.c: Have Thread.Start() wait for a semaphore to signal that the thread has set up all its local data. This fixes bug 34323, where Abort() raced the new thread's TLS data. Also removes the handle_store() call from start_wrapper, because threads are now always created suspended and there is no longer a race between the parent and child threads to store the info. Mon Feb 17 13:13:31 CET 2003 Paolo Molaro * image.c: explain the #- heap issue in a message, hopefully avoiding FAQs on mono-list. 2003-02-17 Gonzalo Paniagua Javier * icall.c: (GetEntryAssembly): if the domain has not invoked AppDomain.ExecuteAssembly yet, return the assembly of the default AppDomain. 2003-02-16 Zoltan Varga * class.c (mono_ldtoken): make it work in dynamic assemblies. Sun Feb 16 13:10:06 CET 2003 Paolo Molaro * metadata.c, reflection.c: simple speedup to type hash and equals code. Sat Feb 15 15:15:03 CET 2003 Paolo Molaro * image.c, image.h, class.c, assembly.c: move module loading to MonoImage. When loading metadata, consider alignemnet from the start of metadata, not from the metadata address in memory. 2003-02-13 Zoltan Varga * reflection.c (mono_reflection_get_custom_attrs): Added support for AssemblyBuilder objects. Factored out custom attribute creation into a separate function. (create_custom_attr): new function to create custom attributes. 2003-02-12 Miguel de Icaza * Makefile.am: Got tired of typing the full pathname to pedump. Until there is another option, am installing this. 2003-02-12 Dietmar Maurer * class.c (class_compute_field_layout): always set field->parent (mono_ldtoken): use mono_defaults.fieldhandle_class; 2003-02-11 Dick Porter * threads-types.h: * monitor.c: Rewrote Monitor, making lock much faster and Pulse/Wait work as specified. Also uses much fewer handles, and only creates them as needed. * exception.c: Added SynchronizationLockException * threads.c: Deleted old Monitor implementation. The new one is in a new file. Mon Feb 10 17:54:10 CET 2003 Paolo Molaro * class.c: handled TypedReference type code. Set the correct size for class data. Setup interface_offsets for interface classes, too. 2003-02-09 Martin Baulig * debug-mono-symfile.h: Reflect latest symbol writer changes. Sun Feb 9 18:37:01 CET 2003 Paolo Molaro * loader.c: implemented MEMBERREF_PARENT_TYPEDEF. * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling. * object.c: fixed mono_object_get_virtual_method () for interfaces. * verify.c: check for code that runs after the end of the method. 2003-02-08 Pedro Mart�nez Juli� * icall.c: Added "System.Math::Floor", "System.Math::Round" and "System.Math::Round2". * sysmath.h: Added Floor, Round and Round2 definitions. * sysmath.c: Modified certain functions that were not 100% compliant with MS.NET (math precision) and added the implementation of Floor, Round and Round2. 2003-02-07 Martin Baulig * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls. 2003-02-07 Martin Baulig * debug-mono-symfile.c: Reflected latest symwriter changes. (mono_debug_create_mono_symbol_file): Removed. (mono_debug_open_mono_symbol_file): Take an argument which specifies whether to create a dynamic symbol file. 2003-02-07 Dietmar Maurer * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF 2003-02-05 Martin Baulig * reflection.c (mono_image_build_metadata): Make this public, protect it against being called multiple times, don't create resources and don't build the compressed metadata here. (mono_image_create_pefile): Do this here. * icall.c ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added. 2003-02-06 Gonzalo Paniagua Javier * socket-io.c: fixed bug #36322. 2003-02-06 Piers Haken * appdomain.[ch]: * class.h: * debug-mono-symfile.c: * icall.c: * loader.c: * mono-config.c: * monosn.c: * reflection.c: * socket-io.c: warning cleanups 2003-02-06 Dietmar Maurer * marshal.c (mono_marshal_get_remoting_invoke_with_check): new function. works like remoting invoke, but does a check for the Proxy first. 2003-02-05 Miguel de Icaza * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler. 2003-02-05 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): only allocate an array of pointers. (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers. (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers. * object.c (mono_store_remote_field_new): used by the new jit instead of mono_store_remote_field (mono_load_remote_field_new): used by the new jit instead of mono_load_remote_field 2003-02-05 Patrik Torstensson * appdomain.c: changed unload to take the domain id instead of domain * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload 2003-02-05 Gonzalo Paniagua Javier * appdomain.c: don't look for assemblies in ApplicationBase if PrivateBinPathProbe is set. 2003-02-05 Gonzalo Paniagua Javier * object.c: make the first argument in main_args contain the absolute path to the assembly. Fixes bug #37511. 2003-02-04 Gonzalo Paniagua Javier * icall.c: get correct UTC offset for countries not using daylight time saving. Fixes bug #30030. 2003-02-04 Gonzalo Paniagua Javier * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0 and 1 are the family). 2003-02-04 Dietmar Maurer * icall.c (ves_icall_InternalExecute): removed wrong assertion * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL 2003-02-04 Zoltan Varga * reflection.c: added support for SignatureHelper tokens, which is needed by the Calli opcode. * reflection.h: track changes to SignatureHelper class. * metadata.c (mono_metadata_parse_signature): handle dynamic tokens. 2003-02-04 Gonzalo Paniagua Javier * appdomain.c: fixed loading assemblies from PrivateBinPath. 2003-02-03 Patrik Torstensson * appdomain.[c|h], domain.c : - Added support for getting a domain via domain id - Support for setting and getting domain from System.AppDomain (used in cross appdomain channel) - Added support for get/set for a MonoAppContext on a thread (Context class in System.Runtime.Remoting.Contexts), - Removed hack in Get/SetData and ExecuteAssembly. * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow the managed world to get control when a proxy is created. * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array 2003-02-03 Miguel de Icaza * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Populate the codebase field as well. 2003-02-02 Martin Baulig * debug-mono-symfile.c (MonoSymbolFileMethodAddress): Added `wrapper_address' field. (mono_debug_symfile_add_method): Allow interncalls. 2003-01-31 Gonzalo Paniagua Javier * icall.c: throw parse exception if strtod fails or the string is empty. Fri Jan 31 16:09:48 CET 2003 Paolo Molaro * marshal.c: handle object type separately from defined class types. Fri Jan 31 16:01:20 CET 2003 Paolo Molaro * marshal.c: handle NATIVE_LPSTR for strings when it's explicitly specified. Fri Jan 31 11:51:43 CET 2003 Paolo Molaro * reflection.c, reflection.h, icall.c: setup the reflection handle cache for ModuleBuilders and AssemblyBuilders. 2003-01-30 Dietmar Maurer * reflection.c (reflection_methodbuilder_to_mono_method): set pinvoke flag 2003-01-30 Gonzalo Paniagua Javier * icall.c: implemented ves_icall_MonoMethod_get_base_definition. 2003-01-29 Dick Porter * threads.c: No need for the fake_thread kludge now that Thread doesn't run a class constructor 2003-01-29 Dick Porter * threads.c: Use g_direct_hash instead of the rather bogus g_int_hash 2003-01-29 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): add check for null (fix pinvoke12.exe) (mono_marshal_get_struct_to_ptr): generate valid IL code (mono_marshal_get_ptr_to_struct): generate valid IL code (*): correctly set sig->pinvoke, we need to memdup the signature to do that Tue Jan 28 22:57:57 CET 2003 Paolo Molaro * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local() to avoid overflows (bug spotted and fixed by Jerome Laban ). Tue Jan 28 18:55:19 CET 2003 Paolo Molaro * profiler.c: provide more callers information. 2003-01-28 Dietmar Maurer * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code 2003-01-27 Zoltan Varga * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an exception instead of going into an infinite loop on dates which it can't yet handle. * string-icalls.c (ves_icall_System_String_get_Chars): raise out-of-range exception if needed. * class.c (mono_class_setup_vtable): allow a virtual method to provide an implementation for an interface method and to override an inherited method at the same time. Imagine a scenario when a virtual method is used to override a virtual abstract method in a parent class, and this same method provides an implementation for an method inherited from an interface. In this case, the interface resolution code will set im->slot, which means that the virtual method override pass will skip this method which means a pointer to the abstract method inherited from the parent will remain in the vtable of this non-abstract class. * class.c: (mono_class_setup_vtable): continue search for a real method if only an abstract method is found. Mon Jan 27 17:12:19 CET 2003 Paolo Molaro * reflection.c: add size to encoding for ByValStr and ByValArray marshal blob (from "Jerome Laban" ). 2003-01-27 Zoltan Varga * class.c (mono_class_setup_vtable): pass the override info as an argument. * class.c (mono_class_setup_vtable): set the slot of overriding methods correctly. * reflection.c (ensure_runtime_vtable); add support for method overrides. 2003-01-27 Zoltan Varga * reflection.c (resolution_scope_from_image): Hack to work to work with dynamic assemblies. * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and added a 'force_ref' argument to force this function to allways return a TypeRef. This is needed by mono_image_get_memberref_token (). 2003-01-27 Zoltan Varga * reflection.c (mono_image_get_type_info): interfaces really don't have a parent. * reflection.c (mono_image_basic_init): fill out missing fields of image structure. * reflection.c (mono_image_basic_init): Invoke assembly load hooks for dynamic assemblies. This is required so dynamic assemblies show up in AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by Type::GetType() etc. This is consistent with MS behaviour. * image.c image.h reflection.c: add newly created classes to the name cache so mono_class_get () will find them. 2003-01-27 Zoltan Varga First part of changes to get IKVM.NET running under mono. * appdomain.h, appdomain.c: added new function mono_domain_try_type_resolve() which will emit TypeResolve events. This function will call AppDomain::DoTypeResolve to do the actual work. * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: moved existing code dealing with dynamic tokens to a new function called mono_reflection_lookup_dynamic_token (). This function will raise TypeResolve events when appropriate. Since reflection.c is not part of libmetadata, a new hook function called mono_lookup_dynamic_token() is added to class.c which will call this. * assembly.h assembly.c: make the invoke_load_hook function public, so it can be called for dynamic assemblies. * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers. * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the type isn't found. * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a MonoGHashTable, since it contains pointers to objects which the GC needs to track. * assembly.c (search_loaded): remove unused variable. Mon Jan 27 12:18:45 CET 2003 Paolo Molaro * object.c: fixed issue exposed by gcc-generated IL programs that use RVA data for pointers. 2003-01-25 Martin Baulig * threads.c (start_wrapper): Moved the initialization of `start_func' above the mono_new_thread_init() call to which we pass it as argument. 2003-01-24 Martin Baulig * threads.h (MonoThreadCallbacks): Pass the thread ID instead of the MonoThread pointer. 2003-01-21 Miguel de Icaza * icall.c: Rename `PowImpl' to Pow. 2003-01-23 Dick Porter * threads.c (start_wrapper): Create a Thread object if needed, so the Main() thread can do the class initialisation in a subthread that has been set up to allow managed code execution. Pass the thread ID instead of the MonoThread pointer to the thread start and attach callbacks. This change is required, because the jit thread start callback must be called _before_ the Thread object can be created. (mono_thread_init): Removed much object creation code that is no longer needed. No managed code is called from here now. * object.c (mono_runtime_exec_managed_code): Create a subthread for Main, and call back to the runtime to use it. Set the exit code when Main exits. * gc.c: Make sure domain finalisation happens in a subthread. Re-enable threaded GC, fixing bug 31333 (again). * environment.c: System.Environment internall calls (so far just ExitCode is here, the others are still in icall.c) * appdomain.c (mono_runtime_cleanup): All threads running managed code should have finished before mono_runtime_cleanup() is reached, so no need to clean up threads. 2003-01-22 Martin Baulig * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and `gpointer func' arguments. (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB, but added `MonoThread *thread' argument. (mono_runtime_init): The last argument is now a MonoThreadAttachCB. * threads.c (mono_new_thread_init): Added `gpointer func' argument and pass it to the mono_thread_start_cb callback. (mono_install_thread_callbacks): New public function to install a set of callbacks which are set by the debugger. (mono_thread_init): The last argument is now a MonoThreadAttachCB. 2003-01-22 Martin Baulig * Makefile.am: Install debug-mono-symfile.h. 2003-01-21 Aleksey Demakov * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length. 2003-01-21 Dietmar Maurer * added the following fix from Jackson Harper * class.c (mono_ptr_class_get): correctly set access levels of pointers (mono_array_class_get): correctly set access levels of arrays 2003-01-20 Patrik Torstensson * image.h (MonoAssemblyName): changed major, minor, build, revision from signed to unsigned. 2003-01-20 sean kasun * reflection.c (load_cattr_value): Now this handles MONO_TYPE_SZARRAY. Fixes bug #35629 2003-01-20 Miguel de Icaza * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an integer value 2003-01-18 Gonzalo Paniagua Javier * decimal.c: fixed bug #26056. 2003-01-17 Martin Baulig * gc.c: Raise an ExecutionEngineException instead of using g_error(). 2003-01-17 Gonzalo Paniagua Javier * exception.[ch]: (mono_get_exception_type_initialization): new function. * object.c: throw a TypeInitializationException when an exception is thrown invoking the class constructor. 2003-01-16 Gonzalo Paniagua Javier * reflection.c: fixed attribute reading. 2003-01-15 Gonzalo Paniagua Javier * icall.c: (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name provided, look for the type in the calling assembly and then in mscorlib; if the assembly name is provided, only try that one. Tue Jan 14 14:52:52 CET 2003 Paolo Molaro * object.c: register the vtable before there is a chance it's queried again recursively. 2003-01-13 Duncan Mak * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to gc-internal.h. 2003-01-12 Patrik Torstensson * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode 2003-01-11 Martin Baulig * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented this to 20 for the release. 2003-01-10 Dietmar Maurer * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT * loader.c (mono_method_get_marshal_info): bug fix * marshal.c (mono_marshal_get_ptr_to_struct): don't convert structures with explicit layout Fri Jan 10 15:58:09 CET 2003 Paolo Molaro * profiler.c: made the output more readable (and sorted). Added caller information for the allocation profiler. 2003-01-09 Sebastien Pouliot * icall.c, rand.c, rand.h: Prepended RNG functions with Internal. 2003-01-09 Gonzalo Paniagua Javier * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used to get value types. Thu Jan 9 19:43:11 CET 2003 Paolo Molaro * object.c, profiler.h, profiler.c, profiler-private.h: Added object allocation profiler. Thu Jan 9 16:17:00 CET 2003 Paolo Molaro * reflection.h, reflection.c: handle global methods. Compress blob entries. Thu Jan 9 15:54:53 CET 2003 Paolo Molaro * marshal.c: fix compilation. 2003-01-09 Dietmar Maurer * loader.c (mono_method_get_marshal_info): impl. * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info 2003-01-09 Gonzalo Paniagua Javier * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive for reference types. Wed Jan 8 20:11:46 CET 2003 Paolo Molaro * loader.c: fixed off by one error in loaded parameter names. 2003-01-08 Dietmar Maurer * marshal.c (mono_marshal_get_icall_wrapper): like mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature instead of a MonoMethod. 2003-01-07 Gonzalo Paniagua Javier * decimal.c: fixed bug #36537. Mon Jan 6 19:37:59 CET 2003 Paolo Molaro * marshal.c: throw a missing method exception if a P/Invoke method is not found. Sun Jan 5 11:57:09 CET 2003 Paolo Molaro * icall.c: allow a null this for constructors. Sat Jan 4 18:28:42 CET 2003 Paolo Molaro * icall.c: raise the proper exceptions if the arguments to the internal Invoke are incorrect. 2003-01-03 Dietmar Maurer * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups 2003-01-03 Martin Baulig * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION. 2002-12-31 Martin Baulig * debug-mono-symfile.c: Completely rewrote the type section. Instead of using individual malloc()ed fields, we use one big continuous memory area and offsets into this area. See the comments in the source code for details. 2002-12-30 Martin Baulig * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo. 2002-12-30 Martin Baulig * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the line number table in this data blob instead of using an external pointer. 2002-12-28 Martin Baulig * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION. 2002-12-22 Rachel Hestilow * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR as a boxed return type. 2002-12-21 Miguel de Icaza * appdomain.c (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use g_build_filename to properly get separators on the filename created. * object.h: Small change, introduce MonoMarshalByRefObject to track the layout of that structure in the C# universe as we make changes there. Thu Dec 19 16:23:19 CET 2002 Paolo Molaro * object.c: removed assert to allow static fields on interfaces. * loader.c: a TypeSpec may be used for any type, not just arrays. Thu Dec 19 14:19:42 CET 2002 Paolo Molaro * class.c, class.h: added mono_class_array_element_size (). Ignore static methods in interfaces. 2002-12-19 Gonzalo Paniagua Javier * threads.c: fixed the build under cygwin. Wed Dec 18 18:43:47 CET 2002 Paolo Molaro * reflection.c: handle nullref constants. Allocate keys for reflection handles with the GC. Wed Dec 18 11:34:18 CET 2002 Paolo Molaro * threads.c, threads.h: added mono_thread_get_abort_signal() to get a suitable signal for thread abort. Wed Dec 18 11:26:18 CET 2002 Paolo Molaro * metadata.c: fix handling of ExportedType table. 2002-12-15 Gonzalo Paniagua Javier * icall.c: added WriteWindowsDebugString internal call. 2002-12-15 Gonzalo Paniagua Javier * reflection.h: added fields to match C# implementation. 2002-12-14 Gonzalo Paniagua Javier * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName. 2002-12-12 Juli Mallett * gc.h, gc-internal.h: Rename header for GC internal calls to gc-internal.h from gc.h as to not clash with Boehm GC having its header installed as in outside include paths. * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned. * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1. 2002-12-12 Gonzalo Paniagua Javier * icall.c: assign minor, build and revision in FillName. 2002-12-11 Zoltan Varga * image.h reflection.h reflection.c class.h class.c loader.c object.c: Added support for running code generated by Reflection.Emit. 2002-12-11 Gonzalo Paniagua Javier * appdomain.c: check for NULL argument in LoadFrom. 2002-12-10 Dick Porter * threads.c: WaitHandle fixes from Tum 2002-12-09 Gonzalo Paniagua Javier * appdomain.c: fix buglet when building exe file name. Handle full assembly name (needed after latest changes to AssemblyName). * image.c: (mono_image_close): free some hashtables. 2002-12-05 Dietmar Maurer * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation on some systems (redhat 7.3) Thu Dec 5 16:13:40 CET 2002 Paolo Molaro * threads.c: delete the critical section of a sync block, spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen). Thu Dec 5 12:52:52 CET 2002 Paolo Molaro * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag. 2002-12-05 Gonzalo Paniagua Javier * appdomain.[ch]: handle the assembly preload event to try loading the assemblies using the paths we have in the current domain. * assembly.[ch]: created an assembly preload hook that is called to try loading the assembly by other means that the ones provided here. * domain.c: initialize the domain search path. From now on, assemblies (TODO: except corlib and System) are loaded according to these rules when using mono_assembly_load (): 1. It tries to load the assembly from the ApplicationBase of the current domain appending .dll and .exe (TODO: have to try loading from name/name.dll and name/name.exe). 2. It tries the search path specified in PrivateBinPath for the current domain (if any). 3. Previous behavior. Wed Dec 4 16:02:25 CET 2002 Paolo Molaro * icall.c: implemented GetInterfaceMap() related icall. * domain.c, loader.h: load MethodInfo in mono_defaults. Wed Dec 4 11:02:30 CET 2002 Paolo Molaro * gc.c: disable the finalizer thread for now, untill all the issues with it are resolved. Wed Dec 4 10:44:01 CET 2002 Paolo Molaro * string-icalls.c: handle embedded nulls in string ctor when the length is specified. Tue Dec 3 19:29:20 CET 2002 Paolo Molaro * class.c: look for explicit interface implementation in parent classes, too. 2002-12-03 Dietmar Maurer * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) Tue Dec 3 12:40:06 CET 2002 Paolo Molaro * gc.c: protect handles with a critical section. 2002-12-02 Gonzalo Paniagua Javier * icall.c: (ves_icall_type_from_name): it now has throwOnError and ignoreCase parameters. If no assembly specified, try getting the type from all the assemblies in the current domain, else, load the assembly and get the type from it. 2002-11-30 Gonzalo Paniagua Javier * marshal.c: applied patch from Aleksey Demakov that fixes ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni. 2002-11-28 Gonzalo Paniagua Javier * icall.c: fixed get_location. 2002-11-28 Dietmar Maurer * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the declarations to make it work with older gcc. * loader.c (mono_get_method): set signature->pinvoke for native calls 2002-11-20 Dick Porter * threads.c (mono_thread_init): Set the main thread's handle Tue Nov 19 14:15:34 CET 2002 Paolo Molaro * gc.c: allow compilation without GC support. Changed to match the mono coding style. Mon Nov 18 18:41:51 CET 2002 Paolo Molaro * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set. Mon Nov 18 16:35:22 CET 2002 Paolo Molaro * reflection.c: set a public key token on the core assemblies. 2002-11-18 Dick Porter * threads.c: Split out some thread initialisation so that other files can set the start callback function. * gc.c: Run finalisers in a separate thread, to avoid stack overflow. Fixes bug 31333. * appdomain.c: Set up GC finalisation thread. * reflection.c: * object.c: * domain.c: Use gc.h macros for GC_malloc 2002-11-15 Dick Porter * threadpool.c: * threads.c: * appdomain.c: Removed mono_runtime_init_with_attach(), mono_thread_create_arg(), and mono_thread_init_with_attach(), by merging the extra parameter with the existing function. Removed unneeded code in mono_thread_attach(). 2002-11-14 Dietmar Maurer * image.c (mono_image_loaded_by_guid): a method to get loaded images by guid. (load_metadata_ptrs): we store the guid as string. 2002-11-11 Dietmar Maurer * assembly.c (mono_assembly_open): check the guid of aot compiled lib. * metadata.c (mono_guid_to_string): imported method form Zoltan Varga (slightly modified) * assembly.c (mono_assembly_open): load precompiled code * loader.h (MonoMethod): we store the method token for use in the aot compiler. 2002-11-07 Gonzalo Paniagua Javier * appdomain.c: insert the loaded assemblies in the domain->assemblies in the hook function called when an assembly is loaded. * domain.c: Modified file. (mono_domain_assembly_load): removed hash table insertion of assemblies. Fixes bug #33196. 2002-11-07 Miguel de Icaza * reflection.c: Map PEFileKind to the value expected by the WinNT image loader. 2002-11-06 Gonzalo Paniagua Javier * rand.c: use /dev/urandom. If it fails to open, use the previous one. Read until the buffer is filled completely. 2002-11-04 Gonzalo Paniagua Javier * icall.c: implemented MonoType.InternalGetEvent (). 2002-11-04 Gonzalo Paniagua Javier * appdomain.c: implemented InitAppDomainSetup. Delayed AppDomain.SetupInformation until mono_runtime_exec_main, where we get the entry_assembly. * assembly.c: base_dir is now an absolute path ending with G_DIR_SEPARATOR. * icall.c: modified get_location according to the above changes. * object.c: init AppDomain.SetupInformation for the default domain after we have the entry assembly. * domain.c: when unloading a domain, setup = NULL. 2002-11-04 Dietmar Maurer * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro * object.h, object.c: introduced mono_object_get_virtual_method () to lookup the method invoked on an object when a callvirt is done on a method. * icall.c: make MethodInfo::Invoke() always do a virtual call. 2002-11-03 Gonzalo Paniagua Javier * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the current domain when loaded an assembly and failed to load it. * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType. 2002-10-31 Dick Porter * icall.c: * file-io.h: * file-io.c: Return the error status in a parameter, as the GetLastError() value has long since been blown away if we try and look it up in a subsequent internal call invocation. Delete the GetLastError() internal call, because it's useless. 2002-10-31 Dietmar Maurer * class.[ch]: added cast_class to fix bug 29517 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro * marshal.c: create valid IL code in the filter clause: the new JIT is less forgiving:-) 2002-10-29 Gonzalo Paniagua Javier * icall.c: removed get_property internal call. 2002-10-25 Zoltan Varga * appdomain.h domain.c: Added an ID to appdomains. * threads.c threads.h icall.c: Implement icall Thread:GetDomainID(), and remove unused icall CurrentThreadDomain_internal. 2002-10-24 Gonzalo Paniagua Javier * icall.c: Don't recurse through the base types in GetConstructor. Fixes bug #32063. Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro * mempool.h, mempool.c: added mono_mempool_empty() and mono_mempool_stats(). 2002-10-23 Dick Porter * file-io.c: * file-io.h: * icall.c: Added MonoIO.GetFileType internal call 2002-10-17 Dick Porter * appdomain.c (mono_runtime_cleanup): Don't signal the async delegate semaphore before waiting for all threads to finish, because new threads can also call async delegates. Fixes bug 32004. * threadpool.c (async_invoke_thread): Only wait for 500ms instead of 3 seconds, in case another async job is queued. (This part is needed because the bug fix reintroduced the 3s exit lag.) This makes the mono_runtime_shutdown flag superfluous. Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro * reflection.c: include ehader size in method section headers. Really check for suplicated modules entries. 2002-10-17 Martin Baulig * debug-mono-symfile.c: Added back support for locals. 2002-10-14 Martin Baulig * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and MONO_TYPE_VOID. 2002-10-14 Martin Baulig * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use mono_class_get() instead of looking in the class cache. 2002-10-13 Martin Baulig * debug-mono-symfile.c: Set version number to 28, include the signature in method names. 2002-10-13 Martin Baulig * debug-mono-symfile.h: Set version number to 27. 2002-10-11 Martin Baulig * gc.c: Don't register/unregister NULL pointers as disappearing links. Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro * metadata.c, metadata.h: added helper function to allocate signatures. 2002-10-09 Gonzalo Paniagua Javier * icall.c: added internal call to get the location of machine.config. 2002-10-08 Martin Baulig * debug-mono-symfile.c: Ignore classes with a pending init for the moment. 2002-10-03 Dick Porter * threads.c: Freebsd pthread_t is a pointer 2002-10-03 Dick Porter * socket-io.c: Implemented GetHostName_internal 2002-10-02 Gonzalo Paniagua Javier * mono-config.c: (mono_config_parse_file): don't leak the text. 2002-10-02 Martin Baulig * debug-mono-symfile.c: Added support for methods. 2002-10-01 Martin Baulig * debug-mono-symfile.c: Don't emit methods and line numbers for the dynamic symbol file, just write the type table. We can easily have an external helper program which creates a symbol file for an IL file. 2002-10-01 Dick Porter * threads.c (ves_icall_System_Threading_Thread_Start_internal): Only add the handle to the cleanup array when we're about to launch the thread. Bug 31425 deadlocked when the test was run on mono under w32. 2002-10-01 Martin Baulig * debug-mono-symfile.c: Added support for properties. Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro * reflection.c: unaligned store fix from Mark Crichton . 2002-09-27 Martin Baulig * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"): New interncall. Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro * assembly.h, assembly.c: use a sane API to hook into the assembly loading process instead of a useless special-purpouse hack (ngen needs a hook, too, for example). 2002-09-27 Dick Porter * threads.c (mono_thread_init): Call GetCurrentProcess() so io-layer can set up some process handle info. Not needed on w32, but doesn't hurt either. * process.c: Pass the program name in the second parameter to CreateProcess, so the path is searched. Include the working directory. Implemented process name, process enumeration, and some process detail internal calls. * icall.c: Added internal calls for process lookup, and some process details 2002-09-26 Martin Baulig * assembly.c (mono_install_open_assembly_hook): New global function to install a function to be invoked each time a new assembly is loaded. (mono_assembly_open): Run this callback function if set. * debug-mono-symfile.c: Put back line numbers for the dynamic symbol file and also record the .il file as source file. This allows us to install the temporary symbol file as `file.dbg' just like a compiler-generated one. 2002-09-26 Nick Zigarovich * Corrected typo in gc.c (BOHEM vs BOEHM). 2002-09-25 Gonzalo Paniagua Javier * icall.c: fixed bug #31235 by copying a few lines from GetMethods to GetProperties. Also avoid calling g_slist_length in GetProperties and GetMethods. Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro * reflection.c: avoid unaligned stores (bug spotted by Mark Crichton ). 2002-09-25 Martin Baulig * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers instead of guint64 for addresses and added prologue/epilogue info. 2002-09-25 Martin Baulig * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to store line number info. For the dynamic symbol file, we only need to provide the JIT generated dynamic line number info for the dynamic symbol file. 2002-09-25 Martin Baulig * debug-mono-symfile.h: Incremented version number. 2002-09-24 Martin Baulig * class.c (mono_debugger_class_init_func): New global function pointer variable. (mono_class_init): If mono_debugger_class_init_func is non-NULL, call it. * debug-mono-symfile.c (mono_debug_symfile_add_type): New function. This is called via the mono_debugger_class_init_func hook to add all types to the dynamic type table. (ves_icall_MonoDebugger_GetType): New interncall to get a class from its metadata token. * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"): New interncall for the debugger. 2002-09-24 Nick Drochak * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter before using it in case it is null. Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro * metadata.c: allow custom modifiers in local var signatures (bug spotted by Zoltan Varga). Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro * class.c: deal with the class that may have a NULL vtable. Eliminate warnings. Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro * image.c, image.h: more strong name helpers. * monosn.c: more work: convert pem keys to cryptoapi format. Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro * string-icalls.c: speedup IndexOf. Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro * icall.c: updates from Zoltan.2.Varga@nokia.com. Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro * icall.c: cleanup: use mono_object_domain (). 2002-09-23 Martin Baulig * debug-mono-symfile.c: Improved type support. 2002-09-22 Martin Baulig * debug-mono-symfile.c: Added support for reference types and strings. 2002-09-22 Martin Baulig * debug-mono-symfile.c: Started to work on the type table. 2002-09-21 Martin Baulig * debug-mono-symfile.c: Largely reworked the symbol table format. The symbol table is now incrementally updated each time a new method is added. We're now also using our own magic and version so that you don't need to recompile all your classes if the dynamic table changes. (mono_debug_update_mono_symbol_file): Removed. (mono_debug_symfile_add_method): New function to add a method. 2002-09-21 Martin Baulig * icall.c ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"): New interncall. * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature): New interncall to get a method from its metadata token. 2002-09-21 Martin Baulig * debug-mono-symfile.c: Create type table. 2002-09-20 Martin Baulig * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes. 2002-09-20 Martin Baulig * debug-mono-symfile.c: Provide information about params and locals. 2002-09-20 Martin Baulig * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"): New interncall. * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New interncall to get a method from its metadata token. 2002-09-20 Martin Baulig * debug-mono-symfile.c: Added a few checks for method->header being non-NULL. This should never happen, but for the moment let's use a g_warning() rather than a g_assert(). 2002-09-19 Mark Crichton * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc even if support for it isn't present. Added an #ifdef to fix this. * socket-io.c: Added checks back for Solaris support. 2002-09-19 Martin Baulig * debug-mono-symfile.c (read_string, write_string): Reflect latest changes in the symbol file format. 2002-09-18 Martin Baulig * debug-mono-symfile.c: Set version number to 21. 2002-09-18 Dick Porter * threads.c (mon_new): Use the GC_MALLOC macro to hide differences on netbsd. Fixes bug 30051. 2002-09-17 Gonzalo Paniagua Javier * reflection.c: (set_version_from_string): little fix. Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro * monosn.c, Makefile.am: added strong name utility. * reflection.h, reflection.c: implemented delayed signing, locale, version and hash id assembly attributes. Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro * loader.c, metadata.c: load param attributes in signatures. 2002-09-16 Martin Baulig * debug-mono-symfile.c: Added string table with all method names. 2002-09-14 Martin Baulig * debug-mono-symfile.h (MonoSymbolFile): Added method range table for fast method lookup. Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro * reflection.c: record the public key token of referenced assemblies. Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro * image.c, image.h: added functions to get the strong name and the public key of an assembly. * pedump.c: use them. 2002-09-12 Dietmar Maurer * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates. 2002-09-12 Miguel de Icaza * marshal.c (mono_marshal_get_managed_wrapper): Added MONO_TYPE_BOOLEAN 2002-09-11 Martin Baulig * gc.c: Call GC_unregister_disappearing_link() on all links when finalizing them, this is necessary to aviod a crash in boehm's finalize handler. Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro * gc.c: handle GetTarget for finalized objects spotted and fixed by nick@chemlab.org. Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro * icall.c: implemented MonoType::Module. * reflection.c, reflection.h: mono_module_get_object () from Tomi Pakarinen . Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro * icall.c: ignore overridden methods in GetMethods (). Fix for FieldInfo::SetValue(). * object.c: handle float/double in runtime invoke. Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro * object.c: allow a constructor to be called again on an object. Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro * class.h, class.c: move field layout code to it's own function and export it. Get an interface id earlier. Move fields in MonoClass so they are more cache friendly and align the bitfields. * loader.c: temporary handle get_param_names() for a runtime method. * reflection.c, reflection.h: more code to handle runtime creation of types. 2002-09-09 Martin Baulig * marshal.c (mono_marshal_get_native_wrapper): We need to use a special signature with the pinvoke field being set for the actual call. Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro * icall.c: removed some unused icalls. Start of map of glib charsets to corlib names. Implemented RuntimeMethod::GetFunctionPointer (). Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro * debug-helpers.c: break infinite loop (found and fixed by Holger Arnold ). Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro * icall.c: target may be null in create_delegate. Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro * marshal.c: handle a boolean return type. Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro * gc.c: put HIDE_POINTER/REVEAL_POINTER only here. Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro * gc.c: fix weakreferences. Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro * icall.c: added icall to get default codepage. 2002-09-03 Dick Porter * threads.h: * threads.c: Use MonoThread instead of MonoObject where apropriate. Store running thread objects in a hash table, so that we have all the info to hand when waiting for them to finish (means we don't need OpenThread() any more, so mingw builds should be fully functional again.) * verify.c: * object.h: Added thread ID to MonoThread 2002-09-03 Martin Baulig * icall.c (System.Reflection.Assembly::get_location): New interncall. 2002-09-03 Gonzalo Paniagua Javier * icall.c: fixed leak in get_temp_path. Thanks lupus. 2002-09-03 Martin Baulig * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp' argument to store the end address of the disassembled instruction. * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved here from debug-symfile.h. (MonoDebugMethodJitInfo): Moved all fields which are filled out by the JIT into this struct. (MonoSymbolFile): Added `char *image_file' field. (MonoDebugGetMethodFunc): Removed. (mono_debug_update_mono_symbol_file): Removed the hash table argument. (mono_debug_create_mono_symbol_file): Removed the `source_file' argument. (mono_debug_find_method): New method. * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always create a full symbol file. (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic and static symbol files. (mono_debug_find_method): The symbol file keeps an internal method hash, call this to get a MonoDebugMethodInfo from a MonoMethod. * debug-symfile.[ch]: Removed. 2002-08-29 Miguel de Icaza * image.c (do_mono_image_open): Remove linker version check. 2002-08-29 Dietmar Maurer * marshal.c (mono_marshal_get_managed_wrapper): don't cache wrappers for instance methods. 2002-08-29 Gonzalo Paniagua Javier * icall.c: added ves_icall_System_IO_Path_get_temp_path. 2002-08-28 Dick Porter * Makefile.am: Export HOST_CC for w32 builds Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro * file-io.c process.c: MonoString are null terminated, no need for mono_string_to_utf16() anymore. Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro * icall.c, unicode.h, unicode.c: removed unused iconv stuff. Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro * icall.c, reflection.h: speedup System.MonoType. Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro * reflection.c: allow null as the value of a string argument in custom attributes constructors. 2002-08-27 Martin Baulig * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the `trampoline_address' field. 2002-08-27 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): removed wrong null check (fixes bug #29486) 2002-08-27 Martin Baulig * debug-mono-symfile.c: Changed the file format in a way that allows us open it read-only and to use a specially malloced area for all the dynamic data. We can now also generate a symbol file on-the-fly if we're debugging IL code and there is no MCS generated symbol file for it. Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro * object.c: added a define for a good string and array creation speedup (not enabled by default because we need to deal with the synch stuff). 2002-08-26 Martin Baulig * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New function to create a dynamic symbol file. This is used by the debugger to create a symbol file for IL code on-the-fly. 2002-08-26 Martin Baulig * loader.c (mono_lookup_pinvoke_call): Include the error message from g_module_error() in the error message. 2002-08-24 Martin Baulig * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New function to update the symbol file. The symbol file is mmap()ed writable, but private. This allows us to install the symbol file together with the assembly. 2002-08-24 Martin Baulig * debug-mono-symfile.[ch]: New files. Similar to debug-symfile.[ch] but they can read the new symbol file format which mcs is now creating. * debug-symfile.c (mono_debug_find_source_location): Moved to debug-mono-symfile.c; this is now operating on the new symbol file. 2002-08-23 Martin Baulig * debug-helpers.c (mono_method_desc_from_method): New function to get a MonoMethodDesc from a MonoMethod. Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro * object.c: fixes assertion failure caused by multiple ExecuteAssembly calls for same domain (patch by Tomi Pakarinen ). Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro * string-icalls.[ch]: make helper methods static. 2002-08-23 Gonzalo Paniagua Javier * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8 types to it and to SetValueInternal. * object.c: Moved handle_enum label to its proper place. This was the f... bug! ;-) This time i compiled mcs and gtk-sharp and they both work. 2002-08-23 Gonzalo Paniagua Javier * icall.c: reverted partially my previous patch until object.c:set_value handles enums correcly. 2002-08-22 Gonzalo Paniagua Javier * icall.c: (ves_icall_MonoField_GetValue): changed to use mono_field_get_value. (ves_icall_System_Environment_get_MachineName): removed warning when compiling under cygwin. Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro * object.c: fixed field_get_value() for reference types. 2002-08-22 Dick Porter * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Don't free a buffer while it's still needed. Patch from Jonathan Liger 2002-08-21 Miguel de Icaza * icall.c (ves_icall_System_Environment_get_Platform): Add new internal call. 2002-08-21 Dietmar Maurer * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/ (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/ * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because we call unmanaged code which throws exceptions. Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro * appdomain.h: added per-domain entry_assembly. * appdomain.c: ensure mono_runtime_exec_main () gets non-null arguments. * icall.c: Assembly::GetEntryAssembly icall. * object.c: set domain->entry_assembly in mono_runtime_exec_main(). Changes above from a patch by Tomi Pakarinen . Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro * appdomain.h, gc.c: added mono_domain_finalize (). 2002-08-20 Gonzalo Paniagua Javier * object.c: (mono_print_unhandled_exception): changed g_warning by g_printerr because g_log has a 1024 characters limit (yeah, i got a big stack trace). Don't print exception name, that should be in ToString returned string. 2002-08-19 Gonzalo Paniagua Javier * icall.c: added ves_icall_FieldInfo_SetValueInternal. * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array. 2002-08-19 Gonzalo Paniagua Javier * object.c: (mono_print_unhandled_exception): after previous commit, i realized that MS calls ToString on the exception. I changed this function to do that. This way we get stack_trace for free. 2002-08-19 Gonzalo Paniagua Javier * object.c: (mono_print_unhandled_exception): invoke Message property instead of getting 'message' field from Exception. Don't allocate memory for 'trace' and 'message' if not needed. 2002-08-18 Dick Porter * unicode.c: Fix asserts to match Encoder.cs checks Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro * marshal.c: fix unaligned store issue and a few wrong opcode argument types. 2002-08-16 Gonzalo Paniagua Javier * icall.c: added GetUninitializedObjectInternal internal call. 2002-08-16 Dietmar Maurer * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception to the right domain. 2002-08-14 Dietmar Maurer * marshal.c (mono_marshal_get_runtime_invoke): unbox value types * class.c (class_compute_field_layout): set blittable to false for Strings * appdomain.c (mono_domain_transfer_object): added support for ISerializable Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro * appdomain.h, reflection.c, icall.c, object.c, reflection.h: first chunk of code to create types at runtime. Code to handle ReflectedType/DeclaringType. Make reflection handles domain specific. Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro * class.c: set correct name in arrays. 2002-08-13 Dietmar Maurer * appdomain.c (mono_domain_transfer_object): make it work with valuetypes. bug fixes. 2002-08-12 Dick Porter * object.h: Rename some parameters to avoid c++ keywords (Patch from Joseph Wenninger ) Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro * icall.c: added icall to implement Assembly.GetFile*. Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro * reflection.h, reflection.c: code to embed managed resources. Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro * class.c: move all the type size stuff into class_compute_field_layout(). Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro * class.c: ensure enums have always the correct instance size. * unicode.c: remove wrong assert. Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro * assembly.c: fix mem corruption issue. * image.h, image.c: added mono_image_get_resource () to access managed resources. * icall.c: implemented Assembly.EntryPoint property and some Managed Resources related internalcalls. Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro * image.c, image.h: impemented mono_image_get_entry_point (). * appdomain.c: use mono_image_get_entry_point. Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro * reflection.c: support the object type argument when loading custom attributes. 2002-08-05 Dietmar Maurer * marshal.c (mono_marshal_get_managed_wrapper): add suppport for String as return type. Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro * reflection.c: fix encoding of named args for custom attrs to match the ms implementation. Read them back when instantiating custom attributes. 2002-08-02 Radek Doulik * marshal.c (mono_mb_add_data): convert ret value to LE, suggested by Dietmar as quick fix (mono_marshal_get_delegate_begin_invoke): use sig->param_count + 16 as stack size, used on more places as quick fix before Dietmar will fix it properly Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro * object.h, object.c: added accessors for fields and properties. Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro * class.c, class.h: made mono_class_get_field_from_name () loop on parent types. Added mono_class_get_property_from_name (). Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro * class.c, class.h: move the code to setup the type vtable in its own function so that it can be reused also for types created at runtime. Eliminate the "class" identifier from the header file. * reflection.c: setup the vtable for enums so that we can create objects for use in SetConstant (). 2002-08-02 Dietmar Maurer * marshal.c (mono_delegate_to_ftnptr): pass delegate->target instead of the delegate itself as this pointer (bug #28383) 2002-08-01 Dietmar Maurer * marshal.c (mono_marshal_get_managed_wrapper): added return type conversions. Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro * loader.c: don't set the pinvoke bit on icalls. 2002-07-31 Dietmar Maurer * debug-helpers.c (mono_method_full_name): only print a number to indicate wrapper type (so that the output is more readable in traces). 2002-07-30 Dietmar Maurer * class.c (mono_class_init): include method override patch from Paolo Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro * icall.c: fixed GetTypeCode(). 2002-07-29 Dietmar Maurer * threads.c (ves_icall_System_Threading_Thread_Thread_internal): use real delegate invoke function to make it work with multicast delegates (fix bug# 28291). Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro * object.c: load constant strings. Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro * reflection.c: no magic numbers. * tabledefs.h: security action enum. Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro * assembly.c: fix possible memory corruption. Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro * reflection.h, reflection.c: added support for linking resources. * verify.c: check we have an updated corlib. 2002-07-25 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): correctly marshal string arrays. (mono_marshal_string_array): null terminate unmanaged string arrays. (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented) Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro * icall.c: Type.GetType () can now return also types from the calling assembly. Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro * loader.h, loader.c: stack walking support. * icall.c: implemented GetCurrentMethod, GetExecutingAssembly, GetCallingAssembly. 2002-07-24 Dietmar Maurer * marshal.c: added optimisations for blittable types * class.c (mono_array_class_get): do not set blittable attribute on arrays (mono_class_setup_mono_type): set blittable attribute for single and double. * marshal.c (mono_string_utf8_to_builder): impl. (mono_string_builder_to_utf8): impl. (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling 2002-07-23 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): impl. byref types (mono_marshal_get_managed_wrapper): impl. byref types 2002-07-23 Gonzalo Paniagua Javier * icall.c: (search_method): don't display debug message. 2002-07-22 Dietmar Maurer * metadata.c (mono_type_stack_size): removed temporary fix for new gcc Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro * appdomain.c: set the missing filename when throwing exception. 2002-07-22 Dietmar Maurer * metadata.c (mono_type_size): code cleanup (mono_type_stack_size): removed some test code 2002-07-21 Miguel de Icaza * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use mono_get_exception_file_not_found now. * exception.c (mono_exception_from_name_two_strings): New version that will call a constructor with two string arguments. (mono_get_exception_file_not_found): New helper routine, used to report file-not-found errors. 2002-07-20 Dick Porter * process.h: * process.c: Pass file handles to CreateProcess * icall.c: * file-io.h: * file-io.c: Implemented CreatePipe 2002-07-19 Dietmar Maurer * metadata.c (mono_get_param_info): set alignment for value types Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro * appdomain.h, domain.c, threads-types.h: don't include config.h in headers. Constify mono_domain_assembly_open(). * loader.c: handle null namespace in icalls. 2002-07-19 Dietmar Maurer * marshal.c (emit_ptr_to_str_conv): marshal object as structs (emit_str_to_ptr_conv): marshal object as structs * metadata.c (mono_type_to_unmanaged): marshal object as structs * marshal.c (mono_marshal_get_runtime_invoke): support value types 2002-07-18 Dietmar Maurer * marshal.c (mono_marshal_get_runtime_invoke): use exception filters (mono_marshal_get_native_wrapper): we an now return value types Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro * verify.c: more checks implemented. 2002-07-17 Dietmar Maurer * marshal.c (mono_delegate_to_ftnptr): invoke the right method (fix bug #27695) (mono_marshal_get_native_wrapper): allow byref arguments (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX): impl. PtrToStringXXX methods (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl. (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl. (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl. (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl. (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl. Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro * reflection.c: fix buglet in parsing an assembly name. 2002-07-16 Dietmar Maurer * marshal.c (emit_ptr_to_str_conv): first impl. Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro * object.c, class.h: cache the vtable in the class as suggested by vargaz@freemail.hu (Zoltan Varga). Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro * class.h, loader.c: added mono_field_from_token(). * verify.c: first cut of type checking code. 2002-07-16 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): support valuetypes 2002-07-15 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): handle enum types (fix bug #27782) (mono_marshal_get_remoting_invoke): impl. (mono_delegate_begin_invoke): impl. (mono_mb_emit_save_args): impl. (mono_delegate_end_invoke): impl. (mono_marshal_get_delegate_begin_invoke): (mono_marshal_get_delegate_end_invoke): (mono_marshal_get_delegate_invoke): generate a special name for those methods (including the signature) and associate them whith the delegate class. 2002-07-13 Gonzalo Paniagua Javier * reflection.[ch]: (mono_reflection_type_from_name): now it has a MonoImage parameter which is used as the default image to search the type in. If the image is NULL or getting the type from it fails, it defaults to corlib. * icall.c: changed 1 call to mono_reflection_type_from_name to match new parameter. Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro * reflection.c: update the parameter table index. Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro * domain.c: don't include the mark byte in the string hash. Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro * icall.cs: icall for Type.GetTypeCode (). * verify: a couple of fixes and disabled local initialization checks. 2002-07-12 Dietmar Maurer * marshal.c: better debugging support (DEBUG_RUNTIME_CODE) * debug-helpers.c (mono_method_full_name): print the type of the runtime wrapper * metadata.c (mono_signature_hash): a hash function for signatures (mono_signature_hash): better hash algorithm * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature * debug-helpers.c (mono_method_full_name): this can now generate method names with signatures * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged method dont have this pointers. Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro * reflection.c: fixup typebuilder tokens. * image.c: fix buglet. * marshal.h: remove whitespace. * metadata.h, metadata.c: reinstate code that was removed. * verify.c: handle catch directives and fix another couple of bugs. 2002-07-11 Dietmar Maurer * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN (mono_marshal_get_native_wrapper): make it comp. with the old code (mono_marshal_get_native_wrapper): support boolean (mono_marshal_get_managed_wrapper): support more types 2002-06-25 Dietmar Maurer * class.c (class_compute_field_layout): compute class->blittable attribute. 2002-07-09 Dick Porter * threads.c: Make the thread cleaning up cope with threads that call ExitThread() 2002-07-08 Radek Doulik * reflection.c (method_encode_code): use non-translated values to compute finally_start, this fixes exception handling on ppc, yay! * decimal.h (struct signscale): fix endianess 2002-07-07 Radek Doulik * reflection.c: swap box_val and not val Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro * reflection.c, reflection.h: handle full assembly info in type name. Handle Type arguments when loading custom attributes. * icall.c: updated to use new mono_reflection_type_from_name () method. 2002-07-07 Gonzalo Paniagua Javier * loader.c: (method_from_memberref): also print assembly name when method not found. 2002-07-06 Gonzalo Paniagua Javier * icall.c: (ves_icall_TypeGetProperties): fixed bug #27473. 2002-07-06 Gonzalo Paniagua Javier * reflection.c: display image name and token when cannot find the .ctor for an attribute. 2002-07-05 Martin Baulig * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes. 2002-07-04 Dick Porter * threads.c (mono_thread_cleanup): Nasty kludge to get this to compile on mingw. This will cause mingw builds to not wait for subthreads to terminate after the main thread does. I've lodged a bug with the mingw developers for them to wrap OpenThread(). 2002-07-03 Dick Porter * threads.c: Store thread IDs instead of handles, because GetCurrentThread() returns a pseudohandle and therefore stores useless values. mono_thread_cleanup() continues checking the array of threads until it is empty, to cope with subthreads spawning new threads after the main thread has finished. * profiler.h: * profiler.c: * profiler-private.h: Pass the thread ID to thread profiler functions, instead of a handle Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro * verify.c: fixes to make it more usable. * pedump.c: added --verify code to verify IL code in an assembly. Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro * reflection.c: turn errors into warnings to allow compiling corlib. Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro * reflection.c: add special cases to compile corlib. Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro * reflection.c: handle properties with only a set method. Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro * opcodes.h: add enum with opcodes in opval order. 2002-07-01 Dick Porter * object.h: * object.c (mono_runtime_run_main): Removed unneeded argument 2002-06-28 Martin Baulig * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes. 2002-06-27 Dick Porter * threads.c: Store the handle in both the parent thread and in the subthread, to minimise the time between starting a new thread and storing its ID. 2002-06-26 Dick Porter * appdomain.c (mono_runtime_cleanup): Close the socket library after all the threads have finished, not before 2002-06-26 Martin Baulig * debug-symfile.c (mono_debug_find_source_location): Added `guint32 *line_number' argument. If it's not NULL, store the line number there and return the file name without the line number. 2002-06-25 Dick Porter * icall.c: * process.h: * process.c: Process forking and other support functions 2002-06-25 Dick Porter * image.c (do_mono_image_open): Set ref_count to 1, so that bad things dont happen when the image is closed. (mono_image_lookup_resource): Walk the resource section looking for a particular entry * cil-coff.h: PE resource section decoding 2002-06-25 Dick Porter * assembly.h: * assembly.c: (mono_assembly_foreach): Accessor functions to walk the list of loaded assemblies (mono_assembly_set_main): (mono_assembly_get_main): Process methods need to know which assembly is the "main" one * object.c (mono_runtime_run_main): Record the main assembly * debug-helpers.c: Fix typo 2002-06-24 Dietmar Maurer * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl. (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl. Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx. 2002-06-21 Miguel de Icaza * image.c (do_mono_image_open): Initialize reference count, otherwise we leak the MonoImage. Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro * reflection.c: small tweak to handle self-hosting. Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro * reflection.c: fix type name parse code. Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro * reflection.c: break out of the loop. * image.c: special case corlib. Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro * reflection.c: add all the custom attrs at the end to ensure the ctors have been properly initialized when the attributes are defined in the current assembly. Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro * reflection.c: handle correctly multiple-nested types. Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro * row-indexes.h: fix typos. * reflection.c: adjust for typos and fix method_def_or_ref encoding in MethodImpl table. Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro * reflection.c: fix entry point patching (thanks Serge!). 2002-06-18 Dietmar Maurer * verify.c: add check for System.Exception Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro * image.c, class.c: minifix for code just c&p'ed. * reflection.c: warning fix. * object.h, loader.h, domain.c: load also StringBuilder. Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro * marshal.h, marshal.c: some support code to handle complex marshaling. Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro * class.h, class.c, reflection.c: handle ignorecase in GetType (). Better signatures with vtable error dump. Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro * reflection.c, reflection.h, icall.c: fixes for multiple-nested types. 2002-06-17 Dietmar Maurer * icall.c (ves_icall_Type_GetField): impl. Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro * metadata.h, metadata.c: added mono_metadata_get_marshal_info() to retrieve a marshal description blob for a field or param. Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro * reflection.h, reflection.c: change order of nested type emission to avoid table corruption. The NestedTypes table is sorted. * icall.c: change order of GetConstructor results to workaround mcs bug. Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro * reflection.h, reflection.c: handle field and param marshal information. Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro * icall.c, marshal.c marshal.h: more Marshal class implementation. Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro * reflection.c: fix call convention. Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro * reflection.h, reflection.c: mono_image_get_memberref_token() takes a type instead of a class, now. Added mono_image_get_array_token() to create tokens for the special multi-dim array methods. Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro * assembly.c: handle modules (no assembly table). Split loading references in its own function. * class.c: handle moduleref resolution scope. * image.c, image.h: cache module name in image. 2002-06-07 Martin Baulig * reflection.c (mono_image_get_type_info): Only add a class layout entry if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize). Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro * icall.c: more signature fixes that used uint instead of int. Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro * reflection.c: fixed signature of field refs. Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro * class.c, reflection.c: handle typerefs of nested types (both on read and when writing files). Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro * icall.c: fix method signatures that tried to workaround the previous typo, d'oh! Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro * debug-helpers.c: fix typo. Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro * cil-coff.h, icall.c, image.c, reflection.c, reflection.h: rewrote the PE/COFF writing code (our programs are understood by the ms runtime, now). Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro * gc.c, gc.h, icall.c: weakreference support. Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro * Makefile.am, mono-config.c: use $(sysconfdir). Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro * icall.c: changed default precision of Double.ToString() to 15. Fixed memory leak. Unified with Single.ToString. Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro * sysmath.c: workaround systems missing NAN and/or HUGE_VAL. Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c, gc.c, icall.c, image.c, mono-config.c, reflection.c: killed warnings and compilation fixes from Dennis Haney (davh@davh.dk) and myself. Fri May 31 16:58:36 CEST 2002 Paolo Molaro * debug-symfile.c, sysmath.c: yet more compilation fixes. Fri May 31 16:35:56 CEST 2002 Paolo Molaro * reflection.c, socket-io.c: more compilation fixes. Fri May 31 15:58:22 CEST 2002 Paolo Molaro * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c, domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h, unicode.c: warning and compiler compatibility fixes. Fri May 31 15:36:53 CEST 2002 Paolo Molaro * class.h, metadata.c: fixed warnings/compilation errors. Fri May 31 13:08:25 CEST 2002 Paolo Molaro * Makefile.am, mono-config.c, mono-config.h: configuration file support routines. * loader.c, loader.h: make Dll mapping configurable at runtime in the config file. Export methods to insert and lookup mappings. Fri May 31 12:45:38 CEST 2002 Paolo Molaro * reflection.c: handle types and boxed objects in custom attr constructors. 2002-05-30 Martin Baulig * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed. Thu May 30 14:15:02 CEST 2002 Paolo Molaro * metadata.c, metadata.h: added mono_metadata_implmap_from_method() to lookup the implmap row for a P/Invoke method. * loader.c: added mono_lookup_pinvoke_call(): we only lookup a P/Invoke method from the runtime on an as needed basis. 2002-05-28 Dietmar Maurer * metadata.c (mono_metadata_parse_signature): impl. Tue May 28 16:02:29 CEST 2002 Paolo Molaro * class.c: handle .pack directive. Tue May 28 11:04:46 CEST 2002 Paolo Molaro * object.c: initialize static fields with RVA data. 2002-05-25 Martin Baulig * debug-symfile.c (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed. 2002-05-24 Martin Baulig * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed. (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'. Thu May 23 18:44:37 CEST 2002 Paolo Molaro * object.c: special case string ctros in invoke. * gc.c: silly whitespace changes. 2002-05-23 Dietmar Maurer * threadpool.[ch]: impl. a threadpool that can be used by mint and mono. 2002-05-22 Martin Baulig * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token): The first argument is now a `MonoReflectionModuleBuilder *', the return value is a `MonoReflectionModuleBuilder *'. Use the AssemblyBuilder's `methods' field to get the method builder. The `token' argument is the unfixed token. * unicode.c (iconv_get_length, iconv_convert): Silently ignore all invalid characters instead of g_assert_not_reached()ing. This seems to be the behaviour of mscorlib. 2002-05-22 Dietmar Maurer * object.c (mono_runtime_invoke_array): applied patch from Rachel Hestilow to fix bug #25104 2002-05-21 Martin Baulig * debug-symfile.c (mono_debug_find_source_location): New function. Looks up an IL offset in the line number table and returns the source location as a string. 2002-05-21 Gonzalo Paniagua Javier * icall.c: (mono_double_ToStringImpl): changed %f by %g until we have something better. 2002-05-21 Nick Drochak * icall.c : Use different name for Math.Pow's icall. Needed to check parameters first in C#. Mon May 20 17:36:36 CEST 2002 Paolo Molaro * icall.c, reflection.h: added icall to get info about an event. 2002-05-20 Radek Doulik * object.c (mono_value_box): don't use memcpy for boxing on BIG endian (mono_value_box): don't use memcpy for small sizes on architectures with unaligned access 2002-05-20 Martin Baulig * reflection.c (mono_reflection_setup_internal_class): Don't crash if `tb->parent == NULL'. (mono_reflection_create_internal_class): New function. This is called from TypeBuilder.CreateType() and sets `klass->enum_basetype' for enum types. * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"): New interncall. 2002-05-19 Martin Baulig * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount' argument to get the length, don't default to the array length. 2002-05-18 Miguel de Icaza * assembly.c (mono_assembly_setrootdir): New function used to override the MONO_ASSEMBLIES directory. Fri May 17 20:39:53 CEST 2002 Paolo Molaro * icall.c: ValueType_GetHashCode() initialize local var. Thu May 16 17:20:22 CEST 2002 Paolo Molaro * reflection.c: sort custom attributes table. Thu May 16 16:08:01 CEST 2002 Paolo Molaro * reflection.c: support named args in custom attributes (write support). Thu May 16 13:04:59 CEST 2002 Paolo Molaro * reflection.c: fix finally position calculation. 2002-05-15 Radek Doulik * reflection.c: fixed endianess at many places * icall.c (ves_icall_InitializeArray): comment out debug msg 2002-05-15 Dietmar Maurer * object.c (mono_unhandled_exception): new function to handle unhandled exceptions. (mono_unhandled_exception): call the UnhandledException event. (mono_runtime_delegate_invoke): impl. Wed May 15 15:59:55 CEST 2002 Paolo Molaro * metadata.h, metadata.c, class.c: mono_metadata_field_info () returns the RVA, not the direct pointer to the data. Handle the case when the class size is fixed. Tue May 14 16:59:44 CEST 2002 Paolo Molaro * reflection.c: fix some endianess issues. 2002-05-14 Dietmar Maurer * object.c (mono_runtime_invoke): is now able to catch exceptions. * threads.c (mono_thread_init): added a callback which is invoked at thread start. 2002-05-14 Dan Lewis * icall.c: make GetHashCode return non-negative values. 2002-05-14 Dan Lewis * object.c, icall.c, gc.c: revert to address-based hashcode. 2002-05-13 Miguel de Icaza * icall.c (mono_double_ParseImpl): Added ParseImpl method. Mon May 13 16:40:30 CEST 2002 Paolo Molaro * icall.c, class.c: special case . 2002-05-13 Dan Lewis * icall.c: fix bug in GetNow(). 2002-05-11 Dietmar Maurer * object.c (mono_runtime_class_init): make sure that we call all static class constructors. Fri May 10 18:14:51 CEST 2002 Paolo Molaro * reflection.c: sort methodsemantics table. Fri May 10 16:31:49 CEST 2002 Paolo Molaro * reflection.h, reflection.c: honour init locals setting. Thu May 9 18:50:00 EDT 2002 Daniel Morgan * icall.c: copied Double ToStringImpl for Single ToStringImpl Wed May 8 12:28:28 CEST 2002 Paolo Molaro * reflection.c: support ContructorBuilders in attribute blob creation. Wed May 8 12:06:14 CEST 2002 Paolo Molaro * reflection.c: some changes to build a binary that can be run directly in windows. Mon May 6 13:10:34 CEST 2002 Paolo Molaro * loader.c: print a big message when an icall can't be found. 2002-05-06 Gonzalo Paniagua Javier * string-icalls.c: fix bug 24248. Sat May 4 14:03:21 CEST 2002 Paolo Molaro * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h, icall.c, reflection.h: separate assembly loading by pathname and by assembly name. Use the MONO_PATH env var to search for assemblies. Thu May 2 17:56:52 CEST 2002 Paolo Molaro * assembly.c, image.h: add some support for assemblies with multiple modules. * class.c, class.h: export mono_class_from_typeref(). * loader.c: remove duplicated code and use mono_class_from_typeref(), instead. Thu May 2 15:51:11 CEST 2002 Paolo Molaro * unicode.c: Char.IsNumber doesn't include hex digits as the ms documentation says (the ECMA one is correct). 2002-05-02 Dick Porter * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc. Don't name the synchronisation mutex. 2002-04-30 Jeffrey Stedfast * rand.c (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes): Make the prototypes match. (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes): Same. * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for systems that use 'timezone' rather than tm.tm_gmtoff. Also, not all systems have tm.tm_zone, so use strftime() with %Z to print the timezone abreviation into a temp string. * object.c (mono_ldstr): Fixed to use mono_string_chars() macro rather than mono_array_addr() on a MonoString on Big Endian machines. 2002-04-30 Dietmar Maurer * string-icalls.c (ves_icall_System_String_InternalReplace_Str): fix bug 24041 2002-04-30 Dick Porter * socket-io.c: Cope with SOCKET being an integer rather than a pointer now. * threads.c: Added Thread_free_internal, to deal with thread handle cleanup. Moved calls to handle_store() and handle_remove() to start_wrapper(), so each can only be called once. Allocate synchronisation blocks with GC_malloc(), and use GC finalisation to close the handles. * icall.c: added System.Threading.Thread::Thread_free_internal Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro * icall.c: support Environment.Exit, CommandLineArgs(). Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro * object.c, object.h: added mono_runtime_run_main () and mono_runtime_get_main_args () for use in System.Environment. Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro * gc.c: fix thinko, enable actual finalization since the jit is now fixed. Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro * gc.c, object.c: take into account that an object may be offset wrt the address returned by GC_malloc(). Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro * image.c: handle files without entries in the assembly table (modules). 2002-04-28 Patrik Torstensson * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow mcs selfhosting again (build breaker) and did move the check to class instead. parent is allowed to be null when it's System.Object class setup. 2002-04-27 Martin Baulig * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached() if `tb->parent == NULL' rather than crashing. 2002-04-28 Nick Drochak * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error. Was calling acos() where asin() should have been called. 2002-04-26 Martin Baulig * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test, there's a subdirectory called `System', but we don't want to read that subdirectory as an assembly. 2002-04-25 Martin Baulig * debug-symfile.c: Reflect latest MonoString changes. Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro * rand.c, rand.h: instance method icalls need to have an explicit this pointer as first argument in the C implementation. 2002-04-25 Nick Drochak * icall.c: Fix typo in map for GetNonZeroBytes 2002-04-24 Patrik Torstensson * string-icalls.c : String does now passes unit tests without any errors, the following changes has been made: Implemented replace methods. Renaming of methods to (try) follow the standard. Fixed compare ordinal Made all memory allocated directly to function instead of via icall function. Small performance fix in is_in_array function (2002-04-23) Changes from Duncan Mak c (mono_string_Internal_ctor_charp_int_int): (mono_string_Internal_ctor_sbytep_int_int): Removed check for sindex < 0, throw ArgumentOutOfRangeException instead of ArgumentNullException. Added new check for length == 0, however I need to make it return String.Empty from the C code. (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let that calculate the length for us here. (mono_string_Internal_ctor_sbytep_int_int): Replaced mono_string_new_utf16 with mono_string_new, since value is utf8. Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro * object.c: register the object for finalization if needed. Allocate one more char in the string for the terminating 0 char. Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro * class.c, class.h, image.c: check if a type implemenst a destructor. Use the proper key for array class lookups. * icall.c: register the icalls in the System.GC class. * gc.c, gc.h: GC-related functions and icalls. 2002-04-24 Gonzalo Paniagua Javier * icall.c: * socket-io.c: * unicode.c: free some strings gotten from mono_string_to_utf8 and changed a couple of free () by g_free (). * decimal.c: one-liner in the comments for decimal2string (). 2002-04-24 Patrik Torstensson * object.c (mono_runtime_invoke_array) : Bug because of my incompetence. 2002-04-24 Patrik Torstensson * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash) * object.c (mono_runtime_invoke_array) : handle null in params 2002-04-23 Patrik Torstensson * string-icalls.c: fixed bug in split (one off bug) 2002-04-23 Patrik Torstensson * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall. * icalls.c: added String::Equals as internal method 2002-04-23 Patrik Torstensson * threads.c: fixed bug in the double interlocked functions 2002-04-22 Patrik Torstensson * threads.c: implemented all of the new interlocked icalls. * string-icalls.c: fix a bug in insert. * icalls.c: added the icalls for interlocked, removed old string functions. Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro * loader.c: fix off-by-one error when reading argument names. Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro * profiler.c: win32 counter implementation (untested). * icall.cs: win32 GetNow() and GetTimeZoneData() implementations (the latter needs testing and more complete impl. from win32 folks). 2002-04-21 Dan Lewis * object.c: mono_array_new_full workaround mono_array_class_get problem. 2002-04-17 Patrik Torstensson * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug. * object.h (mono_string_chars): Changed casting type. 2002-04-17 Patrik Torstensson * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed method signatures to use gunichar2 instead of gint16. 2002-04-20 Dan Lewis * object.h, object.c: domain-specific versions of mono_object_new and mono_array_new. 2002-04-20 Dietmar Maurer * object.c: changed String layout * string-icalls.c (mono_string_Internal_ctor_chara): added internal string constructors. Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro * threads.c: pass 'this' to the thread start routine. 2002-04-20 Gonzalo Paniagua Javier * string-icalls.c: fix IndexOf and LastIndexOf. Now InternalCompareStr don't call twice mono_string_cmp_char for the last character. Improved performance in mono_string_cmp_char. Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended code into its own library: libmonoruntime. 2002-04-19 Dan Lewis * object.h, object.c: changed array format so that szarrays do not require a bounds structure. * icall.c, appdomain.c: support for new szarray format. Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro * metadata.c: compare also the retuns type when comparing signatures: we didn't do this as an optimization since really overloaded methods must differ also in the arguments, but this doesn't work with low-level IL code (or when using explicit conversion operators: see bug#23498 for an example). Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro * loader.c: SZARRAY types can be saved as TYPESPEC, too. Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro * icall.c: make MonoType::GetElementType its own icall. Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro * icall.c: remove MonoMethod_get_Name(). * reflection.c, reflection.h, verify: cache the method name in the MonoMethod object. 2002-04-17 Patrik Torstensson * string-icalls.c: optimized a few methods. 2002-04-17 Patrik Torstensson * icall.c: added all new string internal calls * string-icalls.c: added, new string internal call implementation. * object.c: added mono_string_new_size for allocating a string a size 2002-04-17 Dietmar Maurer * object.c (mono_object_isinst): use the same code as in the optimized x86 version. Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro * profiler.c: TSC-based timer code (faster and more accurate). Not hooked up in configure, yet (set USE_X86TSC to 1). Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro * profiler.c, profiler.h: track time spent compiling methods. * threads.c: track thread creation/destruction. Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro * profiler.c, profiler.h, profiler-private.h: profiling interface and sample implementation. Moved here so that it can be used also by the jit. Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro * reflection.c, reflection.h: keep types and other handles separate in the hash tables for referred tokens. Add guid for modules. Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro * assembly.c: fix bugs found with valgrind. * metadata.h, metadata.c: added mono_metadata_guid_heap(). 2002-04-14 Patrik Torstensson * threads: added icall support for getting current domain for the thread. 2002-04-13 Martin Baulig * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo. (MonoDebugVarInfo): Added `index' field for register based addresses. (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9. (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with `MonoDebugVarInfo *params' and `guint32 this_offset' with `MonoDebugVarInfo *this_var'. * debug-symfile.c (relocate_variable): New static function to write a location description for a local variable or method parameter. 2002-04-12 Martin Baulig * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the stack offset and begin/end scope address of a local variable. (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with 'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'. (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8. * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope): Added new relocation types for start/end scope of a local variable. Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro * object.h: add mono_object_domain() macro. * reflection.c: handle typespecs. * icall.c: MonoMethod::get_Name() implementation. Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro * icall.c: String::GetHashCode() icall implementation. Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro * icall.c: String::IndexOfAny icall. * object.c, object.h: make array->max_length more useful. Intrduced mono_object_class() and mono_string_length() macros. 2002-04-10 Gonzalo Paniagua Javier * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit instead of g_unichar_isdigit. 2002-04-11 Nick Drochak * icall.c: Implement a simple Double.ToString(). Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro * appdomain.h: only io-layer.h is supposed to be included. * icall.c: explicitly import environ. Fix warning. 2002-04-10 Nick Drochak * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) : return true even if it's not Daylight Savings time. Only return false for the case where the function isn't implemented for a plaform (read Windows). Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain data with a mutex. 2002-04-09 Dietmar Maurer * mempool.c (mono_mempool_alloc): only use g_malloc when absolutely necessary. 2002-04-08 Dietmar Maurer * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8 * class.c (mono_class_vtable): use domain mempool to allocate vtable (mono_class_proxy_vtable): use domain mempool Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro * appdomain.h, appdomain.c: split initialization that requires the execution engine support into mono_runtime_init(). 2002-04-08 Dietmar Maurer * class.c (mono_class_init): don't include vtable inside MonoClass to save some memory, gather some statistics. (mono_class_vtable): use g_malloc instead of GC_malloc when possible Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro * icall.c: internalcall implementation for ValueType.Equals(). 2002-04-06 Dietmar Maurer * object.c (mono_message_init): moved (mono_runtime_exec_main): new arch. independent impl. (mono_runtime_invoke_array): new method - like mono_runtime_invoke, but you can pass an array of objects. (mono_remoting_invoke): new arch. independent impl. (mono_message_invoke): new arch. independent impl. (mono_runtime_class_init): new arch. independent impl. (mono_runtime_object_init): new arch. independent impl. Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro * metadata.c, object.c, reflection.c: documented the exported functions. Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro * icall.c: simpler code to pass the assembly builder data to corlib. Implement GetNestedTypes() internalcall. Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro * class.c: warn if a type can't be loaded. 2002-04-04 Dietmar Maurer * image.h: typedef MonoImageOpenStatus * types.h: removed unused file 2002-04-04 Dan Lewis * icall.c: Enum_ToObject accepts enum value arguments. Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro * class.c: move initialization of properties, events and nested classes, so that they happen for interfaces, too. Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro * icall.c: cleanup some ugly casts in Array_SetValue*. Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro * icall.c: the values array fro enums is of the correct type, now. Implement (correctly) getFullName instead of assQualifiedName for MonoType. * reflection.h, reflection.c: added mono_type_get_name (). Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro * assembly.c, image.h: for each MonoImage, record from wich assembly it was loaded. * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes(). Make Type.Assembly work. 2002-04-03 Dietmar Maurer * debug-symfile.h: use char* instead of gpointer to avoid unnecessary casts. * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer * icall.c (ves_icall_InternalExecute): impl. FielSetter (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast 2002-03-30 Dietmar Maurer * icall.c (mono_message_init): impl. (code cleanup) (ves_icall_InternalExecute): impl. FieldGetter * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if defined we call all (non-static)methods through the vtable. Fri Mar 29 18:09:08 CET 2002 Paolo Molaro * class.c: it seems GC_debug_malloc() makes the Boehm GC call the finalizer even though the memory is still referenced (and the chunk of memory is not freed). Fri Mar 29 17:43:04 CET 2002 Paolo Molaro * assembly.c: fix brokeness. Fri Mar 29 16:09:54 CET 2002 Paolo Molaro * class.c: kill some warnings. Check explicit interface method implementation also without considering the namespace. Load also literal strings in static class data. 2002-03-29 Miguel de Icaza * assembly.c (default_assembly_name_resolver): Kill memory leak. (default_assembly_name_resolver): Make the resolver take the "base" directory where the assembly was originally defined, so we can load DLLs that are in the same directory as the assembly that is being referenced. 2002-03-28 Dick Porter * file-io.h: * file-io.c: * socket-io.c: * unicode.h: * unicode.c: Warning cleanups Thu Mar 28 18:06:14 CET 2002 Paolo Molaro * object.h, reflection.h: use the correct type instead of MonoObject. 2002-03-28 Martin Baulig * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies. (mono_debug_update_symbol_file): Initialize classes if necessary. Thu Mar 28 15:58:43 CET 2002 Paolo Molaro * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c, rawbuffer.c, reflection.c, verify.c: mare warning cleanups. Thu Mar 28 15:20:39 CET 2002 Paolo Molaro * assembly.h: fix function prototype. * metadata.h, metadata.c, object.h, private.h: get rid of warnings. * mono-endian.h: use const cast. 2002-03-28 Dietmar Maurer * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c Thu Mar 28 12:32:00 CET 2002 Paolo Molaro * loader.c: don't assert when a typeref can't be loaded, give a chance to the runtime to trow an exception instead. * loader.h: fix warning. 2002-03-28 Dietmar Maurer * class.c (mono_class_proxy_vtable): added proxy support 2002-03-27 Dan Lewis * icall.c: removed last of PAL calls, added System.Environment * file-io.h, file-io.c: MonoIO implementation * object.h, object.c: mono_string_to_utf16() now returns gunichar2* Tue Mar 26 19:56:10 CET 2002 Paolo Molaro * appdomain.c: do not use the byte marker in ldstr table lookup. * debug-helpers.c: allow two ':' to separate class and method name. * object.c: allocate arrays bounds with the GC, too. * verify: add a few more checks. Tue Mar 26 18:45:46 CET 2002 Paolo Molaro * reflection.c: output also literal strings. Allocate parameter data with GC_malloc() (thanks, Martin, for catching this!). 2002-03-26 Martin Baulig * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't include the `this' offset in the `param_offsets'. 2002-03-25 Martin Baulig * debug-symfile.c (mono_debug_update_symbol_file): Use a new mono_debug_get_class() function to get the classes. Added new relocation types for arrays and strings. (mono_debug_get_class): New static function to search in all referenced assemblies for a metadata token. * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7. Mon Mar 25 13:08:18 CET 2002 Paolo Molaro * reflection.h, reflection.c: use a gc-safe hash for hash tables that hold gc-allocated objects. Make the string heap a stream like the others. Removed duplicated code when writing stream info. Added asserts to catch possible buffer overflows. Set the sorted map for tables that need sorting. Added some documentation. Mon Mar 25 13:04:56 CET 2002 Paolo Molaro * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table for interned strings and vtables. 2002-03-24 Martin Baulig * icall.c (ves_icall_Type_GetFields): Reverse the list before storing it in the array since it was created with g_slist_prepend(). 2002-03-24 Martin Baulig * debug-symfile.c (mono_debug_local_type_from_signature): Renamed to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig(). (mono_debug_method_from_token): Renamed to ves_icall_Debugger_MonoSymbolWriter_method_from_token(). (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall. * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New relocation types. * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6. 2002-03-24 Martin Baulig * debug-symfile.c (mono_debug_local_type_from_signature): New func. (mono_debug_method_from_token): New func. * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig): New interncall, calls mono_debug_local_type_from_signature(). (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall, calls mono_debug_method_from_token(). 2002-03-23 Martin Baulig * unicode.c (ves_icall_iconv_get_char_count): The `count' argument specifies the number of bytes to be converted, not the array size. Return the number of chars, not the number of bytes. (ves_icall_iconv_get_chars): The `byteCount' argument specifies the number of bytes to be converted, not the array size. 2002-03-23 Martin Baulig * reflection.h (MonoReflectionSigHelper): New type. * reflection.c (mono_reflection_sighelper_get_signature_local), (mono_reflection_sighelper_get_signature_local): New functions. * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local), (System.Reflection.Emit.SignatureHelper::get_signature_field): New interncalls. 2002-03-23 Martin Baulig * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when is_writeable is set. (mono_raw_buffer_update): New function to write the modified map back to disk. * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'. * debug-symfile.c (mono_debug_update_symbol_file): Call mono_raw_buffer_update() when done writing. 2002-03-23 Martin Baulig * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5. * debug-symfile.c: Added support for arguments and local variables. 2002-03-23 Dick Porter * debug-symfile.c: Remove extraneous 'include ' that wasn't protected by ifdefs, hence breaking the w32 build. Thu Mar 21 17:35:01 CET 2002 Paolo Molaro * object.c: implement is_interned() the right way. 2002-03-21 Martin Baulig * debug-symfile.[ch]: New files to handle debugging information files. There's also support to dynamically update these symbol files to include machine dependent information. 2002-03-20 Dietmar Maurer * threads.c (mono_thread_create): new function to create thread from C 2002-03-20 Martin Baulig * icall.c (ves_icall_InternalInvoke): Create a new object if the method is a constructor. (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke", points to ves_icall_InternalInvoke(). 2002-03-20 Dan Lewis * file-io.c: Flush shouldn't throw exceptions. 2002-03-19 Dan Lewis * file-io.c: FileStream flush support; FileSetLength now restores file pointer. Tue Mar 19 18:17:21 CET 2002 Paolo Molaro * class.c: set image for pointer classes. 2002/03/19 Nick Drochak * sysmath.c: Forgot one. 2002-03-18 Miguel de Icaza * sysmath.c: Avoid redefining existing names. 2002-03-18 Dan Lewis * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now handled by runtime as icall rather than dllimport from libm.so * file-io.c, file-io.h: fixed handle argument type. 2002-03-18 Dick Porter * reflection.c (mono_image_get_type_info): rename interface to iface, because of "#define interface struct" on windows. Sat Mar 16 19:18:38 CET 2002 Paolo Molaro * class.c, class.h: rename and export mono_ptr_class_get(). * metadata.c: support MONO_TYPE_ARRAY in MonoType compare. * reflection.c, reflection.h, icall.c: better/saner type name parsing and MonoType creation. Handle MONO_TYPE_ARRAY in method signatures. 2002-03-14 Dietmar Maurer * class.c (mono_class_init): removed hardcoded GHC_SLOT * icall.c (ves_icall_InternalInvoke): impl. Wed Mar 13 00:27:30 CET 2002 Paolo Molaro * reflection.c: output the interface map table, too. 2002-03-12 Dietmar Maurer * class.c (class_compute_field_layout): separate computation of static field layout 2002-03-12 Dan Lewis * icall.c: added System.Buffer support. * file-io.c: moved file icalls from PAL to FileStream. 2002-03-12 Dietmar Maurer * icall.c (ves_icall_System_Object_GetHashCode): impl. 2002-03-11 Dietmar Maurer * icall.c (ves_icall_System_ValueType_GetHashCode): impl. Mon Mar 11 14:45:42 CET 2002 Paolo Molaro * verify.c, verify.h: moved here the corlib/runtime consistency checks. Mon Mar 11 11:12:23 CET 2002 Paolo Molaro * debug-helpers.{c,h}: moved here from monograph some useful functions to locate a method by name/signature in a class or image. Included also a small and flexible IL disassembler. Fri Mar 8 16:29:29 CET 2002 Paolo Molaro * reflection.c: fixup tokens in methods with small header size, too. 2002-03-08 Dietmar Maurer * object.c (mono_string_to_utf8): remove assert(!error), instead print a warning. Thu Mar 7 18:55:15 CET 2002 Paolo Molaro * icall.c: update to the new mono_Array_class_get interface. Thu Mar 7 17:23:26 CET 2002 Paolo Molaro * appdomain.c, object.c: Boehm-GC enable. * icall.c: make get_data_chunk() support split data requests. Ensure a class is initialized in more cases. Return only the first property found in GetProperties() or the compiler gets confused. Implemented GetEvents(). Temporary fix to GetType(), needs rewriting. * reflection.h, reflection.c: add fixup mechanism for field and method tokens. Initialize assembly->typeref in a single place. Output properties after events. Support custom attributes for events, too. Typo fix for paramter custom attrs. 2002-03-07 Martin Baulig * icall.c (ves_icall_System_Array_FastCopy): Small fix. 2002-03-07 Dietmar Maurer * class.c (mono_array_class_get): fix. for multi. dim. arrays 2002-03-06 Martin Baulig * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with non-zero lower bounds. See testcases #F10-#F13. 2002-03-05 Martin Baulig * exception.c (mono_get_exception_argument_out_of_range): New exception. * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to ves_icall_System_Array_GetValue(), only calculate the absolute array position here. (ves_icall_System_Array_SetValue): Likewise. (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position as argument and does the actual work. This function is used when copying a multi-dimensional array. (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can now do all the widening conversions of value types. (ves_icall_System_Array_CreateInstanceImpl): Implemented. Tue Mar 5 18:14:01 CET 2002 Paolo Molaro * class.c: remove some magic numbers and use the smbolic names, instead. Added init_events() to load event info at class init time. * metadata.h, metadata.c: added mono_metadata_events_from_typedef() and mono_metadata_methods_from_event(). * reflection.h, reflection.c: added support for writing out the evnets related information. Mon Mar 4 20:32:43 CET 2002 Paolo Molaro * reflection.h, icall.c: use a different method (GetInterfaces) to gather interface info and add isbyref, isprimitive and ispointer to the ves_icall_get_type_info() return value. Mon Mar 4 11:22:26 CET 2002 Paolo Molaro * class.h: stared adding support for events. * icall.c: split find_members implementation. Added debug icall to get the address of an object. * reflection.c: handle TypeBuilders in mono_type_get_object(). 2002-03-01 Martin Baulig * icall.c (ves_icall_System_Array_GetLength): This must throw an ArgumentOutOfRangeException(), not an ArgumentException(). (ves_icall_System_Array_GetLowerBound): Likewise. (ves_icall_System_Array_GetValue): Improved argument checking. (ves_icall_System_Array_SetValue): Improved argument checking. 2002-03-01 Martin Baulig * icall.c (ves_icall_System_Array_GetValue): Raise an exception when called with invalid arguments rather than just dying with g_assert(). (ves_icall_System_Array_SetValue): Likewise. (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(), raise a NotImplementedException instead. (ves_icall_System_Array_GetLength): Added argument checking. (ves_icall_System_Array_GetLowerBound): Added argument checking. 2002-03-01 Dietmar Maurer * object.h (mono_assert): new macros mono_assert and mono_assert_not_reached 2002-02-28 Martin Baulig * icall.c: Rename "System::String::Intern" to "System::String::_Intern" and "System::String::IsInterned" to "System::String::_IsInterned". Thu Feb 28 19:19:35 CET 2002 Paolo Molaro * icall.c: remove hacks for typebuilder. Added icall to create a modified type from a tybebuilder. * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage in mono_image_basic_init (). Added mono_reflection_setup_internal_class () to create a backing MonoClass for a TypeBuilder. Thu Feb 28 15:35:51 CET 2002 Paolo Molaro * class.c, class.h: more refactoring of class init. Export mono_class_setup_mono_type() and mono_class_setup_parent(). Thu Feb 28 12:33:41 CET 2002 Paolo Molaro * marshal.c, marshal.h: start of marshaling interface. Wed Feb 27 22:15:17 CET 2002 Paolo Molaro * icall.c: fix order in assembly qualified name icall. Wed Feb 27 18:45:03 CET 2002 Paolo Molaro * class.c: do not free str, since we store it in the hash table. * reflection.h: add label field to MonoILExceptionInfo. * reflection.c: handle references to more than one assembly. Handle case when there isn't a module created in the assembly. Wed Feb 27 12:35:10 CET 2002 Paolo Molaro * class.c: Fix typo. Start refactoring of class init code. Wed Feb 27 12:23:00 CET 2002 Paolo Molaro * appdomain.c: exit with 1 on error. * class.c: we already have the name in MonoClassField. * image.c, image.h, metadata.c, pedump.c: use directly a pointer in MonoStreamHeader instead of an offset of image->raw_metadata. 2002-02-26 Miguel de Icaza * appdomain.c (mono_init): Be even more descriptive about the error. Tue Feb 26 16:18:07 CET 2002 Paolo Molaro * appdomain.c: give the user an informative message when corlib can't be loaded. 2002-02-26 Martin Baulig * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): New icall to get the time zone data. Mon Feb 25 15:51:51 CET 2002 Paolo Molaro * reflection.c: set virtual and raw size of section correctly. * threads.c: transfer domain information to newly created threads. Fri Feb 22 18:55:57 CET 2002 Paolo Molaro * class.c: when instancing a class in a domain, load the default vaules for static fields from the constant table. Fix System.Enum to not be an enum. * icall.c: implement Object::GetType() internalcall. Implemented MonoField::GetValue() internalcall. Avoid SEGV in search_method(). Fixed checking of binding flags in find_members(). * metadata.c, metadata.h: introduce mono_metadata_type_hash(). * reflection.c: handle enumerations when writing to the constant table. Use a different object cache for types. 2002-02-22 Dietmar Maurer * object.c (mono_object_isinst): fix for arrays * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces Thu Feb 21 21:00:13 CET 2002 Paolo Molaro * object.c: don't use mprotect () and fix intern pool hash table lookup for big endian systems. Thu Feb 21 19:30:29 CET 2002 Paolo Molaro * icall.c: change type_is_subtype_of () signature. 2002-02-21 Mark Crichton * rand.c, rand.h: Added random number generator for System.Security.Cryptography classes. * exception.c, exception.h: Added mono_get_exception_not_implemeted. * icall.c: Added System.Security.Cryptography calls. Thu Feb 21 16:45:34 CET 2002 Paolo Molaro * class.c, icall.c, metadata.c: better support for pointer types. Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class. * reflection.c: Add support for getting custom attrs for properties and simplify some code. Wed Feb 20 22:20:29 CET 2002 Paolo Molaro * icall.c: change getToken () and add custom attribute GetBlob()helper method. * reflection.h: add custom attrs array to the reflection builder structures. * reflection.c: encode and emit custom attributes for all the relevant reflection objects. Cache fieldref and methodref tokens. Change mono_image_create_token() interface to take a MonoDynamicAssembly. More complete custom attributes decoder. Load custom attributes for Assembly, Field, Method and Constructor objects, too. Make the returned array an Attribute[] one, not object[]. Added mono_reflection_get_custom_attrs_blob() to encode the arguments of a custom attribute constructor. 2002-02-20 Dick Porter * icall.c: * rawbuffer.c: * socket-io.c: Windows portability fixes (sometimes just ifdeffing problem code out for now). 2002-02-19 Radek Doulik * object.c (mono_ldstr): use hash table to avoid multiple swapping Tue Feb 19 20:23:11 CET 2002 Paolo Molaro * icall.c: register the GetCustomAttributes method. * object.c, object.h: add mono_string_new_len (). * reflection.h, reflection.c: added mono_runtime_invoke(), mono_install_runtime_invoke(). Added mono_reflection_get_custom_attrs () to load custom attributes and create the attribute objects. 2002-02-19 Dick Porter * threads-dummy-types.c: * threads-dummy-types.h: * threads-dummy.c: * threads-dummy.h: * threads-pthread-types.c: * threads-pthread-types.h: * threads-pthread.c: * threads-pthread.h: Deleted obsolete files 2002-02-19 Dietmar Maurer * class.c (mono_class_vtable): runtime init the class when we allocate static class data. * icall.c (ves_icall_System_Array_SetValue): check for null values. * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays and String - but we will need generic marshalling support in the future. (mono_init): set the domain name in a ms compatible way * object.c (mono_string_new_utf16): bug fix: use char[] instead of String[]. 2002-02-18 Dietmar Maurer * object.c (mono_array_clone): use alloca() instead of g_malloc for sizes * appdomain.c (mono_domain_unload): impl. Mon Feb 18 15:52:20 CET 2002 Paolo Molaro * appdomain.c, object.c: fix intern pool implementation. * class.c: fix alignment code. 2002-02-16 Radek Doulik * icall.c (ves_icall_System_Enum_ToObject): in case of big endian and s2 > s1, just copy lower bytes to be compatible with little endian (i.e. 64bit value & 0xffffffff --> 32bit value) (ves_icall_System_Enum_ToObject): and likewise for s1 > s2 * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian, force big_endian to be 1 for big endian machines (ves_icall_iconv_new_decoder): ditto 2002-02-16 Jeffrey Stedfast * socket-io.c (convert_sockopt_level_and_name): If the system doesn't define SOL_IP or SOL_TCP, get them by hand using getprotobyname() and caching the values (because this could be a slow operation). (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal): Use the appropriate struct when the system does support it. Ie, not all systems have struct ip_mreqn so use struct ip_mreq when appropriate. Fri Feb 15 18:15:44 CET 2002 Paolo Molaro * reflection.c: handle finally clauses. Fri Feb 15 15:06:33 CET 2002 Paolo Molaro * socket-io.c: use g_snprintf() instead of snprintf. 2002-02-14 Jeffrey Stedfast * reflection.c (mono_param_get_objects): Cast second argument to mono_method_get_param_names to a const char** to silence the compiler warning. * appdomain.c (mono_domain_assembly_open): Put parens around the truth statement in the for-loop. * unicode.c (iconv_convert): Got rid of a compiler warning about int i being unused when the system has a new iconv. (iconv_get_length): Same. * image.c (load_class_names): Cast the second argument to g_hash_table_insert() to char* to hush compiler warnings about the arg being a const. (mono_image_open): Same here. * socket-io.c: Don't conditionally include sys/filio.h or sys/sockio.h here anymore since we now get them from io-layer/io-layer.h (inet_pton): If the system doesn't support inet_aton, implement using inet_addr and also #define INADDR_NONE if it isn't defined by the system. Thu Feb 14 19:01:06 CET 2002 Paolo Molaro * metadata.c, metadata.h: added function to get packing and size info of a typedef. * reflection.h, reflection.c: handle field RVA data. Save info about the table layout if needed. Assign typedef indexes to all the types before dumping the info about them to avoid forward reference problems. 2002-02-14 Dietmar Maurer * socket-io.c (convert_sockopt_level_and_name): ifdef SO_ACCEPTCONN because it is not defined on my system (old debian) Thu Feb 14 11:49:30 CET 2002 Paolo Molaro * opcode.c: use stddef.h to get NULL. 2002-02-14 Jeffrey Stedfast * socket-io.c: conditionally include sys/filio.h and sys/sockio.h for FIONBIO, FIONREAD and SIOCATMARK. (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't define INADDR_NONE and besides, inet_addr() is deprecated and should not be used. Use inet_pton() instead - it also has the added bonus that it can easily handle IPv6 addresses as well. (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON. Wed Feb 13 23:00:21 CET 2002 Paolo Molaro * decimal.c: remove _MSC_VER conditional. 2002-02-13 Dick Porter * socket-io.c: * icall.c: Internal calls for Blocking, Select, Shutdown, GetSocketOption and SetSocketOption Wed Feb 13 19:20:01 CET 2002 Paolo Molaro * assembly.cs: better resolver: use it instead of some kludgy code. Wed Feb 13 18:25:55 CET 2002 Paolo Molaro * reflection.c: the best way to speed-up the compiler is to avoid infinite loops. 2002-02-13 Dietmar Maurer * class.c (mono_class_vtable): changed the object layout (obj->vtable->class). (mono_class_create_from_typespec): consider MONO_TYPE_PTR Tue Feb 12 20:06:01 CET 2002 Paolo Molaro * assembly.c: look for assemblies in the assembly dir, too. Tue Feb 12 14:03:42 CET 2002 Paolo Molaro * class.c: fix thinko in mono_class_from_type(). Mon Feb 11 19:43:51 CET 2002 Paolo Molaro * exception.h, exception.c: added TypeLoadException. * object.h, object.c: added mono_array_clone (). * icall.c: handle throwOnError in AssemblyGetType(). Added Array.Clone(). * opcode.h, opcode.c: use a single value for the opcode val. Compile fix for non-gcc compilers. Fri Feb 8 12:26:37 CET 2002 Paolo Molaro * opcodes.c, opcodes.h: export interesting info about opcodes. 2002-02-05 Dietmar Maurer * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for icalls. * class.c (class_compute_field_layout): set element_class for enums (mono_class_create_from_typedef): set element_class for normal classes * icall.c (ves_icall_System_Enum_get_value): impl. * class.c (mono_class_create_from_typedef): do not set valuetype flag for System.ValueType and System.Enum 2002-02-04 Dietmar Maurer * unicode.c (iconv_convert): fix big endian problem. Fri Feb 1 16:13:20 CET 2002 Paolo Molaro * class.c: add asserts if we are ever going to scribble over memory. * socket-io.c: not all systems have AF_IRDA defined. 2002-01-31 Dietmar Maurer * class.c (class_compute_field_layout): do not consider static fields to compute alignment 2002-01-25 Dietmar Maurer * appdomain.c (mono_appdomain_get): impl. (ves_icall_System_AppDomain_ExecuteAssembly): impl. Thu Jan 24 12:59:23 CET 2002 Paolo Molaro * icall.c: ignore "file://" prefix when loading an assembly. 2002-01-23 Dick Porter * socket-io.c: * icall.c: * Makefile.am: Added socket support 2002-01-23 Miguel de Icaza * icall.c (ves_icall_appdomain_get_default_assemblies): put this code back. This should return the assemblies that are loaded by the runtime on behalf of an application domain. The current implementation is still broken, it just returns every assembly loaded, but until we get real applications domain this will do. 2002-01-23 Dietmar Maurer * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the AppDomain object. 2002-01-23 Miguel de Icaza * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of the mono_class_from_name lookup. (ves_icall_get_parameter_info): ditto. (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal method. (ves_icall_System_Reflection_Assembly_get_code_base): Another new call. Tue Jan 22 22:43:47 CET 2002 Paolo Molaro * class.c: load also nested classes on class init. System.ValueType instance methods gets passed boxed values, unless methods in derived classed that get a pointer to the data. * icall.c: use better name parsing code in GetType(). * image.c, image.h: add mono_image_loaded (). * metadata.c, metadata.h: add mono_metadata_nesting_typedef (). * reflection.c, reflection.h: added mono_reflection_parse_type(). 2002-01-22 Veronica De Santis * icall.c : Added mapping of internal calls for Manual and Auto reset events * threads.c : Added the implementation of internal calls for events * threads.h : Added prototypes of internal calls for events 2002-01-21 Radek Doulik * icall.c (ves_icall_InitializeArray): swap bytes on big endians 2002-01-21 Dietmar Maurer * class.c (mono_class_init): set min_align to 1 (instead of 0) (mono_class_value_size): use min_align 2002-01-20 Dick Porter * threads.h: * threads.c: Replaced all instances of WapiHandle * with HANDLE, so it compiles on w32. 2002-01-17 Dietmar Maurer * metadata.c (mono_type_stack_size): impl. * class.c (mono_class_get_field): impl. memberref token 2002-01-16 Veronica De Santis * icall.h : Added the internal calls mapping for CreateMutex_internal and ReleaseMutex_internal. * threads.h : Added the prototype of mutexes internal calls. * threads.c : Added the implementations of mutexes internal calls. Tue Jan 15 22:47:57 CET 2002 Paolo Molaro * metaparse.h: removed unused file. * reflection.c, reflection.h: added stream_data_align () function to align data in streams and keep stream aligned. Add support for exception support in method headers. Tue Jan 15 19:42:50 CET 2002 Paolo Molaro * unicode.c: make iconv_convert () return the number of bytess written in the output buffer. 2002-01-15 Dick Porter * threads.c: Make the runtime's idea of infinite timeouts coincide with the class library's Fix a particularly egregious bug in mono_thread_cleanup(). That code was so utterly bogus it must have been written on a Monday. Mon Jan 14 17:01:03 CET 2002 Paolo Molaro * reflection.h: add subtypes field to TypeBuilder. * reflection.c: encode constants for literal fields. Handle subtypes. Fix user string token (and add a zero byte) at the end. 2002-01-14 Dietmar Maurer * class.c (mono_class_init): bug fix: assign slot numbers for abstract methods. Fri Jan 11 18:54:42 CET 2002 Paolo Molaro * reflection.c: don't try to output a code RVA for abstract methods. Small fixes for method header format. Output parameter info to the ParamDef table. Save method overriding info to MethodImpl table. Fix property support. Allow typedef.extends to be a type in the building assembly. * verify.c: fix off-by-one error. Thu Jan 10 19:36:27 CET 2002 Paolo Molaro * class.c: fix mono_class_from_mono_type () for szarray types. Remove unused cache check in mono_class_from_type_spec(). * icall.c: *type_from_name () functions handle simple arrays and byref. * reflection.c: handle byref and szarray types. Handle methods without body (gets P/Invoke compilation working). Handle types and fields in get_token (). * reflection.h: add rank to MonoTypeInfo. 2002-01-10 Dick Porter * threads.c: Implemented WaitAll(), WaitAny() and WaitOne() internal calls Wed Jan 9 19:27:13 CET 2002 Paolo Molaro * icall.c: initialize class in type_from_handle (). Loop also in parent classes for get_method (). * reflection.c: properly encode class and valuetype types. Start on encoding TypeBuilder types. Handle fieldrefs. Use correct length when registering a user string. Handle ConstructorBuilder and MonoMethod in get_token (). Make mono_type_get_object () aware of cached types. * object.c: back out change to mono_string_new (). Tue Jan 8 22:47:44 EST 2002 Matt Kimball * object.c: mono_string_new should return a NULL when the string passed in is NULL -- not try to deference it. Sat Jan 5 15:48:04 CET 2002 Paolo Molaro * icall.c: hack to make IsSubType work for TypeBuilders. * reflection.c: emit constructors before methods. Retrieve param names in mono_param_get_objects(). 2002/01/05 Nick Drochak * Makefile.am: fix list of headers and sources so automake 1.5 doesn't complain. Removed \# at end of list. Thu Jan 3 23:17:17 CET 2002 Paolo Molaro * reflection.c: get token for a method ref. Set return type of constructor to void. * loader.c: debug message. * class.c: typo fix. Mon Dec 24 17:18:10 CET 2001 Paolo Molaro * icall.c: fix array init with rank > 1. FindMembers loops in parent class as well. * image.c: do not insert nested types in name cache. * reflection.c: warning fix. * reflection.h: add override method (for interface impl). Mon Dec 24 16:16:56 CET 2001 Paolo Molaro * metadata.c: fix customattr decoding. 2001-12-21 Miguel de Icaza * rawbuffer.cs: Added native Win32 implementation, avoids using mmap on Cygwin. This patch is from Dan Lewis (dihlewis@yahoo.co.uk) Thu Dec 20 20:11:26 CET 2001 Paolo Molaro * class.c: make the low-level routines handle the cache. Thu Dec 20 15:20:35 CET 2001 Paolo Molaro * image.c: fopen (file, "rb") ("David Dawkins" ). Tue Dec 18 18:50:00 CET 2001 Paolo Molaro * class.c: fix mono_array_element_size() for objects. * class.h, class.c: add properties to MonoClass and load them at init time. * icall.c: check with isinst() when assigning a value to an array instead of requiring the classes to match exactly. Implemented icall for System.Type::GetType(). Implemented icalls to get ParameterInfo, ProprtyInfo and info about enums. Handle bindingflags when looking for methods and fields. * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef() and mono_metadata_methods_from_property(). * reflection.h, reflection.c: added structures for propreties, parameters and enums. Implemented mono_property_get_object() and mono_param_get_objects(). 2001-12-18 Dick Porter * file-io.c: Use mono_string_to_utf16() instead of mono_string_chars() * object.c: Added mono_string_to_utf16(), which copies the non NULL-terminated MonoString into a new double-null-terminated buffer. 2001-12-17 Dietmar Maurer * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment 2001-12-16 Dietmar Maurer * file-io.c: raise exceptions if handle is invalid. Thu Dec 13 20:27:08 CET 2001 Paolo Molaro * assembly.c: yet another check for mscorlib. * class.c, class.h: load nesting info for classes. * icall.c: many new functions to support the Reflection classes. * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added. * reflection.h, reflection.c: mono_image_create_token(), mono_assembly_get_object(), mono_type_get_object(), mono_method_get_object(), mono_field_get_object(): methods to return objects that parallel the C representation of assemblies, types, methods, fields. 2001-12-11 Dick Porter * icall.c: * file-io.c: Internal calls for file IO. Thu Dec 6 16:21:30 CET 2001 Paolo Molaro * tabledefs.h: missing FileAttributes. * verify.h, verify.c: use is_valid_string () to simplify and check for valid strings more correctly. Fix warnings and speeling. Check more tables: Filed, File, ModuleRef, StandAloneSig. Check code: branches, maxstack, method calls. 2001-12-04 Dietmar Maurer * object.c (mono_object_allocate): removed static, so that the jit can allocate value types. * icall.c (ves_icall_System_DateTime_GetNow): impl. Mon Dec 3 17:02:01 CET 2001 Paolo Molaro * class.c: init enum types right away and register the token->MonoClass map in mono_class_create_from_typedef (). * verify.h, verify.c: first cut of the verifier. * pedump.c: add --verify switch to verify metadata tables. * tabledefs.h: add some missing enums. 2001-11-30 Dietmar Maurer * class.c (mono_install_runtime_class_init): impl. (mono_class_init): renamed mono_class_metadata_init to mono_class_init, also removed the metadata_inited flag * object.c (mono_object_isinst): use faster algorithm 2001-11-30 Radek Doulik * mono-endian.h: reverted last change added function prototypes * Makefile.am (libmetadata_a_SOURCES): reverted my last change and add mono-endian.c back * mono-endian.c: returned back, as Paolo pointed out, it's needed for unaligned access, I've mistaked it with endianess. I am sorry. (mono_read16): fix reverted endianess (mono_read64): ditto (mono_read32): ditto 2001-11-30 Dick Porter * exception.c: Implement mono_exception_from_name() Fri Nov 30 12:01:02 CET 2001 Paolo Molaro * metadata.h, metadata.c: remove params_size and locals_size and their calculation from the metadata code: they are only usefult to the interp. 2001-11-29 Radek Doulik * object.c (mono_ldstr): swap bytes here, it's probably not the best place, but works for me now, I'll redo it once I know mono better, also note that I add PROT_WRITE and don't reset back, also note that it's only affects big endians, so x86 should be OK * mono-endian.h (read16): use just glib macros for both endians * mono-endian.c: removed as glib macros are used in in mono-endian.h so we don't need to care about endianess for read macros as glib does that for us already Thu Nov 29 18:20:58 CET 2001 Paolo Molaro * class.h, class.h: take minimum alignment into consideration so that the fields of a class remain aligned also when in an array. Tue Nov 27 16:39:01 CET 2001 Paolo Molaro * loader.h, loader.c: add mono_method_get_param_names(). * class.c: 0-init class fields. 2001-11-26 Dick Porter * icall.c: * threads-types.h: * threads.c: New file that handles System.Threading on all platforms * object.c: * object.h: Remove the synchronisation struct from MonoObject, replace it with a pointer that gets initialised on demand * Makefile.am: Replace all the system-specific threading code with a single file that uses the new wrapper library Mon Nov 19 11:37:14 CET 2001 Paolo Molaro * class.c, class.h: add mono_install_trampoline() so that the runtime can register a function to create a trampoline: removes the ugly requirement that a runtime needed to export arch_create_jit_trampoline. * object.h, object.c: added mono_install_handler() so that the runtime can install an handler for exceptions generated in C code (with mono_raise_exception()). Added C struct for System.Delegate. * pedump.c: removed arch_create_jit_trampoline. * reflection.c: some cleanups to allow registering user strings and later getting a token for methodrefs and fieldrefs before the assembly is built. * row-indexes.h: updates and fixes from the new ECMA specs. Thu Nov 15 17:44:49 CET 2001 Paolo Molaro * class.h, class.c: add enum_basetype field to MonoClass. * metadata.h, metadata.c: add mono_metadata_get_constant_index() to get index in the constant table reated to a field, param or property. * reflection.h, reflection.c: handle constructors. Set public-key and version number of the built assembly to 0. * row-indexes.h: update from new ECMA spec. Wed Nov 14 19:26:06 CET 2001 Paolo Molaro * class.h, class.c: add a max_interface_id to MonoClass. * icall.c: rename my_mono_new_object() to my_mono_new_mono_type() since it's used to do that. Added mono_type_type_from_obj(). Make GetType() return NULL instead of segfaulting if the type was not found. Handle simple arrays in assQualifiedName. * object.h: add a struct to represent an Exception. * reflection.c: output call convention in method signature. Add code to support P/Invoke methods and fixed offsets for fields. Mon Nov 12 12:41:32 CET 2001 Paolo Molaro * decimal.c, decimal.h: mono_double2decimal() get the sign bit from the value. * icall.c: use mono_array_addr instead of array->vector: fixes the reflection image writing. * reflection.c: init call convention byte to 0 in method signature. Encode the property signature. Don't output property-related methods twice. Really process the properties for a type (don't cast a field to a property, my mom always told me that). Fix 64 bit issues in pointer alignment in a different and more readable way. 2001-11-10 Sean MacIsaac * loader.h: Removed type class from MonoDefaults, added monotype * loader.c: Loaded MonoType, removed loading of Type * icall.c (my_mono_new_object): Now returns a System.MonoType, and fills in System.Type._impl with a RuntimeTypeHandle rather than the actual MonoClass * (ves_icall_type_from_handle): change from type_class to monotype_class (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr): implemented (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto): implemented (ves_icall_System_Reflection_Assembly_LoadFrom): implemented (ves_icall_System_Reflection_Assembly_GetType): implemented (ves_icall_System_MonoType_assQualifiedName): implemented (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented 2001-11-09 Miguel de Icaza * assembly.c (mono_assembly_open): Implement a cache for the assemblies. (mono_assembly_close): only destroy the assembly when the last reference is gone. 2001-11-09 Dick Porter * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more 2001-11-09 Dietmar Maurer * class.c (mono_class_metadata_init): bug fix: compute the right slot Fri Nov 9 15:48:02 CET 2001 Paolo Molaro * icall.c, decimal.h, decimal.c: integrated decimal internalcalls from Martin Weindel. * object.h: add mono_string_chars (). 2001-11-07 Miguel de Icaza * reflection.c (build_compressed_metadata): Eliminates warnings and uses 64-bit clean code. * metadata.c (mono_type_hash): Change signature to eliminate warnings. (mono_type_equal): Change signature to eliminate warnings. Wed Nov 7 15:40:01 CET 2001 Paolo Molaro * icall.c, loader.c: remove the internalcall array constructors. Changes to match the new MonoArray structure. * object.h, object.c: an array object doesn't allocate an extra vector. Add mono_array_new_full () to create jagged arrays easily. Mon Nov 5 19:51:06 CET 2001 Paolo Molaro * metadata.h, metadata.c: add mono_metadata_field_info () to retreive all the info about a field from vairous tables. * icall.c: implement S.Runtime.CServices::InitializeArray () icall. * class.h, class.c: augment MonoClassField with more info. Implemented mono_ldtoken for fields. Implemented ExplicitLayout policy and load a field's RVA if needed. 2001-11-05 Dietmar Maurer * class.c (mono_class_metadata_init): create a trampoline for all virtual functions instead of actually compiling them. Fri Nov 2 19:37:51 CET 2001 Paolo Molaro * class.h, class.c: include name in MonoClassField. * class.c: fix fundamental type of System.Object and System.String. Set the right fundamental type for SZARRAY, too. Handle TypeSpec tokens in ldtoken. * icall.c: remove internalcalls for the Reflection stuff that is now done in C# code. * loader.c: mono_field_from_memberref () implementation. * mono-endian.c: thinko (s/struct/union/g). * object.c, object.h: make the mono_string_* prototypes actually use MonoString instead of MonoObject. * reflection.c, reflection.h: updates for changes in the reflection code in corlib: we use C structures that map to the actual C# classes. Handle SZARRAYs when encoding types. Handle locals in methods. Use a fat method header if needed and use the info from the ILGenerator for methods. Handle fields in types. Misc fixes. 2001-10-17 Dietmar Maurer * class.c (mono_class_metadata_init): bug fix: always allocate space for static class data 2001-10-25 Dietmar Maurer * class.c (mono_compute_relative_numbering): use relative numbering to support fast runtime type checks. 2001-10-17 Sean MacIsaac * class.c (mono_class_create_from_typeref): added debugging output to print class name when MonoDummy is returned instead of real class 2001-10-15 Dietmar Maurer * class.c (mono_class_metadata_init): interface offset table now contains pointers into the vtable - this is more efficient for the jit 2001-10-12 Dietmar Maurer * class.c (mono_class_metadata_init): use a temporary vtable (the old algorithm only worked for the interpreter, but not for the jit) 2001-10-11 Dietmar Maurer * loader.c (method_from_memberref): use mono_class_get to get the class of an array instead of using System.Array directly. (mono_get_method): also add MEMBERREF methods to the method cache which usefull for arrays. 2001-10-10 Dietmar Maurer * pedump.c (arch_compile_method): added to compute vtable entry * metadata.c (mono_metadata_interfaces_from_typedef): also return the number of interfaces. * class.h: merged MonoArrayClass into MonoClass * class.c (mono_class_create_from_typedef): compute the vtable size and allocate space to include the vtable inside MonoClass (mono_class_metadata_init): initialize the vtable Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array. Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux). * image.c: endian fixes by Laurent Rioux. * object.h, object.c: rename MonoStringObject to MonoString and MonoArrayObject to MonoArray. Change some function names to conform to the style mono__. mono_string_new_utf16 () takes a guint16* as first argument, so don't use char*. Provide macros to do the interesting things on arrays in a portable way. * threads-pthread.c: updates for the API changes and #include (required for sched_yield()). * icall.c: updates for the API changes above. * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for platforms that need them. Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro * class.c: set the correct type for all the fundamental type when loading the class. 2001-10-05 Dick Porter * threads-pthread.c (pthread_mutex_timedlock): Simple compatibility version for C libraries that lack this call. Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro * class.c: MonoTypes stored in MonoClass are stored as fundamental MonoTypes when the class represents a fundamental type (System.Int32, ...). The TypeHandle return by ldtoken is a MonoType*. * icall.c: ves_icall_get_data_chunk () write out all the PE/COFF stuff. Implement ves_icall_define_method (), ves_icall_set_method_body (), ves_icall_type_from_handle (). * image.c: properly skip unknown streams. * loader.h, loader.c: add type_class to mono_defaults. * metadata.c, metadata.h: export compute_size () as mono_metadata_compute_size () with a better interface. Typo and C&P fixes. * pedump.c: don't try to print the entry point RVA if there is no entry point. * reflection.c, reflection.h: many cleanups, fixes, output method signatures and headers, typedef and typeref info, compress the metadata tables, output all the heap streams, cli header etc. * row-indexes.h: typo fixes. 2001-10-04 Dick Porter * object.h: Add a synchronisation mutex struct to MonoObject * object.c (mono_new_object): Initialise the object synchronisation mutexes * icall.c: System.Threading.Monitor internal calls * threads-pthread.h: * threads-pthread.c: System.Threading.Monitor internal calls * threads-types.h: New file, includes the system-specific thread structures * threads-pthread-types.h: * threads-pthread-types.c: New files, handle pthread-specific synchronisation types * threads-dummy-types.h: * threads-dummy-types.c: New files of dummy support for thread-specific types * metadata.c: * image.c: * pedump.c: include mono-endian.h not endian.h * Makefile.am: More threads files. Name mono-endian.h not endian.h Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro * Makefile.am, reflection.h, reflection.c: move here the reflection related stuff and implement a few more bits. * icall.c: a field needs to be dereferenced twice. Do not use the same name for two variables in the same scope. * image.c, image.h: cleanups. 2001-10-02 Dietmar Maurer * class.c (mono_class_metadata_init): bug fix: compute the right size Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro * icall.c: implemented some of the Reflection internalcalls. * image.c, image.h: start writing out the PE/COFF image. * metadata.h, metadata.c: implement mono_metadata_encode_value () that does the reverse than decode_blob_size (). * object.c: use mono_metadata_encode_value (). Move here temporary implementation of mono_string_to_utf8 (). * rawbuffer.c: make malloc_map static. Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro * metadata.c: fix type comparison for arrays. * loader.h, loader.c: half-assed fix to get more tests work in cygwin. Added a couple of new classes to monodefaults. * icall.c: added a couple of Reflection-related internalcalls. * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles. Added a byval_arg MonoType to MonoClass. 2001-09-28 Dick Porter * icall.c: * threads-pthread.h: * threads-pthread.c: Implemented internal calls for LocalDataStoreSlot operations. Applied mutexes around all shared data. Reworked the thread creation and Start() operations to avoid a race condition. * threads-dummy.h: * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro * rawbuffer.c: disable mmap on cygwin since it seems to be broken there. Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro * class.c, loader.c: warn and return NULL instead of erroring out. * icall.c: added System.AppDomain::getCurDomain(). * loader.c: we don't need to lookup the typedef again for p/invoke calls. 2001-09-25 Dick Porter * threads-pthread.h: * threads-pthread.c: Implemented timed thread joining and added System.Threading.Thread::Join_internal internal call * icall.c: Added System.Threading.Thread::Join_internal internal call * threads-dummy.h: * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and mono_string_intern () to implement the semantics of the ldstr opcode and the interning of System.Strings. * icall.c: provide hooks to make String::IsIntern and String::Intern internalcalls. 2001-09-23 Dick Porter * threads-dummy.c: * threads-dummy.h: New files of dummy threading routines * Makefile.am (THREAD_SOURCE): Arrange to compile different thread support code based on system specifics Rename PTHREAD_LIBS to THREAD_LIBS 2001-09-23 Dick Porter * threads-pthread.c: Implement the System.Threading.Thread::Sleep, Schedule (called when asked to Sleep for 0 ms) and CurrentThread internal calls. (mono_thread_init): Set up a Thread object instance to return when the main thread calls Thread.CurrentThread (mono_thread_cleanup): Wait for all subthreads to exit * icall.c: New internal calls for System.Threading.Thread::Sleep (including Schedule) and CurrentThread * threads.h: New file, to insulate thread-specific stuff from the rest of the code 2001-09-21 Dick Porter * threads-pthread.h: * threads-pthread.c: New file, for handling pthreads-style threading support. Start() now starts a new thread and executes the ThreadStart delegate instance. * icall.c: Added the internalcall for System.Threading.Thread::Start_internal * Makefile.am: Added new files, and PTHREADS_LIBS to the link line Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro * loader.c: work around the different signatures for delegates constructors csc generates in compiled code vs the ones compiled in mscorlib. Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro * class.h, class.c: add mono_class_get_field_from_name (). * *: Fix C comments and other ANSI C issues. Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro * endian.h, assembly.c: fix some endianness issues. Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro * loader.h, load.c: add delegate_class to mono_defaults. Handle runtime provided methods in mono_get_method (). 2001-08-29 Dietmar Maurer * loader.c (mono_get_method): use pinvoke for internal call * icall.c: use pinvoke for internal call * loader.c (method_from_memberref): set the method name Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro * metadata.c: help the compiler generate better code for mono_class_from_mono_type (). 2001-08-28 Dietmar Maurer * class.c (mono_class_metadata_init): delayed computing of the class size to mono_class_metadata_init () Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro * class.c, class.h: add an interfaces member to MonoClass. * image.c, image.h: add assembly_name field to MonoImage from the assembly table. * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef (). Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro * class.c: Handle Array in mono_class_from_mono_type (). * metadata.c, pedump.c: some endian fixes. Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type (). * metadata.c: fix small problem introduced with the latest commit. Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal(). We don't need a MonoMetadata pointer anymore to compare signatures in mono_metadata_signature_equal (), update callers. Reduced memory usage an number of allocations for MonoMethodHeader and MonoMethodSignature. Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro * metadata.c: added compare for szarray. Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type () and add a couple more types to it and mono_defaults. Give an hint on classes that need implementing in our corlib and are referenced in mscorlib. Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro * class.h, class.c: keep track if a class is also an Enum. * loader.c: Implement a couple more types for use in libffi marshalling. Gives better diagnostics when failing to dlopen a library. Set method->klass for P/Invoke methods, too. Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro * class.c, class.h: add a MonoType this_arg to MonoClass that represents a pointer to an object of the class' type that can be used by the interpreter and later the type cache. Add best guess alignment info for valuetype objects. Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam into MonoType: one less level of indirection and allocation and simplifies quite a bit of code. Added cache for MonoTypes that are used frequently, so that we don't need to allocate them all the time. 2001-08-24 Dietmar Maurer * class.c (mono_class_create_from_typedef): System.Enum is also a value type, although it does not derive from System.ValueType (maybe a bug in the ms compiler?) * metadata.c (mono_type_size): return the right size for value types * loader.c (mono_get_method): only initialize method header if not abstract * class.c (mono_class_from_mono_type): use mono_default values. 2001-08-23 Dietmar Maurer * *: use MonoClass pointers instead of * class.h: new flag: metadata_inited. * class.c (mono_class_metadata_init): impl. (mono_class_instance_size): impl. (mono_class_data_size): impl. Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c: MonoClass now has the name and name_space fields. MonoMethod has a pointer to its MonoClass, instead of MonoImage. mono_get_method () takes and optional MonoClass as argument. Removed mono_typedef_from_name() and added mono_class_token_from_name() instead that takes advantage of a map from class names to typedef tokens in MonoImage. Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro * metadata.c: zero is not a valid alignment boundary. Merge MONO_TYPE_VOID in default decoding code. 2001-08-21 Dietmar Maurer * image.h: merged MonoMetadata into MonoImage * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to identify the type of elements. Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro * blob.h: fix MONO_TYPE_TYPEDBYREF value. * cil-coff.h: split MonoMSDOSHeader and add size info. * image.c: add some consistency checks. * metadata.c: fix row size computation: one programmer error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF. add explanation for the locator routine. Fix decoding of size in method header. 2001-08-20 Miguel de Icaza * assembly.c (g_concat_dir_and_file): Use _S for string concat. (g_concat_dir_and_file): Bring g_concat_dir_and_file function from gnome-libs. This uses the right path separator based on the OS, and also works around a bug in some systems where a double slash is not allowed. (default_assembly_name_resolver): Use g_concat_dir_and_file (mono_assembly_open): ditto. 2001-08-20 Dietmar Maurer * metadata.c (mono_metadata_signature_equal): impl. * *: void is now a realy MonoType (instead of using NULL) * metadata.c (do_mono_metadata_parse_type): use mono_metadata_parse_type to parse void value. Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro * metadata.c, metadata.h: in the signature and method header store only the space required for holding the loca vars and incoming arguments. 2001-08-15 Dietmar Maurer * metadata.c (do_mono_metadata_parse_type): treat void like any other type (instead of assigning NULL); 2001-08-14 Dietmar Maurer * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value 2001-08-09 Dietmar Maurer * image.c (do_mono_image_open): added a cache for arrays. Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro * metadata.h, metadata.c: add mono_metadata_decode_row_col () to decode a single column from a row in a metadata table and changes to take advantage of it in the typedef locator (gives a nice speed up). Store offset info for function params. 2001-08-02 Dietmar Maurer * image.h (MONO_IMAGE_IS_CORLIB): removed Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro * assembly.c: how could mono_assembly_close () had ever worked? * metadata.c, metadata.h: provide offset info for local vars. Implement mono_type_size () to take care of alignment as well as size (it was mono_field_type_size in cli/class.c before). 2001-08-01 Dietmar Maurer * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image * assembly.h (CORLIB_NAME): set to corlib.dll * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp() Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h, cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h, tokentype.h: massive namespace cleanup. Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro * metadata.h, metadata.c: decode exception clauses when parsing method header. 2001-07-27 Dietmar Maurer * metadata.c (mono_metadata_free_type): added check for type != NULL (void) before calling mono_metadata_free_type() Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro * metadata.h, row_indexes.h: added header with enumerations to use to index in the columns from tables in metadata and to decode coded tokens: we should start using this instead of embedding magic numbers all over the code. Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c: Move metadata_t info from cli_image_info_t to MonoImage, where it's easily accessible. Changed all the uses accordingly. Added the method and class caches to MonoImage. * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size () and mono_metadata_decode_value () signature to be more consistent with the other parse functions (and simplify code). Taken advantage of zero-length array allocation with GCC. Removed reduntant (and wrong) MonoFieldType struct and use MonoParam instead. Changed mono_metadata_parse_field_type () to use common code for parsing. Added mono_metadata_typedef_from_field () and mono_metadata_typedef_from_method () to lookup a typedef index from a field or method token. Pack the MonoRetType structure more tightly (fits in 8 bytes now). 2001-07-23 Miguel de Icaza * metadata.c (mono_metadata_parse_field_type): Implement. (do_mono_metadata_parse_type): Split engine from mono_metadata_parse_type, so that we can create smaller structures for things that just have one pointer to the MonoType (look at the MonoFieldType) 2001-07-20 Miguel de Icaza * metadata.c (mono_metadata_parse_mh): Correct the implementation, as Jan Gray found out, it is incorrect. 2001-07-18 Miguel de Icaza * assembly.c: Implement asssembly loading. This loads an image and loads all the referenced assemblies. Come to think of it, we could always do lazy loading of the assemblies. * image.c (mono_image_open): Keep loaded images in a hashtable. * image.h (MonoImage): Add reference count. 2001-07-17 Miguel de Icaza * assembly.c (mono_assembly_open): Keep track of the file name in case the assembly has no ASSEMBLY table. * metadata.h: Fixed Paolo's quick hack. Put the documnentation from get.c here. Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro * metadata.c, metadata.h: decode local vars in method header parse function. Change callers accordingly. Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro * metadata.h, cil-coff.h: protect against multiple inclusion. Added some new structures to hold information decoded from metadata: MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature and relevant decoding/free functions. * metadata.c: implement decoding functions. Add warning for out of bounds index in mono_metadata_locate(). Implement mono_get_method () to retreive all the info about a method signature and invocation. Remove check on uninitialized local var in parse_mh() and fix memory leak. 2001-07-12 Miguel de Icaza * metadata.h: More macros. * tokentype.h: New file. Fri Jul 6 11:30:53 CEST 2001 Paolo Molaro * assembly.c: added a consistency check and initialize some structures with g_new0(). * metadata.c: fixed a couple more bugs in table size computation and add other checks for out-of bound access to metadata. Thu Jul 5 22:34:21 CEST 2001 Paolo Molaro * metatada.c: fix bugs computing table sizes. Spew a warning when index in string heap is out of bounds. 2001-07-04 Miguel de Icaza * metadata.h: Add a couple of macros to manipulate tokens. Tue Jul 3 18:33:32 CEST 2001 Paolo Molaro * assembly.c: g_free(ii->cli_sections) (and avoid double free of cli_section_tables). 2001-07-01 Miguel de Icaza * metadata.c (mono_metadata_user_string): New function, provides access to the UserString heap. 2001-06-27 Miguel de Icaza * metadata.c: Add inline documentation. 2001-06-26 Miguel de Icaza * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New files. 2001-06-22 Miguel de Icaza * typeattr.h: New file, TypeAttribute flags. 2001-06-21 Miguel de Icaza * mono/metadata/assembly.c (mono_assembly_ensure_section_idx, mono_assembly_ensure_section): Section loading code. (load_section_tables): Load the sections. * mono/metadata/metadata.c (mono_metadata_locate_token, mono_metadata_locate): Functions to locate the information definition given a token or a table and an index. (mono_metadata_compute_table_bases): New. (compute_size): New function to compute the sizes of the various tables. * mono/metadata/metadata.h: Finish listing the different index types. * mono/metadata/pedump.c: Improve to dump new information. 2001-06-19 Miguel de Icaza * mono/metadata/metadata.c: Entered all the tables matching Beta2. * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2