2005-05-11 Chris Toshok <toshok@ximian.com>
[mono.git] / mono / metadata / ChangeLog
blobb11caecda989eff317d2f0787251f05f33a3052e
1 2005-05-11  Chris Toshok  <toshok@ximian.com>
3         * mono-debug.h (MonoDebugMethodAddress): revert this part of the
4         last patch.
6 2005-05-11  Martin Baulig  <martin@ximian.com>
8         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
9         to order of some fields to get proper alignment on 64-bit machines.
11 2005-05-11  Martin Baulig  <martin@ximian.com>
13         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
14         changes as they're broken and completely fuck up the debugger.
16         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
18 2005-05-10  Martin Baulig  <martin@ximian.com>
20         * reflection.c (mono_reflection_generic_class_initialize): Don't
21         call mono_class_setup_parent() here.
23 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
26         send/receive timeout use an integer in milliseconds. We were using a
27         struct timeval.
29 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31         * locales.c:
32         (internal_get_cultures): reserve the first slot of the array for the
33         InvariantCulture, which will be filled in managed code.
35 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
37         * reflection.c (mono_image_fill_module_table): Initialize the
38         GENERATION field as well.
40 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
42         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
43         Monitor.Enter on the object.
45 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
47         * threads.c: Enable the wait for running threads when exiting.
48         * icall.c: Suspend all threads before exiting.
50 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
52         * assembly.c (mono_assembly_load_reference): Fix warning.
54 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
56         * threadpool.c: changed the default number of threads per cpu. From now
57         on, the default will be 20 + (5 * number of cpus) instead of 50.
59 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
61         * loader.c (mono_method_get_signature_full): Add locking here.
63 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
65         * appdomain.c: Moved methods for parsing and freeing assembly
66         names to assembly.c.
67         * assembly.c, domain-internals.h: Created public methods for parsing
68         assembly names. Fixed mono_assembly_load_with_partial_name:
69         it now finds the best match, taking into account the version,
70         token and culture specified in the partial name. Also return
71         the latest version if no version information is specified.
73 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
75         * threadpool.c: replace check for SocketAsyncCall class.
77 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
79         * threadpool-internals.h:
80         * Makefile.am: added threadpool-internals.h
82         * threadpool.c: call mono_unhandled_exception on exceptions not handled
83         that happen in threadpool threads (tested on MS).
84         (mono_thread_pool_remove_socket): new function that dispatch any pending
85         AIO call on a socket that is closing. By now only epoll really needs it,
86         as select/poll wake up when the socket closes.
89         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
91 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
93         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
95 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
97         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
99 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
101         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
102         has an abort request, convert it into a suspend request.
104 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
106         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
107         warning for the usage of `UnmanagedFunctionPointerAttribute' which
108         is not supported yet.
110 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
112         * image.c: register assemblies loaded from data (bundles) in the loaded
113         assemblies hash. Fixes bug #74772.
115 2005-04-29  Martin Baulig  <martin@ximian.com>
117         * class.c (mono_type_get_name_recurse): Update to the new naming
118         schema from the latest .NET 2.x beta2.
119         (mono_class_setup_vtable_general): If we're a generic instance,
120         copy the vtable from our generic type definition and inflate all
121         the methods in it.
123         * loader.c (find_method): Update to the new naming schema from the
124         latest .NET 2.x beta2.
126 2005-04-29  Raja R Harinath  <harinath@gmail.com>
128         * class.c (mono_class_init): Add a mono_loader_unlock to the
129         #74734 fix.
131 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
133         * icall.c (ves_icall_System_Environment_Exit): Remove the 
134         suspend_all_other_threads () call for the time being, since it can hang.
136         * threads.c (mono_thread_manage): Similarly, disable the waiting for
137         the background threads to exit, since it can also hang.
139         * class.c (mono_class_init): Applied patch from Ankit Jain 
140         (radical@gmail.com). Avoid pending init errors when a field refers
141         to a nested class using a typeref. Fixes #74734.
143         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
144         this for dynamic modules.
146 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
148         * threads.c: don't wait for threads that are in the process of aborting
149         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
150         and waiting for background threads to finish. This makes xsp and
151         mod-mono-server exit without random length delays and/or hangs.
153 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
155         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
157 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
159         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
160         dynamic types to prevent infinite loops. Fixes #74727.
162         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
163         ..._is_assignable_to.
165 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
167         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
169 2005-04-25  Martin Baulig  <martin@ximian.com>
171         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
173         * domain.c
174         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
176         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
178         * reflection.c (build_compressed_metadata): Set metadata header
179         version to 2.0.
181 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
183         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
184         number into an integral and a decimal part. Fixes #70473.
186         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
188 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
190         * culture-info-table.h : reflected the latest locale-builder output.
192 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
194         * threadpool.c: check for SuspendRequested too when deciding if
195         mono_thread_interruption_checkpoint should be called.
197 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
199         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
200         * threads.c: remove interruption_mutex and use Interlocked instead. When
201         suspending all the threads, wait for all the suspended events at once.
202         If we're shutting down and get an APC that is going to be queued,
203         call mono_thread_execute_interruption immediately, as the thread might
204         be sleeping on a pthread condition or mutex.
206         * icall.c: call mono_runtime_set_shutting_down before suspending the
207         threads.
209         Fixes bug #74693. And now xsp is happier when exiting.
211 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
213         * loader.c (mono_stack_walk): Fix #74690.
215 2005-04-22  Martin Baulig  <martin@ximian.com>
217         * mono-debug.h (MonoDebugMethodJitInfo): Added
218         `MonoDebugMethodJitInfo *jit'.
220         * mono-debug.c (mono_debug_read_method): Cache the
221         MonoDebugMethodJitInfo in `address->jit'.
222         (mono_debug_free_method_jit_info): New public method.
224 2005-04-22  Martin Baulig  <martin@ximian.com>
226         * class.c (mono_class_is_assignable_from): Disallow
227         type parameter -> interface.
229 2005-04-21  Dick Porter  <dick@ximian.com>
231         * threads.c (mono_thread_create): Turn an assertion into an error.
233 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
235         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
236         
237         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
238         Fix some gcc 4.0 warnings.
240 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
242         * file-io.c: fix alt dir separator char on unix systems
243         and cleanup (fixes bug #71214).
245 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
247         * marshal.c: Use CALLVIRT instead of CALL when dispatching
248         a call to a remote domain, since the method may be an
249         interface method in the client domain. This fixes bug #74192.
251 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
253         * threadpool.c: recv/send are now performed before going back to managed
254         code to save one transition.
256 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
258         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
260         * metadata/threadpool.c: removed hack to workaround the bug above.
262         Fixes bug #74618.
264 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
266         * reflection.c reflection.h: Fix handling of parameter defaults in
267         dynamic methods. Also fixes handling of parameter attributes.
268         Fixes #74609.
270         * mono-debug.c (mono_debug_close_image): Fix warning.
272 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
274         * socket-io.h: replaced old unused field with new 'blocking'.
275         * threadpool.c: restore socket blocking state on windows(tm).
277 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
279         * icall.c: don't return the codebase in the AssemblyName[] returned by
280         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
281         * object-internals.h: Removed FIXME (fields were presents) and fixed
282         versioncompat declaration.
284 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
286         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
287         not closed, so don't cleanup when it happens.
289 2005-04-13  Chris Toshok  <toshok@ximian.com>
291         * mono-debug-debugger.h: change prototype for
292         mono_debugger_lookup_type.
294         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
295         this function, although it should probably be named
296         mono_debugger_init_type.
298 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
300         * threadpool.c: fix non-AIO case.
302 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
304         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
305         the built-in profiler to measure just JIT compilation times.
307 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
309         * threadpool.c: the epollfd might be closed by another thread at
310         any time, so ignore EBADF at treat it as a "we're closing" sign.
312 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
314         * threadpool.c: release the semaphores with a count equals to the number
315         of working threads in both IO and regular pools. Fixed typo that messed
316         up the count of IO pool threads. Don't initialize the pipe handles if
317         we're using epoll.
319 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
321         * threadpool.c: some systems don't like a NULL when deleting the socket
322         from epoll.
324 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
326         * threadpool.c: fix semaphore allocation.
328 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
330         * threadpool.c: added epoll() based implementation for asynchronous IO
331         that is used instead of the default poll() when available.
332         It can be disabled by setting MONO_DISABLE_AIO.
334 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
336         * threadpool.c: windows needs 'closesocket' and instead of returning
337         0 when the stream is closed while in select, it returns -1. Fixes bug
338         #74573.
340 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
342         * class.c (class_compute_field_layout): Fix the regression caused by
343         the previous try.
345 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
347         * threadpool.c: separate pool for socket async. IO.
348         * threadpool.h: mono_max_worker_threads is not a global any more.
350 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
352         * class.c (class_compute_field_layout): Fix #74549.
354 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
356         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
357         use 2 connected sockets instead.
359 2005-04-08  Miguel de Icaza  <miguel@novell.com>
361         * mono-config.c: Add new entry point for mkbundle
362         mono_config_parse_memory. 
364 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
366         * threadpool.c: removed another unused function.
368 2005-04-08  Ankit Jain  <radical@corewars.org>
370         * reflection.c (get_default_param_value_blobs): Add 'types'
371         parameter to get the types encoded in the constant table.
372         (mono_param_get_objects): Use the type from the constant table,
373         not the type of the parameter, when creating default values.
374         Handle null default values correctly.
376 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
378         * file-io.c:
379         * file-io.h:
380         * threadpool.c:
381         * threadpool.h:
382         * icall.c:
383         * socket-io.c: removed dead code for async IO.
385 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
387         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
389         * threadpool.c: intercept socket async. calls and pass them to a thread
390         that is polling and dispatching the job items to the threadpool as
391         socket become ready. Fixes bugs #71217, #71933.
393         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
394         between char and short/ushort arrays.
396         * socket-io.c: remove dead code.
398 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
400         * locales.c,
401           icall.c : removed InternalToUpper_Comp() and
402           InternalToLower_Comp().
404 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
406         * char-conversions.h : The tables were incorrectly generated. Should
407           be generated against invariant culture.
409 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
411         * object.c (mono_runtime_invoke_array): Fix return value when 
412         passing pre-created valuetype objects to ctors.
414         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
415         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
416         Fixes #74338.
418 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
420         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
421         only used with --security and hides the wrong corlib version error.
423 2005-03-30  Joshua Tauberer  <tauberer@for.net>
425         * class.c: Changed mono_class_name_from_token so that types
426         outside of a namespace don't have an initial period.  Improved
427         the g_warning message used in _mono_class_get when loading
428         fails.
429         * assembly.c: In mono_assembly_load_reference, when an assembly
430         can't be found, "No such file or directory" is misleading and
431         unhelpful because a few paths were checked for the presence of
432         the assembly.  When that happens (ENOENT), display a nicer
433         message indicating the directories that were searched.  In all
434         cases, the warning is made easier to read for non-hackers.
436 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
438         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
439         project/solution.
440         * appdomain.h|domain.c: Removed inline from functions.
441         * appdomain.c: Reduced warnings when compiling on windows.
442         * icall.c: Fixed output_debug declaration to gunichar2*.
443         * mono-config.c: Reduced warnings when compiling on windows.
444         * rand.c: Added missing "windows.h". Added missing return value.
445         * rawbuffer.c: Added missing winsock2.h for windows.
446         * sysmath.h: Added mono-compiler.h header to allow/ease 
447         compilation with non-GCC compilers.
448         * threads.c: Fixed declarations to compile with VS.NET C compiler.
449         Removed cast warnings.
451         Adapted from the work of J Lothian (for VC6).
453 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
455         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
456         from default_path.
458 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
460         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
461         the 2.0 profile.
463 2005-03-27  Raja R Harinath  <harinath@gmail.com>
465         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
466         has to be in $(exec_prefix).  $(prefix) is for arch-independent
467         stuff, and it would probably use $(prefix)/share rather than
468         $(prefix)/lib.
470 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
472         * console-io.c: added 2 includes that might be missing.
474 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
476         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
477         profile.
479         * reflection.c (create_custom_attr): Allocate the params array using
480         alloca so it gets GC tracking.
482 2005-03-23  Chris Toshok  <toshok@ximian.com>
484         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
485         out some spew.
487 2005-03-24  Raja R Harinath  <rharinath@novell.com>
489         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
490         changes to pick up any changes in prefix, etc.
492 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
494         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
495         
496         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
497         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
499 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
501         * class-internals.h object-internals.h class.c reflection.c: Extend the
502         mono_lookup_dynamic_token () function to return the class of the
503         token as well. 
505         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
506         well. Fixes #73848.
508 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
510         * security-manager.c: Skip inheritance checks for intra-corlib
511         class inheritance and method overrides. This skips a lot of checks
512         and (anyway) permissions cannot work until corlib is loaded.
514 2005-03-23  Martin Baulig  <martin@ximian.com>
516         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
517         MONO_TYPE_GENERICINST.  
519 2005-03-23  Martin Baulig  <martin@ximian.com>
521         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
523 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
525         * class.c: added locking comments to some functions.
526         Cache the interface offsets arrays (saves about 20 KB
527         of runtime memory in a typical app).
528         Reduce the time overhead in mono_class_setup_supertypes ().
530 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
532         * icall.c: speedup and fix leaks in GetMethodsByName and
533         GetPropertiesByName.
535 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
537         * reflection.c: some locking fixes.
539 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
541         * metadata.c: added missing break in case statement.
543 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
545         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
546         typedbyref return values. Fixes #73941.
548 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
550         * security-manager.c|h: Added demandunmanaged method and 
551         suppressunmanagedcodesecurity class to MonoSecurityManager.
552         Renamed aptc class to allowpartiallytrustedcallers.
554 2005-03-17  Martin Baulig  <martin@ximian.com>
556         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
558 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
560         * file-io.c: disabled file async. IO using aio_*. It uses the
561         threadpool now. Workaround for bug #73718.
563 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
565         * assembly.h, mono-config.c: added code to deal with bundled configs
566         for bundled assemblies.
568 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
570         * *.c, private.h: cleanup, removing old private.h header file.
572 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
574         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
575         and throw_on_unmappable_char attributes.
577 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
579         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
580         _ProcessName_internal.
582 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
584         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
585         #73631.
587         * icall.c threads.c threads-types.h: Remove slothash icalls as they
588         are no longer used.
590 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
592         * object.c (compute_class_bitmap): Add support for generics. Fixes
593         #73527.
595 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
597         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
599 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
601         * filewatcher.c: commented out the code for windows watcher, as we don't
602         use it (we use the managed implementation instead).
604 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
606         * object-internals.h (MonoThread): Remove 'unused1' field.
608         * appdomain.c: Bump corlib version.
610         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
612         * reflection.c (mono_reflection_create_runtime_class): Remove the
613         AssemblyBuilder.Save optimization since it causes too many problems.
615 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
617         * exception.c|h: Added mono_get_exception_reflection_type_load to
618         create a ReflectionTypeLoadException object.
619         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
620         to return NULL is a InheritanceDemand fails during reflection. Updated
621         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
622         ReflectionTypeLoadException if an InheritanceDemand fails during 
623         reflection. Added icall mapping for GetLinkDemandSecurity.
624         * security-manager.c|h: Added ves_icall_System_Security_
625         SecurityManager_GetLinkDemandSecurity internal call to return the
626         class and methods permissions set for a LinkDemand. Removed unused
627         fields in MonoSecurityManager.
629 2005-03-10  Martin Baulig  <martin@ximian.com>
631         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
632         it's a generic instance.
634 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
636         * reflection.c (mono_get_object_from_blob): Applied patch from
637         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
639         * class.c (mono_class_is_assignable_from): Another try at fixing 
640         #73469 without breaking anything.
642 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
644         * class.c: (mono_class_is_assignable_from): Revert the last changes
645         since they don't work with generics.
646         
647         * class.c (mono_class_is_assignable_from): Fix build bustage.
649         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
650         the managed IsAssignableFrom method. Fixes #73469.
652         * reflection.c (mono_reflection_call_is_assignable_from): New helper
653         function.
655 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
657         * object.c (mono_load_remote_field_new): Fix returning uninitialized
658         memory when the remoting callback does not sets the out arguments.
659         Fixes #73007.
661         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
662         by mistake.
664         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
666         * object-internals.h (MonoStackFrame): Sync with managed object layout.
668         * appdomain.c: Bump corlib version.
670 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
672         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
673         function.
675         * threads.c (mono_thread_attach): Detect threads which are not started
676         by the GC pthread wrappers.
678 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
680         * icall.c: Added new icall for RNG.
681         * rand.c|h: Added new icall to open the RNG. This allows to share a 
682         single handle on Linux to access /dev/urandom and fix #73183.
684 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
686         * object.c: setting the new vtable in a transparent proxy object must
687         not change the GC descriptor.
689 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
691         * object.c: fixed compilation without GCJ support.
692         * reflection.c: for runtime-created types ensure klass->has_references
693         is correct (bug #73215).
695 2005-03-02  Martin Baulig  <martin@ximian.com>
697         * class.c (mono_class_is_assignable_from): Make this work if
698         `oklass' is a generic instance; fixes #72831.
700 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
702         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
703         with hasthis set.
704         
705         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
707         * marshal.c: Reorganize native->managed marshalling code to also use
708         the emit_marshal_... functions.
710 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
712         * object.c: typed allocs have issues with bitmap sizes > 30,
713         so check for max_set >= 30.
715 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
717         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
718         managed code. Fixes #73012.
720         * metadata.h (MonoMarshalSpec): Add elem_mult field.
722         * metadata.c reflection.c: Load/Emit elem_mult as well.
723         
724         * metadata.h (MonoMarshalSpec): Add comment.
726         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
728         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
729         num_elem to -1 if not given.
731         * object-internals.h (MonoReflectionMarshal): Add has_size field.
733         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
734         given values.
736 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
738         * null-gc.c (mono_gc_free_fixed): Was not compilable.
740 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
742         * reflection.c (encode_marshal_blob): Encode param_num field as well.
744         * object-internals.h (MonoReflectionMarshal): Add param_num field.
746 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
748         * object.c: generalized the reference bitmap creation
749         and added hooks for the new GC.
750         * class-internals.c: removed the gc_bitmap field from MonoClass.
752 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
754         * domain.c: help the compiler to produce better code
755         in mono_jit_info_table_find ().
757 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
759         * object.c: make all allocations look typed.
761 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
763         * socket-io.c: load Mono.Posix if it's not loaded already
764         (fixes bug#73033).
766 2005-02-24  Martin Baulig  <martin@ximian.com>
768         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
769         * reflection.c (dup_type): Likewise.
771 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
773         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
774         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
776 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
778         * domain.c, threads.c, object-internals.h: make the critical thread
779         local vars use the fast access mode (even when we're compiled in
780         a lib). Provide accessors to be used by the jit during codegen.
782 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
784         * appdomain.c: Changed hook functios behavior to include
785         support for the reflection only assemblies. Some icalls were changed
786         to support the mentioned assemblies too. Signatures of static methods
787         try_assembly_resolve and real_load now have an additional parameter:
788         refonly.
790         * assembly.c: General changes to mono_assembly_ methods to support
791         reflection only api. Functions mono_assembly_open, mono_assembly_load,
792         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
793         suffix, to support an additional gbool parameter to specify whether
794         the assembli is reflection only or not. Created some new hook functions 
795         to add support for reflection only assemblies. Signatures of static 
796         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
797         have now an additional parameter: refonly.
799         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
800         indicating whether the assembly is reflection only or not.
802         * exception.c: Add mono_get_exception_invalid_operation.
804         * icall.c: Throw an InvalidOperationException when trying to invoke
805         a property/method/event, or trying to set/get the value of a field.
806         Also add an icall to retrieve the ref_only flag to the
807         MonoReflectionAssembly.
809 2005-02-23  Chris Toshok  <toshok@ximian.com>
811         Part of fix for #72827.
812         * mono-debug.c (mono_debug_add_method): add lexical block data to
813         the info we write.  Kind of a hack at the moment - we copy the
814         lexical block info from the MonoDebugMethodInfo to the
815         MonoDebugMethodJitInfo here, before writing it.
816         (mono_debug_read_method): read the lexical block info.
818         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
820         * debug-mono-symfile.h: add lexical block support.
822         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
823         support.
825 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
827         * loader.c (mono_lookup_pinvoke_call): Fix warning.
829         * object.c (mono_runtime_free_method): Call mono_free_method () and
830         put the TODOs there.
832         * loader.c (mono_free_method): Free up most memory allocated for 
833         dynamic methods.
835 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
837         * reflection.c: properly flag a Type argument to a
838         named custom attr value (bug #72248).
840 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
842         * reflection.c: reduce code duplication in named custom
843         attribute encoding.
845 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
847         * reflection.c: properly encode custom attrs of type object
848         (bug #72649).
850 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
852         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
854 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
856         * socket-io.c: load System.dll if it's not loaded already
857         (bug #72850 and #70477).
859 2005-02-21  Martin Baulig  <martin@ximian.com>
861         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
862         generic instances.
864 2005-02-21  Martin Baulig  <martin@ximian.com>
866         * reflection.c (mono_image_build_metadata): We also need to
867         "fixup" the MethodImpl table after we computed the final method
868         indices.  Call fixup_methodimpl() to do that.
869         (fixup_methodimpl): New private method.
871 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
873         * assembly.c: special case mscorlib.dll (bug#72536),
874         patch from Carlos Alberto Cortez.
876 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
878         * threads-types.h threads.c: Fix build bustage.
880         * threads.c: Use a union for long<->double conversions.
882         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
883         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
885         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
886         containing the checkpoint call with NOT_TAKEN.
887         
888         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
889         checkpoint before pushing the arguments, so they won't have to be
890         spilled to stack.
892 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
894         * domain.c, assembly.c, domain-internals.h: make some data
895         const and relocation-free.
897 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
899         * object.c, appdomain.c, class-internals.h: introduce the
900         MonoClassRuntimeInfo structure to hold the info needed to
901         use a class at runtime. Made mono_class_vtable() lock-free
902         for all the appdomains.
904 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
906         * metadata-internals.h, image.c: introduce a per-image mempool to
907         be used for memory that has the same lifetime as the image.
909 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
911         * domain.c: In mono_init_internal(), instead of selecting the first
912         runtime version supported by an executable, get a list of all
913         supported versions and select the one for which an mscorlib exists
914         (since even if the runtime supports a given version, it doesn't mean
915         that the framework for that version is installed).
916         Modified get_runtimes_from_exe to support this behavior.
917         In supported_runtimes, added information about additional system
918         assembly versions.
919         
920         * assembly.c: Added support for more than one system assembly version
921         per runtime version. Updated the assembly list.
922         In mono_assembly_remap_version, removed the initial version check,
923         since we don't know to which version we need to compare until we
924         get the version set on which the assembly is based.
925         Moved the code for loading corlib into the new method
926         mono_assembly_load_corlib(), so it can be used by the initialization
927         code.
928         
929         * domain-internals.h: Updated data structures and added declaration
930         for mono_assembly_load_corlib.
932 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
934         * reflection.c (resolve_object): Fix the creation of the signature in 
935         the SignatureHelper case.
937         * assembly.c (mono_assembly_remap_version): Fix binary search.
938         
939 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
941         * class.c: Added inheritance check when a method is overloaded (from a
942         virtual method or when implementing an interface) and when a class is
943         inherited. Added functions to set a failure for a class and to 
944         retreive the exception from a failure.
945         * class-internals.h: Added fields to MonoClass to keep the exception
946         information status for inheritance (or other exceptions) to be thrown
947         later (i.e. not at load time).
948         * object.c: Throw the inheritance SecurityException when a type is to 
949         be created with either class or method inheritance violations.
950         * reflection.c|h: Fix when getting declsec from a class. Removed 
951         unrequired code for class. Improved sanity in parameter naming.
952         * security-manager.c|h: Added functions to check for class and method
953         inheritance.
955 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
957         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
958         and has_finalize in dynamic types as well.
960 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
962         * culture-info-table.h : fixed currency format for en-GB (and so on).
964 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
966         * gc.c: ensure the GC handles never have 0 as a value.
968 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
970         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
971         a pointer to a struct to unmanaged code. Fixes #72625.
973 2005-02-16  Martin Baulig  <martin@ximian.com>
975         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
977 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
979         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
981 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
983         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
985         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
986         UnmanagedFunctionPointerAttribute, use it for determining calling convention
987         etc. Fixes #71471.
989         * reflection.c (mono_custom_attrs_get_attr): New helper function.
991         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
993 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
995         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
996         changes to make the current context a field in MonoThread.
998 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
1000         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
1001         the last change.
1002         
1003         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
1004         extracted from mono_marshal_get_native_wrapper.
1006         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
1007         to create wrappers around native functions.
1009         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
1010         delegates for arbitrary function pointers. Fixes #71472.
1012 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
1014         * threads.c: cleaned up the code a little.
1016 2005-02-15  Martin Baulig  <martin@ximian.com>
1018         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
1019         the data table.
1021         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
1022         allocate larger chunks if needed.
1024 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
1026         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
1027         in by mistake.
1029 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
1031         * domain.c: keep the domains in an array and ensure the domain ids
1032         are kept small, so they can be used as indexes to domain-specific data
1033         with a small memory overhead.
1035 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
1037         * icall.c: Handle byref types in Type icalls. Fixes #72544.
1039 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
1041         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
1043 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
1045         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
1047         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
1048         values.
1050         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
1051         
1052 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
1054         * domain-internals.h: add the hashtable here.
1056         * class-internals.h: Remove `info' from MonoMethod
1058         * domain.c: Add a new hashtable, jit_trampoline_hash
1060 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
1062         * object.c: don't set the value of static fields
1063         (fixes bug#72494).
1065 2005-02-11  Martin Baulig  <martin@ximian.com>
1067         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
1068         (mono_debug_add_method): Silently ignore the method if it's too big.
1069         (mono_debug_add_type): Likewise.
1071 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
1073         * threads.c, appdomain.c: remove #ifdefs from the code.
1075 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
1077         * metadata-internals.h: Added flags to MonoAssembly to cache the most
1078         common security informations. This allows us to stay in unmanaged code
1079         when doing LinkDemand and it's special cases (except for the first 
1080         time for initialization). The flags a very much used with --security.
1081         * reflection.c|h: Added code to get declarative security attributes 
1082         for LinkDemand and InheritanceDemand. This required to refactor the
1083         existing code for Demand.
1084         * security-manager.c|h: Added new method fields for the special cases
1085         of LinkDemand.
1087 2005-02-10  Martin Baulig  <martin@ximian.com>
1089         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
1090         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
1092 2005-02-10  Martin Baulig  <martin@ximian.com>
1094         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
1095         debugging code; this is almost a complete rewrite.
1097         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
1099 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1101         * domain.c, object.h: expose mono_string_equal () and 
1102         mono_string_hash ().
1103         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
1104         it's implemented in managed code.
1106 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1108         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
1109         lo leak objects between appdomains.
1111 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1113         * assembly.c: old compilers compilation fix from 
1114         robertj@gmx.net (Robert Jordan).
1116 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
1118         * class-internals.h: Little reminder for the future.
1120         * debug-helpers.c: Fix up wrapper_type_names
1122 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1124         * image.c, metadata-internals.h: when loading an image from a file,
1125         mmap all of it and use the same codepaths as when using a
1126         in-memory image: the code is simpler and we use less memory
1127         (both writable and readonly).
1129 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
1131         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
1132         API to alloc runtime data structures that need to be tracked by the
1133         GC and contain pointers.
1134         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
1135         make the code more readable and eventually use a different GC.
1137 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
1139         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
1140         for out arguments.
1141         
1142 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
1144         * object.c: In release_type_locks(), don't release the cctor lock
1145         if it has already been released. This fixes a crash in the
1146         thread5 test.
1148 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1150         * gc.c, marshal.c, icall.c: register a delegate for finalization
1151         only when the native function pointer has been allocated for it.
1153 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
1155         * object.c: cleaned up some code, allocate objects that are
1156         pointer free with the atomic malloc variant. Allocate memory
1157         for static data from the mempool if it's pointer-free.
1158         Allocate the bounds array at the end of the array data, when needed.
1159         * object-internals.h, object.h: move a private function in a private
1160         header.
1161         * class.c: handle missing case in tracking references in fields.
1163 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
1165         * class.c, class-internals.h: keep track if a type has
1166         reference fields in either the instance or static fields.
1168 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
1170         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
1171         and renamed to MonoRuntimeInfo. Added fields to store the expected
1172         framework assembly version. Changed mono_get_framework_version and
1173         mono_get_runtime_version for a single mono_get_runtime_info method.
1174         
1175         * assembly.c: Added method to remap system assembly versions to the
1176         current executing runtime version. Removed old mapping code.
1177         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
1178         
1179         * icall.c, reflection.c: Track api changes.
1181 2005-02-06  Miguel de Icaza  <miguel@novell.com>
1183         * loader.c (method_from_memberref): Improve error reporting,
1184         produce the class name instead of the typeref/typedef index. 
1186 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
1188         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
1190 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1192         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
1193         stdcall and charset name mangling.  Reorganize the code and add
1194         some tracing stuff.
1196 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
1198         * monodiet.c: More iters!
1200         * marshal.c: Iter usage.
1202         * icall.c: Iter usage.
1204         * object.c: Use iters.
1206         * debug-helpers.c: More iters
1208 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1210         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
1211         under win32.
1213 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
1215         * mono-debug-debugger.c: use iters
1217         * class.c, class-internals.h: mono_class_setup_events is static
1218         now
1220         * All callers: use iters
1222 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1224         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
1225         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
1227 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
1229         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
1231         * marshal.h: Add prototypes for ldfld/stfld_remote.
1233         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
1234         this is called during startup.
1235         
1236 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
1238         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
1239         MonoThreadsSync struct private in monitor.c. Changed the way
1240         MonoThreadsSync is allocated so it's faster and there is no
1241         need to keep track of it with a finalizer and it uses less memory.
1242         This also finally allows us to allocate mono objects as ptrfree when
1243         there are no reference fields.
1245 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
1247         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
1248         disappearing link to the GC interface and use them to simplify
1249         the gchandles code.
1251 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
1253         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
1254         stfld_remote which call mono_load/store_field_new. This allows methods
1255         calling ldfld/stfld wrappers to be AOTed.
1257         * console-io.c: Include sys/filio.h under solaris.
1258         
1259         * console-io.c: Include curses.h if needed correctly.
1261 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
1262         
1263         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
1264         method->klass as well.
1266         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
1268         * class.c (mono_class_init): Switch on lazy initialization of 
1269         methods.
1271         * class.c (mono_class_get_finalizer): Handle the case when the 
1272         finalizer is inherited.
1274 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1276         * console-io.c: <curses.h> is needed by term.h on solaris.
1278 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
1280         * icall.c, class-internals.h, monodiet.c, class.c: Remove
1281         mono_class_setup_properties where possible. Remove this ftn from
1282         the header file, and make it static.
1284 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
1286         * loader.c: Add missing setup_... call.
1288         * class.c: Add missing setup_... calls.
1290         * class.c (mono_class_init): Switch on lazy initialization of 
1291         the generic vtable.
1292         
1293         * class.c (mono_class_init): Fix generics broken by the recent changes.
1295         * monodiet.c (handle_type): Add missing setup_... calls.
1297         * class.c: Back out garbage in previous patch.
1298         
1299         * class.c: Add missing setup_... calls.
1301         * class.c (mono_class_get_method_from_name_flags): Avoid calling
1302         mono_class_setup_methods () if possible.
1304         * class-internals.h (MonoClass): Add 'has_cctor' flag.
1306         * class-internals.h (MonoCachedClassInfo): New structure.
1308         * class.c: Initialize properties and events fields of MonoClass lazily.
1310         * class.c: Add infrastructure for lazily initializing the methods and
1311         vtable fields of MonoClass. Not yet used.
1313         * class.c (mono_class_get_finalizer): New helper function.
1315         * class.c: Add infrastructure for loading some class related data from
1316         an AOT file.
1318         * object.c: Add infrastructure for initializing the vtable from data
1319         in the AOT file.
1321         * gc.c (run_finalize): Use mono_class_get_finalizer ().
1323         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
1324         appropriate initialization function before accessing parts of the
1325         MonoClass structure.
1327         * marshal.c: Fix warnings.
1328         
1329         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
1331         * mono-debug-debugger.c (get_exception_message): Use 
1332         mono_class_get_method_from_name_flags ().
1334 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
1336         * reflection.c, appdomain.c: Replace a few manual searches that
1337         Zoltan missed. (Paolo approved this part of my initial patch).
1339 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
1341         * profiler.c: disable recording statistical events at report time.
1343 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1345         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
1346         to byteswap arrays of enum values, too (bug #72080).
1348 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
1350         * appdomain.c (set_domain_search_path): Allow this to be called if
1351         domain->setup is not yet set.
1353         * loader.c (mono_method_get_index): New helper function.
1355         * loader.c reflection.c: Use mono_method_get_index ().
1357         * class.c (mono_class_get_method_from_name_flags): New helper method.
1359         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
1360         this.
1362         * class.c (mono_class_get_cctor): New helper method.
1364         * string-icalls.c object.c class.c marshal.c reflection.c: Use
1365         mono_class_get_method () to look up methods.
1367 2005-02-01  Miguel de Icaza  <miguel@novell.com>
1369         * console-io.c: Fix the build, this should work on Windows.
1371 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
1373         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
1374         be set to null to keep things valid
1376 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1378         * icall.c: added Console 2.0 icalls.
1379         * Makefile.am: added console-io.[ch]
1380         * console-io.[ch]: internal calls for Console 2.0 API.
1382 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1384         * class.c: make sure we consider all the interfaces
1385         when calculating max_interface_id (bug found by
1386         Jeroen Frijters running ikvm).
1388 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
1390         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
1391         valuetype fields to null.
1393         * object.c (set_value): Ditto. Fixes #71669.    
1395 2005-01-31  Martin Baulig  <martin@ximian.com>
1397         * metadata.c (mono_metadata_has_generic_params): New public
1398         function; checks whether something is a generic method.
1400 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
1402         * appdomain.c: fix infinite recursion when adding assemblies.
1404 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
1406         * object.c: Fix small typo to return all items for Environment.
1407         GetCommandLineArgs.
1409 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1411         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
1412         reflection.c: more domain and assembly-unload related fixes
1413         and memory leaks plugs.
1415 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
1417         * class.c loader.c security.c loader.h process.c threads.c mono-debug-debugger.c profiler.c marshal.c rand.cpedump.c: Fix 64 bit warnings.
1419 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
1421         * loader.c (mono_method_signature): Make this method lazy
1422         (mono_get_method_from_token): Don't computate the signature here.
1424         Doing this saves quite a bit of memory. I got 90 kb on starting up
1425         monodoc. It should also save some disk reads on startup.
1427         * *: MonoMethod->signature might be NULL now. You *MUST* use
1428         mono_method_signature.
1430 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
1432         * object.c (mono_runtime_get_main_args): Return an array from the
1433         current domain here. Fixes #71938.
1435 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
1437         * monitor.c: formatting changes to comply with the
1438         mono coding style and remove #ifdefs from the code.
1440 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1442         * metadata.c, private.h: remove some unneeded data
1443         and use a more compact representation for table schemas.
1445 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
1447         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
1448         to get a better distribution in hash tables.
1449         * *.c: use mono_aligned_addr_hash() where appropriate.
1450         * assembly.c: make var static.
1452 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
1454         * domain-internals.h: Put MonoJitInfo on a diet.
1456         * domain.c: Fix a warning.
1458 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1460         * gc.c: rework the gc handles code to reuse handles
1461         when freed.
1463 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
1465         * domain.c: fixed long standing bug in mono_string_equal() which
1466         was brought to light with the ldstr changes.
1468 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
1470         * reflection.c: Remove warning by adding missing include for marshal.h
1472 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1474         * domain.c, object.c: change the ldstr_table to hold
1475         MonoString* as keys: makes the runtime isinterned lookup
1476         faster and simplifies memory management.
1478 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
1480         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
1481         possible to add imperative security checks before calling the icall.
1482         * reflection.c: Return security attributes on the original MonoMethod
1483         (and not the wrapped one). This fix permissions on icalls.
1485 2005-01-25  Dick Porter  <dick@ximian.com>
1487         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
1488         the check for mktime() support actually test the mktime() return
1489         value.  "Fixes" bug 71682, though the output is still different to
1490         MS.
1492 2005-01-25  Martin Baulig  <martin@ximian.com>
1494         * class.c (mono_class_is_assignable_from): Make this work for
1495         generic instances.
1497 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
1499         * marshal.c (mono_string_utf8_to_builder)
1500         (mono_string_builder_to_utf16): We might not have ownership of the
1501         string. In thise case, we need to create a new buffer.
1503         * object-internals.h (mono_stringbuilder_capacity): sb->str might
1504         be null, in which case, use the default capacity.
1506 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1508         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
1509         GC events to the profiler.
1511 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1513         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
1514         if you don't want the GC to run.
1516 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
1518         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
1519         start providing a GC API and keeping different implementations in
1520         their own file.
1521         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
1523 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
1525         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
1526         mmap rather than allocating a huge buffer.
1527         (mono_debug_close_mono_symbol_file): Free the buffer allocated
1528         above.
1530 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
1532         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
1533         and CheckExecutionRights.
1534         * reflection.c|h: Keep the index of the declarative security to be 
1535         used, instead of the pointer, when AOT compiler is used. Also add 
1536         class initialization when requesting demands.
1537         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
1538         CheckExecutionRights. Both properties are now FALSE by default, and
1539         unmodifiable, unless the --security option is used.
1541 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
1543         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
1544         reflection.c: properly refcount images and assemblies, many leaks fixed.
1546 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1548         * threadpool.c: increase the timeout for threads in the thread pool to
1549         10s.  Fixes bug #67159.
1551 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
1553         * class-internals.h: Sun's compiler insists on explicit
1554         signed on bit fields to handle then correctly.
1556 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
1558         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
1559         Make the size of the array fit only the number of invalid path
1560         chars that we have.
1562         * class.c (_mono_class_get): Improve the error reporting when a
1563         class referenced is not found, to assist debugging. 
1565 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
1567         * threads.c: fix off-by-one error.
1568         * domain.c: free data allocated in the domain.
1570 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
1572         * reflection.c (mono_method_body_get_object): Fill out exception info
1573         as well.
1575         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
1576         structure.
1577         
1578 2005-01-19  Martin Baulig  <martin@ximian.com>
1580         * loader.c (mono_get_method_constrained): Make this work again.
1582 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
1584         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
1585         guint16 to match the managed side.
1587         * reflection.c (mono_reflection_body_get_object): Fill out local
1588         variables array.
1590         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
1591         as well.
1593         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
1594         'local_var_sig_token'.
1596 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
1598         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
1599         System.Drawing.
1601         * reflection.c (mono_method_body_get_object): Handle abstract and
1602         runtime methods.
1604 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
1606         * marshal.c, loader.c, class-internals.h, reflection.c:
1607         store the emthod data for a wrapper in an array instead of a list.
1609 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
1611         * marshal.c: change the code to allocate memory more
1612         conservatively for method wrappers.
1614 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
1616         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
1617         fields from MonoClass to the marshal info structure where they belong.
1619 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1621         * class.c, object.c, class-internals.h, marshal.c: rearrange
1622         some fields and tweak some types to lower memory usage.
1624 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
1626         * threads.c (signal_thread_state_change): Handle the case when the
1627         target thread is the current thread.
1629         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
1631         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
1632         emit_ptr_to_object_conv. 
1634         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
1635         marshalling. Fixes #71352.
1637 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
1639         * metadata.h, blob.h: move table enum to blob.h so it can be included
1640         in any header.
1641         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
1642         cut the size of MonoImage/MonoDynamicImage.
1644 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
1646         * profiler.c (mono_profiler_install_simple): Fix default arguments.
1648 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
1650         * reflection.c, reflection.h, icall.c: add a function to check
1651         if an attribute type is defined for a metadata object.
1653 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
1655         * object-internals.h: Added some needed fields from StringBuilder class.
1656         * marshal.c: Set the maxCapacity when creating a StringBuilder.
1658 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
1660         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
1661         threads before shutting down the runtime.
1663         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
1665 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1667         * object-internal.h, threads.c: implement stacksize and 
1668         parameterized thread start functionality (requires
1669         matching corlib). Marked broken code for later removal.
1671 2005-01-12  Martin Baulig  <martin@ximian.com>
1673         * class-internals.h (MonoGenericClass): Moved the `initialized'
1674         flag to MonoDynamicGenericClass, removed `init_pending'.
1675         (MonoGenericInst): Added `is_reference' flag.
1677 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
1679         * reflection.c (mono_image_create_pefile): Only set the pe_offset
1680         inside the MSDOS header. Fixes #71201.
1682         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
1683         gc thread.
1684         (mono_domain_finalize): Ditto.
1686 2005-01-12  Martin Baulig  <martin@ximian.com>
1688         * class.c (mono_get_shared_generic_class): Use the cache for
1689         non-dynamic generic classes.
1691         * class-internals.h (mono_class_create_generic_2): Removed
1692         function prototype, this function is now static inside class.c.
1694         * class.c (mono_class_create_generic_2): Made this static, only
1695         call it from mono_class_init() and mono_class_setup_parent().
1696         (collect_implemented_interfaces_aux): Call mono_class_init() on
1697         the interfaces we collect.
1698         (mono_class_setup_vtable): Call mono_class_init (class->parent).
1700 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
1702         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
1703         it a real thread handle.
1705         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
1706         MonoJitExceptionInfo, since each catch clause needs its own variable.
1707         
1708 2005-01-11  Dick Porter  <dick@ximian.com>
1710         * image.c (mono_pe_file_open): New variant on mono_image_open()
1711         that does not set up the CLI metadata; used for FileVersionInfo so
1712         it can get the data for windows binaries too.
1713         
1714         * process.c (process_read_string_block): Don't read off the end of
1715         the StringTable block.
1717         These both fix bug 70766.
1719 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
1721         * gc.c: set some fields to NULL at GC cleanup time.
1722         * threads.c: if we quit the main thread, call exit ().
1724 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
1726         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
1728 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
1730         * threads.h, threads.c, object.c: added accessor and settor for
1731         main_thread. Handle it specially when exiting from it: wait
1732         for other foreground threads to exit.
1734 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
1736         * process.c, verify.c: remove some bloat.
1738 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
1740         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
1741         the calling convention to cdecl under win32.
1743 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
1745         * object.c (mono_object_get_size): New function to get the size of
1746         an object instance.
1748         * profiler.c (simple_allocation): Use above.
1750 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
1752         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
1753         ves_icall_System_AppDomain_getRootDomain (as it's not required to
1754         get an appdomain by it's id and we can't assume the root's id is 0).
1755         * domain-internals.h: Change the function prototype to match.
1756         * icall.c: Change the icall table for AppDomain.
1758 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
1760         * locales.c (string_invariant_compare_char): Only compute
1761         GUnicodeTypes in the case where we need them.  Test for ordinality
1762         first and return if so.
1764         From the commit:
1766                 /*
1767                  * FIXME: here we must use the information from c1type and c2type
1768                  * to find out the proper collation, even on the InvariantCulture, the
1769                  * sorting is not done by computing the unicode values, but their
1770                  * actual sort order.
1771                  */
1773 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
1775         * loader.c: for P/Invoke methods, allow the "Internal" shared
1776         library name to refer to the calling process symbol namespace.
1778 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
1780         * Makefile.am: Add the security manager to the build.
1781         * security-manager.c|h: New. Initialization of the security manager.
1783 2005-01-07  Dick Porter  <dick@ximian.com>
1785         * threads.c: 
1786         * monitor.c: Update thread state during Monitor and WaitHandle
1787         waits.  Fixes bug 71031.
1789 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
1791         * reflection.c (property_encode_signature): Correctly handle when the
1792         property has no methods.
1794 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
1796         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
1797         
1798         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
1799         fields from mb, not rmb. Fixes #71017.
1801         * marshal.c (emit_ptr_to_str_conv): Add support for 
1802         ByValTStr -> string conversion. Fixes #71015.
1804         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
1806         * mempool.c (mono_mempool_contains_addr): New helper function.
1808 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
1810         * metadata.c (mono_metadata_compute_size): Fix size calculation of
1811         HasSematics encoded fields.
1812         
1813         * metadata.c (mono_type_to_unmanaged): Improve error message for 
1814         invalid string marshalling.
1816         * metadata.c: Fix warnings.
1817         
1818 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
1820         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
1821         profiler support.
1823 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
1825         * domain.c object.c domain-internals.h: Revert part of r38077 since the
1826         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
1827         tests.
1829 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
1831         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
1832         so methods containing these can be AOTed.
1834 2005-01-03  Martin Baulig  <martin@ximian.com>
1836         * loader.c (find_method): Removed the hack for generic instances.
1837         (method_from_memberref): If our parent is a generic instance, pass
1838         its generic type definition to find_method() and then inflate the
1839         method.
1840         (mono_get_method_constrained): Pass the generic type definition to
1841         find_method() and inflate the method later.
1843         * class-internals.h (MonoStats): Added `generic_class_count'.
1845         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
1846         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
1848         * reflection.c (mono_custom_attrs_from_params): Don't ignore
1849         generic type definitions.
1851 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
1853         * loader.c icall.c: Fix warnings.
1855 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
1857         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
1858         blittable types. Fixes #70864.
1860 2004-12-29  Martin Baulig  <martin@ximian.com>
1862         * icall.c
1863         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
1865         * reflection.c (mono_method_get_object): Create a
1866         "System.Reflection.MonoGenericMethod" for inflated methods; don't
1867         call mono_get_inflated_method().
1869         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
1871 2004-12-27  Martin Baulig  <martin@ximian.com>
1873         * class-internals.h (MonoMethod): Added `is_inflated' flag.
1874         (MonoMethodInflated): Added `inflated' field.
1876         * class.c (mono_class_inflate_generic_method): Don't really
1877         inflate the method here; just set the `is_inflated' flag in the
1878         MonoMethod.
1879         (mono_class_get_inflated_method): Actually inflate the method here
1880         if it's not already inflated; we use the MonoMethodInflated's new
1881         `inflated' field as a cache.
1883 2004-12-26  Martin Baulig  <martin@ximian.com>
1885         * class.c
1886         (inflate_generic_class): Moved some code out of inflate_generic_type().
1887         (mono_class_inflate_generic_method): If we're already inflated,
1888         inflate the context and use the declaring method; ie. make sure
1889         the declaring method of an inflated method is always the generic
1890         method definition.
1891         (mono_class_create_from_typedef): Create
1892         `class->generic_container->context->gclass'.
1894 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
1896         * metadata-internals.h, marshal.c, reflection.c: More
1897         MonoGHashTable->GHashTable.
1899         * domain-internals.h, class.c: Change MonoGHashTable's into
1900         GHashTables for some cases where no gc stuff is used
1902         All users: update apis
1904 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
1906         * metadata.c (builtin_types): Make this `const'. Makes this get
1907         put into the shareable section.
1908         (mono_metadata_init): Casts to make gcc happy.
1910 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
1912         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
1914 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
1916         * icall.c: Added an internal call to retrieve the position and length
1917         of assembly-level declarative security attributes (RequestMinimum, 
1918         RequestOptional and RequestRefuse). This is used by the Assembly class
1919         to re-create the corresponding permission sets.
1921 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
1923         * marshal.c: fix the stelemref wrapper to be type correct
1924         (and faster).
1926 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
1928         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
1929         to do key & 0x7fffffff. Hashtable already does this. It just
1930         results in longer code.
1932 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
1934         * appdomain.c: Bump corlib version.
1935         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
1936         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
1937         * reflection.c|h: Add functions to get declarative security infos
1938         (blob position and length) for assemblies, classes and methods.
1940 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
1942         * reflection.c: sort the constant table (bug #70693).
1944 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
1946         * object-internals.h, threads.c, domain.c: add accessors for
1947         the MonoThread and MonoDomain tls keys.
1949 2004-12-18  Martin Baulig  <martin@ximian.com>
1951         * class.c (inflate_generic_type): If we're inflating a generic
1952         instance, set `ngclass->context->container = context->container';
1953         ie. the container we inflated into.
1955         * metadata.c (mono_metadata_parse_generic_param): Reflect above
1956         inflate_generic_type() changes.
1958 2004-12-17  Martin Baulig  <martin@ximian.com>
1960         * class-internals.h
1961         (MonoGenericClass): Replaced `MonoType *generic_type' with
1962         `MonoClass *generic_class'.  Removed `dynamic_info'; if
1963         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
1964         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
1966 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
1968         * exception.c (mono_exception_from_token): New helper function.
1970 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
1972         * assembly.c (mono_assembly_load_with_partial_name): Call 
1973         mono_assembly_loaded before invoking the preload hooks. Fixes
1974         #70564.
1976         * object-internals.h (MonoThread): Change culture_info and 
1977         ui_culture_info into an array.
1979         * threads.c: Cache culture info objects from more than one appdomain.
1981         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
1982         current UI culture.
1984 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
1986         * threads.h threads.c appdomain.c: Clear the culture_info field of
1987         all threads during unloading if they point to an object in the dying
1988         appdomain.
1990 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
1992         * culture-info.h (TextInfoEntry): New struct
1993         * object-internals.h: sync with managed
1994         * locales.c: fill the `text_info_data' field
1995         * culture-info-tables.h: update
1997 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
1999         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
2000         collector.
2002 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
2004         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
2005         (ves_icall_ModuleBuilder_getMethodToken): Ditto
2007 2004-12-12  Martin Baulig  <martin@ximian.com>
2009         * mono-debug-debugger.c (write_type): If we're an enum and the
2010         builtin types have already been initialized, call mono_class_init().
2012 2004-12-11  Martin Baulig  <martin@ximian.com>
2014         * metadata.c (mono_metadata_load_generic_params): Added
2015         `MonoGenericContainer *parent_container' argument; automatically
2016         compute `container->is_method'; pass the correct owner to
2017         get_constraints().      
2019         * reflection.c (compare_genericparam): Sort the GenericParam table
2020         according to increasing owners. 
2022 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
2024         * profiler.c: allow disabling the default profiler.
2026 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
2028         * decimal.c, icall.c: allow disabling System.Decimal support.
2030 2004-12-09  Marek Safar <marek.safar@seznam.cz>
2032         * reflection.c: Add support for null attribute arguments.
2034 2004-12-09  Martin Baulig  <martin@ximian.com>
2036         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
2037         names to get rid of compiler warnings.
2039 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
2041         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
2042         mono_marshal_load_type_info (). Fixes #69625.
2043         (mono_marshal_get_ptr_to_struct): Likewise.
2045 2004-12-08  Martin Baulig  <martin@ximian.com>
2047         * mono-debug.h: Bumped version number to 47.
2049         * mono-debug-debugger.c
2050         (mono_debugger_event_handler, mono_debugger_event): Take two
2051         guint64 arguments insteed of a gpointer and a guint32.  
2053 2004-12-08  Martin Baulig  <martin@ximian.com>
2055         * debug-mono-symfile.h
2056         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
2057         `address' to `native_offset'.
2059 2004-12-08  Martin Baulig  <martin@ximian.com>
2061         * class.c (mono_class_create_from_typespec): Only inflate if we
2062         either have `context->gclass' or `context->gmethod'.
2064 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
2066         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
2068         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
2070         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
2072         * reflection.c (mono_assembly_get_object): Remove the workaround put
2073         in for the release.
2074         
2075         * appdomain.c: Use the corlib_internal field from MonoAssembly.
2077         * appdomain.c: Bump corlib version.
2079         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
2080         be visible in other appdomains.
2082 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
2084         * threads.c: Interlocked inc and dec for longs were messed up,
2085         use a KISS based impl for this. Fixes 70234
2087 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
2089         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
2091 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
2093         * icall.c: fix to follow policy not to allow struct
2094         arguments in icalls.
2096 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2098         * process.c: make the patch that handles spaces in file paths work
2099         on mono/windows too.
2101 2004-12-06  Martin Baulig  <martin@ximian.com>
2103         * class.c (mono_class_create_generic): Call
2104         mono_class_setup_supertypes() if we're dynamic.
2105         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
2107 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
2109         * object-internals.h: Add new fields to MonoThread.
2111         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2113         * icall.c threads-types.h threads.c: Add new icalls.
2115         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
2117         * object-internals.h (MonoReflectionAssembly): Sync object layout with
2118         managed side.
2120         * appdomain.c: Bump corlib version.
2122         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
2123         internal assemblies. Fixes #69181.
2125 2004-12-05  Martin Baulig  <martin@ximian.com>
2127         * class.c (mono_class_inflate_generic_signature): Make this a
2128         no-op if `context' is NULL or we don't have any type parameters;
2129         also copy `sentinelpos'.        
2131 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
2133         * image.c: Add unbox_wrapper_cache.
2135         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
2137         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
2138         function generator.
2139         
2140         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
2141         Fixes #70173.
2143         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
2144         
2145 2004-12-04  Martin Baulig  <martin@ximian.com>
2147         * loader.c (mono_method_get_signature_full): New public function;
2148         like mono_method_get_signature(), but with an additional
2149         `MonoGenericContext *' argument.
2151         * class.c (mono_class_inflate_generic_signature): Formerly known
2152         as inflate_generic_signature(); make this public.
2154 2004-12-04  Martin Baulig  <martin@ximian.com>
2156         * metadata.c
2157         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
2158         instead of a `MonoGenericContainer *'.  
2159         (mono_metadata_parse_array_full): Likewise.
2160         (mono_metadata_parse_signature_full): Likewise.
2161         (mono_metadata_parse_method_signature_full): Likewise.
2162         (mono_metadata_parse_generic_inst): Likewise.
2163         (mono_metadata_parse_generic_param): Likewise.
2164         (mono_metadata_parse_mh_full): Likewise.
2165         (mono_type_create_from_typespec_full): Likewise.
2167 2004-12-03  Martin Baulig  <martin@ximian.com>
2169         * class-internals.h (MonoGenericContainer): Replaced the
2170         `MonoGenericContext * pointer with a `MonoGenericContext'
2171         structure and made it the first element.
2173 2004-12-03  Martin Baulig  <martin@ximian.com>
2175         * class.c
2176         (inflate_generic_type): Set the `context->container' when creating
2177         a new MonoGenericContext.
2178         (mono_class_inflate_generic_method): Likewise.
2179         (mono_class_create_from_typespec): Just use `context->container'
2180         to get the container.
2182         * loader.c (method_from_methodspec): Set `context->parent' from
2183         `context->container' - and if that's a method container, use its
2184         parent.  Also set the `context->container' when creating a new
2185         MonoGenericContext.
2186         (mono_get_method_from_token): Use just `context->container' to get
2187         the container.
2189         * metadata.c (do_mono_metadata_parse_generic_class): Also set
2190         `gclass->context->container'.
2192         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
2193         the `context->container' when creating a new MonoGenericContext.
2195 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
2197         * reflection.c (compare_genericparam): Sort params with identical
2198         owner by their number. Fixes gen-111 on sparc.
2200 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
2202         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
2203         around the domain changes.
2205         * appdomain.c (mono_domain_unload): Handle the case when the thread
2206         calling Unload is itself being aborted during unloading. Fixes #70022.
2208         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
2210         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
2211         checkpoint_func as an icall so it gets a wrapper.
2212         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
2213         in the cross-appdomain wrappers too.
2215         * threads.c (mono_thread_has_appdomain_ref): Make this public.
2217         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
2219         * reflection.c: Fix some memory leaks.
2220         
2221 2004-12-02  Martin Baulig  <martin@ximian.com>
2223         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
2225         * metadata.c (generic_class_cache): New static hashtable.
2226         (mono_metadata_lookup_generic_class): New public method.
2228 2004-12-02  Martin Baulig  <martin@ximian.com>
2230         * class.c (mono_class_create_from_typedef): Call
2231         mono_class_setup_parent() and mono_class_create_mono_type() before
2232         parsing the interfaces.
2234 2004-12-02  Martin Baulig  <martin@ximian.com>
2236         * metadata.c (generic_inst_cache): New static hashtable.
2237         (mono_metadata_lookup_generic_inst): New public function.
2238         (mono_metadata_inflate_generic_inst): New public function.
2239         (mono_metadata_parse_generic_inst): New public function.
2240         (do_mono_metadata_parse_generic_class): Use the new
2241         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
2242         since this'll also use the cache.
2244         * reflection.c (mono_reflection_bind_generic_method_parameters):
2245         Use mono_metadata_lookup_generic_inst() to use the new cache.
2247         * class.c (inflate_mono_type): Use
2248         mono_metadata_inflate_generic_inst() to inflate a generic
2249         instance; this'll also use the new cache.
2251         * loader.c (method_from_methodspec): Use
2252         mono_metadata_parse_generic_inst() and
2253         mono_metadata_inflate_generic_inst() rather than parsing it
2254         manually, so we can use the new cache.
2256 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
2258         * threads.c (wait_for_tids): Do not incorrectly free threads when 
2259         the wait times out.
2261 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
2263         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
2264         iter->args based on whether parameters are passed in registers (i.e.
2265         MONO_ARCH_REGPARMS is defined)
2267 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
2269         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
2270         the exception message. Fixes #70070.
2271         (method_from_methodspec): Fix warnings.
2273 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2275         * process.c: (complete_path) return the path quoted
2277 2004-12-01  Martin Baulig  <martin@ximian.com>
2279         * class-internals.h (MonoGenericInst): New structure.
2280         (MonoGenericClass): Replaced `type_argc', `type_argv' and
2281         `is_open' with `MonoGenericInst *inst'.
2282         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
2283         `is_open' with `MonoGenericInst *inst'.
2285 2004-11-30  Martin Baulig  <martin@ximian.com>
2287         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
2289         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
2290         to `generic_class_cache'.
2292         * metadata.c
2293         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
2294         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
2295         (mono_generic_inst_is_valuetype): Renamed to
2296         mono_generic_class_is_valuetype().
2298         * class-internals.h
2299         (MonoGenericInst): Renamed to MonoGenericClass.
2300         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
2301         (MonoClass): Renamed `generic_inst' to `generic_class'.
2302         (MonoGenericContext): Renamed `ginst' to `gclass'.
2304         * object-internals.h
2305         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
2307         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
2308         mono_reflection_generic_class_initialize().
2310         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
2311         now known as "System.Reflection.MonoGenericClass".
2312         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
2314 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
2316         * class-internals.h: Added a flag field to MonoClass to cache the
2317         declarative security attributes actions associated with the class.
2318         * domain-internals.h: Added booleans to MonoJitInfo to cache the
2319         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
2320         applicable to the JITted method.
2321         * reflection.c|h: Added functions to extract (as flags) which security
2322         actions are available (declaratively) for a method, class or assembly.
2323         * metadata.c|h: Added functions to search the declarative security
2324         table in the metadata.
2325         
2326 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
2328         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
2329         EXPORTEDTYPES are already in the class name cache, so there is no
2330         need to add extra code here to look at them. Just removes a bit of
2331         cruft.
2333         (ves_icall_System_Environment_get_TickCount): No need for #if
2334         WINDOWS. We already have the code in io-layer.
2336 2004-11-28  Martin Baulig  <martin@ximian.com>
2338         * loader.c
2339         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
2340         Fixes gen-112.cs.
2342 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
2344         * assembly.c (do_mono_assembly_open): Instead of having a
2345         conditional WITH_BUNDLE, incorporate support for bundles here, by
2346         having a global `bundles' variable holding a pointer to the actual
2347         bundles. 
2349         (mono_register_bundled_assemblies): New API call used by the
2350         bundle code. 
2352         See mkbundle.1 for details.
2353         
2354 2004-11-27  Martin Baulig  <martin@ximian.com>
2356         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
2357         the vtable for generic methods.
2359 2004-11-26  Martin Baulig  <martin@ximian.com>
2361         * metadata.c
2362         (mono_metadata_generic_method_hash): New public function.
2363         (mono_metadata_generic_method_equal): Likewise.
2365         * class-internals.h
2366         (MonoGenericContainer): Added `GHashTable *method_hash'.
2368         * reflection.c (ReflectionMethodBuilder): Added
2369         `MonoGenericContainer *generic_container'.
2370         (reflection_methodbuilder_to_mono_method): Don't create a new
2371         MonoGenericContainer each time we're called.
2372         (mono_reflection_bind_generic_method_parameters): Use
2373         `container->method_hash' to cache the results so we don't create a
2374         different method if we're called several times with the same
2375         arguments.
2377         * loader.c (method_from_methodspec): Use the new
2378         `container->method_hash' here, too.
2380 2004-11-26  Martin Baulig  <martin@ximian.com>
2382         * class.c (inflate_generic_signature): Correctly compute
2383         `res->has_type_parameters'.
2384         (mono_class_vtable): Use the `has_type_parameters' flag to
2385         determine whether we're a generic method.
2387         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
2389 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
2391         * object.c (mono_runtime_run_main): Fix a small memory leak.
2393 2004-11-25  Martin Baulig  <martin@ximian.com>
2395         * class.c (set_generic_param_owner): Fixed the loop.
2397 2004-11-25  Martin Baulig  <martin@ximian.com>
2399         * object.c (mono_class_vtable): Don't create any JIT wrappers for
2400         generic methods.
2402 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
2404         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
2405         names. Fixes #69787.
2407 2004-11-24  Martin Baulig  <martin@ximian.com>
2409         * class.c (mono_class_create_generic_2): If we don't have a
2410         `ginst->parent', inflate `gklass->parent' to get our parent.
2412 2004-11-24  Martin Baulig  <martin@ximian.com>
2414         * reflection.c (compare_genericparam): Correctly sort the
2415         GenericParam table; fixes #69779.
2417 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
2419         * reflection.c: When writing a PE file, don't create a huge
2420         buffer in memory. Just write the arrays we have to the file.
2421         This reduces memory usage.
2423         * metadata-internals.h: MonoDynamicStream pefile is no longer used
2424         globally.
2426 2004-11-17  Martin Baulig  <martin@ximian.com>
2428         * class.c (mono_class_init): Don't setup `class->parent' for
2429         dynamic instances; moved this to mono_class_generic_2().
2430         (mono_class_create_generic): Also set `klass->inited' for dynamic
2431         generic instances.
2432         (mono_class_create_generic_2): Don't do anything for dynamic
2433         generic instances.  Set `klass->parent' here and also call
2434         mono_class_setup_parent() here. 
2436         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
2437         `MonoType *parent' argument; set `ginst->parent' before calling
2438         mono_class_create_generic_2(), so we set the correct parent.
2440 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
2442         * reflection.c: allow getting attributes from ModuleBuilder
2443         (used by ikvm).
2445 2004-11-17  Martin Baulig  <martin@ximian.com>
2447         * class.c (mono_class_create_from_typedef): If a type parameter is
2448         inherited from an outer class, set its owner to that class.
2450 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
2452         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
2453           for (int*) written size. This fixes bug #69592.
2455 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
2457         * icall.c: Added IsAuthenticodePresnet internal call.
2458         * image.c|h: New function that check a MonoImage for an Authenticode
2459         signature in the certificate PE data directory.
2460         * security.c|h: New internal call to ask the runtime if an 
2461         Authenticode signature seems referenced in the PE header.
2463 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
2465         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
2467         * reflection.c (mono_image_create_pefile): Free the assembly streams
2468         after writing out the assembly file.
2470         * object.c (mono_runtime_run_main): Fix small memory leak.
2472         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
2473         property access modifiers. Fixes #69389.
2475 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
2477         * domain.c, object.c, object-internals.h, domain-internals.h,
2478         object.h, marshal.c: keep dynamic code info per domain.
2480 2004-11-15  Martin Baulig  <martin@ximian.com>
2482         * class.c (mono_type_get_name_recurse): Put type arguments in
2483         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
2484         see bug #68387.
2486 2004-11-15  Martin Baulig  <martin@ximian.com>
2488         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
2489         (mono_class_setup_vtable): When computing `the_cname' for a
2490         generic instance, don't include the namespace since we'd otherwise
2491         add it twice.
2493 2004-11-15  Martin Baulig  <martin@ximian.com>
2495         * class.c (mono_class_create_generic): Changed return type to void.
2496         (mono_class_create_generic_2): New public function; setup
2497         `class->method', `class->field' and `class->interfaces' here
2498         instead of in mono_class_init().
2500         * class.h (mono_class_create_generic): Moved to class-internals.h.
2502 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
2504         * reflection.c (mono_image_create_pefile): take a file HANDLE.
2505         rather than writing to memory, write to this file. Right now,
2506         we are just writting into a buffer, and copying that. However
2507         we can avoid the buffer later.
2509         (mono_dynamic_stream_reset): new function
2511         * icall.c, object-internals.h: update for the above.
2513 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
2515         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
2516         have been using gc'd memory. First it is slower, unlikely
2517         the comment in the source code said, secondly, it increases
2518         our footprint to do it in the gc.
2520         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
2521         the method so that it does not have to copy to managed code.
2523 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
2525         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
2527 2004-11-12  Martin Baulig  <martin@localhost>
2529         * reflection.c (mono_image_create_token): Allow generic method
2530         definitions here, since they may appear in an `.override'; see
2531         gen-98/gen-99 for an example.
2533 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
2535         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
2536         #69365.
2538         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
2539         descriptive.
2541 2004-11-11  Martin Baulig  <martin@ximian.com>
2543         * class.c (mono_class_setup_vtable): In an explicit interface
2544         implementation, the method name now includes the arity.
2546 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
2548         * object.c (mono_array_full_copy): Fix warning.
2550 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
2552         * appdomain.c: Removed look_for_method_by_name(). Use the new method
2553         mono_class_get_method_from_name() instead.
2554         
2555         * class-internals.h: Added two new types of wrappers. 
2556         Added MonoRemotingTarget enum. Added new trampoline function type, which
2557         takes an additional MonoRemotingTarget value as parameter, so it is
2558         possible to request a trampoline for a specific target.
2559         
2560         * class.c: Added new mono_class_get_method_from_name() method.
2561         
2562         * class.h: In MonoRemoteClass, we can have now to vtables, one for
2563         general remoting sinks and one specific for cross domain calls.
2564         
2565         * debug-helpers.c: Added new wrapper names.
2566         
2567         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
2568         of a remote class.
2569         
2570         * image.c: Porperly delete value objects form the remoting invoke hashtable.
2571         
2572         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
2573         with several other methods (mono_marshal_get_xappdomain_dispatch,
2574         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
2575         and others) can generate a fast remoting wrapper for cross domain calls.
2576         More information can be found in docs/remoting.
2577         Other changes: Removed mono_find_method_by_name, and used
2578         mono_class_get_method_from_name instead.
2579         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
2580         is stored in the remoting invoke hashtable.
2581         
2582         * marshal.h: published the new method for getting the xdomain wrapper,
2583         and also added a method for getting the adequate wrapper for a given
2584         method and target.
2585         
2586         * object-internals.h, object.c: Added a couple of methods for capying and
2587         cloning arrays.
2588         Modified mono_install_remoting_trampoline, which takes the new remoting
2589         trampoline that has a remoting target as parameter.
2590         mono_class_proxy_vtable now also takes a remoting target as parameter, and
2591         will return the most suitable vtable for the target.
2592         Added mono_remote_class_vtable, which returns the vtable of a remote class
2593         (which can be the normal remoting vtable or the xdomain vtable).
2594         
2595         * threads.c: the xdomain invoke and dispatch wrappers must also be
2596         protected against interruptions.
2598 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2600         * icall.c: use memmove in BlockCopyInternal when the source and
2601         destination arrays are the same.
2603 2004-11-09  Martin Baulig  <martin@ximian.com>
2605         * class-internals.h (MonoGenericContainer): Removed `method' and
2606         `signature', replaced them with `is_method' and `is_signature'
2607         flags.  Added `context'.
2609         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
2610         instead of a `MonoGenericContainer *'.
2612         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
2613         for dynamic type parameters.
2614         (mono_metadata_load_generic_params): Setup `container->context'.
2616         * reflection.c (mono_reflection_setup_generic_class): Setup
2617         `tb->generic_container->context'.
2618         (do_mono_reflection_bind_generic_parameters): Use
2619         mono_class_inflate_generic_type() to correctly inflate types,
2620         rather than using our own hack just for MONO_TYPE_VAR.
2622 2004-11-09  Martin Baulig  <martin@ximian.com>
2624         * class.c (mono_class_inflate_generic_method): Small fix; don't
2625         crash here.
2627         * icall.c
2628         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
2629         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
2630         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
2631         (ves_icall_Type_BindGenericParameters): Likewise.
2632         (ves_icall_Type_get_IsGenericInstance): Likewise.
2633         (ves_icall_Type_GetGenericParameterPosition): Likewise.
2634         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
2635         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2636         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
2638 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
2640         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
2641         assembly versions and public key tokens. Fixes #69113.
2643 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
2645         * metadata.c: fix bug introduced with the type cache changes
2646         on 2004-11-06.
2648 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
2650         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
2651         the MonoClass pointer instead of the token in exception clauses.
2652         * reflection.c: updates for the above and make the code not depend
2653         on the structure of MonoExceptionClause.
2655 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
2657         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
2658         Add support for dynamic assemblies. Fixes #69114.
2660         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
2662 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
2664         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
2665         since most only those methods use it. the code member of
2666         MonoMethodPInvoke was dead, so that can be removed too. Also,
2667         remove inline_count (again, not used), and move slot so that it
2668         can share bits with some other flags. This saves 8 bytes in the
2669         structure and gives us about 50 kb back for mcs helloworld.cs
2671         * *.[ch]: Do naming changes for the above.
2673         * loader.c (mono_method_get_header): Lazily init the header
2674         on first access.
2675         (mono_get_method_from_token): don't init the header here
2676         (mono_free_method): the header may never be allocated
2678         Overall, this saves 150 kb of unmanaged allocations
2679         for mcs helloworld.cs. That accounts for 10% of the unmanaged
2680         memory at runtime.
2681         
2682         * loader.c, loader.h (mono_method_get_header): new accessor.
2684         * *.[ch]: use the above method. Prepares us to lazily load
2685         the header.
2687         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
2688         three warnings, which are actual bugs (see 69206).
2690         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
2691         unused. Saves a cool 4 bytes / method.
2693 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
2695         * metadata.c (builtin_types): Add types for System.Object here.
2696         (mono_metadata_parse_type_full): Cache MonoType*'s that are
2697         for a class or valuetype from klass->this_arg or klass->byval_arg.
2699         On mcs for a hello world, this gets us down from 21836 MonoType's
2700         to 14560.
2702         (mono_metadata_free_type): Account for the above change.
2704 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
2706         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
2707         exception instead of asserting if name is null.
2708         (ves_icall_System_AppDomain_GetData): Ditto.
2710 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
2712         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
2713         EnumBuilder.
2715         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
2716         Return NULL when the domain does not have entry_assembly set.
2718         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
2719         Add a 'resource_modules' argument.
2720         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
2722         * reflection.c (mono_reflection_create_runtime_class): Move setting
2723         of wastypebuilder here, so mono_get_type_object () returns a MonoType
2724         for enums too.
2726         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
2727         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
2728         Throw an ArgumentNullException if 'ptr' is null.
2730         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
2731         assemblies here. Fixes #69020.
2733 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
2735         * reflection.c (build_compressed_metadata): Fix the previous patch for
2736         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
2737         the stack.
2739 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
2741         * assembly.c (mono_assembly_names_equal): Allow a match if one of
2742         the cultures is false. Fixes #69090.
2744         * reflection.c (build_compressed_metadata): Fix invalid memory read 
2745         detected by valgrind.
2746         
2747         * reflection.c (mono_reflection_get_type): Avoid triggering a 
2748         TypeResolve multiple times for the same type. Fixes #65577.
2750 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
2752         * marshal.c: Avoid using ldftn to call managed functions. It is
2753         much slower than just a call.
2755         * reflection.c (mono_module_get_object): free the basename we
2756         allocate here from glib.
2757         
2758         * reflection.c (ensure_runtime_vtable): make sure to free
2759         overrides.  Also, we were allocating an array of MonoMethod not an
2760         array of MonoMethod*.
2762         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
2764         * image.c (mono_image_close): free image->guid here.
2766 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
2768         * reflection.c: Fix some spec conformance issues with the PE file
2769         structures so mcs compiled apps run on the Net 2.0 beta.
2771 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
2773         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
2774         Implement this. Fixes #67264.
2776         * debug-helpers.h debug-helpers.c marshal.c: Move 
2777         mono_find_method_by_name to debug-helpers.c.
2779 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
2781         * object.c (mono_release_type_locks): type_initialization_hash is
2782         a GHashTable.
2784         * reflection.c object.c object-internals.h: Fix warnings.
2786         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
2787         without accessors. Fixes #61561.
2789         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
2790         application base from the root domain if not set. Fixes #65641.
2791         (mono_runtime_init): Fix warning.
2793 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2795         * appdomain.c: call mono_thread_pool_init.
2796         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
2797         of worker threads based on the number of CPUs and the environment
2798         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
2799         for non-windows (windows) systems.
2801 2004-10-27  Chris Toshok  <toshok@ximian.com>
2803         * mono-debug-debugger.c (write_class): don't call mono_class_init
2804         here, as even with the check for (!klass->init_pending), we get
2805         into a situation where we're hitting cycles in class
2806         initialization.  Fixes #68816.
2808 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
2810         * image.c: Avoid overwriting values in the loaded_images_hash when an
2811         assembly is loaded multiple times. Fixes #61152.
2813         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
2814         so multiple satellite assemblies for the same name can be loaded.
2815         Fixes #68259.
2817         * mono_domain_assembly_preload: Actually return the loaded assembly, 
2818         not NULL.
2820         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
2821         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
2823         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
2824         pending finalizers are not invoked after the appdomain has been 
2825         unloaded. Fixes #67862.
2827 2004-10-22  Martin Baulig  <martin@ximian.com>
2829         * mono-debug-debugger.c
2830         (mono_debugger_runtime_invoke): Don't box valuetypes.
2832 2004-10-22  Chris Toshok  <toshok@ximian.com>
2834         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
2835         don't hide private methods.
2837 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
2839         * icall.c: Allows the runtime to "share" (when known) the public key
2840         token of an assembly. This avoid the need to recalculate the token 
2841         (from the public key) in managed code.
2843 2004-10-21  Chris Toshok  <toshok@ximian.com>
2845         * debug-helpers.c (append_class_name): argh, revert last patch.
2846         
2847 2004-10-21  Chris Toshok  <toshok@ximian.com>
2849         * debug-helpers.c (append_class_name): use '+' as the delimiter,
2850         not '/', so that it matches what the debugger uses to look up
2851         methods.
2853 2004-10-21  Martin Baulig  <martin@ximian.com>
2855         * mono-debug-debugger.c (mono_debugger_throw_exception): New
2856         public method; this is called each time an exception is thrown and
2857         allows the debugger to use exception catch points.
2859 2004-10-21  Martin Baulig  <martin@ximian.com>
2861         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
2862         the stack pointer and the exception object in some struct and pass
2863         that to the debugger.
2865 2004-10-21  Chris Toshok  <toshok@ximian.com>
2867         * mono-debug-debugger.c (do_write_class): add instance/static
2868         event support.  We don't expose "raise" or "other" yet.
2869         (event_is_static): new method.
2871 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
2873         * mono-debug-debugger.c
2874         (mono_debugger_handle_exception): Remove
2875         bogus return value for fussy compilers.
2877 2004-10-20  Martin Baulig  <martin@ximian.com>
2879         * mono-debug-debugger.c
2880         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
2881         (mono_debugger_handled_exception): Likewise.
2883 2004-10-20  Martin Baulig  <martin@ximian.com>
2885         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2886         MONO_DEBUGGER_EVENT_EXCEPTION.
2888         * mono-debug-debugger.c (mono_debugger_handle_exception): New
2889         public function to send the debugger a notification for an
2890         exception and inform it about a catch/finally clause.
2892 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
2894         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
2895         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
2896         fix 2.95 build. 
2898         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
2900 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
2902         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
2903         marshalled as [In,Out]. Fixes #58325.
2905 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
2907         * reflection.c (mono_method_body_get_object): Implement some fields.
2909 2004-10-12  Martin Baulig  <martin@ximian.com>
2911         * reflection.c (mono_reflection_bind_generic_parameters): Small
2912         fix, correctly retrieve our parent from a generic instance.
2914 2004-10-12  Martin Baulig  <martin@ximian.com>
2916         * metadata.c (mono_metadata_generic_param_equal): We always have
2917         an owner.
2919         * class.c
2920         (mono_class_from_generic_parameter): We need to have an owner.
2921         (my_mono_class_from_generic_parameter): Likewise.
2923         * reflection.c (mono_reflection_setup_generic_class): Renamed to
2924         mono_reflection_create_generic_class() and added a new
2925         mono_reflection_setup_generic_class().  
2926         (mono_reflection_initialize_generic_param): If we're a nested
2927         generic type and inherited from the containing class, set our
2928         owner to the outer class.
2930 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
2932         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
2934         * reflection.c (mono_method_body_get_object): New function to create
2935         a MethodBody object.
2937         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
2939 2004-10-11  Martin Baulig  <martin@ximian.com>
2941         * metadata.c (_mono_metadata_type_equal): Renamed to
2942         do_mono_metadata_type_equal() and made static.
2944 2004-10-11  Martin Baulig  <martin@ximian.com>
2946         * appdomain.c: Bump corlib version number to 28.
2948 2004-10-10  Martin Baulig  <martin@ximian.com>
2950         * class-internals.h
2951         (MonoGenericInst): Added `MonoGenericContainer *container'.
2952         (MonoGenericMethod): Likewise.
2953         (MonoGenericContext): Likewise.
2954         (MonoGenericParam): Added `MonoGenericContainer *owner'.
2956         * metadata.c
2957         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
2958         (do_mono_metadata_parse_generic_inst): Likewise.
2959         (mono_metadata_parse_type_full): New public method.  This is the actual
2960         mono_metadata_parse_type() implementation - with an additional
2961         `MonoGenericContainer *' argument.
2962         (mono_metadata_parse_array_full): Likewise.
2963         (mono_metadata_parse_signature_full): Likewise.
2964         (mono_metadata_parse_method_signature_full): Likewise.
2965         (mono_metadata_parse_mh_full): Likewise.
2966         (mono_type_create_from_typespec): Likewise.
2967         (mono_metadata_interfaces_from_typedef_full): New public method;
2968         this is similar to the other _full() methods, but we take a
2969         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
2970         (mono_metadata_parse_generic_param): Take an additional
2971         `MonoGenericContainer *' argument and lookup the MonoGenericParam
2972         from that container.
2973         (mono_metadata_generic_param_equal): New static method to compare
2974         two type parameters.
2975         (_mono_metadata_type_equal): New static method; takes an
2976         additional `gboolean signature_only' argument - if true, we don't
2977         compare the owners of generic parameters.
2978         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
2979         with a TRUE argument - do a signature-only comparision.
2981         * loader.c: Use the new _full() methods and pass the
2982         MonoGenericContainer to them.
2984         * object-internals.h (MonoReflectionTypeBuilder): Added
2985         `MonoGenericContainer *generic_container' field.
2986         (MonoReflectionMethodBuilder): Likewise.
2988 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
2990         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
2991         case initial images of dynamic assemblies.
2993         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
2995         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
2997         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
2998         length of event->other array.
2999         (typebuilder_setup_events): Ditto.
3001         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
3002         'assembly_by_name' and add an 'assemblies' list.
3004         * assembly.h assembly.c: Add a new search hook for determining whenever
3005         an assembly is already loaded. Use this instead of searching in the
3006         loaded_assemblies list.
3008         * domain.c appdomain.c: Implement the new search hook so loaded 
3009         assemblies are now scoped by appdomain. Fixes #67727.
3011 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
3013         * threads.c (mono_thread_attach): Initialize synch_lock field so
3014         mono_thread_detach works again.
3016         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
3017         'lib' too. Fixes #63130.
3019 2004-10-06  Jackson Harper  <jackson@ximian.com>
3021         * culture-info-tables.h: regenerated.
3023 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
3025         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
3026         implemented by other interfaces in the result. Fixes #65764.
3027         
3028         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3029         Handle unloadable modules without crashing.
3031         * image.c (load_modules): Revert the previous patch since modules must
3032         have a fixed index inside the array.
3033         
3034         * image.c (load_modules): Don't include native modules in the modules
3035         array.
3037 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
3039         * reflection.h: Add param_defaults field.
3041         * reflection.c: Add support for parameter defaults in dynamic methods.
3042         Fixes #64595.
3044         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
3045         an empty string when a type has no namespace. Fixes #64230.
3047 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
3049         * tabledefs.h: Added "internal" security actions to support non-CAS
3050         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
3051         Note: they do not seems to be used anymore in 2.0 (new metadata format)
3053 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
3055         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
3056         constructor of abstract class. Fixes #61689.
3058 2004-10-04  Martin Baulig  <martin@ximian.com>
3060         * class-internals.h (MonoGenericContainer): New type.
3061         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
3062         `MonoGenericContainer *generic_container'.
3063         (MonoClass): Replaced `gen_params' and `num_gen_params' with
3064         `MonoGenericContainer *generic_container'.
3066         * metadata.c (mono_metadata_load_generic_params): Return a
3067         `MonoGenericContainer *' instead of a `MonoGenericParam *';
3068         removed the `num' argument.
3070 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
3072         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
3073         for dynamic images.
3075         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
3076         machine fields.
3078         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
3080         * reflection.c: Save pe_kind and machine values into the generated
3081         image file.
3083         * appdomain.c: Bump corlib version number.
3085         * object-internals.h: Reorganize layout of LocalBuilder.
3087         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
3088         New helper function.
3090         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
3091         created MonoType for dynamic types. Fixes #66180.
3093 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
3095         * threadpool.c: the ares hashtable needs a critical section around it.
3096         this prevents some nasty segfaults
3098 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
3100         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
3101         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
3102         bug 67324).
3103         
3104 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
3106         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
3107         
3108 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
3110         * image.c: Always canonicalize image file names, to avoid loading
3111         the same assembly twice when referenced using a relative path.
3113 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
3115         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
3117         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
3119         * marshal.c: Fix warnings.
3121 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
3123         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
3124         attempting to marshal the delegate_trampoline as the method_addr.
3125         This patch has a static hashtable of marshalled delegates so that 
3126         we can map delegate_trampoline addresses back to delegates.  This
3127         allows a delegate passed to managed code to be passed back into native
3128         code.  Fixes #67039
3130 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
3132         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
3134         * reflection.c (method_encode_code): Align method headers properly.
3135         Fixes #66025.
3137 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
3139         * marshal.c: In the runtime invoke wrapper, reset the abort
3140         exception if it is cached. This avoids the automatic rethrowal of 
3141         the exception after the catch of the wrapper. Also check for pending
3142         interruptions before calling the managed method. This is done using
3143         the new method emit_thread_force_interrupt_checkpoint, since the
3144         normal checkpoint method is ignored when running the invoke wrapper.
3145         * object.c: If the abort exception is rethrown, set the abort_exc
3146         field of the thread, so it will be rethrown aftere every catch.
3147         * threadpool.c: Only run an interruption checkpoint if what has been
3148         requested is a stop of the thread (aborts will be ignored).
3149         * threads.c: By default, a thread will now never be interrumped while
3150         running the runtime invoke wrapper (this ensures that runtime_invoke
3151         will always return to the caller if an exception pointer is provided).
3152         There is a new special method mono_thread_force_interruption_checkpoint()
3153         to force an interruption checkpoint even if running a protected
3154         wrapper, which is used by the same runtime invoke wrapper to do a check
3155         at a safe point.
3157 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
3159         * object.c, object-internals.h: Implemented mono_release_type_locks,
3160         which releases the cctor locks held by a thread.
3161         * threads.c, threads.h: In thread_cleanup, release cctor locks held
3162         by a thread. Added mono_thread_exit() method to be used to safely stop
3163         a thread.
3165 2004-09-28  Raja R Harinath  <rharinath@novell.com>
3167         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3168         Move null check before dereference.  Avoid indexing beyond the end
3169         of the 'modules' array.
3171 2004-09-28  Raja R Harinath  <rharinath@novell.com>
3173         * metadata-internals.h (MonoImage): Add module_count field.
3174         * image.c (load_modules): Set image->module_count.
3175         (mono_image_load_file_for_image): Use image->module_count.
3176         * reflection.c (mono_image_load_module): Append to image->modules array 
3177         of dynamic assembly.
3178         (mono_module_get_object): Fix loop to actually increment index.
3179         Use image->module_count.
3180         * assembly.c (mono_assembly_load_references): Use image->module_count.
3181         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
3182         Likewise.
3184 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
3186         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
3187         Avoid assert on generic types.
3189 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
3191         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
3193         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
3195         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
3196         function to convert a MarshalSpec structure to its managed counterpart.
3198         * reflection.c: Fix warnings.
3199         
3200         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
3201         field.
3203         * icall.c (mono_create_icall_signature): Fix build.
3205 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
3207         * icall.c: Add MakePointType icall.
3209         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
3210         warnings.
3212 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3214         * threadpool.c: reuse allocated slots in the queue.
3216 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
3218         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
3220         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
3222         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
3223         previous change.
3225         * tabledefs.h: Add constants for pinvoke attributes BestFit and
3226         ThrowOnUnmappableChar.
3228         * icall.c (ves_icall_Type_GetPacking): New icall.
3230 2004-09-24  Martin Baulig  <martin@ximian.com>
3232         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
3234 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3236         * appdomain.c:
3237         (mono_domain_set): allow setting a domain that is being unloaded.
3238         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
3239         being unloaded.
3241 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
3243         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
3244         the GetCustomAttributes icall.
3246 2004-09-23  Martin Baulig  <martin@ximian.com>
3248         * object-internals.h (MonoReflectionGenericParam): Replaced
3249         'has_ctor_constraint', `has_reference_type' and `has_value_type'
3250         with `guint32 attrs'.
3252 2004-09-23  Martin Baulig  <martin@ximian.com>
3254         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
3256 2004-09-23  Martin Baulig  <martin@ximian.com>
3258         * object-internals.h (GenericParameterAttributes): New enum.
3260 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
3262         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
3263         
3264         * class.c (init_events): Fill out event->other field.
3266         * class.c: Fix warnings.
3268         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
3270 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
3272         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
3273         walk which doesn't supply the IL offset.
3275 2004-09-22  Martin Baulig  <martin@ximian.com>
3277         * reflection.c (mono_reflection_setup_internal_class): If we're
3278         System.ValueType, System.Object or System.Enum, set
3279         `klass->instance_size' and create the vtable.
3280         (mono_reflection_create_internal_class): If we're an enum type,
3281         get the base class from our current corlib.
3283 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
3285         * reflection.h (MonoResolveTokenError): New type.
3287         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
3288         icall.
3290         * icall.c: Add an 'error' argument to the ResolveToken icalls.
3292 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
3294         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
3295         Support also calling constructors, but only for already allocated objects.
3297 2004-09-17  Geoff Norton <gnorton@customerdna.com>
3299         * reflection.c (type_get_qualified_name): If the klass is null
3300         return the typename to avoid a NullRefEx.
3301         (encode_cattr_value): Get the qualified name of the boxed type,
3302         not the underlying enumtype.  Fixes #62984.
3304 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
3306         * marshal.c: Fix problems with previous checkin.
3308 2004-09-21    <vargaz@freemail.hu>
3310         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
3311         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
3313         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
3315 2004-09-21  Geoff Norton <gnorton@customerdna.com>
3317         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
3318         should only return a type for pointers, arrays, and passbyref types.
3319         Fixes bug #63841.
3321 2004-09-21  Martin Baulig  <martin@ximian.com>
3323         * domain.c (mono_debugger_check_runtime_version): New public
3324         function.
3326         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
3328 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
3330         * reflection.c: Added missing sort to the declarative security 
3331         attributes table. MS implementation stops seeing the attributes if the
3332         token number regress in the table (as shown by ildasm and permview).
3334 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
3336         * object-internals.h (MonoReflectionModule): Add 'token' field.
3337         
3338         * reflection.c (mono_reflection_get_token): Add support for Module
3339         and Assembly.
3340         (mono_module_get_object): Set 'token' field.
3341         (mono_module_file_get_object): Set 'token' field.
3343         * icall.c: Add new Assembly and Module icalls.
3345         * appdomain.c: Bump corlib version.
3347 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
3349         * loader.h loader.c class.h class.c: Add helper functions for obtaining
3350         tokens of metadata objects.
3352         * reflection.h reflection.c (mono_reflection_get_token): New function
3353         to obtain the token of a metadata object.
3355         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
3357 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
3359         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
3360         
3361         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
3363 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
3365         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
3366         * object-internals.h: Added 3 MonoArray* members to MonoReflection
3367         AssemblyBuilder to access the permissions set in the class lib.
3368         * reflection.c: Added security attributes encoding step in 
3369         mono_image_build_metadata.
3370         * tabledefs.h: Added new security actions defined in 2.0:
3371         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
3373 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
3375         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
3376         macro parameter.
3378 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
3380         * locales.c: nullify the ICU_collator member of CompareInfo when it is
3381           finalized. There where random SIGSEVs at program termination, when
3382           an object being finalized was trying to do a string comparison and
3383           the current culture was already finalized.
3385 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3387         * threads.c: call thread_cleanup before finishing the thread if we get
3388         there.
3390 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
3392         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
3393         assemblies from the parent. Fixes #65665.
3395 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
3397         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
3398         modifiers.
3400 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
3402         * reflection.h: add prototype for mono_get_dbnull_object
3403         * reflection.c: add prototypes for get_default_param_value_blobs 
3404         and mono_get_object_from_blob for fussier compilers
3406 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
3408         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
3409         false deadlock checks in class initialization.
3411 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
3413         * image.c (mono_image_addref): Fix comment.
3415         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
3416         possible.
3418 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
3420         * reflection.c (mono_param_get_objects): Modified to return
3421         ParameterInfo.DefaultValue object.
3423         (get_default_param_value_blobs):
3424         (mono_get_object_from_blob):
3425         (mono_get_dbnull_object): New helper routines. 
3427         * object.c (mono_get_constant_value_from_blob): New helper routine
3428         carved out from get_default_field_value ()
3430         * object-internals.h (mono_get_constant_value_from_blob): Added
3431         function declaration.
3433 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
3435         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
3436         referenced assemblies. Fixes #62135.
3438         * exception.h exception.c (mono_get_exception_file_not_found2): New
3439         helper function.
3441 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
3443         * class.h class.c: Add mono_type_get_underlying_type ().
3445 2004-09-09  Geoff Norton <gnorton@customerndna.com>
3447         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
3448         Fix GetTypes() to support dynamically created assemblies.
3450 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
3452         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
3453         
3454         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
3455         previous patch.
3457         * reflection.h reflection.c loader.c: Allow dynamic construction of
3458         pinvoke methods. Fixes #65571.
3459         
3460         * reflection.c (mono_reflection_get_type): Revert previous change since
3461         it causes regressions.
3463 2004-09-08  Martin Baulig  <martin@ximian.com>
3465         * class.c (class_compute_field_layout): Don't call
3466         mono_class_layout_fields() for open generic instances.
3468 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
3469         * threads.c appdomain.c: fix typo in GC macro
3471 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3473         * threads.c: don't call mono_thread_detach() in start_wrapper(),
3474         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
3476 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
3478         * image.c (mono_image_close): Applied patch from 
3479         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
3480         assembly is loaded multiple times from data.
3481         
3482         * image.c (mono_image_open): Fix warning.
3484 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3486         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
3487         once. Fixes #58334.
3488         
3489         * reflection.c (mono_reflection_create_runtime_class): Initialize
3490         klass->nested_classes. Fixes #61224.
3492 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
3494         * threads.c: sched_yield() on exit, to allow threads to quit.
3496 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3498         * object.c (mono_unhandled_exception): Remove leftover debug code.
3500 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
3502         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
3504 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3506         * marshal.c (emit_marshal_array): Really null terminate string arrays.
3507         
3508         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
3510 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3512         * marshal.c (emit_marshal_array): Null terminate string arrays.
3513         
3514         * marshal.c (raise_auto_layout_exception): Fix warning.
3516         * reflection.c (mono_param_get_objects): Initialize the default value
3517         with DBNull.Value, not null. Fixes #62123.
3519 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
3521         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
3522         throw an exception with a cute explanation.
3524 2004-09-06  Dick Porter  <dick@ximian.com>
3526         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
3527         Close the new process's thread handle, as we don't use it.  The
3528         handle stays around forever otherwise.
3530 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3532         * object.c (arith_overflow): Fix warning.
3534         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
3535         calling conventions in method refs. Fixes #65352.
3537         * reflection.c: Fix warnings.
3539 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3541         * icall.c: Add a new icall for Array.Clear
3543 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3545         * object.c: When allocating an array, we have to throw
3546         an overflow exception if any of the lengths are < 0.
3548 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3550         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
3551         properly. Also move implementation of string array marshalling to 
3552         managed code. Fixes #42316.
3554 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3556         * assembly.c: provide more information when loading an assembly fails.
3558 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3560         * filewatcher.c: don't expect the development fam package to be
3561         installed.
3563 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
3565         * marshal.c: Make a copy of the signature cookie since it will be
3566         freed by the caller.
3567         
3568         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
3570         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
3572         * metadata.c (mono_metadata_free_marshal_spec): New function to free
3573         marshal specs.
3575         * marshal.c: More refactoring.
3576         
3577         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
3578         smaller functions.
3580 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
3582         * object.c: In mono_message_invoke, fill the output parameter array after
3583           calling the managed method (it was done before the call). This fixes
3584           bug #59299.
3586 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
3588         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
3589         as well.
3591 2004-09-02  Martin Baulig  <martin@ximian.com>
3593         * class.c (mono_class_instance_size): Don't allow generic type
3594         definitions or open generic instances.
3595         (mono_class_array_element_size): If we're a value type, call
3596         mono_class_instance_size() on the original class.
3598         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
3599         handle generic instances.
3601         * mono-debug-debugger.c (write_type): Handle generic instances
3602         like classes.
3604 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
3606         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
3607         the allocation request fails. Fixes #65089.
3609         * object.c (mono_runtime_free_method): Do not call mono_free_method.
3610         
3611         * object.c (mono_runtime_free_method): New function to free a dynamic
3612         method.
3614         * marshal.c (mono_delegate_free_ftnptr): New function to free the
3615         delegate trampoline.
3617         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
3618         with hasthis as dynamic,
3620         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
3622         * domain.c (mono_jit_info_table_remove): New function to remove an
3623         entry from the jit info table.
3625         * class-internals.h (MonoMethod): Add 'dynamic' field.
3627         * loader.c: Fix warnings.
3629 2004-09-01  Martin Baulig  <martin@ximian.com>
3631         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
3632         instead of mono_debugger_lock() because the latter one is a no-op
3633         unless running in the debugger.
3635 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
3637         * class.c (class_compute_field_layout): Classes with auto-layout or
3638         reference fields are not blittable.
3639         
3640 2004-09-01  Dick Porter  <dick@ximian.com>
3642         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
3643         mono_image_get_filename() to get the assembly location.
3645         * icall.c:
3646         * metadata.h: Fix compile warnings
3648 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
3650         * class.c (class_compute_field_layout): System.Object is blittable.
3652         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
3653         as in/out. Fixes #59909.
3655 2004-09-01  Martin Baulig  <martin@ximian.com>
3657         * metadata.h (MONO_TYPE_ISREFERENCE): Call
3658         mono_metadata_generic_inst_is_valuetype() if we're a generic
3659         instance to check whether our underlying type is a reference type.
3661 2004-09-01  Martin Baulig  <martin@ximian.com>
3663         * metadata.c (mono_type_size): If we're a generic instance, call
3664         mono_class_value_size() for value types.
3666 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
3668         * marshal.c: Implement more custom marshalling functionality. Fixes
3669         #64915.
3671 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
3673         * mono-debug.c, debug-mono-symfile.c: add some locking love.
3675 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
3677         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
3679         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
3681         * icall.c: Fix some warnings.
3683         * threads.c (abort_appdomain_thread): Fix unref errors.
3684         (mono_thread_current): Fix THREAD_DEBUG define.
3686 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
3688         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
3690         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
3692 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
3694         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
3695         string arrays.
3697 2004-08-28  Martin Baulig  <martin@ximian.com>
3699         * metadata.c
3700         (mono_metadata_generic_inst_is_valuetype): New public function.
3702         * metadata.h (MONO_TYPE_ISSTRUCT): Call
3703         mono_metadata_generic_inst_is_valuetype() if we're a generic
3704         instance to check whether our underlying type is a valuetype.
3706 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
3708         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
3709         #63768.
3711 2004-08-25  Martin Baulig  <martin@ximian.com>
3713         * loader.c (mono_get_method_from_token): Abstract methods can also
3714         be generic and thus have type parameters.
3716         * metadata-internals.h
3717         (MonoDynamicImage): Added `GPtrArray *gen_params'.
3719         * reflection.c (mono_image_get_generic_param_info): Don't create a
3720         metadata row, just add an entry to the `gen_params' array.
3721         (build_compressed_metadata): Sort the `gen_params' array and then
3722         actually create the metadata.
3724 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3726         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
3728 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
3730         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
3732 2004-08-24  Martin Baulig  <martin@ximian.com>
3734         * class.cs (mono_class_is_subclass_of): Like an interface, a
3735         generic instance also derives from System.Object.
3737 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
3739         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
3740         custom modifiers to be in any order. Fixes #61990.
3742 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
3744         * object.c: Register mono_object_new_fast icall.
3745         
3746         * object.c (mono_class_get_allocation_ftn): Return to calling
3747         mono_object_new_fast, since it seems faster to compute the object 
3748         size in unmanaged code than passing it as a parameter.
3750         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
3752         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
3753         this function with Boehm as the oom handler, so we don't have to check
3754         the result of GC_malloc.
3756         * object.c: Remove checks for oom.
3758         * object.h object.c (mono_class_get_allocation_ftn): New function to
3759         return the icall which can be used to allocate an instance of a given
3760         class. 
3762         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
3764         * class-internals.h: Add 'enabled' field.
3766 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
3768         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
3770 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
3771         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
3772         value 0x0010.
3774 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
3776         * appdomain.c: use the Tls function for appdomain too,
3777         at Zoltan's request. Actually return in mono_context_get
3779         * appdomain.c, profiler.c, threads.c: use __thread
3781 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
3783         * appdomain.c threads.c: Call GC_CreateThread on windows.
3785         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
3786         multiple libraries since this don't work on windows.
3788 2004-08-18  Martin Baulig  <martin@ximian.com>
3790         * class-internals.h
3791         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
3792         MonoMethodHeader.
3794         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
3795         MonoMethodNormal since we also need it for abstract and interface
3796         methods.
3798         * reflection.c
3799         (build_compressed_metadata): Sort the GenericParam table.
3800         (mono_image_create_token): Added `gboolean create_methodspec'
3801         argument; this is false when generating a MethodImpl token.
3802         (reflection_methodbuilder_to_mono_method): Abstract and interface
3803         methods may also have generic parameters.
3805 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
3807         * appdomain.c: thread local alloc
3809 2004-08-17  Martin Baulig  <martin@ximian.com>
3811         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
3813         * icall.c
3814         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
3815         argument.
3817         * class.c (mono_type_get_full_name): New public function.
3818         (mono_type_get_name): Don't include the type arguments.
3820 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
3822         * Makefile.am: Build static versions of libmetadata and libmonoruntime
3823         for inclusion into the mono executable.
3825 2004-08-16  Martin Baulig  <martin@ximian.com>
3827         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
3828         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
3830 2004-08-14  Martin Baulig  <martin@ximian.com>
3832         * class.c (dup_type): Also copy the `byref' field.
3834 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
3836         * reflection.c (create_dynamic_mono_image): Revert the last change 
3837         since it breaks bootstrap.
3839 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
3841         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
3843         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
3844         not free them with g_free.
3846 2004-08-11  Martin Baulig  <martin@ximian.com>
3848         * reflection.c (mono_reflection_setup_internal_class): Also call
3849         mono_class_setup_mono_type() if we already have a `tb->type.type'.
3851 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
3853         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
3854         called during default (first) AppDomain creation. Keep track of
3855         Evidence when loading assemblies.
3857 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
3859         * opcodes.c, opcodes.h: reduce runtime relocations.
3861 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
3863         * culture-info.h, locales.c: fixes and chages to sue the new
3864         optimized format of the locale data.
3865         * culture-info-tables.h: regenerated.
3867 2004-08-06  Geoff Norton <gnorton@customerdna.com>
3868         
3869         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
3871 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
3873         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
3874         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
3875         * domain-internals.h: icall declaration.
3876         * icall.c: icall registration.
3877         * object-internals.h: New fields in MonoAssembly for CAS.
3879 2004-08-05  Duncan Mak  <duncan@ximian.com>
3881         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
3882         CEE_LDELEM_ANY.
3884 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
3886         * reflection.c: fix to deal with object[] arrays in custom ctors
3887         (bug #62550).
3889 2004-08-05  Martin Baulig  <martin@ximian.com>
3891         * class.c (mono_class_array_element_size): Added support for
3892         generic instances and correctly handle "recursive" types.
3894 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
3896         * assembly.c: Fix warnings.
3898 2004-08-04  Martin Baulig  <martin@ximian.com>
3900         * class.c
3901         (mono_type_get_name_recurse): Added `gboolean include_arity'
3902         argument specifying whether or not we should include the generic
3903         arity in the type name.
3904         (_mono_type_get_name): New static function.
3905         (mono_class_setup_vtable): If we're a generic instance, don't
3906         include the generic arity in the names of explicit method
3907         implementations.        
3909 2004-08-03  Martin Baulig  <martin@ximian.com>
3911         * class.c (mono_type_get_name_recurse): Enclose the generic type
3912         arguments in `<', '>'.
3914 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3916         * gc.c: make GC warning messages use the trace API, they are just
3917         noise to most of the users.
3919 2004-08-03  Martin Baulig  <martin@ximian.com>
3921         * debug-mono-symfile.c (read_string): Correctly read the string.
3923 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
3925         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
3926         
3927         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
3928         icalls.
3929         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
3931 2004-07-30  Martin Baulig  <martin@ximian.com>
3933         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
3934         Reflect latest symbol writer changes.   
3936 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
3938         * object.c: always create an object if null is passed
3939         to Invoke() where a valuetype is expected.
3941 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
3943         * marshal.c (mono_marshal_init): make managed
3944         signatures match native ones better for 64bits.
3946 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3948         * appdomain.c: hack to build correctly the private bin path on windows.
3949         Fixes bug #61991.
3951 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
3953         * assembly.c: Load mscorlib from the correct framework directory
3954           (mono/<version>/mscorlib.dll).
3955         * appdomain.h: Added prototypes for new functions.
3956         * internals.h: Added some prototypes.
3957         * domain.c: When initializing the runtime, get from the executable and
3958           the configuration files the runtime version that the app supports.
3959           Added support methods for reading app.exe.config. Added list of versions
3960           supported by the JIT. Added two new methods: mono_init_from_assembly,
3961           which initializes the runtime and determines the required version from
3962           the provided exe file, and mono_init_version, which initializes
3963           the runtime using the provided version.
3964         * icall.c: Get machine.config from version-specific directory.
3965         * reflection.c: When generating an image, embed the version number
3966           of the current runtime.
3968 2004-07-28  Dick Porter  <dick@ximian.com>
3970         * socket-io.c
3971         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
3972         returned sockaddr size before creating the remote address object.
3973         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
3974         61608.
3976 2004-07-28  Dick Porter  <dick@ximian.com>
3978         * locales.c (string_invariant_compare_char): Fix invariant char
3979         compares between upper and lower cases.  Fixes bug 61458.
3981 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
3982         
3983         * marshal.c: actually cache stelem.ref wrappers.
3984         
3985 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
3987         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
3988         sections and remove the mono_cli_rva_map () function.
3990 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
3992         * debug-mono-symfile.c: fix one more endianess issue, from a patch
3993         by Geoff Norton (<gnorton@customerdna.com>).
3995 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
3997         * class.c: fix class loads for pointer types (typeof(int) !=
3998         typeof(int*)).
4000 2004-07-27  Martin Baulig  <martin@ximian.com>
4002         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
4003         reading the debugging information from an external ".mdb" file.
4005 2004-07-24  Martin Baulig  <martin@ximian.com>
4007         * reflection.c (mono_image_get_type_info): Only write a class
4008         layout entry if we actually have a size or a packing size.
4010 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
4012         * reflection.c (type_get_fully_qualified_name): 
4013         insert cast to get type checking of ?: with non-gcc compilers
4015 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
4017         * rand.c: use g_getenv for both lookups of
4018         MONO_EGD_SOCKET
4020 2004-07-17  Martin Baulig  <martin@ximian.com>
4022         * reflection.c (mono_reflection_bind_generic_method_parameters):
4023         Set `gmethod->reflection_info'.
4025 2004-07-17  Martin Baulig  <martin@ximian.com>
4027         * class.c (mono_class_create_from_typedef): Insert the newly
4028         created class into the hash table before computing the interfaces
4029         since we could be called recursively.
4031 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
4033         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
4034         function to implement stelem.ref in managed code
4035         * class-internals.h, debug-helpers.c: a new wrapper type
4036         for the above.
4038 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
4040         * gc.c: allow GC handles to work even when no GC is compiled in.
4041         Fix part of bug #61134 (GetAddrOfPinnedObject).
4043 2004-07-13  Peter Williams  <peter@newton.cx>
4045         * process.c (complete_path): Make sure we don't attempt to execute
4046         directories.
4048 2004-07-12  Geoff Norton <gnorton@customerdna.com>
4050         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
4051           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
4052           and will add/subtract the hour if needed
4054 2004-07-12  Martin Baulig  <martin@ximian.com>
4056         * reflection.c (mono_field_get_object): If we have
4057         `field->generic_info', take the attributes from
4058         `field->generic_info->generic_type'.    
4060 2004-07-12  Martin Baulig  <martin@ximian.com>
4062         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
4063         This function must be called before initializing the runtime.
4064         (mono_debug_init_1): New function; call this after initializing
4065         the runtime, but before loading the assembly.  It tells the
4066         debugger to load corlib and the builtin types.
4068         * mono-debug-debugger.c: Did some larger changes in the debugging
4069         code; support recursive class declarations, make sure we actually
4070         add all classes.
4072 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4074         * debug-helpers.c: undo my previous patch and fixed the real issue in
4075         ../mini/exceptions-x86.c
4077 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4079         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
4080         when no HOME env. variable was set and a NullRef was thrown in a .cctor
4081         called from other .cctors.
4083 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
4085         * loader.c: Removed the mono_loader_wine_init hack now that we are
4086         doing a managed version of Windows.Forms.
4088 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
4090         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
4091         threadpool.c, threads.c: remove static data from rootset.
4093 2004-07-09  Dick Porter  <dick@ximian.com>
4095         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
4096         Don't do any more processing if the matched length was 0.  It was
4097         increasing the size of the string before.  Fixes bug 61167.
4099 2004-07-09  Dick Porter  <dick@ximian.com>
4101         * socket-io.h:
4102         * socket-io.c
4103         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4104         Add support for SO_PEERCRED if its available.
4106 2004-07-09  Peter Bartok <pbartok@novell.com>
4107         * loader.c: winelib.exe.so error message is now only displayed if
4108         MONO_DEBUG is set. To help us avoid questions when people are trying
4109         out the new Managed.Windows.Forms.
4111 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
4113         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
4114         for isinst and castclass wrappers.
4116         * class-internals.h icall.c: Move registration and lookup of JIT icalls
4117         to libmetadata from the JIT, so they could be used by the marshalling
4118         code and the interpreter.
4120         * marshal.c: Register marshalling related JIT icalls here instead of
4121         in mini.c. Use CEE_MONO_ICALL instead of the family of 
4122         CEE_MONO_PROC<x> opcodes to call marshalling functions.
4124         * metadata.h: Remove unneeded marshalling conversions.
4126         * opcodes.c: Update for new opcodes.
4127         
4128 2004-07-08  Martin Baulig  <martin@ximian.com>
4130         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
4131         (mono_debug_get_domain_data): Make this function static.
4133 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
4135         * gc.c, object.h: add nice GC handle API for embedders.
4137 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
4139         * reflection.c: more changes for the new api
4141         * object.c: When we reflect on a field w/ a constant value, it
4142         will not have a memory location, so we must access metadata. Also,
4143         allow easier reading of strings so that we can read them from
4144         the constant data.
4146         * class.c (mono_class_layout_fields): no need for literal fields here.
4148         * class-internals.h: api changes for const fields
4150         * icall.c (ves_icall_get_enum_info): use new apis for const fields
4152 2004-07-06  Martin Baulig  <martin@ximian.com>
4154         * mono-debug.h: Increment version number to 44.
4156         * mono-debug.c (mono_debug_add_wrapper): The second argument is
4157         now a gpointer, rewrote this whole method.
4159         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
4160         function.  Add information about the wrapper in a new "misc table".
4162         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
4163         for the new misc table.
4165 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
4167         * metadata-internals.h image.c: Add a cache for helper signatures.
4169         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
4171 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
4173         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
4174         delegates from a delegate. Fixes #61033.
4175         
4176         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
4177         marshalling of stringbuilder arrays. Fixes #59900.
4179 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
4181         * icall.c: Add EnumBuilder:setup_enum_type icall.
4183 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
4185         * icall.c: Added a new icall for the property version of
4186         OffsetOfStringData.
4188 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
4190         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
4191         it has a constant size across platforms.
4193         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
4194         stack trace.
4196 2004-06-29  Martin Baulig  <martin@ximian.com>
4198         * mono-debug.c (mono_debug_add_method): Protect the whole function
4199         in mono_debugger_lock(), not just parts of it.
4201 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
4203         * reflection.c: make sure padding bytes in heaps are zeroed.
4205 2004-06-24  David Waite  <mass@akuma.org>
4207         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
4208         image.c, loader.c, locales.c, marshal.c, metadata.c,
4209         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
4210         string-icalls.c, threads.c: change to C90-style comments from C99 /
4211         C++ -style
4213 2004-06-24  Dick Porter  <dick@ximian.com>
4215         * threads.c
4216         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
4217         return createdNew.  Fixes bug 60412.
4219         * threads-types.h: 
4220         * icall.c: Add createdNew parameter to CreateMutex icall
4222 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
4224         * reflection.c, object-internals.h: save default value in params.
4226 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4228         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
4229         no need to build a new path combining that with the application base.
4230         Fixes bug #60442.
4232 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
4234         * reflection.c: fixed minor standard compliance issues.
4236 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
4238         * reflection.c: fixed issue with encoding some custom attributes
4239         (arrays in properties and fields, bug #60411).
4241 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4243         * reflection.c: fix start address when copying the public key token.
4245 2004-06-23  Martin Baulig  <martin@ximian.com>
4247         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
4248         the `exc' object in a static object to put it into the GC's root set.
4250 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
4252         * reflection.c: make mono_reflection_setup_internal_class ()
4253         callable a second time to setup a new parent class.
4255 2004-06-23  Dick Porter  <dick@ximian.com>
4257         * threads.c: Check for WAIT_IO_COMPLETION return values.
4259 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
4261         * appdomain.c: Removed the g_free on the public key token. Now copy 
4262         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
4263         * assembly.c: Added public key token string value when loading 
4264         assemblies. Fix bug #60439.
4265         * icall.c: Added missing informations (like public key) in 
4266         GetReferencedAssemblies. Fix #60519.
4267         * image.h: Changed definition for public key token from const char*
4268         public_tok_value to guchar public_key_token [17];
4269         * reflection.c: Updated for changes to public key token.
4271 2004-06-22  Lluis Sanchez Gual
4273         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
4274         for the field in base classes.
4276 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
4278         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
4279         mark headers as not supported, they are installed only for use by the
4280         debugger.
4282 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
4284         * *.c, *.h: avoid namespace pollution in public headers.
4286 2004-06-21  Martin Baulig  <martin@ximian.com>
4288         * exception.c (mono_get_exception_security): It's in
4289         "System.Security", not in "System".
4291         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
4292         the exception classes.
4294 2004-06-21  Martin Baulig  <martin@ximian.com>
4296         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
4297         Protect the exception object from being finalized.
4299 2004-06-21  Martin Baulig  <martin@ximian.com>
4301         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
4302         public function.
4304 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
4306         * reflection.c: Load the assembly in mono_reflection_type_from_name,
4307         if it was not loaded before. Fix parts of #60439.
4309 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
4311         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
4312         code that was broken since Ben's change: wrappers are now
4313         dependent on the method signature only again.
4315 2004-06-21  Martin Baulig  <martin@ximian.com>
4317         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
4318         added interface support.
4320 2004-06-21  Martin Baulig  <martin@ximian.com>
4322         * class.c (mono_vtable_get_static_field_data): New public method.
4324 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
4326         * filewatcher.c : Windows build fix to be compliant with API changes.
4328 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
4330         * class.h, class.c: more accessors.
4331         * metadata.h, metadata.c: prepare for hiding MonoType and
4332         MonoMethodSignature: people should use the accessors from now on
4333         outside of the tree.
4335 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
4337         * *.c, *.h: more API cleanups.
4339 2004-06-18  Jackson Harper  <jackson@ximian.com>
4341         * assembly.c: Trace loading assemblies.
4342         * loader.c: Trace loading native libraries.
4343         * mono-config.c: Trace loading config files.
4344         
4345 2004-06-18  Dick Porter  <dick@ximian.com>
4347         * locales.c: Tell ICU the lengths of strings, it can cope with
4348         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
4350 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
4352         * image.c: swapped name/filename;
4354 2004-06-18  Martin Baulig  <martin@ximian.com>
4356         * mono-debug-debugger.c (write_class): Write the parent class at
4357         the end of the header.
4359 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
4361         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
4363 2004-06-17  Raja R Harinath  <rharinath@novell.com>
4365         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
4366         (bundle_obj): New conditional define.
4367         (BUILT_SOURCES): Remove.
4368         ($(bundle_srcs)): Make parallel-make safe.
4369         (libmonoruntime_la_LIBADD): Make unconditional.
4370         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
4371         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
4373 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4375         * culture-info-tables.h: It was inconsistent with the latest
4376           supp info files.
4378 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
4380         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
4381         be loaded.
4383         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
4384         with gcc 2.95.
4386 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
4388         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
4389         cleaned up public header threads.h.
4391 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
4393         * Makefile.am, *.c, *.h: more API cleanups.
4395 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
4397         * Makefile.am: removed monosn from compilation.
4398         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
4399         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
4400         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
4401         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
4402         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
4403         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
4405 2004-06-15  Jackson Harper  <jackson@ximian.com>
4407         * assembly.c: Make locales lower case when searching the GAC for
4408         assemblies. gacutil will always make locales lowercase when
4409         installing so this effectively makes them case insensitive.
4410         
4411 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
4413         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
4414         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
4415           parameter which allows to choose whether the wait can be interrupted or 
4416           not. Also added the method mono_monitor_enter(), which locks the monitor
4417           using an infinite wait and without allowing interruption.
4418           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
4419           interrupted.
4420         * object.h: Added new fields in MonoThread. suspend_event holds the event
4421           used to susped/resume the thread. synch_lock is the lock object to use for
4422           modifying the thread state.
4423         * threads.c: Use the new synch_lock object for locking, instead of "this",
4424           which can generate deadlocks.
4425           Moved thread state change in Thread.Sleep and Thread.Join from managed
4426           to unmanaged code. This avoids a deadlock when the thread was suspended
4427           just after acquiring the thread lock.
4428           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
4429           Implemented Thread.Suspend using an event instead of ThreadSuspend,
4430           which is not fully implemented in the io-layer.
4431         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
4433 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
4435         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
4436         threads-types.h: more API cleanups.
4438 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
4440         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
4441         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
4442         threadpool.c, threads.c: first pass at the exported API cleanup.
4444 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
4446         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
4448 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4450         * icall.c: added internalGetHome.
4452 2004-06-14  Dick Porter  <dick@ximian.com>
4454         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
4455         possible to return successfully when '.' or '..' were the only
4456         entries in a directory, but were skipped.  The MonoIOStat was not
4457         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
4458         Fixes bug 59574.
4460 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
4462         * reflection.c: make binaries run on .Net 1.1 by default.
4464 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
4466         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
4468 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
4470         * marshal.c: keep track of struct size with explicit layout
4471         (bug #59979).
4473 2004-06-12  Martin Baulig  <martin@ximian.com>
4475         * mono-debug-debugger.c: Comment out a debugging g_message().
4477 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
4479         * reflection.c, reflection.h: do not free custom attrs that are cached.
4480         * icall.c: use braces to make code clearer.
4482 2004-06-11  Martin Baulig  <martin@ximian.com>
4484         * class.h (MonoInflatedField): New type.
4485         (MonoClassField): Replaced `MonoType *generic_type' with
4486         `MonoInflatedField *generic_info'.
4488         * icall.c
4489         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
4491 2004-06-11  Martin Baulig  <martin@ximian.com>
4493         * reflection.c (mono_image_create_method_token): Correctly encode
4494         varargs methods.
4496 2004-06-11  Martin Baulig  <martin@ximian.com>
4498         * metadata.c (mono_metadata_parse_method_signature): When parsing
4499         a MethodDef which has VarArgs, also set sentinelpos if we don't
4500         have any parameters.
4502 2004-06-11  Martin Baulig  <martin@ximian.com>
4504         * verify.c (mono_method_verify): In CEE_CALL, use
4505         mono_method_get_signature() to get the method's signature, unless
4506         we're a PInvoke method.
4508 2004-06-10  Jackson Harper  <jackson@ximian.com>
4510         * assembly.c: Use <path>/lib/mono/gac for the extra paths
4511         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
4512         logical name as the supplied path is just a prefix to the gac not
4513         the direct path to it.
4514         
4515 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
4517         * reflection.c: make the token for a created method match
4518         the token of the MethodBuilder it was created from
4519         (IKVM requires this behaviour now).
4521 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
4523         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
4524         reflection.c, socket-io.c: leak fixes.
4526 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
4528         * icall.c: handle sentinel pos in vararg methods in position different
4529         from 0.
4531 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4533         * culture-info-tables.h: freshly generated.
4535 2004-06-09  Martin Baulig  <martin@ximian.com>
4537         * loader.c (mono_get_method_constrained): Call `mono_class_init
4538         (constrained_class)'.   
4540 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
4542         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
4543         any methods. Fixes #59629.
4545 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4547         * culture-info-tables.h: reflecting locale-builder updates.
4549 2004-06-08  Dick Porter  <dick@ximian.com>
4551         * object.h:
4552         * locales.c: Fixed compile warnings, including a real bug in
4553         CompareInfo_internal_compare.
4554         
4555 2004-06-08  Dick Porter  <dick@ximian.com>
4557         * locales.c
4558         (ves_icall_System_Globalization_CompareInfo_internal_index):
4559         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
4560         Double-check the resuls of usearches, because ICU currently
4561         ignores most of the collator settings here.  Fixes bug 59720.
4562         
4563 2004-06-08  Dick Porter  <dick@ximian.com>
4565         * locales.c
4566         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
4567         Fix memory leak and segfault-causing typo.  No idea how this one
4568         lasted so long without being noticed.
4570 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
4572         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
4573         any methods. Fixes #59629.
4575 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4577         * assembly.c:
4578         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
4579         own the critical section before). Removed dead code (that's done
4580         in the preload hook).
4582         (mono_assembly_load_with_partial_name): call the preload hook.
4584 2004-06-08  Martin Baulig  <martin@ximian.com>
4586         * metadata.c (mono_metadata_signature_alloc): Default
4587         `sentinelpos' to -1.
4589         * reflection.c (mono_image_get_array_token): Likewise.
4591 2004-06-08  Martin Baulig  <martin@ximian.com>
4593         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
4595         * metadata.c (mono_metadata_parse_method_signature): When parsing
4596         a MethodDef which has VarArgs, set sentinelpos.
4598         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
4599         `gint16' since we're using -1 for non-varargs methods.
4601         * reflection.c
4602         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
4603         (method_encode_signature): Added varargs support.
4604         (method_builder_encode_signature): Likewise.
4605         (mono_image_get_varargs_method_token): New static method.
4606         (mono_image_create_method_token): New public method; this is
4607         called via an icall instead of mono_image_create_token() when
4608         calling a varargs method.       
4610 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
4612         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
4614 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4616         * culture-info-tables.h : Reflecting the latest locale-builder that
4617           fixed empty array representation ({} to {0}).
4619 2004-06-07  Jackson Harper  <jackson@ximian.com>
4621         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
4622         looking up extra gac paths. This allows MONO_GAC_PATH to act
4623         exactly like a prefix.
4624         
4625 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
4627         * reflection.c (mono_reflection_type_from_name): Make a copy of the
4628         type name before modifying it. Fixes #59405.
4630 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4632         * culture-info.h: added fields for "all datetime patterns".
4633         * locales.c: (  ves_icall_System_Globalization_CultureInfo
4634           _construct_datetime_format ()): fill xxx_patterns fields.
4635         * object.h: added fields for "all datetime patterns" to
4636           MonoDateTimeFormatInfo.
4637         * culture-info-tables.h: reflecting locale-builder updates.
4639 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
4641         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
4642         the event has no add and remove methods. Fixes #59629.
4644 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
4646         * object.c: Fixed possible integer overflow when allocating large
4647         strings.
4649 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
4651         * culture-info-tables.h: reflecting locale-builder updates.
4653 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
4655         * culture-info-tables.h: reflecting locale-builder updates.
4657 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
4659         * culture-info-tables.h: reflecting locale-builder updates.
4661 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
4663         * threads.c: Made Thread.Sleep abortable.
4665 2004-06-02  Martin Baulig  <martin@ximian.com>
4667         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
4669         * debug-mono-symfile.h: Bumped symbol file version number to 37.
4671 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
4673         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
4675 2004-05-30  Jackson Harper  <jackson@ximian.com>
4677         * reflection.c: Do not hardcode assembly versions or public key
4678         tokens anymore. All of this except the corlib section was dead
4679         code anyways.
4680         
4681 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
4683         * object.c (mono_runtime_invoke_array): Automatically create boxed
4684         objects for byref valuetypes if needed. Fixes #59300.
4685         
4686         * object.c (mono_method_return_message_restore): Handle 
4687         MONO_TYPE_OBJECT as well.
4689 2004-05-28  Jackson Harper  <jackson@ximian.com>
4691         * reflection.c: The modified type encoding was causing build
4692         problems. Reverted for now.
4693         
4694 2004-05-28  Jackson Harper  <jackson@ximian.com>
4696         * reflection.c/h: Take an assembly ref so that we dont create
4697         fully qualified names when encoding types in the same assembly as
4698         the custom attribute being emitted.
4699         * appdomain.c: Increment version number.
4700         
4701 2004-05-26  Duncan Mak  <duncan@ximian.com>
4703         * icall.c
4704         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4705         Set the full version number (major, minor, build, revision).
4707 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
4709         * marshal.c (emit_struct_conv): increment src/dst after blit
4710         (mono_marshal_get_managed_wrapper,
4711         mono_marshal_get_native_wrapper): make sure we have marshalling
4712         info before marshalling params (info computation affects
4713         blittable)
4715         * class.c (class_compute_field_layout): correctly deal with
4716         blittable
4717         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
4718         value types (as per what windows dows by default)
4719         (mono_class_setup_mono_type): System.ValueType is blittable
4720         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
4721         blittable
4723         * marshal.c (mono_marshal_load_type_info): flag types  as
4724         non-blittable if the native layout doesn't match the managed
4725         layout
4727 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4729         * appdomain.c: don't add stuff in the private search path that is
4730         above the application base. If application base is not set, there's
4731         no private search path.
4733 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
4735         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
4736         byref struct arguments in native->managed marshalling.
4738 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
4740         * marshal.c (mono_marshal_get_runtime_invoke): correctly
4741         cache methods using signature (special case for methods
4742         that are value type or string class)
4743         
4744         * image.c (mono_image_close): clean up allocated GSList's
4745         in runtime_invoke_cache.
4747 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4749         * mono-config.c: set the correct path for mono_cfg_dir on windows when
4750         there's no MONO_CFG_DIR environment variable defined.
4752 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4754         * threads.c: windows version must be >= 0x0500 to include OpenThread.
4756 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
4758         * threadpool.c: Really wait for 500ms after the async call, even if the wait
4759           is interrumped.
4760         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
4761           before waiting for it, and call CloseHandle after the wait to unref it.
4762           This will make sure that handles are not disposed too early.
4764 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4766         * appdomain.c:
4767         * appdomain.h:
4768         * icall.c: removed
4769         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
4770         needed now.
4772         * object.c: se the application_base only for the domain that runs
4773         Main. Fixes bug #59216,
4775 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4777         * appdomain.c:
4778         * object.c: only the domain in which Main is run have
4779         SetupInformation.ConfigurationFile set, so moved a few lines from
4780         appdomain.c to object.c.
4782 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4784         * appdomain.c: we tried to load [name].(dll|exe), but according
4785         to bug #57710, we must also try [culture]/[name].(dll|exe) and
4786         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
4787         There's a test case attached to bug #58922.
4789 2004-05-27  Dick Porter  <dick@ximian.com>
4791         * icall.c:
4792         * file-io.c: Implemented icalls for locking and unlocking regions
4793         in a file.
4794         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
4795         FALSE on error (fixes both compiler warning and real bug.)
4797 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
4799         * culture-info-tables.h: reflecting locale-builder updates.
4801           (Added missing ChangeLog entry for 05/26)
4803 2004-05-27  Jackson Harper  <jackson@ximian.com>
4805         * locales.c: Fix some cut and paste errors.
4806         
4807 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4809         * mono-config.c: set the correct path for config. directory on windows.
4811 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
4813         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
4814           on win32.
4816 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
4818         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
4819         from pinvoke functions.
4820         
4821         * marshal.c (mono_ftnptr_to_delegate): Implement this.
4823 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
4825         * culture-info-tables.h: reflecting locale-builder updates.
4827 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
4829         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
4830         #59086.
4832 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
4834         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
4835         * icall.c: Modified icalls for RNG.
4836         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
4837         Windows (CryptoAPI).
4839 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
4841         * locales.c: Fix build.
4843 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
4845         * culture-info-tables.h: reflecting locale-builder updates.
4847 2004-05-25  Jackson Harper  <jackson@ximian.com>
4849         * locales.c: When creating the current culture use the $LANGs
4850         specific culture. So DateTimeFormat and NumberFormat entries are created.
4851         
4852 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
4854         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
4855         a char array as parameter.
4857 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
4859         * image.c: In mono_image_open(), always use an absolute path name to
4860           look for already loaded images.
4862 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
4864         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
4865         missing in the windows build (like older cygwin include files).
4867 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
4869         * icall.c: Fixed check for possible integer overflow in Buffer_
4870         BlockCopy icall. Replaced comments style // by /* */.
4872 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
4874         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
4875         
4876         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
4877         check after MONO_VTADDR. Fixes pinvoke2.exe.
4879         * marshal.h marshal.c metadata.h: Add beginnings of support for
4880         ftnptr -> delegate marshalling.
4882 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
4884         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
4885         * threads.c: Fix warnings.
4887 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
4889         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
4890         * icall.c: Registered icalls for Suspend and Resume.
4891         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
4892           Thread.Abort.
4893         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
4894         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
4895         * process.c: Use WaitForSingleObjectEx.
4896         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
4897           checkpoints.
4898         * threads.c, threads.h: Make use of new Ex wait methods. Improved
4899           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
4900           for Suspend and Resume. Added new mono_thread_stop, used for stoping
4901           background threads. Added basic support for Abort in Windows.
4902           Start new threads using a managed delegate invoke wrapper. This wrapper
4903           has an interruption checkpoint that is needed since an interruption
4904           can be requested before the thread leaves the unmanaged code that starts 
4905           the thread.
4906         * marshal.c: Added interruption checkpoint after every native call, and
4907           also before managed calls for wrappers called from unmanaged code to
4908           go into managed code.
4909         * object.h: Added new field in MonoThread to keep track of interruption
4910           requests.
4912 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
4914         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
4915         calls.
4917 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4919         * appdomain.c:
4920         * assembly.c:
4921         * gc.c:
4922         * locales.c:
4923         * mono-config.c:
4924         * rand.c: getenv -> g_getenv (windows!)
4926         * process.c: complete_path is also used on non-windows platforms.
4928 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4930         * icall.c: new signature for Process_Start.
4932         * process.[ch]: new signature for Process_Start. If we're on windows
4933         and UseShellExecute is false, we have to search for the program by
4934         ourselves if we don't get a full path.
4936 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
4938         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
4939         marshalling and call CleanUpNativeData if needed. Fixes #58646.
4941 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4943         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
4944         Fixes bug #58373.
4946 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4948         * process.c: use double quotes to quote program name and arguments on
4949         windows. Fixes bug #58575.
4951 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4953         * file-io.c: don't return "." and ".." when using windows Find*File.
4955 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
4957         * marshal.c: Don't pass wrappers to message init because method 
4958         addressed used to lookup metadata. part of remoting[2|3] fix.
4960 2004-05-15  Jackson Harper  <jackson@ximian.com>
4962         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
4963         path is essentially the same as MONO_PATH except that it points to
4964         GACs instead of lib directories.
4965         * loader.h: The user gac is gone so we dont need function to
4966         enable/disable it.
4967         * mono-config.c: user gac option is now gone.
4968         
4969 2004-05-15  Jackson Harper  <jackson@ximian.com>
4971         * culture-info.h: Make defines more consistent, add calendar data
4972         to the culture info table.
4973         * culture-info-tables.h: Add basic calendar data. Basically
4974         everyone gets default gregorian until all the data is
4975         updated.
4976         * locales.c: Use the new consistent defines. Set calendar data for
4977         culture info objects.
4978         * object.h: add a field for calendar data to CultureInfo
4979         
4980 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
4982         * image.c: image->runtime_invoke_cache is keyed on signatures now.
4983         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
4984         a signature.
4985         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
4986         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
4987         an extra param that is the pointer of the method to invoke. The IL for
4988         the invoke method is no longer specific to the method, but to the
4989         signature of the method. Thus, we can share the same code for multiple
4990         methods. This reduces the number of methods that have to be compiled.
4992 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
4994         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
4996         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4998         * icall.c: Optimize Buffer.BlockCopy.
5000 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5002         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
5003         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
5004         quote). Changed them to "MMMM yyyy".
5006 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
5008         * rand.c
5009         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
5011 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
5013         * reflection.h: Updated after changes to managed structures.
5015         * appdomain.c: Bump corlib version.
5017 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5019         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
5020         windows.
5022 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5024         * Makefile.am: link to ../os/libmonoos.la on windows.
5026         * assembly.c:
5027                 -If MONO_DEBUG, warn about non-existing directories in
5028                 MONO_PATH.
5029                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
5030                 compile time variable.
5031                 -Removed init_default_path and call mono_set_rootdir from
5032                 libmonoos.a instead (windows only).
5034         * assembly.h: declare mono_assembly_getrootdir().
5036         * domain.c:
5037         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
5039         * loader.c: s/getenv/g_getenv/
5041 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
5043         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
5045         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
5047         * metadata.h: Add new marshalling conversions.
5049         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
5050         function.
5052         * reflection.c (mono_reflection_get_type): Lookup the type in all
5053         modules of a multi-module assembly. Fixes #58291.
5055 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
5057         * threads.c: Before aborting a background, set the StopRequested
5058         state.  This avoids throwing the Abort exception.
5059         In mono_thread_manage, don't continue with the shutdown until all
5060         aborted threads have actually stopped.
5062 2004-05-10  Jackson Harper  <jackson@ximian.com>
5064         * locales.c: Remove the modifier from culture names.
5065         
5066 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5068         * Makefile.am: monosn is not installed any more. It has been deprecated
5069         in favor of sn.
5071 2004-05-07  Jackson Harper  <jackson@ximian.com>
5073         * locales.c
5074         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
5075         Fix array construction, add bailout if the length is 0.
5077 2004-05-07  Dick Porter  <dick@ximian.com>
5079         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
5080         machine doesn't have a DNS entry.  Patch by Urs Muff
5081         (umuff@quark.com), fixes bug 57928.
5083 2004-05-06  Jackson Harper  <jackson@ximian.com>
5085         * reflection.c: Handle null PublicTokens properly. alloc mem for
5086         assembly names culture so we dont crash when freeing it.
5087         
5088 2004-05-06  Jackson Harper  <jackson@ximian.com>
5090         * assembly.c: Check the usergac when loading with partial names.
5091         
5092 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
5094         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
5095         does nothing for now (not required for Linux/Windows) but the class
5096         library can call it (and a newer or modified runtime could need it).
5097         * icall.c: Registred icall.
5099 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5101         * loader.c: prints a message on module loading error we set MONO_DEBUG
5102         environment variable.
5104 2004-05-05  Jackson Harper  <jackson@ximian.com>
5106         * appdomain.c: Handle PublicKeyToken=null properly.
5107         
5108 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
5110         * environment.c|h: Added icall ves_icall_System_Environment_
5111         GetOSVersionString to get the current OS version as a string.
5112         * icall.c: Registred icall.
5114 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
5116         * object.c: in mono_object_get_virtual_method(), take into account that
5117         non-virtual methods don't have a slot in the vtable. Check needed when
5118         the object is a proxy.
5120 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
5122         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
5123         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
5125         * object.c (mono_class_compute_gc_descriptor): Fix warning.
5127         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
5128         passed when a valuetype is expected.
5130         * object.c (mono_unhandled_exception): Only set the exit code if the
5131         exception happens in the main thread. Fixes thread5.exe.
5133         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
5134         invalid names. Fixes #58047.
5136 2004-05-03  Jackson Harper  <jackson@ximian.com>
5138         * assembly.c: This line was committed accidently and is unneeded.
5139         
5140 2004-05-03  Jackson Harper  <jackson@ximian.com>
5142         * icall.c: Add new icall for Assembly::LoadWithPartialName
5143         * assembly.c/.h: new function that probes the GAC to load partial
5144         assembly names by Paolo Molaro.
5145         
5146 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5148         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
5149         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
5150         (type_get_fully_qualified_name): Added PublicKeyToken when building a
5151         full type name.
5153 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5155         * appdomain.c: fixed check for 'neutral' culture and removed warning.
5156         * reflection.c: fix bug when parsing a full type name and Version is not
5157         the last thing in the string.
5159 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
5161         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
5162         crashes when it is freed.
5164 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5166         * assembly.c: print the compat warning to stderr.
5168 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
5170         * assembly.c (mono_assembly_load_references): Add a compatibility
5171         hack to run old applications that might be still referencing the
5172         3300-based assemblies, only do this for System.xxx.
5174 2004-05-01  Jackson Harper  <jackson@ximian.com>
5176         * appdomain.c: If the culture is neutral we set it to "".
5177         
5178 2004-04-29  Jackson Harper  <jackson@ximian.com>
5180         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
5182 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5184         * string-icalls.c: added low overhead function for copying chars
5185         * icall.c: added needed icall for the above function
5187 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5189         * icall.c: fix return value of get_global_assembly_cache.  Implemented
5190         Environment.GetLogicalDrives.
5192 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
5194         * rand.c: try and talk to egd or prngd
5195         for random bytes if opening devices fail.
5197 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
5199         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
5200         alignment for the type using the native alignment of its members 
5201         instead of using klass->min_align.
5203         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
5205 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5207         * file-io.c:
5208         * socket-io.c: added check for sys/aio.h.
5210 2004-04-28  Dick Porter  <dick@ximian.com>
5212         * threads.c: Don't abort a thread thats already aborting, when
5213         terminating everything.
5215 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5217         * icall.c: added 2 new async calls for Socket.
5219         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
5220         IO on *nix systems.
5222         * threadpool.c: removed unused variable.
5224 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
5226         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
5228 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5230         * locales.c: put back string_invariant_tolower () and
5231         string_invariant_toupper ().
5233 2004-04-26 David Waite <mass@akuma.org>
5235         * file-io.h:
5236         * socket-io.h:
5237         * threads.h:
5238         * unicode.h: remove comma from end of enumeration declarations
5240 2004-04-26 David Waite <mass@akuma.org>
5242         * debug-mono-symfile.h:
5243         * decimal.c:
5244         * mono_debug.h:
5245         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
5248 2004-04-26  Jackson Harper  <jackson@ximian.com>
5250         * appdomain.c: Increment version number.
5251         
5252 2004-04-26  Jackson Harper  <jackson@ximian.com>
5254         * appdomain.c: Set assembly references public token value when
5255         PublicKeyToken is specified, not the hash_value. Free public token
5256         values when free assembly name data. Previously the public key
5257         token was hex decoded, however we are using hex encoded public key
5258         tokens, so this is not neccasary.
5259         * assembly.c: Lookup assemblies in the gac if their public token
5260         value is set. Add function to allow enabling user gac
5261         lookups. Specify whether or not the assembly was loaded from the
5262         GAC. Compare full assembly names when checking the cache for
5263         assemblies (Temporarily disabled see comment in code). Remove
5264         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
5265         specifies trace-loader they get extra info to stdout on the
5266         loading of assemblies.
5267         * image.h: Add a field for an assembly references public token
5268         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
5269         whether an assembly has been loaded from the GAC.
5270         * image.c: Remove a corlib -> mscorlib name mapping.
5271         * loader.h: Add function to enable/disable the user gac.
5272         * mono-config.c: Check if the usergac is enabled in the config
5273         file.
5274         * icall.c: New icall to determine whether or not an assembly has
5275         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
5276         * tabldefs.h: Add constant for assemblyref flag that specifies a
5277         full public key is used instead of a public token.
5278         * reflection.c: Remove mscorlib -> corlib mappings. Set
5279         PublicTokenValue instead of hash value. This value is a hex
5280         string so it does not need to be expanded.
5282 2004-04-26  Martin Baulig  <martin@ximian.com>
5284         * mono-debug-debugger.c (mono_debugger_initialize): Set
5285         `mono_debugger_initialized' before calling mono_debug_lock().
5287 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
5289         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
5290           InternalToUpper/InternalToLower.
5291         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
5292           removed invariant culture shortcut.  This is now done in managed code.
5293         * locales.c: (string_invariant_toupper/tolower) removed.
5295 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5297         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
5298         Added Poll internal call.
5300         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
5301         call for Poll. Select was too heavy for polling a single socket.
5303         * threadpool.[ch]: added mono_threadpool_cleanup.
5304         * threads.c: use it. Don't use Thread_Abort on windows.
5306 2004-04-23  Martin Baulig  <martin@ximian.com>
5308         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
5310 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
5312         * icall.c: Registred new icalls for key pair protection and added an
5313         icall for Environment.GetFolderPath on Windows.
5314         * security.c|h: Added new icalls for key pair protection.
5316 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5318         * socket-io.c: don't display the non-supported family warning for known
5319         families. Now this is not displayed on windows when checking support
5320         for IPv4/IPv6.
5322 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5324         * class.c: don't display the layout warning for static fields.
5326 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
5328         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
5329         * locales.c, locales.h: Added new icalls for culture-specific
5330         Char.ToLower and Char.ToUpper.
5332 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5334         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
5335         by David Waite.
5337 2004-04-20  Martin Baulig  <martin@ximian.com>
5339         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
5340         of the type name before passing it to mono_reflection_type_from_name().
5342 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
5344         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
5345         encodings here. Fixes #56965.
5347 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
5349         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
5350         fix test on strstr result not that I can see anything that
5351         relies on the result.
5353 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
5355         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
5356         Fixes #57081.
5358         * marshal.c (mono_marshal_get_string_encoding): New helper function.
5360         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
5361         function to determine which marshalling to use for strings. Fixes
5362         #56965.
5364         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
5366         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
5368 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
5370         * icall.c: #include mono-config.h
5372 2004-04-15  Jackson Harper  <jackson@ximian.com>
5374         * culture-info-tables.h: Fix date formats for en-US culture.
5375         
5376 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
5378         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
5379         ThreadPool.SetMinThreads.
5380         * threadpool.c: Implemented ThreadPool.GetMinThreads and
5381         ThreadPool.SetMinThreads.
5383 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
5385         * mono-config.c: also load the .config file in the directory
5386         where the assembly was found.
5388 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
5390         * assembly.c: load per-assembly config files.
5391         * icall.c: decrapified code to get the config dir and moved to
5392         mono-config.c.
5393         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
5394         per-assembly config files. When doing a dll map lookup give precedence
5395         to the per-assembly data.
5397 2004-04-14  Martin Baulig  <martin@ximian.com>
5399         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
5400         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
5401         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
5403         * mono-debugger-debugger.c: While the debugger is locked, remember
5404         whether the symbol tables have changes and send one single
5405         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
5407 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
5409         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
5411         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
5412         function.
5414         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
5415         account when marshalling string arrays. Fixes #56965.
5417 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5419         * icall.c: Add new icalls mapping for security.
5420         * security.c|h: Add internal calls for WindowsIdentity,
5421         WindowsImpersonationContext and WindowsPrincipal.
5423 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
5425         * class.c: Added comment to ensure the System.MonoDummy class
5426         is removed when no longer necessary
5428 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
5430         * appdomain.c: Pass arguments to the bootstraping exceptions to
5431         minimize JITed methods at boot
5433         * metadata.c (mono_exception_from_name_two_strings): Allow for the
5434         second string to be null.
5436         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
5437         Change the protocol to minimize the JIT methods at startup.  Now
5438         it Returns the internal codepage, if the value of "int_code_page"
5439         is 1 at entry, and we can not compute a suitable code page
5440         number, returns the code page as a string.
5442 2004-04-13  Jackson Harper  <jackson@ximian.com>
5444         * culture-info-tables.h: Fix number of decimal digits for all
5445         english locales.
5447 2004-04-13  Jackson Harper  <jackson@ximian.com>
5449         * icall.c: Clairfy out of sync error message. It is not always
5450         your corlib that is out of sync.
5452 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
5454         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
5455         properties when only the set accessor is overriden. Fixes #55874.
5457 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
5459         * assembly.c (mono_assembly_load_references): Make this thread safe.
5460         Fixes #56327.
5462 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
5464         * monosn.c: Add missing initialization calls.
5466 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
5468         * locales.c:
5469         ves_icall_System_Globalization_CultureInfo_construct_number_format
5470         Fix g_assert so it compiles on fussier compilers re int/ptr
5471         mismatch
5473 2004-04-08  Dick Porter  <dick@ximian.com>
5475         * socket-io.h:
5476         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
5477         53992.  Also rearrange the code so that the internal calls return
5478         an error value and exceptions are thrown from managed code.
5480         * icall.c: Add type info to the socket icalls.
5482 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5484         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
5485         owes me a beer.
5487 2004-04-07  Martin Baulig  <martin@ximian.com>
5489         * class.c (mono_class_from_generic_parameter): Don't default
5490         `klass->parent' to `mono_defaults.object_type'.
5492 2004-04-07  Martin Baulig  <martin@ximian.com>
5494         * reflection.c (mono_reflection_initialize_generic_parameter): Set
5495         `param->pklass->reflection_info'.       
5497 2004-04-07  Jackson Harper  <jackson@ximian.com>
5499         * culture-info-tables.h: Fix date separator symbol.
5500         
5501 2004-04-07  Martin Baulig  <martin@ximian.com>
5503         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
5504         from System.Type to System.MonoType.
5506 2004-04-07  Martin Baulig  <martin@ximian.com>
5508         * reflection.h
5509         (MonoReflectionGenericParam): Added `has_reference_type' and
5510         `has_value_type' fields.
5512         * reflection.c (mono_image_get_generic_param_info): Encode the
5513         correct flags if we have the `class' or `struct' constraint.
5515 2004-04-07  Martin Baulig  <martin@ximian.com>
5517         * reflection.h
5518         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
5520 2004-04-07  Jackson Harper  <jackson@ximian.com>
5522         * appdomain.c: Revert extra patches, just wanted to bump the
5523         version number.
5524         
5525 2004-04-07  Jackson Harper  <jackson@ximian.com>
5527         * Makefile.am: Add culture-info private headers.
5528         * icall.c: Add new icalls for contructing locales.
5529         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
5530         * locales.h: Declare new culture info construction methods.
5531         * object.h: Add new fields used to avoid the CultureMap to
5532         MonoCultureInfo.
5533         * culture-info.h: Definition of structs used in the culture info
5534         tables.
5535         * culture-info-tables.h: Autogenerated tables that contain culture
5536         info data. This file was generated with the locale-builder tool.
5537         * appdomain.c: Incement corlib version number.
5538         
5539 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
5541         * appdomain.c: (mono_runtime_init) move mono_thread_init
5542         to before mono_object_new calls so critical sections
5543         are initialized before use.
5545 2004-04-07  Martin Baulig  <martin@ximian.com>
5547         * icall.c
5548         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
5549         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
5550         (ves_icall_MonoGenericParam_initialize): Removed.
5551         (monogenericparam_icalls): Removed.
5552         (generictypeparambuilder_icalls): Added new table for
5553         System.Reflection.Emit.GenericTypeParameterBuilder.
5555         * reflection.c
5556         (mono_reflection_define_generic_parameter): Removed.
5557         (mono_reflection_initialize_generic_parameter): This is now called
5558         from GenericTypeParameterBuilder's .ctor.
5560 2004-04-06  Martin Baulig  <martin@ximian.com>
5562         * class.c (mono_class_init): Don't inflate nested classes in a
5563         generic instance.
5564         (mono_type_get_name_recurse): Include the generic arguments for
5565         generic instances and generic type declarations.
5566         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
5567         (_mono_class_get_instantiation_name): Removed.
5568         (mono_class_create_generic): Always use `gklass->name' as our name.
5570         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
5572         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
5573         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
5574         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
5575         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
5576         closed generic methods here.
5578         * reflection.c
5579         (mono_reflection_generic_inst_get_nested_types): Removed.
5580         (inflate_mono_method): Copy the generic parameters from the
5581         MonoMethodHeader into out MonoGenericMethod.
5583 2004-04-06  Martin Baulig  <martin@ximian.com>
5585         * row-indexes.h
5586         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
5588         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
5590         * reflection.c (build_compressed_metadata): If we have any entries
5591         in the GenericParam, MethodSpec or GenericParamConstraint tables,
5592         set the header version to 1.1.
5594 2004-04-06  Martin Baulig  <martin@ximian.com>
5596         * class.c (mono_class_init): If we're a generic instance,
5597         initialize our nested classes, too.
5598         (_mono_class_get_instantiation_name): Deal with the new `!%d'
5599         suffix. 
5601 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5603         * process.c: quote the argument passed to the shell on windows.
5605 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
5607         * threads.c (mono_alloc_special_static_data): Allow this to be
5608         called during startup.
5610 2004-04-02  Martin Baulig  <martin@ximian.com>
5612         * icall.c
5613         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
5615 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
5617         * icall.c: Fix build.
5619 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5621         * Makefile.am: Added security.c|h.
5622         * icall.c: Added icall for get_UserName;
5623         * security.c: New file for security related icalls. Added function
5624         get_UserName for System.Environment (fix #56144).
5625         * security.h: New. Header file for security.c
5627 2004-04-02  Dick Porter  <dick@ximian.com>
5629         * icall.c: Deleted the icalls that were obsoleted some time ago
5630         by the ICU string code, and which were mixed into the icall
5631         rearranging.  Fixes bug 55969.
5633         * string-icalls.h: 
5634         * string-icalls.c: Deleted the code that those icalls reference.
5636 2004-04-01  Martin Baulig  <martin@ximian.com>
5638         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
5640         * class.c (mono_class_from_generic_parameter): Don't set 
5641         TYPE_ATTRIBUTE_INTERFACE.
5642         (my_mono_class_from_generic_parameter): Likewise.
5644 2004-04-01  Martin Baulig  <martin@ximian.com>
5646         * loader.c (find_method): Added an optional `MonoClass *ic'
5647         argument to search in a specific interface.
5648         (mono_get_method_constrained): New public function.
5650 2004-04-01  Martin Baulig  <martin@ximian.com>
5652         * reflection.c (mono_image_get_generic_field_token): Use the
5653         `handleref' cache here.
5655 2004-04-01  Martin Baulig  <martin@ximian.com>
5657         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
5659         * reflection.c (create_generic_typespec): Use the `typespec' hash
5660         here, not the `typeref' one.    
5662 2004-04-01  Martin Baulig  <martin@ximian.com>
5664         * class.c (mono_class_inflate_generic_type): Moved the
5665         functionality into a new static inflate_generic_type() which
5666         returns NULL if it didn't do anything.  Only increment the
5667         `mono_stats.inflated_type_count' if we actually inflated
5668         something.
5669         (mono_class_get_full): Check the classes type to see whether we
5670         need to inflate it; also inflate MONO_TYPE_(M)VAR.
5672 2004-04-01  Jackson Harper  <jackson@ximian.com>
5674         * reflection.c: Set culture for assembly references.
5675         
5676 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
5678         * reflection.[ch], icall.[ch], Fix support for pinning variables.
5680 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5682         * assembly.c:
5683         (do_mono_assembly_open): the critical section also covers
5684         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
5686 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5688         * threads.c:
5689         (mono_manage_threads): abort the background threads when finishing.
5690         Fixes bug #47232.
5692 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5694         * gc.c: only close the done_event handle if there was no timeout.
5695         C-ified comments.
5697 2004-03-30  Martin Baulig  <martin@ximian.com>
5699         * icall.c (icall_entries): It's called "System.Activator", not
5700         "System.Activation".    
5702 2004-03-30  Martin Baulig  <martin@ximian.com>
5704         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
5705         (mono_class_create_from_typespec): Likewise.
5707 2004-03-30  Martin Baulig  <martin@ximian.com>
5709         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
5710         `has_ctor_constraint' and `initialized'.
5712 2004-03-30  Martin Baulig  <martin@ximian.com>
5714         * reflection.c (encode_new_constraint): New static function to add
5715         the constructor constraint attribute to a type parameter.
5716         (encode_constraints): Call encode_new_constraint() if necessary.
5718         * reflection.h
5719         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
5721         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
5722         
5723 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
5725         * reflection.c, icall.c: add support for pinning variables. 
5727 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
5729         * marshal.c (mono_marshal_get_managed_wrapper):
5730         init bool local with zero rather than null.
5732 2004-03-29  Martin Baulig  <martin@ximian.com>
5734         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
5735         the "official" behavior here.
5736         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
5738 2004-03-29  Martin Baulig  <martin@ximian.com>
5740         * icall.c: Reflect latest API changes.
5742 2004-03-29  Martin Baulig  <martin@ximian.com>
5744         * loader.c (mono_get_method_from_token): Also call
5745         mono_metadata_load_generic_params () for abstract and interface
5746         methods; replace the type arguments in the method signature with
5747         the ones which are loaded from the metadata.
5749 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
5751         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
5752         of the lock is not the current thread. MS.NET don't do it, in spite of
5753         what the documentation says. See bug #56157.
5755 2004-03-28  Martin Baulig  <martin@ximian.com>
5757         * class.c (mono_class_init): Don't call init_properties() and
5758         init_events() for generic instances; set `prop->parent' when
5759         inflating properties.
5761         * reflection.c (mono_generic_inst_get_object): Call
5762         `mono_class_init (ginst->klass)'.
5763         (mono_type_get_object): Only create a MonoGenericInst if your
5764         generic type is a TypeBuilder.
5765         (do_mono_reflection_bind_generic_parameters): Only set
5766         `ginst->is_dynamic' if our generic type is a TypeBuilder.
5768 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
5770         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
5771         Fixes #56091.
5773 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5775         * icall.c: added Kill_internal icall.
5776         * process.[ch]: added Kill_internal icall.
5778 2004-03-25  Martin Baulig  <martin@ximian.com>
5780         * class.h (MonoStats): Added `generic_instance_count',
5781         `inflated_method_count', `inflated_type_count' and
5782         `generics_metadata_size'.       
5784 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5786         * reflection.c: no warnings now.
5788 2004-03-25  Martin Baulig  <martin@ximian.com>
5790         * class.c (mono_class_get_full): New public function; does a
5791         mono_class_get(), but also takes a `MonoGenericContext *'.
5793         * loader.c (mono_field_from_memberref): Renamed to
5794         `field_from_memberref', made static and added `MonoGenericContext *'
5795         argument.
5796         (mono_field_from_token): Added `MonoGenericInst *' argument.
5797         (method_from_memberef): Likewise.
5798         (mono_get_method_from_token): Likewise.
5799         (mono_get_method_full): New public function; does a
5800         mono_get_method(), but also takes a `MonoGenericContext *'.
5802         * verify.c (mono_method_verify): Get the method's generic context
5803         and pass it to mono_field_from_token(), mono_get_method_full() and
5804         mono_class_get_full().
5806 2004-03-25  Martin Baulig  <martin@ximian.com>
5808         * class.c (mono_class_inflate_generic_type): Take a
5809         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
5810         `MonoGenericMethod *'.
5812 2004-03-25  Martin Baulig  <martin@ximian.com>
5814         * loader.h (MonoMethodInflated): Store the MonoGenericContext
5815         instead of the MonoGenericMethod here.
5817 2004-03-25  Martin Baulig  <martin@ximian.com>
5819         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
5820         each time we create a new MonoGenericInst, we also create a new
5821         context which points back to us.
5823         * class.c (inflate_method): Use `ginst->context' instead of
5824         creating a new context.
5826         * loader.c (method_from_memberref): Use
5827         `klass->generic_inst->context' instead of creating a new context.
5829 2004-03-25  Martin Baulig  <martin@ximian.com>
5831         * class.h (MonoGenericContext): New struct.
5832         (MonoGenericMethod): Removed `generic_inst'.
5834         * class.c (mono_class_inflate_generic_method): Take a
5835         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
5837 2004-03-25  Martin Baulig  <martin@ximian.com>
5839         * loader.h (MonoMethodInflated): New typedef.
5841         * metadata.h (MonoMethodSignature): Removed `gen_method', make
5842         `generic_param_count' consume just 30 bits, added `is_inflated'
5843         and `has_type_parameters' flags (one bit each).
5845         * class.c (mono_class_inflate_generic_method): Create a
5846         MonoMethodInflated instead of a MonoMethodNormal and set
5847         `is_inflated' in the method signature.
5849         * class.h (MonoGenericMethod): Removed `generic_method'.
5851 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
5853         * image.c: Make sure the name of a MonoImage is always an absolute path.
5854           This fixes bug #54415.
5856 2004-03-24  Martin Baulig  <martin@ximian.com>
5858         * class.c (mono_class_setup_vtable): If we're a generic instance,
5859         use our generic type's vtable size.
5861 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
5863         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
5864         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
5865         problems.
5867 2004-03-23  Martin Baulig  <martin@ximian.com>
5869         * class.h (MonoDynamicGenericInst): Added `int count_events' and
5870         `MonoEvent *events'.
5872         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
5873         (typebuilder_icalls): Added "get_event_info"; calls
5874         mono_reflection_event_builder_get_event_info(). 
5876         * reflection.c (mono_reflection_generic_inst_initialize): Added
5877         `MonoArray *events'.
5878         (mono_reflection_event_builder_get_event_info): New function.
5880 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
5882         * object.h: add mono_type_initialization_init
5884         * object.c (mono_runtime_class_init): 
5885         implement class constructor synchronization rules
5886         to cope with threading issues.  
5887         add mono_type_initialization_init
5889         * appdomain.c (mono_runtime_init): call 
5890         mono_type_initialization_init
5892         * class.h: removing initializing field from MonoVTable
5894 2004-03-23  Martin Baulig  <martin@ximian.com>
5896         * class.c (my_mono_class_from_generic_parameter): Use
5897         `param->name' if it's not NULL. 
5899 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
5901         * class.c: do not insert non-virtual methods in the vtable.
5902         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
5903         that means the method is non-virtual. This never would have
5904         happened before.
5906 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
5908         * profiler.c: Added lock for accessing coverage_hash.
5910 2004-03-22  Martin Baulig  <martin@ximian.com>
5912         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
5913         `method->method->signature->generic_param_count != 0' to make it
5914         work for interface methods.
5916 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5918         * process.c: quote the string passed to the shell using g_shell_quote.
5920 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5922         * threads.c:
5923         (mono_threads_manage): don't remove the finalizer thread and self
5924         from the threads hash table so that mono_thread_manage can be called
5925         more than once.
5927 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5929         * process.c: quote the arguments when UseShellExecute is true. Fixes
5930         bug #55790.
5932 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5934         * threads.c: set mono_thread_detach as a cleanup routine for every
5935         thread. This way it's always executed upon thread termination, either
5936         aborted or finished normally. No more xsp hangs!
5938 2004-03-17  Martin Baulig  <martin@ximian.com>
5940         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
5941         `int count_nested' and a `MonoType **nested'.
5943         * reflection.c (mono_reflection_bind_generic_parameters): Moved
5944         most of the functionality into a new static
5945         do_mono_reflection_bind_generic_parameters() and don't take a
5946         `MonoType *nested_in' argument any more.  Don't compute nested
5947         types here.
5948         (mono_reflection_generic_inst_get_nested_types): New public method
5949         to get nested types.
5951         * class.c (mono_class_create_generic): Set `klass->nested_in' if
5952         we're a nested class.
5954         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
5955         mono_reflection_generic_inst_get_nested_types() to compute the
5956         nested types.
5958 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
5960         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
5961         descriptive error message under windows.
5962         
5963 2004-03-17  Martin Baulig  <martin@ximian.com>
5965         * class.c (dup_type): Added `const MonoType *original' argument;
5966         copy the attrs from the original type.
5968 2004-03-17  Martin Baulig  <martin@ximian.com>
5970         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
5971         `m->generic_inst_cache' here.
5973 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
5975         * exception.h exception.c: Add stack_overflow_exception.
5977 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5979         * threadpool.c:
5980         (overlapped_callback): call SetEvent *after* invoking the callback.
5981         No need to call CloseHandle.
5983 2004-03-16  Martin Baulig  <martin@ximian.com>
5985         * reflection.c (mono_image_get_fieldref_token): Take a
5986         `MonoReflectionField *' instead of a `MonoClassField *' and a
5987         `MonoClass *'; store the `MonoReflectionField *' in the hash.
5989 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5991         * appdomain.c: don't add the culture to the filename we're looking for
5992         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
5994 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5996         * locales.c: don't ignore symbols when doing case insensitive compares.
5997         Thanks Dick! Fixes bug #54046.
5999         * threads.c: surround 'threads' usage with enter/leave in
6000         mono_thread_manage.
6002 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
6004         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
6005         implicitly marshalled as [Out]. Fixes #55450.
6007         (mono_marshal_get_runtime_invoke): Zero out the result if there is
6008         an exception.
6010 2004-03-16  Martin Baulig  <martin@ximian.com>
6012         * class.c (mono_class_from_generic_parameter): Use the actual
6013         parameter name. 
6015 2004-03-16  Martin Baulig  <martin@ximian.com>
6017         * reflection.c (type_get_signature_size): New static function.
6018         Compues the size of the type in a method signature.
6019         (method_get_signature_size): New static function; calls
6020         type_get_signature_size() to compute the actual size of the
6021         method's signature.
6022         (method_encode_signature): Use method_get_signature_size() to get
6023         the signature's size rather than using `nparams * 10'.
6025 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6027         * file-io.h: define here WapiOverlapped on windows. I don't want the
6028         regular OVERLAPPED one.
6030         * file-io.c:
6031         * threadpool.c: somehow, BindIoCompletionCallback is not found.
6032         Disabling AIO on windows.
6034 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6036         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
6037         bug #55385.
6039 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6041         * appdomain.c: upgraded corlib version.
6043         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
6044         and BeginWrite. Allow opening files for asynchrnous operations.
6046         * file-io.h: new struct that maps FileStreamAsyncResult.
6047         * icall.c: added new icalls.
6048         * process.[ch]: support setting child process environment variables
6049         and use the SHELL or COMSPEC when UseShellExecute is true.
6051         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
6052         callback for async. IO is here and also BindHandle.
6054         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
6055         from here.
6057 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
6059         * reflection.c (create_custom_attr): Allow len == 0.
6061         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
6062         computation on big-endian machines.
6064 2004-03-13  Martin Baulig  <martin@ximian.com>
6066         * class.h (MonoGenericInst): Added `int count_ifaces'.
6068         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
6069         `ginst->count_ifaces' instead `klass->interface_count' since we
6070         may get called before the vtable is created.
6072         * loader.c (mono_method_get_param_names): If we're a generic
6073         instance, return and don't initialize the class.
6075         * reflection.c (mono_reflection_setup_generic_class): Don't call
6076         ensure_runtime_vtable().
6077         (mono_reflection_bind_generic_parameters): Set
6078         `ginst->count_ifaces'.
6080 2004-03-11  Jackson Harper <jackson@ximian.com>
6082         * icall.c:
6083         * unicode.c:
6084         * unicode.h: Remove unused System.Char icalls.
6085         
6086 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
6088         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
6089         code when we P/Invoke the first library in Windows.Forms, instead
6090         of when we first open the assembly.
6092         * assembly.c: Drop the lookup from here.
6094 2004-03-10  Martin Baulig  <martin@ximian.com>
6096         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
6097         class for properties, fields and events.  Finally fixes #54945.
6099 2004-03-10  Martin Baulig  <martin@ximian.com>
6101         * metadata.c (mono_metadata_class_equal): New static function;
6102         checks whether two generic instances or two generic parameters are
6103         equal.
6104         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
6105         compare classes.        
6107 2004-03-10  Martin Baulig  <martin@ximian.com>
6109         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
6111         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
6112         argument and write it into the `reflection_info' field.
6114         * icall.c
6115         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
6116         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
6118 2004-03-09  Jackson Harper  <jackson@ximian.com>
6120         * char-conversions.h: use 8 bits for numeric data its all we need
6121         * icall.c: numeric data is only 8 bits now.
6123 2004-03-09  Martin Baulig  <martin@ximian.com>
6125         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
6127         * class.c (init_properties, init_events): Initialize the new
6128         `parent' field.
6130         * reflection.c (typebuilder_setup_properties): Likewise.
6131         (typebuilder_setup_events): Likewise.
6133         * reflection.h (MonoEventInfo): Replaced `parent with
6134         `declaring_type' and `reflected_type'.
6136         * icall.c (ves_icall_get_property_info): Distinguish between
6137         declaring and reflected type.
6138         (ves_icall_get_event_info): Likewise.
6140 2004-03-09  Martin Baulig  <martin@ximian.com>
6142         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
6143         (ves_icall_Type_GetField): Correctly set field->klass.
6145 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
6147         * loader.h: Fix warning.
6149 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
6151         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
6152         library routine if present.  Notice that it will still continue
6153         executing even if its missing, for those working on the Gtk#
6154         edition of Windows.Forms.
6156         * assembly.c (do_mono_assembly_open): If loading the
6157         System.Windows.Forms call mono_loader_wini_init.
6159 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
6161         * class.h: Added MonoRemoteClass struct.
6162         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
6163         function for MonoStrings.
6164         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
6165         Added internal call for getting the proxy type.
6166         * marshal.c: Get the type of transparent proxies from its remote_class.
6167         Added methods that generate the IL for type checks and casts:
6168         mono_marshal_get_isinst, mono_marshal_get_castclass, 
6169         mono_marshal_get_proxy_cancast.
6170         * marshal.h: Declaration of the previous new methods.
6171         * object.c: Added new moethods for creating and updating MonoRemoteClass
6172         instances: mono_remote_class, mono_upgrade_remote_class, 
6173         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
6174         * verify.c: FIx transparent_proxy_fields layout.
6175         * appdomain.c: Bump corlib version.
6177 2004-03-04  Jackson Harper  <jackson@ximian.com>
6179         * icall.c: Add icall to access char conversion tables.
6180         * char-conversions.h: Character conversion tables.
6181         * Makefile.am: Add char-conversions.h private header file.
6182         
6183 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
6185         * appdomain.c (unload_thread_main): Increase unloading timeout to
6186         10 sec as a temporary workaround for Nant problems.
6188 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
6190         * gc.c: Add checks for GC_enable and GC_disable.
6192         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
6193         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
6194         (bug #54988).
6195         
6196 2004-02-27  Martin Baulig  <martin@ximian.com>
6198         * reflection.c (mono_reflection_bind_generic_parameters): Take a
6199         `MonoReflectionType *' instead of a `MonoType *'.
6201 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
6203         * gc.c (run_finalize): Avoid finalizing the object representing the
6204         finalizer thread.
6205         (finalizer_thread): Fix warning.
6207 2004-02-25  Martin Baulig  <martin@ximian.com>
6209         * class.c (_mono_class_get_instantiation_name): Added `int offset'
6210         argument for nested types.
6211         (mono_class_create_generic): Added support for nested generictypes.
6213         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
6214         `GList *nested'.
6216         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
6218         * reflection.c (method_encode_signature): Increase the minimum
6219         value of `size' from 10 to 11.
6220         (mono_reflection_bind_generic_parameters): Take `int type_argc'
6221         and `MonoType **types' arguments instead of the `MonoArray
6222         *types'; added `MonoType *nested_in'.  Recursively instantiate
6223         nested classes. 
6225 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
6227         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
6228         stack_overflow_ex members which are used by exception handling.
6230         * appdomain.c (mono_runtime_init): Initialize the new members.
6232         * gc.c (mono_gc_enable): New helper function.
6233         * gc.c (mono_gc_disable): New helper function.
6235 2004-02-23  Martin Baulig  <martin@ximian.com>
6237         * icall.c: I must have been really stupid - make it actually work
6238         this time ;-)
6240 2004-02-23  Martin Baulig  <martin@ximian.com>
6242         * loader.c (method_from_memberref): Only inflate the method if
6243         it's in another klass.
6245 2004-02-23  Martin Baulig  <martin@ximian.com>
6247         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
6248         (mono_class_init): If we're a generic instance and an interface,
6249         compute `class->interface_id'; also create `class->interfaces'
6250         here and inflate them.
6252         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
6253         `ginst->is_open'.
6254         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
6256         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
6258 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
6260         * reflection.c (method_encode_code): Improved the error message
6261         generated by the exception.
6263 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6265         * icall.c: Martin did not do what he said in the ChangeLog for
6266         2004-02-18, but put back the changes for properties and events.
6267         Commenting those changes out again and adding comment to bug #54518.
6268         
6269         * process.c: removed warning.
6271 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
6273         * marshal.c (emit_struct_conv): Print an error message instead of
6274         asserting when a type does not have the StructLayout attribute.
6276 2004-02-20  Martin Baulig  <martin@ximian.com>
6278         * reflection.c (mono_type_get_object): Also use the cache for
6279         generic instances.
6280         (mono_reflection_bind_generic_parameters): Always compute
6281         `ginst->ifaces'.        
6283 2004-02-20  Martin Baulig  <martin@ximian.com>
6285         * class.h (MonoGenericMethod): Removed `klass'.
6287         * class.c (mono_class_inflate_generic_method): Added `MonoClass
6288         *klass' argument.
6290 2004-02-20  Martin Baulig  <martin@ximian.com>
6292         * reflection.c (method_encode_methodspec): Actually use the
6293         uninflated signature for the memberref.
6295 2004-02-20  Martin Baulig  <martin@ximian.com>
6297         * class.h (MonoGenericMethod): Removed `declaring'.
6299         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
6300         is NULL, compute it here.
6302 2004-02-20  Martin Baulig  <martin@ximian.com>
6304         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
6306         * metadata.c (mono_metadata_generic_inst_hash): New method.
6307         (mono_metadata_generic_inst_equal): New method.
6309         * reflection.c (mono_reflection_bind_generic_parameters): Use the
6310         `klass->image->generic_inst_cache' cache to avoid creating
6311         duplicate MonoGenericInst's.
6313         * class.c (mono_class_inflate_generic_type): Use the cache.
6315 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
6317         * object.c: fixed gc descriptor calculation for embedded valuetypes.
6319 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6321         * icall.c: added Socket.WSAIoctl icall.
6323         * socket-io.[ch]: implemented
6324         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
6326 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
6328         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
6330 2004-02-18  Urs C Muff  <umuff@quark.com>
6332         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
6333         this work on PPC and other big-endian architectures.
6335         * debug-mono-symfile.h: Prepended the names of all the `guint32'
6336         fields with an underscore to make sure they're only accessed by
6337         the read32() macro.
6339 2004-02-18  Martin Baulig  <martin@ximian.com>
6341         * icall.c: Put the klass->refclass changes back for methods and
6342         fields, but not for properties and events.  We're currently not
6343         distinguishing between DeclaringType and ReflectedType for
6344         properties and events, that's what caused the regressions.
6346 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6348         * object.c:
6349         (mono_async_result_new): the handle can be NULL.
6351         * threadpool.c: Use an event instead of a semaphore, don't initialize
6352         it until needed. This saves quite a few semaphores from being created
6353         when using the threadpool.
6355 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
6357         * object.c (mono_string_is_interned_lookup): Fix interning of long
6358         strings. Fixes #54473.
6360         * domain.c (ldstr_equal): Optimize if the two strings are equal.
6362         * icall.c: Revert the klass->refclass changes since they introduce
6363         regressions (bug #54518).
6365 2004-02-18  Martin Baulig  <martin@ximian.com>
6367         * class.c (mono_class_init): If we're a generic instance and don't
6368         come from a TypeBuilder, inflate our members here.
6369         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
6370         (mono_class_create_generic): New public method.
6371         (mono_class_initialize_generic): Removed.
6372         (get_instantiation_name): Renamed to
6373         _mono_class_get_instantiation_name() and made it public.
6375 2004-02-18  Martin Baulig  <martin@ximian.com>
6377         * class.c (mono_class_inflate_generic_type): Clear the new
6378         instance's `nginst->klass' when inflating a generic instance.
6379         (mono_class_is_subclass_of): Added (basic) support for generic
6380         instances.
6382 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
6384         * appdomain.h, domain.c: use a MonoCodeManager instead of a
6385         MonoMempool to hold compiled native code.
6387 2004-02-17  Martin Baulig  <martin@ximian.com>
6389         * class.h (MonoDynamicGenericInst): Added `count_properties' and
6390         `properties'.
6392         * reflection.c (mono_reflection_generic_inst_initialize): Added
6393         `MonoArray *properties' argument.
6395         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
6397 2004-02-17  Martin Baulig  <martin@ximian.com>
6399         * icall.c (ves_icall_Type_GetFields): Renamed to
6400         ves_icall_Type_GetFields_internal() and added a
6401         `MonoReflectionType *rtype' argument; pass it to
6402         mono_field_get_object() to set the field's "reflected" type.
6403         (ves_icall_Type_GetConstructors): Likewise.
6404         (ves_icall_Type_GetEvents): Likewise.
6405         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
6406         argument; pass it to mono_method_get_object() to set the method's
6407         "reflected" type.       
6409 2004-02-17  Martin Baulig  <martin@ximian.com>
6411         * class.h (MonoDynamicGenericInst): New type.
6412         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
6414         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
6415         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
6416         (ves_icall_MonoGenericInst_GetFields): New interncall.
6418         * class.c (mono_class_from_generic): Don't call
6419         mono_class_initialize_generic() if this is a dynamic instance;
6420         ie. it's being created from a TypeBuilder.
6421         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
6422         `class->byval_arg.type'.
6424         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
6425         to `inflate_method' and made static.
6426         (mono_reflection_inflate_field): Removed.
6427         (mono_reflection_generic_inst_initialize): New public method.
6429         * reflection.h (MonoReflectionGenericInst): Removed `methods',
6430         `ctors' and `fields'; added `initialized'.
6432 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
6434         * debug-helpers.c (mono_method_full_name): Fix output for empty
6435         namespaces.
6437 2004-02-12  Martin Baulig  <martin@ximian.com>
6439         * class.h (MonoClassField): Added `MonoType *generic_type'.
6441         * reflection.c (mono_image_get_fieldref_token): Added support for
6442         instantiated generic types.
6443         (field_encode_inflated_field): Removed.
6444         (mono_image_get_inflated_field_token): Removed.
6445         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
6447         * reflection.h (MonoReflectionInflatedField): Removed.
6449 2004-02-12  Martin Baulig  <martin@ximian.com>
6451         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
6452         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
6454         * reflection.c (mono_image_get_methodspec_token): Take a
6455         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
6456         (mono_image_create_token): Check whether we have a
6457         `method->signature->gen_method' and call
6458         mono_image_get_methodspec_token() if appropriate.
6459         (inflated_method_get_object): Removed.
6460         (mono_reflection_bind_generic_method_parameters): Return a
6461         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
6462         (mono_reflection_inflate_method_or_ctor): Likewise.
6464         * reflection.h (MonoReflectionInflatedMethod): Removed.
6466 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
6468         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
6469         for custom valuetype marshalling.
6471         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
6473 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6475         * icall.c: fixed WSAGetLastError_internal name.
6477 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
6479         * threads.c (mono_thread_attach): Allow this to be called multiple
6480         times for a thread.
6481         
6482         * threads.c (build_wait_tids): Do not wait for ourselves.
6484         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
6485         appdomain list is empty.
6487         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
6488         memory returned by mono_string_builder_to_utf16, since it points into
6489         managed memory. Thanks to Bernie Solomon for noticing this.
6491         * icall.c: Add AppDomainSetup icalls.
6493         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
6495         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
6496         types.
6498         * reflection.c (reflection_methodbuilder_to_mono_method): Save
6499         custom attributes to the method_aux struct. Also fix array indexes etc.
6501         * loader.c (mono_method_get_param_names): Make dynamic case work again.
6502         
6503 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
6505         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
6506         (both static and runtime) and reduce startup time.
6508 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
6510         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
6511         AsAny marshalling conversion instead of crashing.
6513         * marshal.c: Fix warnings.
6515 2004-02-09  Martin Baulig  <martin@ximian.com>
6517         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
6519         * reflection.h (MonoReflectionInflatedMethod): Removed the
6520         `declaring' field, it's now in the unmanaged MonoGenericMethod.
6522         * reflection.c (method_encode_methodspec): Removed the `method'
6523         argument; we get it from `gmethod->declaring'.
6524         (inflated_method_get_object): Removed the `declaring' argument.
6526 2004-02-09  Martin Baulig  <martin@ximian.com>
6528         * class.h (MonoGenericMethod): New type.
6529         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
6530         `generic_method'.
6532         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
6533         a `MonoGenericMethod *gen_method' one.
6535         * class.c (mono_class_inflate_generic_type): Take an additional
6536         `MonoGenericMethod * argument.  This is only non-NULL if we're
6537         inflating types for a generic method.   
6538         (mono_class_inflate_generic_signature): Renamed to
6539         inflate_generic_signature() and made static; take a
6540         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
6541         (inflate_generic_header): Take a `MonoGenericMethod *' argument
6542         instead of a `MonoGenericInst *' one.
6543         (mono_class_inflate_generic_method): Likewise.
6545         * reflection.c (encode_generic_method_sig): Take a
6546         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
6547         (method_encode_methodspec): Likewise.
6548         (inflated_method_get_object): Likewise. 
6550         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
6551         field with a `MonoGenericMethod *gmethod' one.  
6553 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
6555         * class.h (mono_class_has_parent): add parens to expansion
6556         so you can ! this.
6558 2004-02-08  Martin Baulig  <martin@ximian.com>
6560         * image.h (MonoImage): Removed `generics_cache'.
6562         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
6563         instead of a `MonoType *' argument; removed the `inflate_methods'
6564         argument.  Don't inflate methods here.
6566         * loader.c (find_method): If it's a generic instance, call
6567         mono_class_init() on the `sclass->generic_inst->generic_type'.
6569         * metadata.c (mono_type_size): Make this work on uninitialized
6570         generic instances; call it on the `ginst->generic_type's class.
6572         * reflection.c (mono_reflection_bind_generic_parameters): Call
6573         mono_class_from_generic() to create the `ginst->klass'.
6575 2004-02-08  Martin Baulig  <martin@ximian.com>
6577         * class.h (MonoClass): Changed type of `generic_inst' from
6578         `MonoType *' to `MonoGenericInst *'.
6580 2004-02-08  Martin Baulig  <martin@ximian.com>
6582         * icall.c (ves_icall_Type_BindGenericParameters): Just call
6583         mono_type_get_object(), this is now creating a `MonoGenericInst'
6584         for MONO_TYPE_GENERICINST.
6585         (ves_icall_MonoGenericInst_GetParentType): Likewise.
6586         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
6588         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
6589         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
6590         (inflated_method_get_object): Added `MonoClass *refclass' argument.
6591         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
6592         and reflected type.
6594         * reflection.h (MonoReflectionInflatedMethod): Removed
6595         `declaring_type' and `reflected_type'.
6597 2004-02-08  Martin Baulig  <martin@ximian.com>
6599         * class.h (MonoGenericInst): Added `MonoType *parent' and
6600         `MonoType **ifaces'.
6602         * reflection.h (MonoReflectionGenericInst): Removed `klass',
6603         `parent' and `interfaces'.
6605         * reflection.c (mono_reflection_bind_generic_parameters): Take a
6606         `MonoType *' argument and return a `MonoType *'.
6608         * icall.c
6609         (ves_icall_MonoGenericInst_GetParentType): New interncall.
6610         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
6612 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
6614         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
6615         valuetype marshalling.
6617 2004-02-06  Martin Baulig  <martin@ximian.com>
6619         * class.c
6620         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
6621         (my_mono_class_from_generic_parameter): Likewise.
6623 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
6625         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
6626         contents of the symbol files lazily.
6628         * object.h (MonoThread): Add 'name' and 'name_len' fields.
6630         * threads.h threads.c icall.c: New icalls for getting and setting the
6631         threads name.
6633 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
6635         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
6636         Raise an exception when the domain is not found.
6638 2004-02-03  Martin Baulig  <martin@ximian.com>
6640         * reflection.c (mono_image_get_methodspec_token): Use the
6641         uninflated signature; fixes gen-33.
6643 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
6645         * gc.c threads.c: Make the finalizer thread a normal managed thread so
6646         the finalizer code can use thread functionality.
6648         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
6649         the finalizer thread.
6651         * threads.c: Make some functions more robust.
6653         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
6655         * metadata.h: Add new marshalling conventions.
6657         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
6658         stringbuilder marshalling. Fixes #53700.
6660         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
6662         * reflection.c (mono_image_get_type_info): Save declarative security
6663         info.
6665         * reflection.c (mono_image_get_field_info): Handle uninitialized 
6666         unmanaged fields as well.
6668         * appdomain.c: Bump corlib version.
6670 2004-02-01  Martin Baulig  <martin@ximian.com>
6672         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
6673         method type arguments.  
6675 2004-01-30  Duncan Mak  <duncan@ximian.com>
6677         * marshal.h: Add prototype for
6678         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
6679         and
6680         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
6681         fix the build.
6683 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
6685         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
6686         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
6688 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
6690         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6691         custom marshalling of valuetypes.
6693         * marshal.c: Fix some warnings.
6695 2004-01-29  Martin Baulig  <martin@ximian.com>
6697         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
6698         for generic method parameters.
6700         * reflection.c (method_encode_methodspec): Write the uninflated
6701         signature into the methodspec table.
6702         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
6703         is always the uninflated method.
6704         (reflection_methodbuilder_to_mono_method): Copy the generic
6705         parameters from the MethodBuilder into `header->gen_params'.
6707 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
6709         * class.c (mono_class_from_generic_parameter): Fix warning.
6711 2004-01-27  Martin Baulig  <martin@ximian.com>
6713         * class.c (mono_class_from_generic_parameter): Don't create
6714         `klass->methods' here.  
6716 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
6718         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
6719         extension since it does not work with libraries named lib<FOO>.dll.so.
6721 2004-01-25  Martin Baulig  <martin@ximian.com>
6723         * class.c (mono_class_inflate_generic_type): Added support for
6724         MONO_TYPE_GENERICINST.
6726         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
6727         inflate methods on open constructed types.      
6729 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6731         * object.c: fire ProcessExit event in the root AppDomain after running
6732         Main. Fixes bug #53299.
6734 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
6736         * socket-io.c: include the new socket-wrappers.h header.
6737         Use the wrappers instead of the unix socket functions to make the code
6738         more clear.
6740 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
6742         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
6744         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
6745         Fixes #22532.
6747 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
6749         * reflection.c (mono_image_create_pefile): Handle the case when the
6750         entry point is not a MethodBuilder.
6752         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
6753         field to ReflectionMethod since it is not allways a builder.
6755         * reflection.c (type_get_fully_qualified_name): New helper function to
6756         return the fully qualified name of a type.
6758         * reflection.c (encode_marshal_blob): Always emit the fully qualified
6759         type name for custom marshallers.
6761         * reflection.c (mono_marshal_spec_from_builder): Ditto.
6763         * class.c (mono_class_setup_vtable): If a parent class already 
6764         implements an interface, use the implementing methods from that class.
6765         Fixes #53148.
6767 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6769         * threadpool.c: just return instead of ExitThread to allow for thread
6770         clean up earlier.
6772 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
6774         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
6775         when closing resource modules.
6777         * reflection.c (mono_image_create_pefile): Handle the case when the
6778         entry point is not a MethodBuilder.
6780         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
6781         field to ReflectionMethod since it is not allways a builder.
6783 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
6785         * marshal.c (mono_marshal_get_managed_wrapper): 
6786         mono_marshal_alloc takes native int so CONV_I
6787         the arg for 64bits.
6789 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
6791         * reflection.c (fixup_cattrs): New function to fixup the methoddef
6792         tokens in the cattr table. Fixes #53108.
6794 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6796         * loader.c: don't trim ".dll" before looking up in the config file.
6797         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
6799 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
6801         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
6802         Return the module which contains the resource as well.
6803         (ves_icall_System_Reflection_Module_Close): New icall.
6805         * appdomain.c: Bump corlib version number.
6807         * image.c (mono_image_addref): New public function.
6809         * assembly.c: Call mono_image_addref.
6811         * reflection.c (mono_module_get_object): Increase reference count of 
6812         the image.
6814         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
6815         Fixes #22532.
6817         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
6818         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
6819         proper exceptions on DllImport problems.
6821 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
6823         * class.c, metadata.c: eliminate CSIZE macro.
6825 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
6827         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
6828         * object.h: Added async_callback field in MonoAsyncResult.
6829         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
6830         * verify.c: Added async_callback in MonoAsyncResult layout.
6832 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
6834         * reflection.c (mono_reflection_get_custom_attrs): Add support
6835         for Modules.
6837 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
6839         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
6840         marshalling.
6841         (mono_marshal_method_from_wrapper): Add null pointer check.
6843 2004-01-16  Martin Baulig  <martin@ximian.com>
6845         * debug-mono-symfile.h: Set version number to 36 and reflect
6846         latest symbol writer changes.
6848 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
6850         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
6851         multi-dimensional arrays.
6852         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
6853         (mono_class_from_mono_type): Use bounded_array_class_get.
6854         
6855         * class.c (mono_bounded_array_class_get): New function which takes
6856         a 'bounded' bool argument to distinguish vectors from one dimensional
6857         arrays.
6859         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
6860         bounded_array_class_get if the array has bounds.
6862         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
6863         Search modules loaded using AssemblyBuilder:AddModule as well.
6865 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6867         * appdomain.c: increased corlib version.
6868         * filewatcher.c: removed g_print.
6869         * icall.c:
6870         (get_property_info): only allocate what is actually requested.
6871         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
6873 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6875         * Makefile.am: added filewatcher.[ch]
6876         * filewatcher.[ch]: FileSystemWatcher runtime support.
6877         * icall.c: added new FSW icalls.
6879 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
6881         * string-icalls.c: fix stringbuilder regression as suggested by
6882         Iain McCoy <iain@mccoy.id.au>.
6884 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
6886         * process.c (process_read_stringtable_block): Recognize '007f' as
6887         a language neutral stringtable block.
6889 2004-01-12  Patrik Torstensson
6891         * object.h (MonoStringBuilder) : Changed layout to support our
6892         new stringbuilder class.
6893         * marshal.c: Change marshalling to support the new layout of 
6894         string builder.
6895         * appdomain.c: increased version number because new layout of
6896         string builder.
6898 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
6900         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
6901         assembly name as an string instead of an AssemblyName, since it is
6902         easier to extract info from it.
6904         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
6905         the culture subdirectories too. Fixes #52231.
6907 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6909         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
6910         It takes 2 new parameters with an optional name for the method to look
6911         for and case ignoring info.
6913         * threadpool.c: removed unused variable.
6915 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6917         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
6918         It takes 2 new parameters with an optional name for the property to look
6919         for and case ignoring info.
6920         Fixes bug #52753.
6922 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
6924         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
6925         Fix #52451.
6927 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6929         * appdomain.c:
6930         * assembly.c: escape the uri before passing it to g_filename_from_uri.
6931         Fixes bug #52630.
6933 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
6935         * reflection.c: Add support for more than one unmanaged resource.
6937         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
6938         in field->def_value, as done in all other cases.
6940         * reflection.c (mono_reflection_get_custom_attrs): Add support for
6941         TypeBuilders.
6943         * reflection.c (mono_reflection_create_runtime_class): Remove 
6944         errorneous assignment to klass->element_class, since it is already
6945         done in mono_reflection_setup_internal_class.
6947 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6949         * gc.c: added missing LeaveCriticalSection.
6950         * icall.c: indented a couple of lines.
6951         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
6952         if we call EndInvoke inside a callback. Fixes bug #52601.
6954 2004-01-07  Martin Baulig  <martin@ximian.com>
6956         * mono-debug-debugger.h
6957         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
6959 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
6961         * appdomain.c: Use messages in NotImplementedException.
6963         * exception.c (mono_get_exception_not_implemented): Now this takes
6964         a message argument.
6966         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
6967         exception instead of g_asserting an aborting when something is not
6968         implemented.
6970         Add some inline docs.
6972 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
6974         * reflection.h: Update after changes to object layout.
6976         * reflection.c: Implement saving of unmanaged aka win32 resources.
6978         * appdomain.c: Bump version number.
6980         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
6981         Handle missing domains gracefully.
6983 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
6985         * file-io.c : On Windows, there are much more invalid_path_chars.
6987 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
6989         * class.h, object.c: prepare for GetType () speedup.
6991 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
6993         * profiler.c: workaround for --profile null reference exception on
6994           cygwin. Patch by Patrik Torstensson.
6996 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
6998         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
6999         make work for unaligned access.
7001 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
7003         * class.c: small cleanup (class->fields [i] -> field).
7004         * image.c: check address of metadata is valid.
7006 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
7008         * assembly.h assembly.c (mono_assembly_loaded): New public function to
7009         search the list of loaded assemblies.
7011         * reflection.c (mono_reflection_type_from_name): Use 
7012         mono_assembly_loaded instead of mono_image_loaded.
7014         * reflection.c: Fix warnings.
7016 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
7018         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
7019         is dynamic. This is needed since an assembly can contain both dynamic and
7020         non-dynamic images.
7022         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
7023         assembly->dynamic.
7025         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
7027         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
7028         to store modules loaded using AddModule.
7030         * reflection.c (mono_image_fill_file_table): Generalize this so it works
7031         on Modules.
7033         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
7035         * reflection.c (mono_image_fill_export_table_from_module): New function to
7036         fill out the EXPORTEDTYPES table from a module.
7038         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
7039         into a separate function. Also handle loaded non-dynamic modules.
7041         * reflection.c (mono_image_basic_init): Fix memory allocation.
7043         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7045         * assembly.c (mono_assembly_load_references): Make this public.
7047 2003-12-19  Martin Baulig  <martin@ximian.com>
7049         * class.c (mono_class_initialize_generic): Made this static, take
7050         a `MonoGenericInst *' instead of a `MonoClass *'.
7051         (mono_class_from_generic): Call mono_class_initialize_generic()
7052         unless we're already initialized or being called from
7053         do_mono_metadata_parse_generic_inst().
7055         * class.h (MonoGenericInst): Added `initialized' and
7056         `init_pending' flags.
7058         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
7059         `mono_class_init (gklass)' or mono_class_initialize_generic()
7060         here; set `generic_inst->init_pending' while parsing the
7061         `type_argv'.
7063 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
7065         * locales.c: include string.h for memxxx prototypes
7067 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
7069         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
7070         constructor when accessing literal fields.
7072 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
7074         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7076         * reflection.c (assembly_add_resource_manifest): New function to fill
7077         the MANIFESTRESOURCE table.
7079         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
7081         * reflection.h: Update to changes in class layout.
7083         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
7084         Reenable call to mono_runtime_is_shutting_down ().
7086         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
7087         determine if the runtime is shutting down.
7089 2003-12-16  Jackson Harper <jackson@ximian.com>
7091         * icall.c: comment out call to mono_runtime_is_shutting_down to
7092         fix build.
7093         
7094 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
7096         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
7097         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
7099 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
7101         * reflection.c: move definition of swap_with_size
7102         to before its first call
7104 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
7106         * appdomain.c (mono_runtime_is_shutting_down): New public function.
7108         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
7109         icall.
7111         * object.c: Fix warnings.
7113         * icall.c (ves_icall_Type_Get...): Only consider inherited static
7114         members if FlattenHierarchy is set.
7116         * reflection.c (mono_image_add_decl_security): New function to emit
7117         declarative security.
7119         * reflection.h reflection.c: Add support for declarative security.
7121         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
7122         
7123 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
7125         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
7126         
7127         * appdomain.c verify.c: Moved corlib version checking into its own
7128         function in appdomain.c since it needs to create vtables etc.
7130 2003-12-13  Patrik Torstensson <p@rxc.se>
7132         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
7133         instead of unwrapped server.
7135 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
7137         * verify.c (check_corlib): Fix field index.
7139 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
7141         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
7142         GetGacPath icall.
7144 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
7146         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
7147         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
7148         cope with sizeof(size_t) != sizeof(guint32).
7150 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7152         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
7153         in case of failure.
7155 2003-12-10  Mark Crichton <crichton@gimp.org>
7157         * icall.c: removed the GetNonZeroBytes.  We now handle this case
7158         in managed code.
7160         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
7162 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
7164         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
7165         marked as deleted.
7167 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
7169         * verify.c (check_corlib): Handle the case when the version field is 
7170         initialized by a static constructor.
7172 2003-12-08  Patrik Torstensson  <p@rxc.se>
7174     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
7176 2003-12-08  Martin Baulig  <martin@ximian.com>
7178         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
7179         a MonoReflectionGenericParameter, also take the parameter index
7180         and name as arguments.
7181         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
7182         (ves_icall_MonoGenericParam_initialize): New interncall.
7183         (ves_icall_Type_make_byref_type): New interncall.
7185         * reflection.h (MonoReflectionGenericParam): Derive from
7186         MonoReflectionType, not just from MonoObject.  Added `refobj' and
7187         `index' fields.
7189         * reflection.c (mono_reflection_define_generic_parameter): Create
7190         and return a new MonoReflectionGenericParam; don't initialize the
7191         constraints here.
7192         (mono_reflection_initialize_generic_parameter): New public method;
7193         initializes the constraints and creates the `param->pklass'.
7195 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
7197         * reflection.h reflection.c: Use the new fields 'num_types', 
7198         'num_fields' and 'num_methods' to track the number of types etc.
7200         * verify.c (check_corlib): Check corlib version number.
7202 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
7204         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
7205         function works on all methods.
7207 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
7209         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
7210         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
7211         the custom_type_info flag of the transparent proxy.
7212         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
7213         objects that supports IRemotingTypeInfo.
7214         * object.h: Added custom_type_info field in transparent proxy.
7216 2003-12-06  Martin Baulig  <martin@ximian.com>
7218         * class.c (mono_class_create_from_generic): Removed.
7219         (mono_class_from_generic): Check `ginst->klass' before doing
7220         anything else.  This is important to fully support "recursive"
7221         generic types.
7223         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
7224         empty `generic_inst->klass' before doing anything else.
7226 2003-12-06  Dick Porter  <dick@ximian.com>
7228         * verify.c: 
7229         * object.h:
7230         * icall.c:
7231         * locales.c: Use C structs to access class fields.  Don't do a
7232         conversion between MonoString and UChar because both are
7233         platform-endian UTF-16.  Compare now takes startindex and count
7234         parameters.  Add a char overload for IndexOf.  Speed up the
7235         invariant string IndexOf.
7237 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
7239         * Makefile.am (monosn_LDADD): Fix parallel build.
7241 2003-12-04  Martin Baulig  <martin@ximian.com>
7243         * icall.c
7244         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7245         (ves_icall_Type_make_array_type): New interncall.       
7247 2003-12-04  Martin Baulig  <martin@ximian.com>
7249         * locales.c: also change it in the !HAVE_ICU case.
7251 2003-12-04  Dick Porter  <dick@ximian.com>
7253         * icall.c:
7254         * locales.c: construct_compareinfo is now in CompareInfo, not
7255         CultureInfo.
7257 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
7259         * image.c (mono_image_load_file_for_image): Cache loaded images in the
7260         image->files array.
7262         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
7263         table as well.
7265         * assembly.c (mono_assembly_load_references): Only load references
7266         once.
7268         * class.c (mono_class_from_name): Avoid linear search of the 
7269         EXPORTEDTYPE table.
7271         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
7273 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
7275         * image.h (MonoImage): Add 'field_cache' field.
7277         * loader.c (mono_field_from_token): Cache field lookups.
7278         
7279         * reflection.c (mono_module_get_object): Fix name property.
7281         * icall.c (ves_icall_get_enum_info): Update after changes to 
7282         mono_metadata_get_constant_index ().
7284         * icall.c: Get rid of get_type_info icall, use a separate icall for
7285         each type property to avoid needless memory allocations. Fixes #51514.
7287         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
7288         to avoid needless binary searches.
7290         * class.c (class_compute_field_layout): Move the initialization of
7291         field->def_value to mono_class_vtable ().
7293         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
7294         non-corlib types.
7296         * object.c (mono_object_allocate): Make it inline.
7298         * object.c (mono_object_allocate_spec): Make it inline.
7299         
7300 2003-12-02  Dick Porter  <dick@ximian.com>
7302         * locales.c (create_NumberFormat): NumberFormatInfo construction.
7303         Patch by Mohammad DAMT (mdamt@cdl2000.com).
7305 2003-12-01  Dick Porter  <dick@ximian.com>
7307         * threads.c: Fix signature and call in CreateMutex and
7308         CreateEvent.
7310 2003-12-01  Dick Porter  <dick@ximian.com>
7312         * icall.c: 
7313         * locales.c: Implement string compares and searching
7315         * object.h: Add extra Thread field
7317 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
7319         * reflection.c (fixup_method): Add support for MonoCMethod.
7321 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
7323         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
7325         * reflection.c (assembly_name_to_aname): Allow extra characters in
7326         assembly names. Fixes #51468.
7328 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
7330         * exception.c (mono_exception_from_name_domain): New helper function.
7332         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
7333         exception object in the correct domain.
7335         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
7336         formatting + make a copy a the input data.
7338         * loader.c (mono_get_method_from_token): Methods which contain
7339         native code do not have entries in the ImplMap.
7341         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
7342         Thanks to Gonzalo for spotting this.
7343         
7344         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
7345         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
7347         * assembly.h (mono_assembly_load_from): Split the second part of 
7348         assembly loading into a new public function.
7350         * exception.h (mono_get_exception_bad_image_format): New function.
7352 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
7354         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7355         Enumerate all modules inside a dynamic assembly. Fixes #51293.
7356         
7357         * icall.c: Add new icall for creating dynamic methods.
7359         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
7361         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
7363         * reflection.c (mono_reflection_create_dynamic_method): New icall to
7364         create a dynamic method.
7366         * reflection.c (resolve_object): New helper function.
7368         * reflection.c: Generalize ReflectionMethodBuilder and the functions
7369         which manipulate it so they can also work on dynamic methods.
7371         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
7372         creating the MonoReflectionMethodAux structure if it is not needed.
7373         
7374         * reflection.h verify.c: Update after changes to object layout.
7376         * reflection.c (method_builder_encode_signature): Fix compilation on
7377         gcc 2.95.x.
7379 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
7381         * appdomain.h: Added support for context static fields. Added static_data
7382           field to MonoAppContext and renamed thread_static_fields to a more
7383           generic special_static_fields in MonoAppDomain, since it can now contain
7384           context static fields.
7385         * domain.c: Updated hashtable name.
7386         * object.c: Replaced field_is_thread_static() for a more generic
7387           field_is_special_static() which also checks for context static attribute.
7388           In mono_class_vtable(), added support for static context fields.
7389         * threads.c: Changed methods that manage thread static fields to more
7390           generic methods so they can be reused both for thread and context static
7391           data.
7392         * threads.h: Declared some new methods.
7394 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
7396         * reflection.h: Update after changes to the managed types.
7398         * reflection.c (encode_custom_modifiers): New helper function.
7400         * reflection.c (method_encode_signature): Emit custom modifiers.
7402         * reflection.c (field_encode_signature): Emit custom modifiers.
7404 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
7406         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
7408         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
7409         implementation.
7411         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
7412         icall.
7414         * object.c (mono_field_get_value_object): New function.
7416         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
7417         specific.
7419 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
7421         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
7422         return a preallocated out-of-memory exception instance.
7424         * object.c (out_of_memory): Use the new function.
7426         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
7427         flag is before the custom modifiers. Fixes #49802.
7429 2003-11-16  Martin Baulig  <martin@ximian.com>
7431         * class.c (mono_class_is_open_constructed_type): Implemented the
7432         MONO_TYPE_GENERICINST case.
7434 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
7436         * assembly.c (mono_assembly_fill_assembly_name): New function to
7437         fill out the MonoAssemblyName structure.
7438         (mono_assembly_open): Use the new function.
7440         * icall.c (fill_reflection_assembly_name): New helper function.
7442         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
7443         new function.
7445         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
7447 2003-11-15  Martin Baulig  <martin@ximian.com>
7449         * class.c (mono_class_is_open_constructed_type): New public
7450         function; checks whether a type is an open constructed type,
7451         ie. whether it still contains type parameters.
7452         (mono_class_inflate_generic_type): If we're a type parameter and
7453         the inflated type is also a MONO_TYPE_(M)VAR, return the original
7454         type.
7456         * class.h (MonoGenericInst): Added `guint32 is_open'.
7458         * loader.c (method_from_methodspec): Check whether we're an open
7459         or closed constructed type and set `ginst->is_open'.
7461         * reflection.c (mono_reflection_bind_generic_parameters): Check
7462         whether we're an open or closed constructed type and set
7463         `ginst->is_open'.
7464         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
7465         from open constructed types.
7467 2003-11-15  Martin Baulig  <martin@ximian.com>
7469         * reflection.c (mono_reflection_bind_generic_parameters): If we're
7470         a generic instance (instead of a generic type declaration) with
7471         unbound generic parameters, bind them to our actual types.
7473 2003-11-14  Martin Baulig  <martin@ximian.com>
7475         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
7477         * reflection.c (mono_reflection_bind_generic_parameters): If we're
7478         an interface type, populate `res->interfaces' with instantiated
7479         versions of all the interfaces we inherit.
7481 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
7483         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
7484         when MONO_PATH is set but doesn't contain the install dir.
7486 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7488         * icall.c:
7489         (ves_icall_Type_GetInterfaces): don't return an interface twice when
7490         it's also implemented in base classes. Fixes bug #50927.
7492 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
7494         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
7495         if this method is called from a finalizer. Fixes #50913.
7497 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
7499         * threads.c: Implement VolatileRead/VolatileWrite
7501         * icall.c: Add new icalls for VolatileRead/VolatileWrite
7503 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7505         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
7506         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
7507         2.95.3.
7509         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
7510         from Peter Ross (pro@missioncriticalit.com).
7511         
7512 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
7514         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
7516 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7518         * assembly.c (mono_assembly_load_references): Disable check because it
7519         triggers on older corlibs which lots of people have.
7521 2003-11-12  Jackson Harper  <jackson@ximian.com>
7523         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
7524         load corlib.dll if mscorlib.dll is not found.
7525         * assembly.h: Remove corlib name define.
7526         * class.c:
7527         * domain.c:
7528         * image.c: Change corlib name to mscorlib.
7529         
7530 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7532         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
7534 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
7536         * appdomain.h: Added loader_optimization here to sync with the C#
7537         code, and add disallow_binding_redirects field.
7539 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
7541         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
7543         * reflection.c (mono_image_build_metadata): Fix crash on modules
7544         with no types.
7546         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
7548         * icall.c (ves_icall_get_method_info): Return callingConvention as
7549         well.
7551         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
7552         namespaces from the EXPORTEDTYPE table as well.
7554         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
7555         from all modules inside the assembly.
7556         
7557 2003-11-11  Martin Baulig  <martin@ximian.com>
7559         * reflection.c (mono_reflection_bind_generic_parameters): Make
7560         this work for interfaces.
7562 2003-11-11  Martin Baulig  <martin@ximian.com>
7564         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
7566 2003-11-11  Martin Baulig  <martin@ximian.com>
7568         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
7569         "MonoInflatedMethod" and "MonoInflatedCtor".
7571 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
7573         * reflection.c (resolution_scope_from_image): Use the assembly table
7574         from the manifest module, since other modules don't have it.
7576         * debug-helpers.c (mono_type_full_name): New helper function.
7578         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
7580         * image.c (mono_image_load_file_for_image): New public function which
7581         is a replacement for the load_file_for_image in class.c.
7583         * assembly.c (mono_assembly_load_module): A wrapper for the function
7584         above which does assembly association and reference loading too.
7586         * class.c (mono_class_from_name): Call mono_assembly_load_module.
7588 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7590         * appdomain.c: not all of the attributes for the full assembly name
7591         are required and the order doesn't matter. Fixes bug #50787.
7593 2003-11-10  Dick Porter  <dick@ximian.com>
7595         * locales.c: Use platform-endian UTF16
7597 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
7599         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
7600         
7601 2003-11-10  Martin Baulig  <martin@ximian.com>
7603         * metadata.c
7604         (mono_metadata_load_generic_params): Make this actually work.
7606         * reflection.c (mono_reflection_bind_generic_parameters): If our
7607         parent is a generic instance, pass all the `types' to it, no
7608         matter whether it has the same number of type parameters or not.
7610 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
7612         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
7614         * assembly.c (mono_assembly_load_references): Move the image<->assembly
7615         assignment code to this function so it gets called recursively for all
7616         modules.
7618         * image.c (load_modules): Remove the assembly assignment since it is
7619         now done by mono_assembly_load_references.
7620         
7621         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7622         Add 'module' argument.
7623         (mono_module_get_types): New helper function.
7624         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
7626 2003-11-08  Martin Baulig  <martin@ximian.com>
7628         * class.c (mono_class_inflate_generic_method): Interface method
7629         don't have a header.
7631         * reflection.c (mono_image_get_methodspec_token): Take an
7632         additional `MonoGenericInst *' argument instead of reading it from
7633         the header; this is necessary to support interfaces.
7634         (mono_image_create_token): Pass the `MonoGenericInst *' from the
7635         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
7636         (inflated_method_get_object): Take an additional `MonoGenericInst *'
7637         argument.
7639         * reflection.h (MonoReflectionInflatedMethod): Added
7640         `MonoGenericInst *ginst'.
7642 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
7644         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
7646 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
7648         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
7650 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
7652         * reflection.c 
7653         (reflection_methodbuilder_from_method_builder):
7654         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
7655         initialize a ReflectionMethodBuilder structure.
7656         (mono_image_get_methodbuilder_token):
7657         (mono_image_get_ctorbuilder_token): New functions to emit memberref
7658         tokens which point to types in another module inside the same assembly.
7660         * reflection.c: Use the new helper functions.
7661         
7662         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
7664         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
7665         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
7667         * reflection.c (resolution_scope_from_image): Emit a moduleref if
7668         neccesary.
7670         * reflection.c (mono_image_build_metadata): Emit metadata only for the
7671         current module. Emit the manifest only for the main module.
7673         * reflection.c (mono_image_create_token): Add assertion when a 
7674         memberref needs to be created.
7676         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
7678         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
7679         larger buffer for the custom attribute blob. Fixes #50637.
7680         
7681 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7683         * threadpool.c: notify listener on async processing handles after
7684         invoking the async callback. Thanks to Zoltan.
7686 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7688         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
7689         avoid code duplication.
7691         * reflection.h (MonoDynamicImage): New type which is currently unused,
7692         but will be used through the ref.emit code in place of 
7693         MonoDynamicAssembly.
7695         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
7696         object layout.
7698         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
7699         a MonoDynamicImage instead of just a MonoImage.
7700         
7701         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
7702         icalls to ModuleBuilder but keep their semantics, so they will work
7703         with moduleb->assemblyb. This will change later.
7704         
7705 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7707         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
7708         object layout.
7710         * reflection.c (mono_image_build_metadata): Avoid creation of a default
7711         main module, since it is now done by the managed code.
7713 2003-11-03  Martin Baulig  <martin@ximian.com>
7715         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
7716         `ginst->klass' here.
7717         (method_encode_methodspec): Don't use the `ginst->generic_method's
7718         klass if it's a generic instance, use `ginst->klass' in this case.
7720 2003-11-03  Martin Baulig  <martin@ximian.com>
7722         * reflection.c (mono_image_get_generic_method_param_info):
7723         Removed, use mono_image_get_generic_param_info() instead.
7724         (mono_image_get_type_info): Write the GenericParam table before
7725         the Method table.  This is neccessary because in the GenericParam
7726         table, type parameters of the class (ie. '!0' etc.) must come
7727         before the ones from its generic methods (ie. '!!0' etc).
7729 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7731         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
7733 2003-11-02  Martin Baulig  <martin@ximian.com>
7735         * reflection.c (create_generic_typespec): Take a
7736         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
7737         the generic parameters from it.
7739 2003-11-02  Martin Baulig  <martin@ximian.com>
7741         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
7742         instead of a `MonoClassField *' since we just need the type.
7743         (create_generic_typespec): New static function.  Creates a
7744         TypeSpec token for a generic type declaration.
7745         (mono_image_get_generic_field_token): New static function.
7746         (mono_image_create_token): If we're a FieldBuilder in a generic
7747         type declaration, call mono_image_get_generic_field_token() to get
7748         the token.
7750 2003-11-02  Martin Baulig  <martin@ximian.com>
7752         * reflection.h
7753         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
7754         `MonoReflectionGenericInst *declaring_type' and
7755         `MonoReflectionGenericInst *reflected_type' fields.
7757         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
7758         `MonoReflectionGenericInst *declaring_type' and a
7759         `MonoReflectionGenericInst *reflected_type' argument instead of a
7760         single `MonoReflectionGenericInst *type' one.  Set
7761         `res->declaring_type' and `res->reflected_type' from them.
7762         (mono_reflection_inflate_field): Likewise.      
7764 2003-11-02  Martin Baulig  <martin@ximian.com>
7766         * class.c (mono_class_setup_vtable): Don't store generic methods
7767         in the vtable.  
7769 2003-11-02  Martin Baulig  <martin@ximian.com>
7771         * reflection.h (MonoReflectionGenericInst): Added
7772         `MonoReflectionType *declaring_type'.
7774         * reflection.c (mono_reflection_bind_generic_parameters): Use
7775         `if (tb->parent)' instead of `klass->parent'.
7777 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
7779         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
7780         with an empty ASSEMBLY table.
7782         * reflection.c (mono_image_build_metadata): Avoid using the same loop
7783         variable in the inner and outer loops.
7785 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
7787         * metadata.h (mono_metadata_make_token): Put parentheses around macro
7788         argument.
7790         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
7791         
7792         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
7793         icalls. Instead, do everything in managed code. This is needed since
7794         it is hard to restore the original domain etc. in unmanaged code in the
7795         presence of undeniable exceptions.
7797         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
7798         New icalls to push and pop appdomain refs.
7800 2003-10-31  Martin Baulig  <martin@ximian.com>
7802         * class.c (inflate_generic_type): Renamed to
7803         mono_class_inflate_generic_type() and made it public.
7805         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
7806         New interncall.
7808         * loader.c (mono_field_from_memberref): Also set the retklass for
7809         typespecs.
7811         * fielder.c (mono_image_get_inflated_field_token): New static
7812         method; creates a metadata token for an inflated field.
7813         (mono_image_create_token, fixup_method): Added support for
7814         "MonoInflatedField".
7815         (fieldbuilder_to_mono_class_field): New static function.
7816         (mono_reflection_inflate_field): New public function.
7818         * reflection.h
7819         (MonoReflectionGenericInst): Added `MonoArray *fields'.
7820         (MonoReflectionInflatedField): New typedef.     
7822 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
7824         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
7825         for Solaris and other platforms without s6_addr16
7827 2003-10-30  Martin Baulig  <martin@ximian.com>
7829         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
7830         argument instead of two.
7831         (mono_class_inflate_generic_signature): Likewise.
7832         (inflate_generic_header): Likewise.
7833         (mono_class_inflate_generic_method): Likewise.  In addition, if
7834         `ginst->klass' is set, it becomes the new `method->klass'.
7836         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
7837         field.
7839         * reflection.c (encode_generic_method_sig): Write a 0xa as the
7840         first byte. [FIXME]
7841         (method_encode_methodspec): If we have generic parameters, create
7842         a MethodSpec instead of a MethodRef.
7843         (fixup_method): Added support for "MonoInflatedMethod" and
7844         "MonoInflatedCtor".
7845         (mono_image_create_token): Added support for "MonoInflatedMethod"
7846         and "MonoInflatedCtor".
7847         (inflated_method_get_object): New static function; returns a
7848         managed "System.Reflection.MonoInflatedMethod" object.
7849         (mono_reflection_bind_generic_method_parameters): Return a
7850         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
7851         (mono_reflection_inflate_method_or_ctor): Likewise.
7852         (mono_image_get_generic_method_param_info): Initialize unused
7853         fields to zero.
7854         (mono_image_get_generic_param_info): Likewise.
7856         * reflection.h (MonoReflectionInflatedMethod): New public
7857         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
7858         "S.R.MonoInflatedCtor" classes.
7860         * loader.c (method_from_memberref): If we're a TypeSpec and it
7861         resolves to a generic instance, inflate the method.
7863 2003-10-28  Dick Porter  <dick@ximian.com>
7865         * object.c (mono_runtime_run_main): Convert command-line arguments
7866         into utf8, falling back to the user's locale encoding to do so.
7868 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
7870         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
7871         at this time.
7873         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
7875         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
7876         up icalls at method definition time. Partially fixes #33569.
7878 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
7880         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
7881         marshalling of arrays. Fixes #50116.
7883         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
7885         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
7886         points to a vtable in the dying appdomain.
7888         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
7889         listeners into unmanaged code inside the lock.
7891         * object.c (mono_class_vtable): Turn off typed allocation in non-root
7892         domains and add some comments.
7894 2003-10-25  Martin Baulig  <martin@ximian.com>
7896         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
7898         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
7900         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
7901         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
7902         currently parsing.  Create the generic class and store it in
7903         `generic_inst->klass' before parsing the type arguments.  This is
7904         required to support "recursive" definitions; see mcs/tests/gen-23.cs
7905         for an example.
7906         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
7907         to support recursive typespec entries.
7909         * class.c (mono_class_setup_parent): If our parent is a generic
7910         instance, we may get called before it has its name set.
7911         (mono_class_from_generic): Splitted into
7912         mono_class_create_from_generic() and mono_class_initialize_generic().
7914 2003-10-25  Martin Baulig  <martin@ximian.com>
7916         * icall.c (ves_icall_Type_BindGenericParameters): Return a
7917         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
7918         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
7919         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
7921         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
7922         (create_typespec): Likewise.
7923         (mono_reflection_bind_generic_parameters): Return a
7924         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
7925         (mono_reflection_inflate_method_or_ctor): New public function.
7927         * reflection.h (MonoReflectionGenericInst): New typedef.        
7929 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
7931         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
7932         inside the domain lock. Fixes #49993.
7933         
7934         * object.c (mono_class_vtable): When typed allocation is used, 
7935         allocate vtables in the GC heap instead of in the mempool, since the
7936         vtables contain GC descriptors which are used by the collector even
7937         after the domain owning the mempool is unloaded.
7939         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
7941         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
7942         reflect what it does. Also invalidate mempools instead of freeing
7943         them if a define is set.
7945         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
7946         of the appdomain.
7947         
7948         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
7949         hold the finalizable objects in this domain.
7951         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
7952         appdomain.
7954         * appdomain.c (mono_domain_set): New function to set the current
7955         appdomain, but only if it is not being unloaded.
7957         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
7958         appdomain which is being unloaded.
7959         
7960         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
7961         unloading of the root appdomain.
7963         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
7964         icall to execute a method in another appdomain. Intended as a 
7965         replacement for InternalSetDomain, which can confuse the code 
7966         generation in the JIT.
7968         * appdomain.c (mono_domain_is_unloading): New function to determine
7969         whenever an appdomain is unloading.
7971         * appdomain.c (mono_domain_unload): New function to correctly unload
7972         an appdomain.
7974         * assembly.c (mono_assembly_load_references): Check that an assembly
7975         does not references itself.
7977         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
7978         domain manually, it asks the finalizer thread to do it, then waits for
7979         the result. Also added a timeout.
7981         * icall.c: Register the new icalls.
7983         * threads.h threads.c: Export the mono_gc_stop_world and 
7984         mono_gc_start_world functions.
7985         
7986         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
7987         function to fill out the mempool with 0x2a.
7989 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
7991         * reflection.h (MonoReflectionMethodAux): New structure to store
7992         information which is rarely used, thus is not in the MonoMethod
7993         structure.
7995         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
7996         store the aux info.
7998         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
7999         and marshalling info into the aux structure.
8001         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
8002         from the aux structure.
8004         * loader.c (mono_method_get_param_names): Retrieve the param names from
8005         the aux structure.
8006         
8007 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
8009         * exception.h exception.c: Add AppDomainUnloadedException && fix 
8010         warning.
8012 2003-10-21  Dick Porter  <dick@ximian.com>
8014         * socket-io.c
8015         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
8016         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
8018 2003-10-21  Martin Baulig  <martin@ximian.com>
8020         * reflection.c (mono_reflection_bind_generic_parameters):
8021         `klass->parent' is NULL for interfaces.
8023 2003-10-21  Martin Baulig  <martin@ximian.com>
8025         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8027 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
8029         * exception.c (mono_exception_from_name_msg): New helper function for
8030         creating exceptions and initializing their message field.
8032         * exception.c: Simplify functions using the new helper.
8034         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
8035         New function.
8037         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
8038         mono_raise_exception, since otherwise gcc doesn't generate the function
8039         epilog for raise_exception, confusing the stack unwinding in the JIT.
8040         Fixes #45043.
8042         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
8043         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
8044         Fixes #49499.
8046 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8048         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
8049         utf8.
8051 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
8053         * icall.c: Removed GetUninitializedObject method because
8054           AllocateUninitializedClassInstance does the same.
8056 2003-10-18  Martin Baulig  <martin@ximian.com>
8058         * class.c (inflate_generic_signature): Renamed to
8059         mono_class_inflate_generic_signature() and made it public.
8060         (my_mono_class_from_generic_parameter): New static function; if we
8061         don't already have the generic parameter's MonoClass, create a
8062         very simple one which is just used internally in the runtime and
8063         not passed back to managed code.
8065         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
8067         * metadata.h (MonoMethodSignature): Moved the
8068         `MonoGenericParam *gen_params' to the MonoMethodHeader.
8069         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
8071         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
8072         ves_icall_MonoMethod_GetGenericArguments(); this is now an
8073         interncall on the MonoMethod class, not on MethodInfo.
8074         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
8075         calling mono_reflection_bind_generic_method_parameters() directly.
8077         * loader.c (mono_method_get_signature): If this is a MethodSpec;
8078         return the already computed `method->signature'.
8079         (method_from_methodspec): New static function to load a method
8080         from a MethodSpec entry.
8081         (mono_get_method_from_token): Call the new method_from_methodspec()
8082         for MethodSpec tokens.  
8083         (mono_get_method_from_token): If we're a generic method, load the
8084         type parameters.
8086         * reflection.c (mono_image_get_memberref_token): Allow
8087         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
8088         table.
8089         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
8090         (mono_image_create_token): First check whether it's a generic
8091         method (so we'd need to create a MethodSpec), then do the other
8092         two alternatives.
8093         (mono_reflection_bind_generic_method_parameters): Return a
8094         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
8095         called directly from the interncall.
8097 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
8099         * reflection.c (load_public_key): Move loading of the public key
8100         into managed code.
8102         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
8104         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
8105         fields.
8107         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
8108         culture, hash_alg and public_key. Fixes #49555.
8110 2003-10-17  Martin Baulig  <martin@ximian.com>
8112         * class.h (MonoGenericInst): Moved this declaration here and added
8113         `MonoMethod *generic_method'.
8115         * icall.c
8116         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
8117         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
8119         * metadata.c (mono_metadata_type_equal): Two types of
8120         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
8121         index; ie. don't compare the address of the `MonoGenericParam'
8122         structure.
8123         (mono_metadata_load_generic_params): Removed the `MonoMethod
8124         *method' argument.
8126         * metadata.h (MonoGenericInst): Moved declaration to class.h.
8127         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
8129         * reflection.c (method_encode_signature): Encode the number of
8130         generic parameters.
8131         (encode_generic_method_sig): New static function.
8132         (method_encode_methodspec): New static function; creates an entry
8133         in the MethodSpec table for a generic method.
8134         (mono_image_get_methodspec_token): New static function.
8135         (mono_image_create_token): Call mono_image_get_methodspec_token()
8136         for generic methods.
8137         (mono_reflection_bind_generic_method_parameters): New public
8138         function.  Instantiates a generic method.
8140 2003-10-16  Martin Baulig  <martin@ximian.com>
8142         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
8143         *gen_params' here from MonoMethodHeader.
8145         * metadata.c (mono_metadata_parse_method_signature): If we have
8146         generic parameters, initialize `method->gen_params' and then set
8147         the correct `type->data.generic_param' in all the parameters.
8149 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
8151         * threads.c (mono_threads_get_default_stacksize): New function to 
8152         return the default stacksize.
8154         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
8155         termination of the finalizer thread, since the previous method had
8156         race conditions. Fixes #49628.
8158         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
8159         as for the other managed threads.
8161 2003-10-16  Martin Baulig  <martin@ximian.com>
8163         * class.c (inflate_generic_signature): Copy `generic_param_count'
8164         and `gen_params'.
8166         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
8167         New interncall.
8169         * metadata.c (mono_metadata_parse_method_signature): Actually set
8170         the `method->generic_param_count' here.
8171         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
8173 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
8175         * object.h: Add a new field to TypedRef to simplify the implementation
8176         of the REFANY opcodes in the JIT.
8178         * icall.c: Make use of the new field.
8180         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
8181         dynamically.
8183 2003-10-15  Martin Baulig  <martin@ximian.com>
8185         * class.c (mono_class_from_gen_param): Renamed to
8186         mono_class_from_generic_parameter() and moved most of the
8187         functionality from mono_reflection_define_generic_parameter()
8188         here; ie. we create a "real" class here.
8189         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
8190         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
8191         previously been called.
8193         * class.h (MonoGenericParam): Moved the declaration of this struct
8194         here from metadata.h and added `MonoMethod *method'.
8196         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
8197         interncall.
8199         * loader.c (mono_get_method_from_token): If we have any generic
8200         parameters, call mono_metadata_load_generic_params() to read them
8201         from the MONO_TABLE_GENERICPAR.
8203         * metadata.c (mono_metadata_load_generic_params): Added
8204         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
8206         * metadata.h (MonoMethodSignature): Replaced
8207         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
8208         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
8210         * reflection.c (mono_reflection_define_generic_parameter): Moved
8211         most of the functionality into the new
8212         mono_class_from_generic_parameter(); set the `method' field if
8213         we're a method parameter.       
8215 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
8217         * marshal.c (emit_struct_conv): if native size is 0
8218         emit no code.
8220 2003-10-14  Martin Baulig  <martin@ximian.com>
8222         * icall.c: The generics API has changed in the spec since it was
8223         added to System.Type; these modifications make it match the spec
8224         again.
8225         (ves_icall_Type_GetGenericParameters): Renamed to
8226         `ves_icall_Type_GetGenericArguments'.
8227         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
8228         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
8229         `ves_icall_MonoType_get_HasGenericArguments'.
8230         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
8231         `ves_icall_MonoType_get_IsGenericParameter'.
8232         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
8233         this is no interncall anymore.
8234         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
8235         `ves_icall_TypeBuilder_get_IsGenericParameter'.
8237 2003-10-14  Martin Baulig  <martin@ximian.com>
8239         * reflection.c (mono_reflection_bind_generic_parameters): Also
8240         inflate generic methods if we're reading the class from IL.
8242 2003-10-13  Martin Baulig  <martin@ximian.com>
8244         * reflection.c (mono_reflection_define_generic_parameter): This
8245         method isn't called directly from the icall anymore; take a
8246         `MonoReflectionAssemblyBuilder *' so we can use this for type and
8247         method generic parameters.
8248         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
8249         (method_builder_encode_signature): Encode generic parameters.
8250         (mono_image_get_method_info): Write generic params to the
8251         MONO_TABLE_GENERICPARAM table.
8253         * reflection.h (MonoReflectionMethodBuilder): Added
8254         `MonoArray *generic_params'.
8256         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
8258         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
8259         wrapper for mono_reflection_define_generic_parameter().
8260         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
8262 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
8264         * marshal.h: Add missing function to fix build.
8266         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
8267         the SetLastError pinvoke attribute.
8269         * marshal.c (mono_marshal_set_last_error): New helper function called
8270         by the generated code.
8271         
8272         * marshal.c (mono_mb_emit_branch): New helper function.
8274         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
8276         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8277         classes as parameters and return values of delegates. Fixes #29256. 
8279 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
8281         * locales.c: use gint32 in non HAVE_ICU case
8283 2003-10-11  Martin Baulig  <martin@ximian.com>
8285         * mono-debug.c (mono_debug_add_method): Added a workaround for
8286         bug #48591.
8288 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
8290         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
8291         delegates passed to native code must use the STDCALL calling 
8292         convention. Fixes #35987.
8294 2003-10-10  Martin Baulig  <martin@ximian.com>
8296         * class.c (inflate_generic_type): If we're inflating for a generic
8297         type instance (and not for a generic method), return
8298         MONO_TYPE_MVAR unchanged.
8300 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8302         * string-icalls.c: Join ignores null strings in the source array.
8303         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
8304         * threads.c: GetAvailableTheads is slightly more accurate.
8306 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
8308         * threads.h threads.c : add mono_threads_set_default_stacksize
8309         and pass default to CreateThread calls.
8311 2003-10-09  Dick Porter  <dick@ximian.com>
8313         * icall.c:
8314         * locales.h:
8315         * locales.c: Internal calls for constructing CultureInfo and
8316         related objects from libicu (if its available.)
8318 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
8320         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
8322 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8324         * threadpool.c: added an argument to async_invoke_thread that is the
8325         item to process, pass the MonoAsyncResult to the thread start function
8326         when creating a new thread. This way we don't need to acquire any lock
8327         when we're creating a new thread. Readded a semaphore for faster
8328         response times (instead of that Sleep i added).
8330 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
8332         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
8333         get daylight change dates better on Windows, fix handling
8334         of platforms without tm_gmtoff.
8336 2003-10-06  Martin Baulig  <martin@ximian.com>
8338         * class.c (inflate_generic_method): Renamed to
8339         mono_class_inflate_generic_method() and made public.
8340         (mono_class_init): Don't inflate the generic methods here.
8341         (mono_class_from_generic): Added `gboolean inflate_methods'
8342         argument.  Inflate the methods here.
8344         * loader.c (mono_method_get_param_names): Ignore instances of
8345         generic types for the moment.
8347         * reflection.c (fixup_method): Added support for inflated methods.
8348         (mono_image_create_token): Use mono_image_get_methodref_token()
8349         for inflated methods.
8350         (mono_custom_attrs_from_param): Ignore instances of generic types
8351         for the moment.
8352         (mono_reflection_bind_generic_parameters): New public function.
8353         Moved all the functionality from
8354         ves_icall_Type_BindGenericParameters() here and added support for
8355         dynamic types.
8356         (mono_reflection_define_generic_parameter): Initialize
8357         `klass->methods' here.
8359         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
8360         functionality into mono_reflection_define_generic_parameter().
8361         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
8362         TypeBuilder, return that TypeBuilder.
8364 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8366         * appdomain.c: removed mono_delegate_semaphore.
8368         * threadpool.c:
8369         (mono_thread_pool_add): moved hash table creation inside and the thread 
8370         creation outside of the critical region.
8371         (mono_thread_pool_finish): removed obsolete code.
8372         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
8373         continue or exit the thread depending on the queue.
8375 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
8377         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
8378         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
8379         handle more bool marshalling options
8381 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
8383         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
8384         arrays of structs. Also add a more descriptive error message when
8385         a structure member is marshalled as LPArray.
8387 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
8389         * marshal.c (mono_marshal_get_native_wrapper): Add support for
8390         marshalling arrays of complex types. Fixes #29098. Also remove an
8391         usused and incomplete function.
8393 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
8395         * gc.c: report heap_size - free_bytes as total memory allocated
8396         (bug#49362).
8398 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
8400         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
8401         fix timezone handling problems on Windows.
8402         
8403         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
8404         asserts when the year is outside the range handled by ms the functions.
8406         * class.c (setup_interface_offsets): If the class is an interface,
8407         fill out its interface_offsets slot.
8409 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8411         * threadpool.c: mark threadpool threads as background.
8413 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
8415         * decimal.c - define DECINLINE to nothing if not using GCC
8417 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
8419         * assembly.c: More refcount fixes.
8421 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8423         * string-icalls.c: if we're not trimming, return the same string.
8424         When not splitting, don't create a new string.
8426 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8428         * image.c:
8429         (mono_image_open): increment the ref_count inside the critical section.
8431 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
8433         * image.c (mono_image_open): Fix reference counting bug.
8435 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
8437         * marshal.c (mono_marshal_type_size) struct alignment changed for 
8438         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
8439         64bits. Avoid leak in mono_marshal_get_native_wrapper when
8440         mono_lookup_pinvoke_call throws.        
8442 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
8444         * reflection.c (mono_reflection_parse_type): Fix #49114.
8446         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
8447         temporary workaround for cygwin header problem.
8449         * object.c (mono_object_isinst): Synchronize this with the code
8450         generated by the JIT for casts.
8452 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
8454         * reflection.c (encode_type): Fix #38332.
8456 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
8458         * marshal.c (mono_marshal_method_from_wrapper): New function to return
8459         the original method from the wrapper method.
8461 2003-09-25  Martin Baulig  <martin@ximian.com>
8463         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
8464         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
8465         (ves_icall_Type_get_IsGenericInstance): New interncall.
8467 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
8469         * object.c: fix cast warning in big endian code.
8471 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
8473         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
8474         
8475 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8477         * assembly.c: don't call check_env from mono_assembly_load. It's
8478         already done once in mono_assemblies_init and may cause headaches when
8479         multiple threads are loading assemblies.
8481 2003-09-19  Martin Baulig  <martin@ximian.com>
8483         * reflection.c (mono_reflection_define_generic_parameter): Don't
8484         allocate `klass->methods', set `klass->flags' to
8485         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
8487 2003-09-18  Martin Baulig  <martin@ximian.com>
8489         * class.c (mono_class_init): Don't create `class->methods' if it's
8490         already initialized.
8492         * metadata.c (mono_metadata_load_generic_params): Make this
8493         actually work.
8495         * reflection.c (mono_reflection_define_generic_parameter): Set
8496         parent class and interfaces from the constraints.
8498         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
8499         to keep this struct in sync with the declaration in TypeBuilder.cs.
8501 2003-09-17  Martin Baulig  <martin@ximian.com>
8503         * metadata.h (MonoType): Replaced the data's `int type_param'
8504         field with `MonoGenericParam *generic_param'.
8505         (MonoGenericParam): Added `MonoClass *klass'.
8507         * class.c (mono_class_from_gen_param): Removed the
8508         `MonoImage *image' and `int type_num' arguments.
8510         * metadata.c (mono_metadata_parse_generic_param): New static
8511         method; creates a MonoGenericParam which just contains the index.
8512         (do_mono_metadata_parse_type): Call
8513         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
8514         MONO_TYPE_MVAR.
8516         * reflection.c (mono_image_typedef_or_ref): Generic type
8517         parameters may be in the same assembly, but never use a typedef
8518         for them.
8519         (mono_reflection_define_generic_parameter): We're now creating a
8520         "real" class for the type parameter; it's now safe to call
8521         mono_class_from_mono_type() on the class'es type, it'll do the
8522         right thing.
8524 2003-09-16  Martin Baulig  <martin@ximian.com>
8526         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
8527         `symfile->range_entry_size' and `symfile->class_entry_size' here;
8528         the `symfile' data structure must be fully initialized before it
8529         gets added to the table.
8531 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
8533         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
8535         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
8536         class init trampolines.
8538 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
8540         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
8541         to the built-in profiler to turn off time and allocation profiling
8542         respectively.
8544 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
8546         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
8547         g_direct_equal.
8549         * debug-helpers.c (mono_method_full_name): Print the wrapper type
8550         in human readable form.
8552 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
8554         * reflection.c icall.c: Fixed warnings.
8556         * image.c (load_class_names): Use a temporary hash table to hold the
8557         namespaces in order to avoid doing many string comparisons.
8559         * image.h: Fix typo.
8561         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
8562         Pass NULL instead of g_direct_equal to the GHashTable constructor 
8563         since the NULL case is short-circuited inside g_hash_table_lookup, 
8564         leading to better performance.  
8566         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
8567         obtain the first custom attribute for a given index. Depends on the
8568         CustomAttribute table being sorted by the parent field.
8570         * reflection.c (mono_custom_attrs_from_index): Use the new function 
8571         for better performance.
8573 2003-09-07  Martin Baulig  <martin@ximian.com>
8575         * class.c (mono_class_init): If we're a generic instance, inflate
8576         all our methods instead of loading them from the image.
8577         (mono_class_from_generic): Set `class->methods = gklass->methods'.
8579 2003-09-07  Martin Baulig  <martin@ximian.com>
8581         * mono-debug-debugger.c: Added support for constructors.
8583 2003-09-06  Martin Baulig  <martin@ximian.com>
8585         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
8586         New interncall.
8588         * reflection.c (mono_reflection_setup_generic_class): Call
8589         ensure_runtime_vtable() to create the vtable.
8591 2003-09-05  Martin Baulig  <martin@ximian.com>
8593         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
8594         MONO_TYPE_MVAR.
8596 2003-09-04  Martin Baulig  <martin@ximian.com>
8598         * reflection.c (mono_reflection_define_generic_parameter): Generic
8599         parameters start with zero.
8601 2003-09-04  Martin Baulig  <martin@ximian.com>
8603         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8605         * reflection.h (MonoReflectionGenericParam): New typedef.
8606         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
8607         the generic parameters from the managed TypeBuilder.
8609         * reflection.c (mono_reflection_define_generic_parameter): New function.
8610         (mono_reflection_create_runtime_class): Encode generic parameters.
8611         (mono_reflection_setup_generic_class): New function; this is
8612         called after adding adding all generic params to the TypeBuilder.
8613         (encode_type): Added MONO_TYPE_VAR.
8615 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
8617         * class.h class.c (mono_class_needs_cctor_run): Moved this method
8618         here from the JIT.
8620         * assembly.h assembly.c: Moved the AOT loading code into an assembly
8621         load hook.
8623 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
8625         * reflection.h reflection.c class.h class.c: Delete duplicate 
8626         definition of mono_type_get_name () from reflection.c and export the
8627         one in class.c.
8629         * class.c: Class loading fixes from Bernie Solomon 
8630         (bernard@ugsolutions.com).
8632         * reflection.c: Endianness fixes from Bernie Solomon 
8633         (bernard@ugsolutions.com).
8634         
8635 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
8637         * assembly.h assembly.c: Define a file format version for AOT
8638         libraries.
8639         
8640         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
8642         * appdomain.h (MonoJitInfo): New field to determine whenever the
8643         code is domain neutral.
8644         
8645 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
8647         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
8649 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
8651         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
8652         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
8653         Avoid caching the result since strings must be domain specific. Fixes
8654         #48050.
8656 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
8658         * marshal.c (mono_marshal_init): Make this callable multiple times
8659         since it is hard to find a correct place to call it.
8661         * object.c (mono_runtime_class_init): Execute static constructors in
8662         the correct appdomain.
8664         * image.c (build_guid_table): Handle the case when multiple images have
8665         the same GUID.
8667 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8669         * icall.c: added a couple of icalls for System.Web.
8671 2003-08-28  Martin Baulig  <martin@ximian.com>
8673         * icall.c (ves_icall_Type_BindGenericParameters): Use
8674         `klass->generic_inst' instead of `&klass->byval_arg' in the
8675         mono_type_get_object() call.  The returned type must be
8676         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
8678 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
8680         * NOTES: New file.
8682         * object.c (mono_class_proxy_vtable): Make it thread safe.
8684         * pedump.c: Fix warning.
8686         * object.c appdomain.h: Get rid of metadata_section. 
8687         It is no longer needed and it was causing deadlocks with domain->lock.
8689         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
8691 2003-08-26  Martin Baulig  <martin@ximian.com>
8693         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
8695 2003-08-26  Martin Baulig  <martin@ximian.com>
8697         * pedump.c (main): Call mono_metadata_init(),
8698         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
8699         and mono_loader_init().
8701 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
8703         * loader.h: Add missing include to fix build.
8705         * image.h: mono_image_load_references is no more.
8707         * assembly.c: Reworked assembly loading to make it really thread safe.
8708         After these changes, the assembly returned by mono_assembly_open is
8709         fully initialized, i.e. all its references assemblies are loaded.
8711         * assembly.c (mono_image_load_references): Renamed to 
8712         mono_assembly_load_references, and made private, since clients no
8713         longer need to call it.
8715         * class.c: Removed calls to mono_assembly_load_references, since it was
8716         a source of deadlocks.
8718         * loader.h loader.c class.h class.c: Protect data structures using a 
8719         new lock, the loader lock.
8721         * class.c (mono_class_setup_vtable): Create temporary hash tables and
8722         GPtrArrays only when needed.
8724         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
8725         into empty structures by mcs. Fixes pinvoke7.cs.
8726         
8727         * domain.c (mono_init): Call a new initialization function.
8729         * appdomain.c (mono_runtime_init): Call the new initializer function
8730         of the marshal module.
8732         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
8733         inserted into empty structures by mcs. Fixes pinvoke7.cs.
8735         * marshal.h marshal.c: Added locks around the wrapper caches to make
8736         this module thread safe.
8738         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
8739         this argument. Fixes pinvoke1.exe.
8741 2003-08-25  Lluis Sanchez <lluis@ximian.com>
8743         * object.h: Added call_type field to MonoMethodMessage and the corresponding
8744         enumeration of values. Removed fields to store remote call output values in
8745         MonoAsyncResult. Not needed any more.
8746         * object.c: Initialize call_type and async_result fields in mono_message_init.
8747         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
8748         dispatching the message.
8749         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
8750         async call to finish. To do it use a message with EndInvoke call type.
8752 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
8754         * loader.h loader.c (mono_method_hash_marhal_info): New function which
8755         determines whenever a method has marshalling info.
8757 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8759         * assembly.c: fix the build on windows.
8761 2003-08-22 Lluis Sanchez <lluis@ximian.com>
8763         * object.cs: Fixed bug #47785.
8765 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
8767         * string-icalls.c (StringReplace): If their are no occurances of
8768         the old string found return a reference to the supplied
8769         string. This saves some memory and matches MS behavoir.
8770         
8771 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8773         * socket-io.c: fixed compilation for systems that define AF_INET6
8774         and don't define SOL_IP/SOL_IPV6.
8776 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
8778         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
8779         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
8781         * rawbuffer.c rawbuffer.h: Make this module thread safe.
8783         * domain.c: Make this module thread safe.
8785         * domain.c (mono_init): Call new initialization function.
8787         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
8788         reference types too. Fixes #38812.
8790         * image.c (mono_image_init): Fixed warnings.
8792         * class.c (mono_class_from_typeref): Handle assembly load failure
8793         correctly.
8795         * appdomain.c (add_assemblies_to_domain): Handle the case when
8796         the references of an assembly are not yet loaded.
8798         * metadata.c image.c assembly.c: Moved initialization of global
8799         variables to a separate function called at startup since lazy 
8800         initialization of these variables is not thread safe.
8801         
8802         * image.c assembly.c: Made this module thread safe by adding locks in 
8803         the appropriate places.
8805         * domain.c (mono_init): Call the new initialization functions of the
8806         three modules.
8808 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
8810         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
8811           make a direct call. It is proxy's work to make the call asynchronous.
8812           mono_delegate_end_invoke(): If the targe is a proxy, just collect
8813           the return values.
8814         * object.cs: mono_method_call_message_new(): read AsyncResult and
8815           state object from parameters list, if this info is requested.
8816         * object.h: Added fields to store remote call output values in
8817           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
8819 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
8821         * object.h: add needed fields to MonoThread.
8822         * threads.c, threads.h: allow registering a function to cleanup data
8823         allocated per thread by the JIT.
8825 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8827         * loader.h: portability fix by Bernie Solomon
8828         * <bernard@ugsolutions.com>.
8830 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
8832         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
8833         return a MonoArray. This simplifies the code and also ensures that
8834         the cache allways contains an object reference as a value.
8836         * icall.c (ves_icall_get_parameter_info): Simplified using the new
8837         function.
8839 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8841         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
8842         fixes a problem with byte ordering when getting the address family for
8843         a socket.
8845 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
8847         * .cvsignore: Added monosn.
8849         * reflection.h reflection.c loader.c: Added support for parameter
8850         marshalling to dynamically created types. Fixes #47295.
8852 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
8854         * rand.c: remove useless warnings.
8856 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
8858         * class.c: implemented ldtoken for methods and fieldrefs.
8860 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8862         * threadpool.c: when mono_async_invoke was called, no one took care of
8863         monitoring the queue. So if the method invoked took some time and we
8864         got new async invoke requests after 500 ms (the thread created waited
8865         that long in WaitForSingleObject), the new async invoke was not called
8866         until the previous one finished.
8868         This is fixed now. Thanks to Totte for helping with it.
8870 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8872         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
8874 2003-08-11  Martin Baulig  <martin@ximian.com>
8876         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
8878 2003-08-06  Martin Baulig  <martin@ximian.com>
8880         * mono-debug-debugger.c: Added support for static fields,
8881         properties and methods.
8883 2003-08-06  Martin Baulig  <martin@ximian.com>
8885         * mono-debug-debugger.c: Don't store the MonoString's vtable to
8886         make this work for applications with multiple application domains.
8888 2003-08-04  Martin Baulig  <martin@ximian.com>
8890         * mono-debug-debugger.c: Completely reworked the type support; the
8891         most important thing is that we're now just using one single
8892         `MonoType' instance per type.
8894 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
8896         * mono-endian.h, mono-endian.c, icall.c: Added icall
8897         ves_icall_System_Double_AssertEndianity to assert double word endianity
8898         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
8900 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
8902         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
8903         support, icalls and fixes.
8905 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
8907         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
8908         classes that are a punctuation character in .NET is not the same a
8909         g_unichar_ispunct.
8911 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
8913         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
8915 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
8917         * icall.c: Add new MemCopy internalcall.
8918         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
8919         Simplified code; It is not necessary to handle all the cases here,
8920         as the C# code takes care of it.  Only handle the case of the name
8921         resource embedded into the assembly.
8923         Changed signature to return the data pointer and the size of the
8924         data. 
8926 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
8928         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
8929         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
8931 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
8933         * socket-io.c: ignore EINTR error in select.
8935 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
8937         * class.h, class.c: removed unused subclasses field in MonoClass.
8939 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
8941         * icall.c: improve fix of get_base_definition(). If the parent class
8942           doesn't have the mehod, look at the parent of the parent.
8943         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
8944           to check if a parameter is an in or out parameter
8945           (PARAM_ATTRIBUTE_IN is not set by default).
8946           mono_method_return_message_restore(): Use mono_class_value_size to
8947           get the size of a value type. mono_type_stack_size (parameterType)
8948           does not return the correct value if parameterType is byRef.
8949           mono_load_remote_field(), mono_load_remote_field_new(),
8950           mono_store_remote_field(), mono_store_remote_field_new():
8951           raise exception if the remote call returns an exception.
8953 2003-07-28  Martin Baulig  <martin@ximian.com>
8955         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
8956         method.  This is a wrapper around mono_runtime_invoke() which
8957         boxes the instance object if neccessary.
8959 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
8961         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
8962         metadata.h, row-indexes.h, verify.c: first cut of generics support.
8964 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
8966         * icall.c: disable mcs bug workaround.
8968 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
8970         * object.c (mono_runtime_class_init): Take the metadata_section
8971         mutex before obtaining the domain mutex.
8973         * appdomain.h: Added definition of metadata_section mutex here. 
8975         * object.c: define metadata_mutex here.
8977 2003-07-24  Ravi Pratap  <ravi@ximian.com>
8979         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
8980         fixed.
8982 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
8984         * reflection.c: Fix bug #46669
8986 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8988         * exception.c:
8989         * exception.h:
8990         * icall.c:
8991         * object.h: fill in the type name for TypeLoadException.
8993 2003-07-23  Ravi Pratap  <ravi@ximian.com>
8995         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
8996         relationship between TypeBuilders while compiling corlib) and bug
8997         45993 (Array types returned from the runtime while compiling
8998         corlib were from the loaded corlib).
9000 2003-07-22  Martin Baulig  <martin@ximian.com>
9002         * mono-debug-debugger.c: Reworked the type support a bit more;
9003         distinguish between types and classes.
9005 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
9007         * icall.c: add IsArrayImpl icall.
9009 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
9011         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
9012         initializing real_size only once. Also fix bug #46602.
9014 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
9016         * object.c: Renamed mono_metadata_section to metadata_section.
9018 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
9020         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
9021           empty array if the type is an array. Fixed.
9022           ves_icall_MonoMethod_get_base_definition: if the base method
9023           is abstract, get the MethodInfo from the list of methods of
9024           the class.
9025         * reflection.c: ParameterInfo.PositionImpl should be zero-based
9026           and it was 1-based. Fixed in mono_param_get_objects.
9028 2003-07-20  Martin Baulig  <martin@ximian.com>
9030         * mono-debug.h: Set version number to 31.
9031         (mono_debug_init): Added `MonoDomain *' argument.
9033         * mono-debug-debugger.c: Reworked the type support; explicitly
9034         tell the debugger about builtin types; pass the `klass' address to
9035         the debugger.
9037 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
9039         * image.c: Allow new metadata tables to be loaded without a
9040         warning. Also update the warning message to give the new constant value.
9041                 
9042 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
9044         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
9045         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
9046         array type representation changes.
9048 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
9050         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
9051         on Environment.Exit () call.
9053 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
9055         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
9056         requires a matching corlib.
9058 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
9060         * Changelog: My editor decided to add a CR to each line. Sorry about that.
9061           Committed again without the CRs.
9062         
9063 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
9065         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
9066           getting it from the "this" socket instance. Did not work
9067           if the socket is a subclass of Socket.
9068           Also fixed bug #35371.
9070 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
9072         * metadata.c: fixed size for TypedByRef.
9073         * loader.c: when searching for a method, consider the vararg amrker.
9074         * unicode.c, decimal.c: constify some arrays.
9076 2003-07-15  Dick Porter  <dick@ximian.com>
9078         * socket-io.c: Fixed compilation for gcc < 3.2.
9080         Fixed compilation for machines that don't have AF_INET6 (thanks to
9081         Bernie Solomon <bernard@ugsolutions.com> for that part.)
9083         Fixed compile warnings.
9084         
9085         Fixed formatting and line endings.
9087 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
9089         * socket-io.h:
9090         * socket-io.c: Added IPv6 support.
9092 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
9094         * class.c (mono_class_is_assignable_from): New function to implement
9095         the is_assignable_from logic. Used by mono_object_isinst, 
9096         Type::IsAssignableFrom () and the interpreter.
9098         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
9099         Object, even interfaces.
9100         
9101         * object.c (mono_object_isinst): Implement in terms of 
9102         is_assignable_from.
9104         * icall.c (ves_icall_type_is_assignable_from): New icall.
9106 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
9108         * domain.c (foreach_domain): fix compiler warning.
9110 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
9112         * image.c (load_metadata_ptrs): use g_strndup because strndup is
9113         not available on all plattforms
9115 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
9117         * image.h image.c: Store the metadata version string in MonoImage.
9118         * icall.c: New icall to retrieve the image version.
9119         * reflection.c (create_dynamic_image): Fill in the image version field
9120         * reflection.c (build_compressed_metadata): Use the image version
9121         from the image structure.
9123 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9125         * appdomain.c: modified comment.
9126         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
9127         That will be its last iteration when mono_gc_cleanup is called from
9128         mono_runtime_cleanup and before the domain is unloaded.
9130         Fixes bug #45962.
9132 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
9134         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
9135         attributes.
9137 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
9139         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
9140         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
9141         Bernie Solomon <bernard@ugsolutions.com>.
9143 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
9145         * object.c, object.h: provide mono_object_new_fast() for faster
9146         allocation in some special cases.
9148 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
9150         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
9151         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
9153 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
9155         * threadpool.c: fix leaks.
9157 2003-07-01  Dick Porter  <dick@ximian.com>
9159         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
9160         using MonoGHashTables.  Fixes threadpool bug posted to list.
9162 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
9164         * image.h, image.c: added support to load an assembly from a byte array.
9165         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
9166         assembly bundle support.
9168 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
9170         * threadpool.c (mono_thread_pool_add): keep a reference to the
9171         AsyncResult to prevent GC
9173 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
9175         * class.c: leak fix.
9177 2003-06-25  Dick Porter  <dick@ximian.com>
9179         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
9180         for the async object, the WaitHandle object will close the handle.
9181         Fixes bug 45321.
9183 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
9185         * class.c: in mono_array_class_get (), lookup from the hash with the
9186         same type we insert: this works around a bug in
9187         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
9188         lluis. The real fix will have to wait for after the release.
9190 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
9192         * icall.c: fix memory leak when getting type members.
9194 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
9196         * reflection.c: added more pubtoken special cases.
9198 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
9200         * class.c: handle field offset correctly when class size
9201         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
9203 2003-06-20  Martin Baulig  <martin@ximian.com>
9205         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
9206         *image' field.
9208 2003-06-20  Martin Baulig  <martin@ximian.com>
9210         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
9212 2003-06-20  Martin Baulig  <martin@ximian.com>
9214         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
9215         just distinguish between variables in registers and variables at
9216         an offset relative to a register.
9218 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9220         * icall.c: #ifdef out latest changes until mcs is fixed.
9222 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9224         * icall.c: return members in metadata order.
9226 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
9228         * icall.c: avoid infinite loop in GetTimeZoneData.
9230 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
9232         * icall.c: added Marshal.Prelink/All icalls.
9234 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
9236         * object.c, object.h: fix warnings and do some overflow checking
9237         when creating arrays.
9239 2003-06-17  Dick Porter  <dick@ximian.com>
9241         * file-io.h:
9242         * file-io.c: File attributes need to be tweaked slightly when
9243         passed from the managed to the w32 world.
9245 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
9246         * profiler.h profiler-private.h profiler.c: Rework last patch
9247         based on suggestion by Paolo.
9248         
9249 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
9251         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
9252         instruction level coverage data collection.
9253         * profiler.h profiler.c (: Added new callback function which can be
9254         used by the profiler to limit which functions should have coverage
9255         instrumentation.
9256         * profiler.c (mono_profiler_load): Call g_module_build_path to
9257         generate the file name of the profiler library.
9259 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
9261         * profiler.c, profiler.h, profiler-private.h: added basic block 
9262         coverage profiling API.
9264 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
9266         * reflection.c (mono_reflection_create_runtime_class): Add support
9267         for events in dynamically generated code.
9269         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
9270         not allocated.
9272 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
9274         * icall.c: when getting timezone info, return reasonable values if we
9275         can't get the actual data.
9277 2003-06-14  Dick Porter  <dick@ximian.com>
9279         * threads.c (start_wrapper): Remove the reference to the thread
9280         object in the TLS data, so the thread object can be finalized.
9281         This won't be reached if the thread threw an uncaught exception,
9282         so those thread handles will stay referenced :-( (This is due to
9283         missing support for scanning thread-specific data in the Boehm GC
9284         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
9286 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
9288         * reflection.c: ensure streams and tables are first allocated with
9289         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
9291 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
9293         * icall.c: fixed GetElementType for byrefs (bug# 44792).
9295 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
9297         * reflection.c (mono_reflection_create_runtime_class): Add support for
9298         properties to dynamically created classes.
9299         * reflection.c: Fix a few places where non-MonoObjects were inserted
9300         into the tokens hashtable.
9302 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
9304         * object.c: some support to handle out of memory exceptions.
9306 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
9308         * marshal.c (mono_marshal_get_native_wrapper): support reference
9309         return types
9311 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
9313         * object.h, object.c: more portability stuff from Bernie Solomon.
9314         Unexport mono_object_allocate(). Added mono_object_unbox ().
9315         Set exitcode when an unhandled exception is thrown.
9317 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
9319         * marshal.c (mono_marshal_get_native_wrapper): use custom
9320         marshaler for return types.
9322 2003-06-10  Dick Porter  <dick@ximian.com>
9324         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
9325         ip_mreq is available
9327 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
9329         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
9330         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
9331         by Bernie Solomon <bernard@ugsolutions.com>.
9333 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
9335         * gc.c (mono_gc_init): Avoid error message on shutdown when
9336         GC_DONT_GC=1 is used.
9338         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
9339         New icall to return the GUID of a module.
9341 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
9343         * class.c: ensure instance size always includes the parent's size
9344         even whem class size is set explicitly (fixes bug#44294).
9346 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
9348         * profiler.h, profiler.c: made the simple profiler thread-safe,
9349         get more accurate timing info. Allow the loading of an
9350         externally-developed profiler module.
9352 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
9354         * marshal.c (mono_marshal_get_native_wrapper): improved
9355         class/byref arguments.
9356         (mono_marshal_get_native_wrapper): better string marshaling support.
9358 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
9360         * class.c: ensure .pack and .size are handled correctly and
9361         simplified layout of static fields.
9363 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
9365         * appdomain.c
9366         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
9368         * loader.c (mono_lookup_pinvoke_call): look for modules in the
9369         current directory (fix bug 44008)
9371 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
9373         * marshal.c (mono_marshal_get_native_wrapper): started support for
9374         custom marshalers.
9375         (mono_delegate_to_ftnptr): consider marshalling specifications
9377 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
9379         * reflection.c, reflection.h: emit custom marshal info.
9381 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9383         * object.c: free the GError.
9384         * icall.c: added CloseEvent_internal.
9385         * threads.[ch]:
9386         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
9387         call.
9389 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
9391         * loader.c (mono_method_get_signature): Add support for dynamic
9392         assemblies.
9394 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
9396         * reflection.c: fixed bug #43905.
9398 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
9400         * class.c, domain.c, icall.c, metadata.h, object.h: support for
9401         handling TypedReference and ArgIterator.
9402         * loader.c, loader.h: added function to get signature at call site.
9404 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
9406         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
9407         data readonly. Buglets and warning fixes. Some MethodSpec support.
9409 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
9411         * class.h, class.c, object.c: remove relative numbering support.
9413 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
9415         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
9416         free the string, until we get a chance to fix Gtk#
9418 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9420         * marshal.c: revert last patch.
9422 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
9424         * icall.c: updates for new mono_class_vtable() not calling
9425         the type constructor anymore.
9427 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
9429         * object.h, object.c: separate vtable creation from type
9430         initialization. Make running the .cctor thread safe.
9432 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
9434         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
9436 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
9438         * loader.c (mono_get_method): consider calling convention
9440 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
9442         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
9443         to return the invisible global type for a module.
9445         * reflection.c (mono_image_build_metadata): Emit global fields too.
9447 2003-05-20  Peter Williams  <peterw@ximian.com>
9449         * loader.c (mono_lookup_internal_call): Add a few newlines.
9451 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
9453         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
9454         literal strings.
9456         * appdomain.c (set_domain_search_path): Recalculate search path when
9457         AppDomainSetup.PrivateBinPath changes.
9459         * object.c (mono_class_compute_gc_descriptor): It turns out some
9460         parts of the class libs (like System.Thread) holds pointers to
9461         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
9462         to treat native int a pointer type here.
9463         
9464 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
9466         * appdomain.h, domain.c: add hashtable for jump target resolution.
9468 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
9470         * reflection.h reflection.c icall.c: Added new icalls 
9471         GetManifestResourceInfoInternal, GetModulesInternal and support
9472         infrastructure.
9474 2003-05-16  Dick Porter  <dick@ximian.com>
9476         * icall.c:
9477         * file-io.h:
9478         * file-io.c: Implement System.IO.MonoIO::GetTempPath
9480 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
9482         * object.c: mono_store_remote_field: little fix to previous patch.
9484 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9486         * class.c: add constructors to array classes.
9487         * icall.c: special case array construction for InternalInvoke (),
9489 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
9491         * class.h class.c reflection.c object.c: Added support for field
9492         defaults in dynamically generated classes.
9494 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
9496         * reflection.c: properly encode charset for ddlimport.
9498 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
9500         * threads.c: allow compiling without GC.
9502 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
9504         * appdomain.h, object.c, object.h, threads.c, threads.h: added
9505         handling of thread static data.
9507 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
9509         * reflection.h, reflection.c: added mono_custom_attrs_free ().
9511 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
9513         * class.c (mono_array_class_get): always set the serializable flags
9514         (mono_array_class_get): always set the SEALED attribute for array types
9516 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
9518         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
9519         attributes (fix for bug 42021).
9521 2003-05-12  Dick Porter  <dick@ximian.com>
9523         * gc.c: Don't run finalizers when the finalizer thread is
9524         finishing up, because the default domain has already been
9525         destroyed.
9527 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
9529         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
9530         value is null, we should throw an exception.   This is slightly
9531         different than the other conventions used for the constructor.
9533 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9535         * socket-io.c: fixed windows build.
9537 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9539         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
9541 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
9543         * object.c (mono_string_new_wrapper): Compatibility fix for MS
9544         compilers.
9546 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
9548         * class.c (mono_class_layout_fields): Add experimental GC aware
9549         auto layout facility. Requires class library changes to work correctly.
9551         (mono_class_setup_vtable): Avoid overriding explicit interface
9552         method implementations. Fixes iface3.exe test.
9554         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
9555         object reference.
9556         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
9557         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
9559         * metadata.h: Add new type classification macro which determines
9560         whenever the type holds an object reference.
9562 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
9564         * marshal.c (mono_marshal_get_native_wrapper): cleanups
9566 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
9568         * gc.c (finalizer_thread): Work around a GC bug.
9570 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
9572         * marshal.c (emit_struct_conv): allow unions
9574         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
9576 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
9578         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
9580 2003-05-06  Martin Baulig  <martin@ximian.com>
9582         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
9584 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9586         * socket-io.c:
9587         (Select_internal): allow NULLs, don't create arrays if not needed.
9588         Coupled with Socket.cs changes.
9590         * threadpool.c:
9591         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
9592         register a finalizer for it that will close the semaphore handle. This
9593         fixes the leak and make Lupus' test run with > 4080 loops.
9595 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
9597         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
9598         Jerome Laban (bug #42287)
9600 2003-05-02  Martin Baulig  <martin@ximian.com>
9602         * debug-mono-symfile.h
9603         (MonoSymbolFile): Moved declaration into mono-debug.h.
9604         (MonoDebugMethodJitInfo): Likewise.
9605         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
9606         argument.
9607         (_mono_debug_address_from_il_offset): Take a
9608         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
9610         * mono-debug.h
9611         (MonoDebugDomainData): New struct.
9612         (mono_debug_get_domain_data): New function.
9613         (mono_debug_add_method): Take an additional `MonoDomain *'
9614         argument.
9615         (mono_debug_source_location_from_address): Likewise.
9616         (mono_debug_il_offset_from_address): Likewise.
9617         (mono_debug_address_from_il_offset): Likewise.
9619 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
9621         * reflection.c: one more check for null type in custom attrs.
9623 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9625         * reflection.c: avoid warning (comparison is always false due to limited
9626         range of data type).
9628 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9630         * icall.c: throw an exception in Type.GetField if the argument 'name'
9631         is NULL.
9633 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
9635         * reflection.c: fixed handling of enums in named arguments to custom
9636         attributes (bug #42123).
9638 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
9640         * reflection.c: use the right array element type and handle
9641         a null for a Type argument, too.
9643 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
9645         * reflection.c: handle arrays as arguments to custom attributes.
9647 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
9649         * reflection.c: handle a string value in a custom attr
9650         ctor that takes an object.
9652 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
9654         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
9655         (fix bug #42063)
9657 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
9659         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
9661 2003-04-27  Martin Baulig  <martin@ximian.com>
9663         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
9664         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
9665         MONO_DEBUGGER_EVENT_BREAKPOINT.
9666         (mono_breakpoint_trampoline_code): Removed.
9667         (mono_debugger_event_handler): The last argument is now a
9668         `guint32'.
9669         (mono_debugger_insert_breakpoint_full): Removed the
9670         `use_trampoline' argument.
9671         (mono_debugger_method_has_breakpoint): Likewise.
9672         (mono_debugger_trampoline_breakpoint_callback): Renamed to
9673         mono_debugger_breakpoint_callback(); take the method and
9674         breakpoint number as arguments.
9676 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
9678         * metadata.c: fix off by one when loading parameters attributes.
9680 2003-04-24  Martin Baulig  <martin@ximian.com>
9682         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
9684 2003-04-24  Martin Baulig  <martin@ximian.com>
9686         * mono-debug-debugger.c: Moved all code which interacts with the
9687         Mono Debugger here.
9689         * debug-mono-symfile.c: This code now just deals with the symbol
9690         file itself, the debugger code is now in mono-debug-debugger.c.
9692 2003-04-23  Martin Baulig  <martin@ximian.com>
9694         * mono-debug.c (mono_debug_source_location_from_il_offset):
9695         New method; like mono_debug_source_location_from_address(), but
9696         takes an IL offset instead of a machine address.
9698 2003-04-23  Martin Baulig  <martin@ximian.com>
9700         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
9701         `line' field; this is now computed by the debugger.
9703 2003-04-23  Martin Baulig  <martin@ximian.com>
9705         * mono-debug.[ch]: New files.  This is the new debugging interface.
9707         * mono-debug-debugger.[ch]: New files.  Moved all code which
9708         interacts with the Mono Debugger here.
9710 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
9712         * domain.c (mono_init): initialize mono_defaults.monitor_class
9714 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
9716         * reflection.c (method_encode_code): Add a spicy exception to help
9717         future compiler authors.
9719 2003-04-21  Martin Baulig  <martin@ximian.com>
9721         * icall.c
9722         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9723         Make this work with relative pathnames; g_filename_to_uri() needs
9724         an absolute filename.
9726 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
9728         * icall.c: Track name changes in Object and ValueType.
9730 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
9732         * metadata.c (mono_type_stack_size): size should be a multiple of
9733         sizeof (gpointer)
9735 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9737         * gc.c:
9738         (internal_domain_finalize): moved into mono_domain_finalize. No need
9739         to create another thread because the finalizers will be run in the
9740         finalizer thread.
9741         
9742         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
9743         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
9744         to be run (MS does this too).
9746 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
9748         * object.c (mono_class_compute_gc_descriptor): Update comment.
9750         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
9752         * image.h: Add synchronized wrapper cache.
9754         * image.c (do_mono_image_open): Initialize cache.
9756         * reflection.c (create_dynamic_mono_image): Initialize cache.
9758 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9760         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
9761         ves_icall_System_Buffer_ByteLengthInternal.
9763 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
9765         * reflection.c: setup klass->nested_in earlier. Allow
9766         a dash in the assembly name.
9768 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
9770         * metadata.c (mono_type_to_unmanaged): dont access
9771         type->data.klass for MONO_TYPE_OBJECT
9772         (mono_type_to_unmanaged): consider System.Delegate class
9774 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
9776         * class.c: just setup supertypes in the proper place instead of
9777         initializing the full element class for arrays.
9779 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
9781         * class.c: ensure the element class of arrays is initialized.
9782         Setup the supertype info for array classes, too.
9784 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
9786         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
9788 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9790         * Makefile.am: re-added -m option when running cygpath. This way,
9791         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
9792         separator.
9793         * mono-config.c: same codepath for locating mono config file for WIN32
9794         and the rest.
9795         * assembly.c: if mono_assembly_setrootdir is called, don't override
9796         the value set.
9798 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9800         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
9801         MONO_ASSEMBLIES variable.
9803 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
9805         * icall.c: added Assembly::GetNamespaces() icall.
9807 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9809         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
9811 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
9813         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
9814         * object.c: fixed bug in the construction of vtable for proxies
9816 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
9818         * object.c (mono_array_new): Mark mono_array_new as an icall.
9820 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9822         * class.c: fixed test for public method when overriding interfaces.
9823         Closes bug #40970.
9825 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
9827         * appdomain.h, domain.c: added mono_domain_foreach() to
9828         be able to access the currently loaded appdomains.
9829         * object.c: make string interning work across sppdomains.
9830         Mark some functions for use as icalls.
9832 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
9834         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
9836         * reflection.h reflection.c: Allocate long living data using 
9837         GC_MALLOC_ATOMIC so the collector does not need to scan it.
9839         * reflection.c: Double the allocation size in streams instead of
9840         increasing it, to prevent unneccesary copying on large assemblies.
9841         
9842         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
9843         creation if the assembly does not have the Run flag set.
9845 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
9847         * class.h: avoid the C++ keywords in header files (Jerome Laban
9848         spotted and fixed this).
9850 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9852         * object.c:
9853         (mono_unhandled_exception): fill in the arguments for the
9854         UnhandledException event. Only trigger that event for the default
9855         domain (as MS does).
9857 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
9859         * object.c: Improve typed allocation stuff based on suggestions from
9860         Paolo. Also turn it on if the GC library supports it.
9862 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
9864         * object.c object.h class.h: Added experimental typed allocation
9865         facility using the interfaces in gc_gcj.h.
9867         * os/gc_wrapper.h: Added new include files.
9868         
9869 2003-04-03  Martin Baulig  <martin@ximian.com>
9871         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
9872         which is not yet enabled by default.
9874         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
9875         functions.
9876         (mono_gc_lock, mono_gc_unlock): New static functions.
9878         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
9879         functions; stop/start the world for the garbage collector.  This
9880         is using the windows API; we need to complete the SuspendThread()/
9881         ResumeThread() implementation in the io-layer to make this work on Unix.
9882         (mono_gc_push_all_stacks): New public function; tells the garbage
9883         collector about the stack pointers from all managed threads.
9885 2003-04-03  Martin Baulig  <martin@ximian.com>
9887         * object.h (MonoThread): Added `gpointer stack_ptr'.
9889         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
9891 2003-04-03  Martin Baulig  <martin@ximian.com>
9893         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
9895 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
9897         * reflection.c (typebuilder_setup_fields): Initialize field.first and
9898         field.last.
9900 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
9902         * loader.c (mono_lookup_internal_call): Report the corlib that is
9903         out of sync.
9905 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
9907         * icall.c (ves_icall_type_GetTypeCode): fixed check for
9908         System.DBNull (it's class not valuetype).
9910 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
9912         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
9913         if the array method was already assigned a token (fixes bug#40646).
9915 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
9917         * reflection.c (mono_reflection_get_type): Attempt type resolve even
9918         if no assembly is given.
9920 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
9922         * metadata.h: Added the new tables.
9924         * row-indexes.h: Added definitions for new tables.
9926         * metadata.c: Add schemas for new tables, and add support for
9927         computing the sizes of them.
9929         * class.c: Update for handling the new type cases.
9931 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
9933         * metadata.h (MONO_TYPE_IS_VOID): new macro
9935 2003-03-31  Martin Baulig  <martin@ximian.com>
9937         * threads.h (MonoThreadCallbacks): Added `thread_created'.
9939         * threads.c (mono_thread_new_init): Call `thread_created' in the
9940         mono_thread_callbacks.
9942 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
9944         * loader.h: added marshalbyrefobject_class to mono_defaults
9945         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
9946         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
9947           generation of output parameters.
9948           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
9949         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
9950           contextbound and the target object belongs to the context of the caller.
9951         * object.h: added context and unwrapped_server variables in MonoRealProxy.
9952         * object.c: Implemented support for interfaces and abstract classes
9953           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
9954           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
9956 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
9958         * class.h class.c (mono_class_is_subclass_of): New function.
9959         
9960         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
9961         routines for most common case (calls from ArrayList::ToArray).
9963         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
9964         routine so programs which call Environment::Exit() can be profiled.
9966         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
9967         Added MONO_ARCH_SAVE_REGS.
9969         * icall.c (ves_icall_type_is_subtype_of): Use new function.
9971 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
9973         * blob.h: Add a couple of new MonoType types definitions.
9975         * tabledefs.h: Add a couple of new call convs.
9977 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
9979         * reflection.h (MonoReflectionDynamicAssembly): track changes in
9980         the layout of the class.
9982         * reflection.c (alloc_table): double the size on overflow to avoid
9983         unnecessary copying.
9985         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
9986         avoid filling out metadata tables and blobs. Also set mb->ilgen to
9987         null so it can be garbage collected.
9988         
9989 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
9991         * reflection.c (mono_reflection_get_type): Return the resolved type
9992         only if it is in the assembly we searched.
9994         * reflection.c (ensure_runtime_vtable): Initialize method slots.
9996         * class.c (mono_class_setup_vtable): Set the slot of the overriding
9997         method.
9999 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10001         * appdomain.c:
10002         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
10003         the right one is 'file:///blah', but MS allows it.
10004         * assembly.c:
10005         (mono_assembly_open): allow 'file://blah'
10007         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
10009 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
10011         * socket-io.c: fixes bug #40310.
10013 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
10015         * reflection.c (mono_reflection_parse_type): handle deeply nested
10016         types correctly.
10018         * reflection.c (mono_image_create_token): Use unique token values
10019         since they will be put into a hash table.
10021         * class.c (mono_class_setup_vtable): If a method occurs in more than
10022         one place in the vtable, and it gets overriden, then change the
10023         other occurances too.
10025         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
10026         object as return type.
10028 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10030         * icall.c: Deleted "ToString" implementation for double and float
10031         because they are full implemented in managed code.
10033 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10035         * reflection.c, reflection.h: implemented and exported functions
10036         to retrieve info about custom attributes.
10038 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10040         * appdomain.c: moved Uri handling to assembly.c
10041         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
10042         work when using a file Uri in *nix and windows.
10044         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
10045         GetReferencedAssemblies.
10047 2003-03-18  Dick Porter  <dick@ximian.com>
10049         * icall.c: Rename a couple of internal calls
10051         * threads.c: Set the thread state to Stopped when a thread exits.
10052         Fixes bug 39377.
10054 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
10056         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
10057         New icall.
10059         * object.c (mono_class_vtable): fix warning.
10061 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
10063         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
10065         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
10066         memory.
10067         (method_encode_clauses): Create exception info structures in the right
10068         order.
10069         (mono_reflection_setup_internal_class): Initialize supertypes field.
10071         * class.c object.c: Handle interfaces which implement other interfaces 
10072         correctly.
10074         * class.h class.c: Move the supertypes array initialization code into 
10075         a separate function so it can be used for dynamic types too. Also call
10076         it earlier, in mono_class_init(), since it can be used before the
10077         type is initialized.
10079 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10081         * Makefile.am:
10082         * assembly.c:
10083         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
10085         * appdomain.c:
10086         * appdomain.h:
10087         * marshal.c:
10088         * object.c: remove warnings.
10090 2003-03-13  Martin Baulig  <martin@ximian.com>
10092         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
10093         (MonoDebugLexicalBlockEntry): New types.
10095         * debug-mono-symfile.c
10096         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
10098 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10100         * process.c: ret can be any non-zero value accroding to MS doc.
10102 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
10104         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
10105         fixing a warning for a miss-used prototype, would have cause
10106         random memory corruption.
10108 2003-03-07  Martin Baulig  <martin@ximian.com>
10110         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
10111         getting really annoying ....
10113 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
10115         * reflection.c (fixup_method): added support for array methods.
10117 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10119         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
10120         (pointed out by Michael Adams).
10122 2003-03-04  Dick Porter  <dick@ximian.com>
10124         * icall.c: Temporarily reverted the Double and Single ToString()
10125         change, because it broke nunit.
10127 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
10129         * object.h, threads.h: make include files compatible with C++
10130         (patch by Jerome Laban <jlaban@wanadoo.fr>).
10132 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10134         * icall.c: Erased ToString helper functions for Double and Single.
10135         Now, that implementations ar all in managed code (Double and Single
10136         Formatters).
10138 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
10140         * appdomain.c: Added method for initializing the default context of
10141         a domain. Added internal call for getting the default context.
10142         * appdomain.h: Added context variable in MonoDomain struct.
10143         * domain.c: mono_domain_set also sets the default context of the domain
10144         * icall.c: Mapped internal method InternalGetDefaultContext.
10145         * object.c: mono_object_get_virtual_method returns always a remoting
10146         wrapper if the object is a transparent proxy.
10147         mono_runtime_invoke_array: when creating an object by calling the
10148         constructor, if the created object is a proxy, then the constructor should
10149         be called using the a remoting wrapper.
10151 2003-03-03  Dick Porter  <dick@ximian.com>
10153         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
10154         variable so it compiles on solaris.  Problem spotted by
10155         Christopher Taylor <ct@cs.clemson.edu>
10157 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10159         * appdomain.c:
10160         (get_info_from_assembly_name): don't leak value.
10162         * icall.c:
10163         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
10164         result.
10166 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
10168         * assembly.c: export mono_image_load_references ().
10169         * class.c: handle function pointers. mono_class_from_name() now
10170         supports nested type names directly.
10172 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
10174         * reflection.h reflection.c: Encode already created dynamic methods 
10175         and fields correctly as a DEF instead of a REF.
10177         * reflection.c: Get rid of the force_ref argument to 
10178         mono_image_typedef_or_ref since it was wrong in the first place.
10180         * string-icalls.c: add error checking to string constructors according
10181         to the MSDN docs.
10183         * reflection.c: Emit types in the order their TypeBuilders were 
10184         created. Previously, a new table index was assigned to each type before
10185         the tables were emitted. This was wrong because the signature blob
10186         might already refer to a type by its original table index.
10188 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
10190         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
10191         change.
10192         
10193 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10195         * Makefile.am: make assemblies dir have \ instead of / on windows.
10197 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
10199         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
10200         iterate over the NESTEDCLASS table using a linear search since the
10201         table is not guaranteed to be sorted by the secondary key.
10203         * class.c (mono_class_create_from_typedef): fixed up call to
10204         mono_metadata_nesting_typedef.
10205         
10206 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
10208         * marshal.c (mono_string_to_byvalstr): clear the memory as
10209         suggested by Jerome Laban <jlaban@wanadoo.fr>
10211 2003-02-26  Dick Porter  <dick@ximian.com>
10213         * process.c: Cope with padding in .rsrc blocks
10215 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
10217         * metadata.h: reverted the filter_len change, it breaks reflection
10218         
10219 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
10221         * metadata.h: added a new field to store the filter_len
10222         
10224 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10226         * reflection.c: handle custom attributes for types and members
10227         created with Reflection.Emit (bug#38422).
10229 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
10231         * reflection.c: define RTSpecialName automatically for constructors for
10232         compatibility with MS.NET.
10234         * reflection.c (mono_reflection_create_runtime_class): initialize
10235         nested_in field of dynamically created classes.
10237 2003-02-22  Martin Baulig  <martin@ximian.com>
10239         * debug-mono-symfile.h: Incremented version number.
10241 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
10243         * object.h icall.c process.c: fix warnings.
10245 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
10247         * appdomain.h appdomain.c:
10248         (mono_domain_try_type_resolve): split the 
10249         name_or_tb argument into a name and a tb argument.
10250         (mono_domain_has_type_resolve): new function to check whenever the
10251         application has registered a TypeResolve event handler.
10252         
10253         * icall.c reflection.h reflection.c: move the type resolve logic into
10254         mono_reflection_get_type () so it will be invoked when 
10255         Assembly::GetType () is called.
10257         * reflection.c:
10258         (mono_reflection_get_type): renamed to get_type_internal.
10259         (mono_reflection_get_type): fixed type name generation so it works 
10260         for nested types too.
10261         (mono_reflection_get_type): call has_type_resolve () to avoid the 
10262         costly type name generation if there is no resolve event handler.
10264 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10266         * class.c, image.c: load exported types from file references.
10268 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
10270         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
10271           used to cache the managed methods used to create proxies and make 
10272           remote invocation of methods.
10273         * class.h: Added in MonoVTable a flag to indicate that a class needs 
10274           to be remotely created.
10275         * object.c: Modified the method mono_class_vtable(). It now initializes 
10276           the remote flag of the vtable. Modified mono_object_new_specific(), 
10277           so now it checks the remote flag.
10278         * icall.c: Added a couple of internal methods, one for enabling instance 
10279           creation interception for a type, and one for creating objects bypassing
10280           the remote check.
10282 2003-02-18  Martin Baulig  <martin@ximian.com>
10284         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
10285         New interncall to get a method's metadata token.
10287         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
10288         New interncall for the debugger.
10290 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
10292         * class.c (mono_class_setup_vtable): allocate supertype array
10294 2003-02-18  Martin Baulig  <martin@ximian.com>
10296         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
10298 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10300         * reflection.c:
10301         (assembly_name_to_aname): jump over unknown properties (i've found
10302         something like: 'type, assembly, version=xxx, custom=null, public...',
10303         so now will ignore custom=null and still get the rest of the values).
10305 2003-02-17  Dick Porter  <dick@ximian.com>
10307         * threads.c: Have Thread.Start() wait for a semaphore to signal
10308         that the thread has set up all its local data.  This fixes bug
10309         34323, where Abort() raced the new thread's TLS data.
10311         Also removes the handle_store() call from start_wrapper, because
10312         threads are now always created suspended and there is no longer a
10313         race between the parent and child threads to store the info.
10315 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
10317         * image.c: explain the #- heap issue in a message, hopefully
10318         avoiding FAQs on mono-list.
10320 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10322         * icall.c:
10323         (GetEntryAssembly): if the domain has not invoked
10324         AppDomain.ExecuteAssembly yet, return the assembly of the default
10325         AppDomain.
10327 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
10329         * class.c (mono_ldtoken): make it work in dynamic assemblies.
10331 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
10333         * metadata.c, reflection.c: simple speedup to type hash
10334         and equals code.
10336 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
10338         * image.c, image.h, class.c, assembly.c: move module loading
10339         to MonoImage. When loading metadata, consider alignemnet from
10340         the start of metadata, not from the metadata address in memory.
10342 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
10344         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
10345         AssemblyBuilder objects. Factored out custom attribute creation into
10346         a separate function.
10347         (create_custom_attr): new function to create custom attributes.
10349 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
10351         * Makefile.am: Got tired of typing the full pathname to pedump.
10352         Until there is another option, am installing this.
10354 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
10356         * class.c (class_compute_field_layout): always set field->parent 
10357         (mono_ldtoken): use mono_defaults.fieldhandle_class;
10359 2003-02-11  Dick Porter  <dick@ximian.com>
10361         * threads-types.h:
10362         * monitor.c: Rewrote Monitor, making lock much faster and
10363         Pulse/Wait work as specified.  Also uses much fewer handles, and only
10364         creates them as needed.
10366         * exception.c: Added SynchronizationLockException
10368         * threads.c: Deleted old Monitor implementation.  The new one is
10369         in a new file.
10371 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10373         * class.c: handled TypedReference type code. Set the correct size for
10374         class data. Setup interface_offsets for interface classes, too.
10376 2003-02-09  Martin Baulig  <martin@ximian.com>
10378         * debug-mono-symfile.h: Reflect latest symbol writer changes.
10380 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
10382         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
10383         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
10384         * object.c: fixed mono_object_get_virtual_method () for interfaces.
10385         * verify.c: check for code that runs after the end of the method.
10387 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10389         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
10390         "System.Math::Round2".
10391         * sysmath.h: Added Floor, Round and Round2 definitions.
10392         * sysmath.c: Modified certain functions that were not 100% compliant
10393         with MS.NET (math precision) and added the implementation of Floor,
10394         Round and Round2.
10396 2003-02-07  Martin Baulig  <martin@ximian.com>
10398         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
10400 2003-02-07  Martin Baulig  <martin@ximian.com>
10402         * debug-mono-symfile.c: Reflected latest symwriter changes.
10403         (mono_debug_create_mono_symbol_file): Removed.
10404         (mono_debug_open_mono_symbol_file): Take an argument which
10405         specifies whether to create a dynamic symbol file.
10407 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
10409         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
10411 2003-02-05  Martin Baulig  <martin@ximian.com>
10413         * reflection.c (mono_image_build_metadata): Make this public,
10414         protect it against being called multiple times, don't create
10415         resources and don't build the compressed metadata here.
10416         (mono_image_create_pefile): Do this here.
10418         * icall.c
10419         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
10421 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10423         * socket-io.c: fixed bug #36322.
10425 2003-02-06  Piers Haken <piersh@friskit.com>
10427         * appdomain.[ch]:
10428         * class.h:
10429         * debug-mono-symfile.c:
10430         * icall.c:
10431         * loader.c:
10432         * mono-config.c:
10433         * monosn.c:
10434         * reflection.c:
10435         * socket-io.c: warning cleanups
10437 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
10439         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
10440         function. works like remoting invoke, but does a check for the Proxy first.
10442 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
10444         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
10446 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
10448         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
10449         array of pointers.
10450         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
10451         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
10453         * object.c (mono_store_remote_field_new): used by the new jit
10454         instead of mono_store_remote_field
10455         (mono_load_remote_field_new): used by the new jit
10456         instead of mono_load_remote_field
10458 2003-02-05  Patrik Torstensson
10460         * appdomain.c: changed unload to take the domain id instead
10461         of domain
10462         
10463         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
10466 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10468         * appdomain.c: don't look for assemblies in ApplicationBase if
10469         PrivateBinPathProbe is set.
10471 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10473         * object.c: make the first argument in main_args contain the absolute
10474         path to the assembly. Fixes bug #37511.
10476 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10478         * icall.c: get correct UTC offset for countries not using daylight
10479         time saving. Fixes bug #30030.
10481 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10483         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
10484         and 1 are the family).
10486 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
10488         * icall.c (ves_icall_InternalExecute): removed wrong assertion
10490         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
10492 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
10494         * reflection.c: added support for SignatureHelper tokens, which is
10495         needed by the Calli opcode.
10497         * reflection.h: track changes to SignatureHelper class.
10499         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
10501 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10503         * appdomain.c: fixed loading assemblies from PrivateBinPath.
10505 2003-02-03  Patrik Torstensson
10506         * appdomain.[c|h], domain.c : 
10507          - Added support for getting a domain via domain id
10508          - Support for setting and getting domain from System.AppDomain 
10509            (used in cross appdomain channel)
10510          - Added support for get/set for a MonoAppContext on a thread 
10511            (Context class in System.Runtime.Remoting.Contexts),
10512          - Removed hack in Get/SetData and ExecuteAssembly.
10513         
10514         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
10515         the managed world to get control when a proxy is created.
10517         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
10518         
10519 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
10521         * icall.c
10522         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10523         Populate the codebase field as well.
10525 2003-02-02  Martin Baulig  <martin@ximian.com>
10527         * debug-mono-symfile.c
10528         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
10529         (mono_debug_symfile_add_method): Allow interncalls.
10531 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10533         * icall.c: throw parse exception if strtod fails or the string is empty.
10535 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
10537         * marshal.c: handle object type separately from defined
10538         class types.
10540 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
10542         * marshal.c: handle NATIVE_LPSTR for strings when it's
10543         explicitly specified.
10545 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
10547         * reflection.c, reflection.h, icall.c: setup the reflection
10548         handle cache for ModuleBuilders and AssemblyBuilders.
10550 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
10552         * reflection.c (reflection_methodbuilder_to_mono_method): set
10553         pinvoke flag
10555 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10557         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
10559 2003-01-29  Dick Porter  <dick@ximian.com>
10561         * threads.c: No need for the fake_thread kludge now that Thread
10562         doesn't run a class constructor
10563         
10564 2003-01-29  Dick Porter  <dick@ximian.com>
10566         * threads.c: Use g_direct_hash instead of the rather bogus
10567         g_int_hash
10569 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
10571         * marshal.c (mono_marshal_get_native_wrapper): add check for null
10572         (fix pinvoke12.exe)
10573         (mono_marshal_get_struct_to_ptr): generate valid IL code
10574         (mono_marshal_get_ptr_to_struct): generate valid IL code
10575         (*): correctly set sig->pinvoke, we need to memdup the signature
10576         to do that
10578 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10580         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
10581         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
10583 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
10585         * profiler.c: provide more callers information.
10587 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
10589         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
10591         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
10593         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
10595 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10597         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
10598         exception instead of going into an infinite loop on dates which it 
10599         can't yet handle.
10601         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
10602         out-of-range exception if needed.
10604         * class.c (mono_class_setup_vtable): allow a virtual method to provide
10605         an implementation for an interface method and to override an inherited
10606         method at the same time. 
10607         Imagine a scenario when a virtual method is used to override a
10608         virtual abstract method in a parent class, and this same method 
10609         provides an implementation for an method inherited from an interface. 
10610         In this case, the interface resolution code will set im->slot, which 
10611         means that the virtual method override pass will skip this method 
10612         which means a pointer to the abstract method inherited from the parent
10613         will remain in the vtable of this non-abstract class.
10615         * class.c: (mono_class_setup_vtable): continue search for a real 
10616         method if only an abstract method is found.     
10618 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
10620         * reflection.c: add size to encoding for ByValStr and ByValArray
10621         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
10623 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10625         * class.c (mono_class_setup_vtable): pass the override info as an
10626         argument.
10628         * class.c (mono_class_setup_vtable): set the slot of overriding methods
10629         correctly.
10630         
10631         * reflection.c (ensure_runtime_vtable); add support for method 
10632         overrides.
10633         
10634 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10636         * reflection.c (resolution_scope_from_image): Hack to work to work with
10637         dynamic assemblies.
10639         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
10640         added a 'force_ref' argument to force this function to allways return 
10641         a TypeRef. This is needed by mono_image_get_memberref_token ().
10642         
10643 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10645         * reflection.c (mono_image_get_type_info): interfaces really don't have
10646         a parent.
10648         * reflection.c (mono_image_basic_init): fill out missing fields of
10649         image structure.
10651         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
10652         dynamic assemblies. This is required so dynamic assemblies show up in
10653         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
10654         Type::GetType() etc. This is consistent with MS behaviour.
10656         * image.c image.h reflection.c: add newly created classes to the name 
10657         cache so mono_class_get () will find them.      
10659 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10661         First part of changes to get IKVM.NET running under mono.
10662         
10663         * appdomain.h, appdomain.c: added new function 
10664         mono_domain_try_type_resolve() which will emit TypeResolve events. 
10665         This function will call AppDomain::DoTypeResolve to do the actual work.
10667         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
10668         moved existing code dealing with dynamic tokens to a new function 
10669         called mono_reflection_lookup_dynamic_token (). This function will 
10670         raise TypeResolve events when appropriate. Since reflection.c is not 
10671         part of libmetadata, a new hook function called 
10672         mono_lookup_dynamic_token() is added to class.c which will call this.
10674         * assembly.h assembly.c: make the invoke_load_hook function public,
10675         so it can be called for dynamic assemblies.
10677         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
10679         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
10680         type isn't found.
10682         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
10683         MonoGHashTable, since it contains pointers to objects which the GC 
10684         needs to track.
10686         * assembly.c (search_loaded): remove unused variable.
10687         
10688 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
10690         * object.c: fixed issue exposed by gcc-generated IL programs
10691         that use RVA data for pointers.
10693 2003-01-25  Martin Baulig  <martin@ximian.com>
10695         * threads.c (start_wrapper): Moved the initialization of
10696         `start_func' above the mono_new_thread_init() call to which we
10697         pass it as argument.
10699 2003-01-24  Martin Baulig  <martin@ximian.com>
10701         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
10702         the MonoThread pointer.
10704 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
10706         * icall.c: Rename `PowImpl' to Pow.
10708 2003-01-23  Dick Porter  <dick@ximian.com>
10710         * threads.c (start_wrapper): Create a Thread object if needed, so
10711         the Main() thread can do the class initialisation in a subthread
10712         that has been set up to allow managed code execution.
10714         Pass the thread ID instead of the MonoThread pointer to the thread
10715         start and attach callbacks.  This change is required, because the
10716         jit thread start callback must be called _before_ the Thread
10717         object can be created.
10718         
10719         (mono_thread_init): Removed much object creation code that is no
10720         longer needed.  No managed code is called from here now.
10722         * object.c (mono_runtime_exec_managed_code): Create a subthread
10723         for Main, and call back to the runtime to use it.
10724         Set the exit code when Main exits.
10726         * gc.c: Make sure domain finalisation happens in a subthread.
10727         Re-enable threaded GC, fixing bug 31333 (again).
10729         * environment.c: System.Environment internall calls (so far just
10730         ExitCode is here, the others are still in icall.c)
10732         * appdomain.c (mono_runtime_cleanup): All threads running managed
10733         code should have finished before mono_runtime_cleanup() is
10734         reached, so no need to clean up threads.
10736 2003-01-22  Martin Baulig  <martin@ximian.com>
10738         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
10739         `gpointer func' arguments.      
10740         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
10741         but added `MonoThread *thread' argument.
10742         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
10744         * threads.c (mono_new_thread_init): Added `gpointer func' argument
10745         and pass it to the mono_thread_start_cb callback.
10746         (mono_install_thread_callbacks): New public function to install a
10747         set of callbacks which are set by the debugger.
10748         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
10750 2003-01-22  Martin Baulig  <martin@ximian.com>
10752         * Makefile.am: Install debug-mono-symfile.h.
10754 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
10756         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
10758 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
10760         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
10761         * class.c (mono_ptr_class_get): correctly set access levels of pointers
10762         (mono_array_class_get): correctly set access levels of arrays
10764 2003-01-20      Patrik Torstensson
10765         * image.h (MonoAssemblyName): changed major, minor, build, revision
10766         from signed to unsigned.
10768 2003-01-20  sean kasun <skasun@azstarnet.com>
10770         * reflection.c (load_cattr_value): Now this handles
10771         MONO_TYPE_SZARRAY.  Fixes bug #35629
10773 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
10775         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
10776         integer value
10778 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10780         * decimal.c: fixed bug #26056.
10782 2003-01-17  Martin Baulig  <martin@ximian.com>
10784         * gc.c: Raise an ExecutionEngineException instead of using g_error().
10786 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10788         * exception.[ch]:
10789         (mono_get_exception_type_initialization): new function.
10791         * object.c: throw a TypeInitializationException when an exception is
10792         thrown invoking the class constructor.
10794 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10796         * reflection.c: fixed attribute reading.
10798 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10800         * icall.c:
10801         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
10802         provided, look for the type in the calling assembly and then in
10803         mscorlib; if the assembly name is provided, only try that one.
10805 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
10807         * object.c: register the vtable before there is a chance it's
10808         queried again recursively.
10810 2003-01-13  Duncan Mak  <duncan@ximian.com>
10812         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
10813         gc-internal.h. 
10814         
10815 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
10817         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
10819 2003-01-11  Martin Baulig  <martin@ximian.com>
10821         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
10822         this to 20 for the release.
10824 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
10826         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
10828         * loader.c (mono_method_get_marshal_info): bug fix
10830         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
10831         structures with explicit layout
10833 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
10835         * profiler.c: made the output more readable (and sorted). 
10836         Added caller information for the allocation profiler.
10838 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
10840         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
10842 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10844         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
10845         to get value types.
10846         
10847 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
10849         * object.c, profiler.h, profiler.c, profiler-private.h:
10850         Added object allocation profiler.
10852 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
10854         * reflection.h, reflection.c: handle global methods.
10855         Compress blob entries.
10857 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
10859         * marshal.c: fix compilation.
10861 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
10863         * loader.c (mono_method_get_marshal_info): impl.
10865         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
10867 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10869         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
10870         for reference types.
10872 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
10874         * loader.c: fixed off by one error in loaded parameter names.
10876 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
10878         * marshal.c (mono_marshal_get_icall_wrapper): like
10879         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
10880         instead of a MonoMethod.
10882 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10884         * decimal.c: fixed bug #36537.
10886 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
10888         * marshal.c: throw a missing method exception if a
10889         P/Invoke method is not found.
10891 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
10893         * icall.c: allow a null this for constructors.
10895 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
10897         * icall.c: raise the proper exceptions if the arguments to the
10898         internal Invoke are incorrect.
10900 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
10902         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
10904 2003-01-03  Martin Baulig  <martin@ximian.com>
10906         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
10908 2002-12-31  Martin Baulig  <martin@ximian.com>
10910         * debug-mono-symfile.c: Completely rewrote the type section.
10911         Instead of using individual malloc()ed fields, we use one big
10912         continuous memory area and offsets into this area.
10913         See the comments in the source code for details.
10915 2002-12-30  Martin Baulig  <martin@ximian.com>
10917         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
10919 2002-12-30  Martin Baulig  <martin@ximian.com>
10921         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
10922         line number table in this data blob instead of using an external
10923         pointer.
10925 2002-12-28  Martin Baulig  <martin@ximian.com>
10927         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
10929 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
10931         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
10932         as a boxed return type.
10934 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
10936         * appdomain.c
10937         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
10938         g_build_filename to properly get separators on the filename created.
10940         * object.h: Small change, introduce MonoMarshalByRefObject to
10941         track the layout of that structure in the C# universe as we make
10942         changes there.
10944 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
10946         * object.c: removed assert to allow static fields on interfaces.
10947         * loader.c: a TypeSpec may be used for any type, not just arrays.
10949 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
10951         * class.c, class.h: added mono_class_array_element_size ().
10952         Ignore static methods in interfaces.
10954 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10956         * threads.c: fixed the build under cygwin.
10958 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
10960         * reflection.c: handle nullref constants. Allocate keys for
10961         reflection handles with the GC.
10963 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10965         * threads.c, threads.h: added mono_thread_get_abort_signal()
10966         to get a suitable signal for thread abort.
10968 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
10970         * metadata.c: fix handling of ExportedType table.
10972 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10974         * icall.c: added WriteWindowsDebugString internal call.
10976 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10978         * reflection.h: added fields to match C# implementation.
10980 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10982         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
10984 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
10986         * gc.h, gc-internal.h: Rename header for GC internal calls to
10987         gc-internal.h from gc.h as to not clash with Boehm GC having its
10988         header installed as <gc.h> in outside include paths.
10989         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
10990         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
10992 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10994         * icall.c: assign minor, build and revision in FillName.
10996 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
10998         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
10999         Added support for running code generated by Reflection.Emit.
11001 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11003         * appdomain.c: check for NULL argument in LoadFrom.
11005 2002-12-10  Dick Porter  <dick@ximian.com>
11007         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
11009 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11011         * appdomain.c: fix buglet when building exe file name.  Handle full
11012         assembly name (needed after latest changes to AssemblyName).
11013         * image.c:
11014         (mono_image_close): free some hashtables.
11016 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
11018         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
11019         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
11020         on some systems (redhat 7.3) 
11022 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
11024         * threads.c: delete the critical section of a sync block,
11025         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
11027 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
11029         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
11031 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11033         * appdomain.[ch]: handle the assembly preload event to try loading the
11034         assemblies using the paths we have in the current domain.
11036         * assembly.[ch]: created an assembly preload hook that is called to try
11037         loading the assembly by other means that the ones provided here.
11039         * domain.c: initialize the domain search path.
11041         From now on, assemblies (TODO: except corlib and System) are loaded
11042         according to these rules when using mono_assembly_load ():
11044                 1. It tries to load the assembly from the ApplicationBase
11045                 of the current domain appending .dll and .exe (TODO: have to
11046                 try loading from name/name.dll and name/name.exe).
11048                 2. It tries the search path specified in PrivateBinPath for the
11049                 current domain (if any).
11051                 3. Previous behavior.
11053 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
11055         * icall.c: implemented GetInterfaceMap() related icall.
11056         * domain.c, loader.h: load MethodInfo in mono_defaults.
11058 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11060         * gc.c: disable the finalizer thread for now, untill all the issues
11061         with it are resolved.
11063 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11065         * string-icalls.c: handle embedded nulls in string ctor when the
11066         length is specified.
11068 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11070         * class.c: look for explicit interface implementation in parent
11071         classes, too.
11073 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
11075         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
11077 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
11079         * gc.c: protect handles with a critical section.
11081 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11083         * icall.c:
11084         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
11085         parameters. If no assembly specified, try getting the type from all
11086         the assemblies in the current domain, else, load the assembly and get
11087         the type from it.
11089 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11091         * marshal.c: applied patch from Aleksey Demakov that fixes
11092         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
11094 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11096         * icall.c: fixed get_location.
11098 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
11100         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
11101         declarations to make it work with older gcc. 
11103         * loader.c (mono_get_method): set signature->pinvoke for native calls
11105 2002-11-20  Dick Porter  <dick@ximian.com>
11107         * threads.c (mono_thread_init): Set the main thread's handle
11109 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11111         * gc.c: allow compilation without GC support. Changed to match the
11112         mono coding style.
11114 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11116         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
11118 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
11120         * reflection.c: set a public key token on the core assemblies.
11122 2002-11-18  Dick Porter  <dick@ximian.com>
11124         * threads.c: Split out some thread initialisation so that other
11125         files can set the start callback function.
11127         * gc.c: Run finalisers in a separate thread, to avoid stack
11128         overflow.  Fixes bug 31333.
11130         * appdomain.c: Set up GC finalisation thread.
11132         * reflection.c: 
11133         * object.c: 
11134         * domain.c: Use gc.h macros for GC_malloc
11135         
11136 2002-11-15  Dick Porter  <dick@ximian.com>
11138         * threadpool.c: 
11139         * threads.c:
11140         * appdomain.c: Removed mono_runtime_init_with_attach(),
11141         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
11142         merging the extra parameter with the existing function.  Removed
11143         unneeded code in mono_thread_attach().
11145 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
11147         * image.c (mono_image_loaded_by_guid): a method to get loaded
11148         images by guid. 
11149         (load_metadata_ptrs): we store the guid as string.
11151 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
11153         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
11155         * metadata.c (mono_guid_to_string): imported method form Zoltan
11156         Varga (slightly modified)
11158         * assembly.c (mono_assembly_open): load precompiled code
11160         * loader.h (MonoMethod): we store the method token for use in the
11161         aot compiler. 
11163 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11165         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
11166         the hook function called when an assembly is loaded.
11167         
11168         * domain.c: Modified file.
11169         (mono_domain_assembly_load): removed hash table insertion of assemblies.
11171         Fixes bug #33196.
11173 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
11175         * reflection.c: Map PEFileKind to the value expected by the WinNT
11176         image loader. 
11178 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11180         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
11181         Read until the buffer is filled completely.
11183 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11185         * icall.c: implemented MonoType.InternalGetEvent ().
11187 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11189         * appdomain.c: implemented InitAppDomainSetup. Delayed
11190         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
11191         the entry_assembly.
11193         * assembly.c: base_dir is now an absolute path ending with
11194         G_DIR_SEPARATOR.
11196         * icall.c: modified get_location according to the above changes.
11198         * object.c: init AppDomain.SetupInformation for the default domain after
11199         we have the entry assembly.
11201         * domain.c: when unloading a domain, setup = NULL.
11203 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
11205         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
11207 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
11209         * object.h, object.c: introduced mono_object_get_virtual_method ()
11210         to lookup the method invoked on an object when a callvirt is done on
11211         a method.
11212         * icall.c: make MethodInfo::Invoke() always do a virtual call.
11214 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11216         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
11217         current domain when loaded an assembly and failed to load it.
11219         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
11221 2002-10-31  Dick Porter  <dick@ximian.com>
11223         * icall.c: 
11224         * file-io.h: 
11225         * file-io.c: Return the error status in a parameter, as the
11226         GetLastError() value has long since been blown away if we try and
11227         look it up in a subsequent internal call invocation.  Delete the
11228         GetLastError() internal call, because it's useless.
11230 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
11232         * class.[ch]: added cast_class to fix bug 29517
11234 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
11236         * marshal.c: create valid IL code in the filter clause:
11237         the new JIT is less forgiving:-)
11239 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11241         * icall.c: removed get_property internal call.
11243 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
11245         * appdomain.h domain.c: Added an ID to appdomains.
11246         
11247         * threads.c threads.h icall.c: Implement icall
11248         Thread:GetDomainID(), and remove unused icall 
11249         CurrentThreadDomain_internal.
11251 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11253         * icall.c: Don't recurse through the base types in GetConstructor.
11254         Fixes bug #32063. 
11256 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
11258         * mempool.h, mempool.c: added mono_mempool_empty() and
11259         mono_mempool_stats().
11261 2002-10-23  Dick Porter  <dick@ximian.com>
11263         * file-io.c: 
11264         * file-io.h: 
11265         * icall.c: Added MonoIO.GetFileType internal call
11267 2002-10-17  Dick Porter  <dick@ximian.com>
11269         * appdomain.c (mono_runtime_cleanup): Don't signal the async
11270         delegate semaphore before waiting for all threads to finish,
11271         because new threads can also call async delegates.  Fixes bug
11272         32004.
11274         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
11275         of 3 seconds, in case another async job is queued.  (This part is
11276         needed because the bug fix reintroduced the 3s exit lag.)  This
11277         makes the mono_runtime_shutdown flag superfluous.
11279 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11281         * reflection.c: include ehader size in method section headers.
11282         Really check for suplicated modules entries.
11284 2002-10-17  Martin Baulig  <martin@gnome.org>
11286         * debug-mono-symfile.c: Added back support for locals.
11288 2002-10-14  Martin Baulig  <martin@gnome.org>
11290         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
11291         MONO_TYPE_VOID.
11293 2002-10-14  Martin Baulig  <martin@gnome.org>
11295         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
11296         mono_class_get() instead of looking in the class cache. 
11298 2002-10-13  Martin Baulig  <martin@gnome.org>
11300         * debug-mono-symfile.c: Set version number to 28, include the
11301         signature in method names.
11303 2002-10-13  Martin Baulig  <martin@gnome.org>
11305         * debug-mono-symfile.h: Set version number to 27.
11307 2002-10-11  Martin Baulig  <martin@gnome.org>
11309         * gc.c: Don't register/unregister NULL pointers as disappearing links.
11311 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11313         * metadata.c, metadata.h: added helper function to allocate signatures.
11315 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11317         * icall.c: added internal call to get the location of machine.config.
11319 2002-10-08  Martin Baulig  <martin@gnome.org>
11321         * debug-mono-symfile.c: Ignore classes with a pending init for the
11322         moment.
11324 2002-10-03  Dick Porter  <dick@ximian.com>
11326         * threads.c: Freebsd pthread_t is a pointer
11328 2002-10-03  Dick Porter  <dick@ximian.com>
11330         * socket-io.c: Implemented GetHostName_internal
11332 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11334         * mono-config.c:
11335         (mono_config_parse_file): don't leak the text.
11337 2002-10-02  Martin Baulig  <martin@gnome.org>
11339         * debug-mono-symfile.c: Added support for methods.
11341 2002-10-01  Martin Baulig  <martin@gnome.org>
11343         * debug-mono-symfile.c: Don't emit methods and line numbers for
11344         the dynamic symbol file, just write the type table.  We can easily
11345         have an external helper program which creates a symbol file for an
11346         IL file.        
11348 2002-10-01  Dick Porter  <dick@ximian.com>
11350         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
11351         Only add the handle to the cleanup array when we're about to
11352         launch the thread.  Bug 31425 deadlocked when the test was run on
11353         mono under w32.
11355 2002-10-01  Martin Baulig  <martin@gnome.org>
11357         * debug-mono-symfile.c: Added support for properties.
11359 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11361         * reflection.c: unaligned store fix from Mark Crichton
11362         <crichton@gimp.org>.
11364 2002-09-27  Martin Baulig  <martin@gnome.org>
11366         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
11367         New interncall.
11369 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11371         * assembly.h, assembly.c: use a sane API to hook into the assembly
11372         loading process instead of a useless special-purpouse hack
11373         (ngen needs a hook, too, for example).
11375 2002-09-27  Dick Porter  <dick@ximian.com>
11377         * threads.c (mono_thread_init): Call GetCurrentProcess() so
11378         io-layer can set up some process handle info.  Not needed on w32,
11379         but doesn't hurt either.
11381         * process.c: Pass the program name in the second parameter to
11382         CreateProcess, so the path is searched.  Include the working
11383         directory. Implemented process name, process enumeration, and some
11384         process detail internal calls.
11385         
11386         * icall.c: Added internal calls for process lookup, and some
11387         process details
11389 2002-09-26  Martin Baulig  <martin@gnome.org>
11391         * assembly.c (mono_install_open_assembly_hook): New global
11392         function to install a function to be invoked each time a new
11393         assembly is loaded.
11394         (mono_assembly_open): Run this callback function if set.
11396         * debug-mono-symfile.c: Put back line numbers for the dynamic
11397         symbol file and also record the .il file as source file.  This
11398         allows us to install the temporary symbol file as `file.dbg' just
11399         like a compiler-generated one.
11401 2002-09-26  Nick Zigarovich <nick@chemlab.org>
11403         * Corrected typo in gc.c (BOHEM vs BOEHM).
11405 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11407         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
11408         GetProperties. Also avoid calling g_slist_length in GetProperties and
11409         GetMethods.
11411 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11413         * reflection.c: avoid unaligned stores (bug spotted by
11414         Mark Crichton  <crichton@gimp.org>).
11416 2002-09-25  Martin Baulig  <martin@gnome.org>
11418         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
11419         instead of guint64 for addresses and added prologue/epilogue info.
11421 2002-09-25  Martin Baulig  <martin@gnome.org>
11423         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
11424         store line number info.  For the dynamic symbol file, we only need
11425         to provide the JIT generated dynamic line number info for the dynamic
11426         symbol file.
11428 2002-09-25  Martin Baulig  <martin@gnome.org>
11430         * debug-mono-symfile.h: Incremented version number.
11432 2002-09-24  Martin Baulig  <martin@gnome.org>
11434         * class.c (mono_debugger_class_init_func): New global function
11435         pointer variable.
11436         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
11437         call it.
11439         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
11440         function.  This is called via the mono_debugger_class_init_func
11441         hook to add all types to the dynamic type table.
11442         (ves_icall_MonoDebugger_GetType): New interncall to get a class
11443         from its metadata token.
11445         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
11446         New interncall for the debugger.
11448 2002-09-24  Nick Drochak <ndrochak@gol.com>
11450         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
11451         before using it in case it is null.
11452         
11453 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11455         * metadata.c: allow custom modifiers in local var signatures
11456         (bug spotted by Zoltan Varga).
11458 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11460         * class.c: deal with the <Module> class that may have a NULL vtable.
11461         Eliminate warnings.
11463 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11465         * image.c, image.h: more strong name helpers.
11466         * monosn.c: more work: convert pem keys to cryptoapi format.
11468 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11470         * string-icalls.c: speedup IndexOf.
11472 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11474         * icall.c: updates from Zoltan.2.Varga@nokia.com.
11476 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
11478         * icall.c: cleanup: use mono_object_domain ().
11480 2002-09-23  Martin Baulig  <martin@gnome.org>
11482         * debug-mono-symfile.c: Improved type support.
11484 2002-09-22  Martin Baulig  <martin@gnome.org>
11486         * debug-mono-symfile.c: Added support for reference types and strings.
11488 2002-09-22  Martin Baulig  <martin@gnome.org>
11490         * debug-mono-symfile.c: Started to work on the type table.
11492 2002-09-21  Martin Baulig  <martin@gnome.org>
11494         * debug-mono-symfile.c: Largely reworked the symbol table format.
11495         The symbol table is now incrementally updated each time a new
11496         method is added.  We're now also using our own magic and version
11497         so that you don't need to recompile all your classes if the
11498         dynamic table changes.
11499         (mono_debug_update_mono_symbol_file): Removed.
11500         (mono_debug_symfile_add_method): New function to add a method.
11502 2002-09-21  Martin Baulig  <martin@gnome.org>
11504         * icall.c
11505         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
11506         New interncall.
11508         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
11509         New interncall to get a method from its metadata token.
11511 2002-09-21  Martin Baulig  <martin@gnome.org>
11513         * debug-mono-symfile.c: Create type table.
11515 2002-09-20  Martin Baulig  <martin@gnome.org>
11517         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
11519 2002-09-20  Martin Baulig  <martin@gnome.org>
11521         * debug-mono-symfile.c: Provide information about params and locals.
11523 2002-09-20  Martin Baulig  <martin@gnome.org>
11525         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
11526         New interncall.
11528         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
11529         interncall to get a method from its metadata token.
11531 2002-09-20  Martin Baulig  <martin@gnome.org>
11533         * debug-mono-symfile.c: Added a few checks for method->header
11534         being non-NULL.  This should never happen, but for the moment
11535         let's use a g_warning() rather than a g_assert().
11537 2002-09-19  Mark Crichton  <crichton@gimp.org>
11539         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
11540         even if support for it isn't present.  Added an #ifdef to fix this.
11542         * socket-io.c: Added checks back for Solaris support.
11544 2002-09-19  Martin Baulig  <martin@gnome.org>
11546         * debug-mono-symfile.c (read_string, write_string): Reflect latest
11547         changes in the symbol file format.
11549 2002-09-18  Martin Baulig  <martin@gnome.org>
11551         * debug-mono-symfile.c: Set version number to 21.
11553 2002-09-18  Dick Porter  <dick@ximian.com>
11555         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
11556         on netbsd.  Fixes bug 30051.
11558 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11560         * reflection.c:
11561         (set_version_from_string): little fix.
11563 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11565         * monosn.c, Makefile.am: added strong name utility.
11566         * reflection.h, reflection.c: implemented delayed signing,
11567         locale, version and hash id assembly attributes.
11569 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11571         * loader.c, metadata.c: load param attributes in signatures.
11573 2002-09-16  Martin Baulig  <martin@gnome.org>
11575         * debug-mono-symfile.c: Added string table with all method names.
11577 2002-09-14  Martin Baulig  <martin@gnome.org>
11579         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
11580         fast method lookup.
11582 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11584         * reflection.c: record the public key token of referenced assemblies.
11586 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11588         * image.c, image.h: added functions to get the strong name and the
11589         public key of an assembly.
11590         * pedump.c: use them.
11592 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
11594         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
11596 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
11598         * marshal.c (mono_marshal_get_managed_wrapper): Added
11599         MONO_TYPE_BOOLEAN 
11601 2002-09-11  Martin Baulig  <martin@gnome.org>
11603         * gc.c: Call GC_unregister_disappearing_link() on all links when
11604         finalizing them, this is necessary to aviod a crash in boehm's
11605         finalize handler.
11607 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11609         * gc.c: handle GetTarget for finalized objects spotted and fixed by
11610         nick@chemlab.org.
11612 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
11614         * icall.c: implemented MonoType::Module.
11615         * reflection.c, reflection.h: mono_module_get_object () from
11616         Tomi Pakarinen <tomi.pakarinen@welho.com>.
11618 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11620         * icall.c: ignore overridden methods in GetMethods ().
11621         Fix for FieldInfo::SetValue().
11622         * object.c: handle float/double in runtime invoke.
11624 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11626         * object.c: allow a constructor to be called again on an object.
11628 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11630         * class.h, class.c: move field layout code to it's own function and
11631         export it. Get an interface id earlier. Move fields in MonoClass
11632         so they are more cache friendly and align the bitfields.
11633         * loader.c: temporary handle get_param_names() for a runtime method.
11634         * reflection.c, reflection.h: more code to handle runtime creation of
11635         types.
11637 2002-09-09  Martin Baulig  <martin@gnome.org>
11639         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
11640         signature with the pinvoke field being set for the actual call.
11642 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11644         * icall.c: removed some unused icalls. Start of map of glib charsets
11645         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
11647 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11649         * debug-helpers.c: break infinite loop (found and fixed by
11650         Holger Arnold <harnold@gmx.de>).
11652 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11654         * icall.c: target may be null in create_delegate.
11656 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11658         * marshal.c: handle a boolean return type.
11660 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11662         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
11664 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11666         * gc.c: fix weakreferences.
11668 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11670         * icall.c: added icall to get default codepage.
11672 2002-09-03  Dick Porter  <dick@ximian.com>
11674         * threads.h: 
11675         * threads.c: Use MonoThread instead of MonoObject where
11676         apropriate.
11678         Store running thread objects in a hash table, so that we have all
11679         the info to hand when waiting for them to finish
11680         (means we don't need OpenThread() any more, so mingw builds should
11681         be fully functional again.)
11683         * verify.c:
11684         * object.h: Added thread ID to MonoThread
11686 2002-09-03  Martin Baulig  <martin@gnome.org>
11688         * icall.c (System.Reflection.Assembly::get_location): New interncall.
11690 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11692         * icall.c: fixed leak in get_temp_path. Thanks lupus.
11694 2002-09-03  Martin Baulig  <martin@gnome.org>
11696         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
11697         argument to store the end address of the disassembled instruction.
11699         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
11700         here from debug-symfile.h.
11701         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
11702         JIT into this struct.
11703         (MonoSymbolFile): Added `char *image_file' field.
11704         (MonoDebugGetMethodFunc): Removed.
11705         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
11706         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
11707         (mono_debug_find_method): New method.
11709         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
11710         create a full symbol file.
11711         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
11712         and static symbol files.
11713         (mono_debug_find_method): The symbol file keeps an internal method hash,
11714         call this to get a MonoDebugMethodInfo from a MonoMethod.
11716         * debug-symfile.[ch]: Removed.
11718 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
11720         * image.c (do_mono_image_open): Remove linker version check.
11722 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
11724         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
11725         wrappers for instance methods.
11726         
11727 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11729         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
11731 2002-08-28  Dick Porter  <dick@ximian.com>
11733         * Makefile.am: Export HOST_CC for w32 builds
11735 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11737         * file-io.c process.c: MonoString are null terminated, no
11738         need for mono_string_to_utf16() anymore.
11740 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11742         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
11744 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
11746         * icall.c, reflection.h: speedup System.MonoType.
11748 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11750         * reflection.c: allow null as the value of a string argument in
11751         custom attributes constructors.
11753 2002-08-27  Martin Baulig  <martin@gnome.org>
11755         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
11756         `trampoline_address' field.
11758 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
11760         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
11761         check (fixes bug #29486) 
11763 2002-08-27  Martin Baulig  <martin@gnome.org>
11765         * debug-mono-symfile.c: Changed the file format in a way that allows us
11766         open it read-only and to use a specially malloced area for all the
11767         dynamic data.  We can now also generate a symbol file on-the-fly if we're
11768         debugging IL code and there is no MCS generated symbol file for it.
11770 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
11772         * object.c: added a define for a good string and array
11773         creation speedup (not enabled by default because we need to deal with
11774         the synch stuff).
11776 2002-08-26  Martin Baulig  <martin@gnome.org>
11778         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
11779         function to create a dynamic symbol file.  This is used by the
11780         debugger to create a symbol file for IL code on-the-fly.
11782 2002-08-26  Martin Baulig  <martin@gnome.org>
11784         * loader.c (mono_lookup_pinvoke_call): Include the error message
11785         from g_module_error() in the error message.
11787 2002-08-24  Martin Baulig  <martin@gnome.org>
11789         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
11790         function to update the symbol file.  The symbol file is mmap()ed
11791         writable, but private.  This allows us to install the symbol file
11792         together with the assembly.
11794 2002-08-24  Martin Baulig  <martin@gnome.org>
11796         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
11797         but they can read the new symbol file format which mcs is now creating.
11799         * debug-symfile.c (mono_debug_find_source_location): Moved to
11800         debug-mono-symfile.c; this is now operating on the new symbol file.
11802 2002-08-23  Martin Baulig  <martin@gnome.org>
11804         * debug-helpers.c (mono_method_desc_from_method): New function to get
11805         a MonoMethodDesc from a MonoMethod.
11807 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11809         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
11810         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
11812 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
11814         * string-icalls.[ch]: make helper methods static.
11816 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11818         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
11819         types to it and to SetValueInternal.
11821         * object.c: Moved handle_enum label to its proper place. This was the
11822         f... bug! ;-)
11824         This time i compiled mcs and gtk-sharp and they both work.
11826 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11828         * icall.c: reverted partially my previous patch until 
11829         object.c:set_value handles enums correcly.
11831 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11833         * icall.c:
11834         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
11835         (ves_icall_System_Environment_get_MachineName): removed warning when
11836         compiling under cygwin.
11838 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
11840         * object.c: fixed field_get_value() for reference types.
11842 2002-08-22  Dick Porter  <dick@ximian.com>
11844         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
11845         Don't free a buffer while it's still needed.  Patch from Jonathan
11846         Liger <Jonathan.liger@wanadoo.fr>
11848 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
11850         * icall.c (ves_icall_System_Environment_get_Platform): Add new
11851         internal call.
11853 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
11855         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
11856         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
11858         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
11859         we call unmanaged code which throws exceptions.
11861 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11863         * appdomain.h: added per-domain entry_assembly.
11864         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
11865         arguments.
11866         * icall.c: Assembly::GetEntryAssembly icall.
11867         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
11868         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
11870 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
11872         * appdomain.h, gc.c: added mono_domain_finalize ().
11874 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11876         * object.c:
11877         (mono_print_unhandled_exception): changed g_warning by g_printerr
11878         because g_log has a 1024 characters limit (yeah, i got a big stack
11879         trace). Don't print exception name, that should be in ToString 
11880         returned string.
11882 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11884         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
11885         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
11887 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11889         * object.c:
11890         (mono_print_unhandled_exception): after previous commit, i realized
11891         that MS calls ToString on the exception. I changed this function to
11892         do that. This way we get stack_trace for free.
11894 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11896         * object.c:
11897         (mono_print_unhandled_exception): invoke Message property instead of
11898         getting 'message' field from Exception. Don't allocate memory for
11899         'trace' and 'message' if not needed.
11901 2002-08-18  Dick Porter  <dick@ximian.com>
11903         * unicode.c: Fix asserts to match Encoder.cs checks
11905 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
11907         * marshal.c: fix unaligned store issue and a few wrong
11908         opcode argument types.
11910 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11912         * icall.c: added GetUninitializedObjectInternal internal call.
11914 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
11916         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
11917         to the right domain.
11919 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
11921         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
11923         * class.c (class_compute_field_layout): set blittable to false for Strings
11925         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
11927 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
11929         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
11930         first chunk of code to create types at runtime. Code to
11931         handle ReflectedType/DeclaringType. Make reflection handles
11932         domain specific.
11934 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
11936         * class.c: set correct name in arrays.
11938 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
11940         * appdomain.c (mono_domain_transfer_object): make it work with
11941         valuetypes. bug fixes.
11943 2002-08-12  Dick Porter  <dick@ximian.com>
11945         * object.h: Rename some parameters to avoid c++ keywords (Patch
11946         from Joseph Wenninger <kde@jowenn.at>)
11948 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
11950         * icall.c: added icall to implement Assembly.GetFile*.
11952 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
11954         * reflection.h, reflection.c: code to embed managed resources.
11956 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11958         * class.c: move all the type size stuff into
11959         class_compute_field_layout().
11961 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11963         * class.c: ensure enums have always the correct instance size.
11964         * unicode.c: remove wrong assert.
11966 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
11968         * assembly.c: fix mem corruption issue.
11969         * image.h, image.c: added mono_image_get_resource () to access
11970         managed resources.
11971         * icall.c: implemented Assembly.EntryPoint property and some
11972         Managed Resources related internalcalls.
11975 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11977         * image.c, image.h: impemented mono_image_get_entry_point ().
11978         * appdomain.c: use mono_image_get_entry_point.
11980 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
11982         * reflection.c: support the object type argument when loading
11983         custom attributes.
11985 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
11987         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
11988         String as return type.
11990 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
11992         * reflection.c: fix encoding of named args for custom attrs to match
11993         the ms implementation. Read them back when instantiating custom
11994         attributes.
11996 2002-08-02  Radek Doulik  <rodo@ximian.com>
11998         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
11999         by Dietmar as quick fix
12000         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
12001         16 as stack size, used on more places as quick fix before Dietmar
12002         will fix it properly
12004 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
12006         * object.h, object.c: added accessors for fields and properties.
12008 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
12010         * class.c, class.h: made mono_class_get_field_from_name ()
12011         loop on parent types.
12012         Added mono_class_get_property_from_name ().
12014 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12016         * class.c, class.h: move the code to setup the type vtable in its own
12017         function so that it can be reused also for types created at runtime.
12018         Eliminate the "class" identifier from the header file.
12019         * reflection.c: setup the vtable for enums so that we can create
12020         objects for use in SetConstant ().
12022 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
12024         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
12025         instead of the delegate itself as this pointer (bug #28383)
12027 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
12029         * marshal.c (mono_marshal_get_managed_wrapper): added return type
12030         conversions.
12032 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12034         * loader.c: don't set the pinvoke bit on icalls.
12036 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
12038         * debug-helpers.c (mono_method_full_name): only print a number to
12039         indicate wrapper type (so that the output is more readable in traces).
12041 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
12043         * class.c (mono_class_init): include method override patch from Paolo
12045 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
12047         * icall.c: fixed GetTypeCode().
12049 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
12051         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
12052         use real delegate invoke function to make it work with multicast
12053         delegates (fix bug# 28291).
12055 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12057         * object.c: load constant strings.
12059 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12061         * reflection.c: no magic numbers.
12062         * tabledefs.h: security action enum.
12064 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12066         * assembly.c: fix possible memory corruption.
12068 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12070         * reflection.h, reflection.c: added support for linking resources.
12071         * verify.c: check we have an updated corlib.
12073 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
12075         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
12076         string arrays.
12077         (mono_marshal_string_array): null terminate unmanaged string arrays.
12078         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
12080 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12082         * icall.c: Type.GetType () can now return also types from the
12083         calling assembly.
12085 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
12087         * loader.h, loader.c: stack walking support.
12088         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
12089         GetCallingAssembly.
12091 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
12093         * marshal.c: added optimisations for blittable types 
12095         * class.c (mono_array_class_get): do not set blittable attribute on arrays
12096         (mono_class_setup_mono_type): set blittable attribute for single
12097         and double.
12099         * marshal.c (mono_string_utf8_to_builder): impl.
12100         (mono_string_builder_to_utf8): impl.
12101         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
12103 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
12105         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
12106         (mono_marshal_get_managed_wrapper): impl. byref types
12108 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12110         * icall.c:
12111         (search_method): don't display debug message. 
12113 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
12115         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
12117 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
12119         * appdomain.c: set the missing filename when throwing exception.
12121 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
12123         * metadata.c (mono_type_size): code cleanup
12124         (mono_type_stack_size): removed some test code
12126 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
12128         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
12129         mono_get_exception_file_not_found now.
12131         * exception.c (mono_exception_from_name_two_strings): New version
12132         that will call a constructor with two string arguments. 
12133         (mono_get_exception_file_not_found): New helper routine, used to
12134         report file-not-found errors.
12136 2002-07-20  Dick Porter  <dick@ximian.com>
12138         * process.h:
12139         * process.c: Pass file handles to CreateProcess
12140         
12141         * icall.c:
12142         * file-io.h:
12143         * file-io.c: Implemented CreatePipe
12145 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
12147         * metadata.c (mono_get_param_info): set alignment for value types
12149 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12151         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
12152         Constify mono_domain_assembly_open().
12153         * loader.c: handle null namespace in icalls.
12155 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
12157         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
12158         (emit_str_to_ptr_conv): marshal object as structs
12160         * metadata.c (mono_type_to_unmanaged): marshal object as structs
12162         * marshal.c (mono_marshal_get_runtime_invoke): support value types
12164 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
12166         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
12167         (mono_marshal_get_native_wrapper): we an now return value types
12169 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12171         * verify.c: more checks implemented.
12173 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
12175         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
12176         (fix bug #27695)
12177         (mono_marshal_get_native_wrapper): allow byref arguments
12178         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
12179         impl. PtrToStringXXX methods
12180         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
12181         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
12182         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
12183         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
12184         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
12186 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12188         * reflection.c: fix buglet in parsing an assembly name.
12190 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
12192         * marshal.c (emit_ptr_to_str_conv): first impl.
12194 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
12196         * object.c, class.h: cache the vtable in the class as suggested by
12197         vargaz@freemail.hu (Zoltan Varga).
12199 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12201         * class.h, loader.c: added mono_field_from_token().
12202         * verify.c: first cut of type checking code.
12204 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
12206         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
12208 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
12210         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
12211         (fix bug #27782)
12212         (mono_marshal_get_remoting_invoke): impl.
12213         (mono_delegate_begin_invoke): impl.
12214         (mono_mb_emit_save_args): impl.
12215         (mono_delegate_end_invoke): impl.
12216         (mono_marshal_get_delegate_begin_invoke):
12217         (mono_marshal_get_delegate_end_invoke):
12218         (mono_marshal_get_delegate_invoke): generate a special name for
12219         those methods (including the signature) and associate them whith
12220         the delegate class. 
12222 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
12224         * reflection.[ch]: 
12225         (mono_reflection_type_from_name): now it has a MonoImage parameter
12226         which is used as the default image to search the type in. If the image
12227         is NULL or getting the type from it fails, it defaults to corlib.
12229         * icall.c: changed 1 call to mono_reflection_type_from_name to match
12230         new parameter.
12232 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12234         * reflection.c: update the parameter table index.
12236 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12238         * domain.c: don't include the mark byte in the string hash.
12240 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12242         * icall.cs: icall for Type.GetTypeCode ().
12243         * verify: a couple of fixes and disabled local initialization checks.
12245 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
12247         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
12249         * debug-helpers.c (mono_method_full_name): print the type of the
12250         runtime wrapper
12252         * metadata.c (mono_signature_hash): a hash function for signatures
12253         (mono_signature_hash): better hash algorithm
12255         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
12257         * debug-helpers.c (mono_method_full_name): this can now generate
12258         method names with signatures
12260         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
12261         method dont have this pointers.
12263 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12265         * reflection.c: fixup typebuilder tokens.
12266         * image.c: fix buglet.
12267         * marshal.h: remove whitespace.
12268         * metadata.h, metadata.c: reinstate code that was removed.
12269         * verify.c: handle catch directives and fix another couple of bugs.
12271 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
12273         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
12274         (mono_marshal_get_native_wrapper): make it comp. with the old code
12275         (mono_marshal_get_native_wrapper): support boolean
12276         (mono_marshal_get_managed_wrapper): support more types
12278 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
12280         * class.c (class_compute_field_layout): compute class->blittable attribute.
12282 2002-07-09  Dick Porter  <dick@ximian.com>
12284         * threads.c: Make the thread cleaning up cope with threads that
12285         call ExitThread()
12287 2002-07-08  Radek Doulik  <rodo@ximian.com>
12289         * reflection.c (method_encode_code): use non-translated values to
12290         compute finally_start, this fixes exception handling on ppc, yay!
12292         * decimal.h (struct signscale): fix endianess
12294 2002-07-07  Radek Doulik  <rodo@ximian.com>
12296         * reflection.c: swap box_val and not val
12298 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
12300         * reflection.c, reflection.h: handle full assembly info in type name.
12301         Handle Type arguments when loading custom attributes.
12302         * icall.c: updated to use new mono_reflection_type_from_name () method.
12304 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12306         * loader.c:
12307         (method_from_memberref): also print assembly name when method not found.
12309 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12311         * icall.c:
12312         (ves_icall_TypeGetProperties): fixed bug #27473. 
12314 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12316         * reflection.c: display image name and token when cannot find the
12317         .ctor for an attribute.
12319 2002-07-05  Martin Baulig  <martin@gnome.org>
12321         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
12323 2002-07-04  Dick Porter  <dick@ximian.com>
12325         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
12326         compile on mingw.  This will cause mingw builds to not wait for
12327         subthreads to terminate after the main thread does.  I've lodged a
12328         bug with the mingw developers for them to wrap OpenThread().
12330 2002-07-03  Dick Porter  <dick@ximian.com>
12332         * threads.c: Store thread IDs instead of handles, because
12333         GetCurrentThread() returns a pseudohandle and therefore stores
12334         useless values.  mono_thread_cleanup() continues checking the
12335         array of threads until it is empty, to cope with subthreads
12336         spawning new threads after the main thread has finished.
12338         * profiler.h:
12339         * profiler.c:
12340         * profiler-private.h: Pass the thread ID to thread profiler
12341         functions, instead of a handle
12343 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12345         * verify.c: fixes to make it more usable.
12346         * pedump.c: added --verify code to verify IL code in an assembly.
12348 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12350         * reflection.c: turn errors into warnings to allow compiling corlib.
12352 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
12354         * reflection.c: add special cases to compile corlib.
12356 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12358         * reflection.c: handle properties with only a set method.
12360 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12362         * opcodes.h: add enum with opcodes in opval order.
12364 2002-07-01  Dick Porter  <dick@ximian.com>
12365         
12366         * object.h:
12367         * object.c (mono_runtime_run_main): Removed unneeded argument
12369 2002-06-28  Martin Baulig  <martin@gnome.org>
12371         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
12373 2002-06-27  Dick Porter  <dick@ximian.com>
12375         * threads.c: Store the handle in both the parent thread and in the
12376         subthread, to minimise the time between starting a new thread and
12377         storing its ID.
12379 2002-06-26  Dick Porter  <dick@ximian.com>
12381         * appdomain.c (mono_runtime_cleanup): Close the socket library
12382         after all the threads have finished, not before
12384 2002-06-26  Martin Baulig  <martin@gnome.org>
12386         * debug-symfile.c (mono_debug_find_source_location): Added
12387         `guint32 *line_number' argument.  If it's not NULL, store the line number
12388         there and return the file name without the line number.
12390 2002-06-25  Dick Porter  <dick@ximian.com>
12392         * icall.c:
12393         * process.h:
12394         * process.c: Process forking and other support functions
12396 2002-06-25  Dick Porter  <dick@ximian.com>
12398         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
12399         things dont happen when the image is closed.
12400         (mono_image_lookup_resource): Walk the resource section looking
12401         for a particular entry
12403         * cil-coff.h: PE resource section decoding
12405 2002-06-25  Dick Porter  <dick@ximian.com>
12406         
12407         * assembly.h:
12408         * assembly.c: 
12409         (mono_assembly_foreach): Accessor functions to walk the list of
12410         loaded assemblies
12411         (mono_assembly_set_main):
12412         (mono_assembly_get_main): Process methods need to know which
12413         assembly is the "main" one
12415         * object.c (mono_runtime_run_main): Record the main assembly
12417         * debug-helpers.c: Fix typo
12419 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
12421         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
12422         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
12424 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12426         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
12428 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
12430         * image.c (do_mono_image_open): Initialize reference count,
12431         otherwise we leak the MonoImage.
12433 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12435         * reflection.c: small tweak to handle self-hosting.
12437 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12439         * reflection.c: fix type name parse code.
12441 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12443         * reflection.c: break out of the loop.
12444         * image.c: special case corlib.
12446 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12448         * reflection.c: add all the custom attrs at the end to ensure the
12449         ctors have been properly initialized when the attributes are defined
12450         in the current assembly.
12452 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12454         * reflection.c: handle correctly multiple-nested types.
12456 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
12458         * row-indexes.h: fix typos.
12459         * reflection.c: adjust for typos and fix method_def_or_ref
12460         encoding in MethodImpl table.
12462 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12464         * reflection.c: fix entry point patching (thanks Serge!).
12466 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
12468         * verify.c: add check for System.Exception
12470 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12472         * image.c, class.c: minifix for code just c&p'ed.
12473         * reflection.c: warning fix.
12474         * object.h, loader.h, domain.c: load also StringBuilder.
12476 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12478         * marshal.h, marshal.c: some support code to handle complex marshaling.
12480 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12482         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
12483         Better signatures with vtable error dump.
12485 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
12487         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
12489 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
12491         * icall.c (ves_icall_Type_GetField): impl.
12493 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12495         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
12496         to retrieve a marshal description blob for a field or param.
12498 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
12500         * reflection.h, reflection.c: change order of nested type emission
12501         to avoid table corruption. The NestedTypes table is sorted.
12502         * icall.c: change order of GetConstructor results to workaround mcs bug.
12504 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12506         * reflection.h, reflection.c: handle field and param marshal
12507         information.
12509 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12511         * icall.c, marshal.c marshal.h: more Marshal class implementation.
12513 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12515         * reflection.c: fix call convention.
12517 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12519         * reflection.h, reflection.c: mono_image_get_memberref_token()
12520         takes a type instead of a class, now. Added
12521         mono_image_get_array_token() to create tokens for the special
12522         multi-dim array methods.
12524 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12526         * assembly.c: handle modules (no assembly table). Split
12527         loading references in its own function.
12528         * class.c: handle moduleref resolution scope.
12529         * image.c, image.h: cache module name in image.
12531 2002-06-07  Martin Baulig  <martin@gnome.org>
12533         * reflection.c (mono_image_get_type_info): Only add a class layout entry
12534         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
12536 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12538         * icall.c: more signature fixes that used uint instead of int.
12540 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12542         * reflection.c: fixed signature of field refs.
12544 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12546         * class.c, reflection.c: handle typerefs of nested types
12547         (both on read and when writing files).
12549 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
12551         * icall.c: fix method signatures that tried to workaround the previous
12552         typo, d'oh!
12554 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
12556         * debug-helpers.c: fix typo.
12558 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
12560         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
12561         rewrote the PE/COFF writing code (our programs are understood by the
12562         ms runtime, now).
12564 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12566         * gc.c, gc.h, icall.c: weakreference support.
12568 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12570         * Makefile.am, mono-config.c: use $(sysconfdir).
12572 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12574         * icall.c: changed default precision of Double.ToString() to 15.
12575         Fixed memory leak. Unified with Single.ToString.
12577 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
12579         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
12581 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12583         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
12584         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
12585         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
12586         and myself.
12588 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12590         * debug-symfile.c, sysmath.c: yet more compilation fixes.
12592 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12594         * reflection.c, socket-io.c: more compilation fixes.
12596 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12598         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
12599         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
12600         unicode.c: warning and compiler compatibility fixes.
12602 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12604         * class.h, metadata.c: fixed warnings/compilation errors.
12606 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12608         * Makefile.am, mono-config.c, mono-config.h: configuration file
12609         support routines.
12610         * loader.c, loader.h: make Dll mapping configurable at runtime in the
12611         config file. Export methods to insert and lookup mappings.
12613 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12615         * reflection.c: handle types and boxed objects in custom attr
12616         constructors.
12618 2002-05-30  Martin Baulig  <martin@gnome.org>
12620         * debug-symfile.c
12621         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
12623 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
12625         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
12626         to lookup the implmap row for a P/Invoke method.
12627         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
12628         P/Invoke method from the runtime on an as needed basis.
12630 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
12632         * metadata.c (mono_metadata_parse_signature): impl.
12634 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12636         * class.c: handle .pack directive.
12638 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12640         * object.c: initialize static fields with RVA data.
12642 2002-05-25  Martin Baulig  <martin@gnome.org>
12644         * debug-symfile.c
12645         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
12647 2002-05-24  Martin Baulig  <martin@gnome.org>
12649         * debug-symfile.c
12650         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
12651         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
12652         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
12654 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12656         * object.c: special case string ctros in invoke.
12657         * gc.c: silly whitespace changes.
12659 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
12661         * threadpool.[ch]: impl. a threadpool that can
12662         be used by mint and mono.
12664 2002-05-22  Martin Baulig  <martin@gnome.org>
12666         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
12667         The first argument is now a `MonoReflectionModuleBuilder *', the return
12668         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
12669         `methods' field to get the method builder.  The `token' argument is the
12670         unfixed token.
12672         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
12673         invalid characters instead of g_assert_not_reached()ing.  This seems
12674         to be the behaviour of mscorlib.
12676 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
12678         * object.c (mono_runtime_invoke_array): applied patch from Rachel
12679         Hestilow to fix bug #25104
12681 2002-05-21  Martin Baulig  <martin@gnome.org>
12683         * debug-symfile.c (mono_debug_find_source_location): New function.
12684         Looks up an IL offset in the line number table and returns the source
12685         location as a string.
12687 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12689         * icall.c:
12690         (mono_double_ToStringImpl): changed %f by %g until we have something
12691         better.
12693 2002-05-21  Nick Drochak  <ndrochak@gol.com>
12695         * icall.c : Use different name for Math.Pow's icall.  Needed to check
12696         parameters first in C#.
12698 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12700         * icall.c, reflection.h: added icall to get info about an event.
12702 2002-05-20  Radek Doulik  <rodo@ximian.com>
12704         * object.c (mono_value_box): don't use memcpy for boxing on BIG
12705         endian
12706         (mono_value_box): don't use memcpy for small sizes on
12707         architectures with unaligned access
12709 2002-05-20  Martin Baulig  <martin@gnome.org>
12711         * reflection.c (mono_reflection_setup_internal_class): Don't crash
12712         if `tb->parent == NULL'.
12713         (mono_reflection_create_internal_class): New function.  This is
12714         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
12715         for enum types.
12717         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
12718         New interncall.
12720 2002-05-19  Martin Baulig  <martin@gnome.org>
12722         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
12723         argument to get the length, don't default to the array length.
12725 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
12727         * assembly.c (mono_assembly_setrootdir): New function used to
12728         override the MONO_ASSEMBLIES directory.
12730 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12732         * icall.c: ValueType_GetHashCode() initialize local var.
12734 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12736         * reflection.c: sort custom attributes table.
12738 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12740         * reflection.c: support named args in custom attributes (write support).
12742 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
12744         * reflection.c: fix finally position calculation.
12746 2002-05-15  Radek Doulik  <rodo@ximian.com>
12748         * reflection.c: fixed endianess at many places
12750         * icall.c (ves_icall_InitializeArray): comment out debug msg
12752 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
12754         * object.c (mono_unhandled_exception): new function to handle
12755         unhandled exceptions.
12756         (mono_unhandled_exception): call the UnhandledException event.
12757         (mono_runtime_delegate_invoke): impl.
12759 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
12761         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
12762         returns the RVA, not the direct pointer to the data. Handle the case
12763         when the class size is fixed.
12765 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
12767         * reflection.c: fix some endianess issues.
12769 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
12771         * object.c (mono_runtime_invoke): is now able to catch exceptions.
12773         * threads.c (mono_thread_init): added a callback which is invoked
12774         at thread start.
12776 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
12777         
12778         * icall.c: make GetHashCode return non-negative values.
12780 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
12782         * object.c, icall.c, gc.c: revert to address-based hashcode.
12784 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
12786         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
12788 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12790         * icall.c, class.c: special case <Module>.
12792 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
12794         * icall.c: fix bug in GetNow().
12796 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
12798         * object.c (mono_runtime_class_init): make sure that we call all
12799         static class constructors.
12801 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12803         * reflection.c: sort methodsemantics table.
12805 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12807         * reflection.h, reflection.c: honour init locals setting.
12809 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
12811         * icall.c: copied Double ToStringImpl for Single ToStringImpl
12813 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
12815         * reflection.c: support ContructorBuilders in attribute blob creation.
12817 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12819         * reflection.c: some changes to build a binary that can be run
12820         directly in windows.
12822 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
12824         * loader.c: print a big message when an icall can't be found.
12826 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12828         * string-icalls.c: fix bug 24248.
12830 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
12832         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
12833         icall.c, reflection.h: separate assembly loading by pathname and by
12834         assembly name. Use the MONO_PATH env var to search for assemblies.
12836 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12838         * assembly.c, image.h: add some support for assemblies
12839         with multiple modules.
12840         * class.c, class.h: export mono_class_from_typeref().
12841         * loader.c: remove duplicated code and use mono_class_from_typeref(),
12842         instead.
12844 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12846         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
12847         documentation says (the ECMA one is correct).
12849 2002-05-02  Dick Porter  <dick@ximian.com>
12851         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
12852         Don't name the synchronisation mutex.
12854 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
12856         * rand.c
12857         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
12858         Make the prototypes match.
12859         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
12860         Same.
12862         * icall.c
12863         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
12864         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
12865         all systems have tm.tm_zone, so use strftime() with %Z to print
12866         the timezone abreviation into a temp string.
12868         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
12869         rather than mono_array_addr() on a MonoString on Big Endian
12870         machines.
12872 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
12874         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
12875         fix bug 24041
12877 2002-04-30  Dick Porter  <dick@ximian.com>
12879         * socket-io.c: Cope with SOCKET being an integer rather than a
12880         pointer now.
12882         * threads.c: Added Thread_free_internal, to deal with thread
12883         handle cleanup.  Moved calls to handle_store() and handle_remove()
12884         to start_wrapper(), so each can only be called once.  Allocate
12885         synchronisation blocks with GC_malloc(), and use GC finalisation
12886         to close the handles.
12888         * icall.c: added System.Threading.Thread::Thread_free_internal
12890 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12892         * icall.c: support Environment.Exit, CommandLineArgs().
12894 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12896         * object.c, object.h: added mono_runtime_run_main () and
12897         mono_runtime_get_main_args () for use in System.Environment.
12899 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12901         * gc.c: fix thinko, enable actual finalization since the jit is now
12902         fixed.
12904 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12906         * gc.c, object.c: take into account that an object may be offset wrt the address
12907         returned by GC_malloc().
12909 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
12911         * image.c: handle files without entries in the assembly table (modules).
12913 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
12915         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
12916         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
12917         allowed to be null when it's System.Object class setup.
12919 2002-04-27  Martin Baulig  <martin@gnome.org>
12921         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
12922         if `tb->parent == NULL' rather than crashing.
12924 2002-04-28  Nick Drochak  <ndrochak@gol.com>
12926         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
12927         calling acos() where asin() should have been called.
12929 2002-04-26  Martin Baulig  <martin@gnome.org>
12931         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
12932         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
12933         there's a subdirectory called `System', but we don't want to read that
12934         subdirectory as an assembly.
12936 2002-04-25  Martin Baulig  <martin@gnome.org>
12938         * debug-symfile.c: Reflect latest MonoString changes.
12940 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12942         * rand.c, rand.h: instance method icalls need to have an explicit
12943         this pointer as first argument in the C implementation.
12945 2002-04-25  Nick Drochak <ndrochak@gol.com>
12947         * icall.c: Fix typo in map for GetNonZeroBytes
12949 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
12951         * string-icalls.c : String does now passes unit tests without any 
12952         errors, the following changes has been made:
12953         
12954         Implemented replace methods.
12955         Renaming of methods to (try) follow the standard.
12956         Fixed compare ordinal
12957         Made all memory allocated directly to function instead of via icall function.
12958         Small performance fix in is_in_array function
12959                         
12960  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
12962         c (mono_string_Internal_ctor_charp_int_int):
12963         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
12964         sindex < 0, throw ArgumentOutOfRangeException instead of
12965         ArgumentNullException.
12967         Added new check for length == 0, however
12968         I need to make it return String.Empty from the C code.
12969         
12970         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
12971         that calculate the length for us here.
12972         
12973         (mono_string_Internal_ctor_sbytep_int_int): Replaced
12974         mono_string_new_utf16 with mono_string_new, since value is utf8.
12976 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12978         * object.c: register the object for finalization if needed.
12979         Allocate one more char in the string for the terminating 0 char.
12981 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12983         * class.c, class.h, image.c: check if a type implemenst a destructor.
12984         Use the proper key for array class lookups.
12985         * icall.c: register the icalls in the System.GC class.
12986         * gc.c, gc.h: GC-related functions and icalls.
12988 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12990         * icall.c:
12991         * socket-io.c:
12992         * unicode.c: free some strings gotten from mono_string_to_utf8 and
12993         changed a couple of free () by g_free ().
12995         * decimal.c: one-liner in the comments for decimal2string ().
12997 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
12999         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
13001 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
13003         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
13004         * object.c (mono_runtime_invoke_array) : handle null in params
13006 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13008         * string-icalls.c: fixed bug in split (one off bug)
13010 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13012         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
13013         * icalls.c: added String::Equals as internal method
13015 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13017         * threads.c: fixed bug in the double interlocked functions
13019 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
13021         * threads.c: implemented all of the new interlocked icalls.
13022         * string-icalls.c: fix a bug in insert.
13023         * icalls.c: added the icalls for interlocked, removed old string functions.
13024         
13025 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
13027         * loader.c: fix off-by-one error when reading argument names.
13029 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13031         * profiler.c: win32 counter implementation (untested).
13032         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
13033         (the latter needs testing and more complete impl. from win32 folks).
13035 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
13037         * object.c: mono_array_new_full workaround mono_array_class_get
13038         problem.
13040 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13042         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
13043         * object.h (mono_string_chars): Changed casting type.
13045 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13047         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
13048                            method signatures to use gunichar2 instead of gint16.
13050 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
13052         * object.h, object.c: domain-specific versions of mono_object_new and
13053         mono_array_new.
13055 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
13057         * object.c: changed String layout
13059         * string-icalls.c (mono_string_Internal_ctor_chara): added
13060         internal string constructors.
13062 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
13064         * threads.c: pass 'this' to the thread start routine.
13066 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13068         * string-icalls.c: fix IndexOf and LastIndexOf. Now
13069         InternalCompareStr don't call twice mono_string_cmp_char for the last
13070         character. Improved performance in mono_string_cmp_char.
13072 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
13074         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
13075         code into its own library: libmonoruntime.
13077 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
13079         * object.h, object.c: changed array format so that szarrays do not
13080         require a bounds structure.
13081         * icall.c, appdomain.c: support for new szarray format.
13083 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
13085         * metadata.c: compare also the retuns type when comparing signatures:
13086         we didn't do this as an optimization since really overloaded methods
13087         must differ also in the arguments, but this doesn't work with
13088         low-level IL code (or when using explicit conversion operators: see
13089         bug#23498 for an example).
13091 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13093         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
13095 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
13097         * icall.c: make MonoType::GetElementType its own icall.
13099 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13101         * icall.c: remove MonoMethod_get_Name().
13102         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
13103         object.
13105 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13107         * string-icalls.c: optimized a few methods.
13109 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13111         * icall.c: added all new string internal calls
13112         * string-icalls.c: added, new string internal call implementation.
13113         * object.c: added mono_string_new_size for allocating a string a size
13115 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
13117         * object.c (mono_object_isinst): use the same code as in the
13118         optimized x86 version.
13120 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13122         * profiler.c: TSC-based timer code (faster and more accurate).
13123         Not hooked up in configure, yet (set USE_X86TSC to 1).
13125 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
13127         * profiler.c, profiler.h: track time spent compiling methods.
13128         * threads.c: track thread creation/destruction.
13130 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
13132         * profiler.c, profiler.h, profiler-private.h: profiling interface
13133         and sample implementation. Moved here so that it can be used also by
13134         the jit.
13136 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
13138         * reflection.c, reflection.h: keep types and other handles separate in
13139         the hash tables for referred tokens. Add guid for modules.
13141 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13143         * assembly.c: fix bugs found with valgrind.
13144         * metadata.h, metadata.c: added mono_metadata_guid_heap().
13146 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
13148         * threads: added icall support for getting current domain for
13149                    the thread.
13151 2002-04-13  Martin Baulig  <martin@gnome.org>
13153         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
13154         (MonoDebugVarInfo): Added `index' field for register based addresses.
13155         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
13156         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
13157         `MonoDebugVarInfo *params' and `guint32 this_offset' with
13158         `MonoDebugVarInfo *this_var'.
13160         * debug-symfile.c (relocate_variable): New static function to write
13161         a location description for a local variable or method parameter.
13163 2002-04-12  Martin Baulig  <martin@gnome.org>
13165         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
13166         stack offset and begin/end scope address of a local variable.
13167         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
13168         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
13169         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
13171         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
13172         Added new relocation types for start/end scope of a local variable.
13174 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13176         * object.h: add mono_object_domain() macro.
13177         * reflection.c: handle typespecs.
13178         * icall.c: MonoMethod::get_Name() implementation.
13180 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13182         * icall.c: String::GetHashCode() icall implementation.
13184 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13186         * icall.c: String::IndexOfAny icall.
13187         * object.c, object.h: make array->max_length more useful.
13188         Intrduced mono_object_class() and mono_string_length() macros.
13190 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13192         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
13193         instead of g_unichar_isdigit.
13195 2002-04-11  Nick Drochak  <ndrochak@gol.com>
13197         * icall.c: Implement a simple Double.ToString().
13199 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
13201         * appdomain.h: only io-layer.h is supposed to be included.
13202         * icall.c: explicitly import environ. Fix warning.
13204 2002-04-10  Nick Drochak  <ndrochak@gol.com>
13206         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
13207                 return true even if it's not Daylight Savings time.
13208                 Only return false for the case where the function isn't
13209                 implemented for a plaform (read Windows).
13211 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13213         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
13214         data with a mutex.
13216 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
13218         * mempool.c (mono_mempool_alloc): only use g_malloc when
13219         absolutely necessary.
13221 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
13223         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
13225         * class.c (mono_class_vtable): use domain mempool to allocate vtable
13226         (mono_class_proxy_vtable): use domain mempool
13228 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13230         * appdomain.h, appdomain.c: split initialization that requires the
13231         execution engine support into mono_runtime_init().
13233 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
13235         * class.c (mono_class_init): don't include vtable inside MonoClass
13236         to save some memory, gather some statistics.
13237         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
13239 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13241         * icall.c: internalcall implementation for ValueType.Equals().
13243 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
13245         * object.c (mono_message_init): moved 
13246         (mono_runtime_exec_main): new arch. independent impl.
13247         (mono_runtime_invoke_array): new method - like
13248         mono_runtime_invoke, but you can pass an array of objects.
13249         (mono_remoting_invoke): new arch. independent impl.
13250         (mono_message_invoke): new arch. independent impl.
13251         (mono_runtime_class_init): new arch. independent impl.
13252         (mono_runtime_object_init): new arch. independent impl.
13254 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13256         * metadata.c, object.c, reflection.c: documented the exported
13257         functions.
13259 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
13261         * icall.c: simpler code to pass the assembly builder data to corlib.
13262         Implement GetNestedTypes() internalcall.
13264 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13266         * class.c: warn if a type can't be loaded.
13268 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
13270         * image.h: typedef MonoImageOpenStatus
13271         * types.h: removed unused file
13272         
13273 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
13275         * icall.c: Enum_ToObject accepts enum value arguments.
13277 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
13279         * class.c: move initialization of properties, events and nested
13280         classes, so that they happen for interfaces, too.
13282 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13284         * icall.c: cleanup some ugly casts in Array_SetValue*.
13286 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
13288         * icall.c: the values array fro enums is of the correct type, now.
13289         Implement (correctly) getFullName instead of assQualifiedName for
13290         MonoType.
13291         * reflection.h, reflection.c: added mono_type_get_name ().
13293 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13295         * assembly.c, image.h: for each MonoImage, record from wich assembly
13296         it was loaded.
13297         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
13298         Make Type.Assembly work.
13300 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
13302         * debug-symfile.h: use char* instead of gpointer to avoid
13303         unnecessary casts.
13305         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
13307         * icall.c (ves_icall_InternalExecute): impl. FielSetter
13308         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
13310 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
13312         * icall.c (mono_message_init): impl. (code cleanup)
13313         (ves_icall_InternalExecute): impl. FieldGetter
13315         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
13316         defined we call all (non-static)methods through the vtable. 
13318 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
13320         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
13321         finalizer even though the memory is still referenced (and the chunk of
13322         memory is not freed).
13324 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
13326         * assembly.c: fix brokeness.
13328 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
13330         * class.c: kill some warnings. Check explicit interface method
13331         implementation also without considering the namespace.
13332         Load also literal strings in static class data.
13334 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
13336         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
13337         (default_assembly_name_resolver): Make the resolver take the
13338         "base" directory where the assembly was originally defined, so we
13339         can load DLLs that are in the same directory as the assembly that
13340         is being referenced.
13342 2002-03-28  Dick Porter  <dick@ximian.com>
13344         * file-io.h: 
13345         * file-io.c:
13346         * socket-io.c: 
13347         * unicode.h: 
13348         * unicode.c: Warning cleanups
13350 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
13352         * object.h, reflection.h: use the correct type instead of MonoObject.
13354 2002-03-28  Martin Baulig  <martin@gnome.org>
13356         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
13357         (mono_debug_update_symbol_file): Initialize classes if necessary.
13359 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
13361         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
13362         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
13364 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
13366         * assembly.h: fix function prototype.
13367         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
13368         * mono-endian.h: use const cast.
13370 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
13372         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
13374 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
13376         * loader.c: don't assert when a typeref can't be loaded, give
13377         a chance to the runtime to trow an exception instead.
13378         * loader.h: fix warning.
13380 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
13382         * class.c (mono_class_proxy_vtable): added proxy support
13384 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
13386         * icall.c: removed last of PAL calls, added System.Environment
13387         * file-io.h, file-io.c: MonoIO implementation
13388         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
13390 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
13392         * appdomain.c: do not use the byte marker in ldstr table lookup.
13393         * debug-helpers.c: allow two ':' to separate class and method name.
13394         * object.c: allocate arrays bounds with the GC, too.
13395         * verify: add a few more checks.
13397 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
13399         * reflection.c: output also literal strings. Allocate parameter data
13400         with GC_malloc() (thanks, Martin, for catching this!).
13402 2002-03-26  Martin Baulig  <martin@gnome.org>
13404         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
13405         include the `this' offset in the `param_offsets'.
13407 2002-03-25  Martin Baulig  <martin@gnome.org>
13409         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
13410         mono_debug_get_class() function to get the classes. Added new
13411         relocation types for arrays and strings.
13412         (mono_debug_get_class): New static function to search in all
13413         referenced assemblies for a metadata token.
13415         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
13417 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
13419         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
13420         hold gc-allocated objects. Make the string heap a stream like the
13421         others. Removed duplicated code when writing stream info.
13422         Added asserts to catch possible buffer overflows. Set the sorted map
13423         for tables that need sorting. Added some documentation.
13425 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
13427         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
13428         for interned strings and vtables.
13430 2002-03-24  Martin Baulig  <martin@gnome.org>
13432         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
13433         it in the array since it was created with g_slist_prepend().
13435 2002-03-24  Martin Baulig  <martin@gnome.org>
13437         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
13438         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
13439         (mono_debug_method_from_token): Renamed to
13440         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
13441         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
13443         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
13444         relocation types.
13446         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
13448 2002-03-24  Martin Baulig  <martin@gnome.org>
13450         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
13451         (mono_debug_method_from_token): New func.
13453         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
13454         New interncall, calls mono_debug_local_type_from_signature().
13455         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
13456         calls mono_debug_method_from_token().
13458 2002-03-23  Martin Baulig  <martin@gnome.org>
13460         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
13461         specifies the number of bytes to be converted, not the array size.
13462         Return the number of chars, not the number of bytes.
13463         (ves_icall_iconv_get_chars): The `byteCount' argument
13464         specifies the number of bytes to be converted, not the array size.
13466 2002-03-23  Martin Baulig  <martin@gnome.org>
13468         * reflection.h (MonoReflectionSigHelper): New type.
13470         * reflection.c (mono_reflection_sighelper_get_signature_local),
13471         (mono_reflection_sighelper_get_signature_local): New functions.
13473         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
13474         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
13475         interncalls.
13477 2002-03-23  Martin Baulig  <martin@gnome.org>
13479         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
13480         is_writeable is set.
13481         (mono_raw_buffer_update): New function to write the modified map
13482         back to disk.
13484         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
13486         * debug-symfile.c (mono_debug_update_symbol_file): Call
13487         mono_raw_buffer_update() when done writing.
13489 2002-03-23  Martin Baulig  <martin@gnome.org>
13491         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
13493         * debug-symfile.c: Added support for arguments and local variables.
13495 2002-03-23  Dick Porter  <dick@ximian.com>
13497         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
13498         protected by ifdefs, hence breaking the w32 build.
13500 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13502         * object.c: implement is_interned() the right way.
13504 2002-03-21  Martin Baulig  <martin@gnome.org>
13506         * debug-symfile.[ch]: New files to handle debugging information
13507         files. There's also support to dynamically update these symbol
13508         files to include machine dependent information.
13510 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
13512         * threads.c (mono_thread_create): new function to create thread
13513         from C
13515 2002-03-20  Martin Baulig  <martin@gnome.org>
13517         * icall.c (ves_icall_InternalInvoke): Create a new object if the
13518         method is a constructor.
13519         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
13520         points to ves_icall_InternalInvoke().
13522 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
13524         * file-io.c: Flush shouldn't throw exceptions.
13526 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
13528         * file-io.c: FileStream flush support; FileSetLength now
13529         restores file pointer.
13531 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
13533         * class.c: set image for pointer classes.
13535 2002/03/19  Nick Drochak <ndrochak@gol.com>
13537         * sysmath.c: Forgot one.
13539 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
13541         * sysmath.c: Avoid redefining existing names.
13543 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
13545         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
13546         handled by runtime as icall rather than dllimport from libm.so
13547         * file-io.c, file-io.h: fixed handle argument type.
13549 2002-03-18  Dick Porter  <dick@ximian.com>
13551         * reflection.c (mono_image_get_type_info): rename interface to
13552         iface, because of "#define interface struct" on windows.
13554 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
13556         * class.c, class.h: rename and export mono_ptr_class_get().
13557         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
13558         * reflection.c, reflection.h, icall.c: better/saner type name
13559         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
13560         method signatures.
13562 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
13564         * class.c (mono_class_init): removed hardcoded GHC_SLOT
13566         * icall.c (ves_icall_InternalInvoke): impl.
13568 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
13570         * reflection.c: output the interface map table, too.
13572 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
13574         * class.c (class_compute_field_layout): separate computation of 
13575         static field layout
13577 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
13579         * icall.c: added System.Buffer support.
13580         * file-io.c: moved file icalls from PAL to FileStream.
13582 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
13584         * icall.c (ves_icall_System_Object_GetHashCode): impl.
13586 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
13588         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
13590 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
13592         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
13594 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
13596         * debug-helpers.{c,h}: moved here from monograph some useful functions
13597         to locate a method by name/signature in a class or image. Included
13598         also a small and flexible IL disassembler.
13600 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
13602         * reflection.c: fixup tokens in methods with small header size, too.
13604 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
13606         * object.c (mono_string_to_utf8): remove assert(!error), instead
13607         print a warning. 
13609 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
13611         * icall.c: update to the new mono_Array_class_get interface.
13613 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
13615         * appdomain.c, object.c: Boehm-GC enable.
13616         * icall.c: make get_data_chunk() support split data requests.
13617         Ensure a class is initialized in more cases. Return only the first
13618         property found in GetProperties() or the compiler gets confused. 
13619         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
13620         * reflection.h, reflection.c: add fixup mechanism for field and method
13621         tokens. Initialize assembly->typeref in a single place. Output
13622         properties after events. Support custom attributes for events, too.
13623         Typo fix for paramter custom attrs.
13625 2002-03-07  Martin Baulig  <martin@gnome.org>
13627         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
13629 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
13631         * class.c (mono_array_class_get): fix. for multi. dim. arrays
13633 2002-03-06  Martin Baulig  <martin@gnome.org>
13635         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
13636         non-zero lower bounds. See testcases #F10-#F13.
13638 2002-03-05  Martin Baulig  <martin@gnome.org>
13640         * exception.c (mono_get_exception_argument_out_of_range): New exception.
13642         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
13643         ves_icall_System_Array_GetValue(), only calculate the absolute array position
13644         here.
13645         (ves_icall_System_Array_SetValue): Likewise.
13646         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
13647         as argument and does the actual work. This function is used when copying a
13648         multi-dimensional array.
13649         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
13650         now do all the widening conversions of value types.
13651         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
13653 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13655         * class.c: remove some magic numbers and use the smbolic names,
13656         instead. Added init_events() to load event info at class init time.
13657         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
13658         and mono_metadata_methods_from_event().
13659         * reflection.h, reflection.c: added support for writing out the evnets
13660         related information.
13662 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
13664         * reflection.h, icall.c: use a different method (GetInterfaces)
13665         to gather interface info and add isbyref, isprimitive and
13666         ispointer to the ves_icall_get_type_info() return value.
13668 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
13670         * class.h: stared adding support for events.
13671         * icall.c: split find_members implementation. Added debug icall to get
13672         the address of an object.
13673         * reflection.c: handle TypeBuilders in mono_type_get_object().
13675 2002-03-01  Martin Baulig  <martin@gnome.org>
13677         * icall.c (ves_icall_System_Array_GetLength): This must throw an
13678         ArgumentOutOfRangeException(), not an ArgumentException().
13679         (ves_icall_System_Array_GetLowerBound): Likewise.
13680         (ves_icall_System_Array_GetValue): Improved argument checking.
13681         (ves_icall_System_Array_SetValue): Improved argument checking.
13683 2002-03-01  Martin Baulig  <martin@gnome.org>
13685         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
13686         called with invalid arguments rather than just dying with g_assert().
13687         (ves_icall_System_Array_SetValue): Likewise.
13688         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
13689         raise a NotImplementedException instead.
13690         (ves_icall_System_Array_GetLength): Added argument checking.
13691         (ves_icall_System_Array_GetLowerBound): Added argument checking.
13693 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
13695         * object.h (mono_assert): new macros mono_assert and
13696         mono_assert_not_reached
13698 2002-02-28  Martin Baulig  <martin@gnome.org>
13700         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
13701         and "System::String::IsInterned" to "System::String::_IsInterned".
13703 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
13705         * icall.c: remove hacks for typebuilder. Added icall to create a
13706         modified type from a tybebuilder.
13707         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
13708         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
13709         to create a backing MonoClass for a TypeBuilder.
13711 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
13713         * class.c, class.h: more refactoring of class init.
13714         Export mono_class_setup_mono_type() and mono_class_setup_parent().
13716 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
13718         * marshal.c, marshal.h: start of marshaling interface.
13720 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
13722         * icall.c: fix order in assembly qualified name icall.
13724 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
13726         * class.c: do not free str, since we store it in the hash table.
13727         * reflection.h: add label field to MonoILExceptionInfo.
13728         * reflection.c: handle references to more than one assembly. Handle
13729         case when there isn't a module created in the assembly.
13731 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
13733         * class.c: Fix typo. Start refactoring of class init code.
13735 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
13737         * appdomain.c: exit with 1 on error.
13738         * class.c: we already have the name in MonoClassField.
13739         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
13740         MonoStreamHeader instead of an offset of image->raw_metadata.
13742 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
13744         * appdomain.c (mono_init): Be even more descriptive about the error.
13746 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
13748         * appdomain.c: give the user an informative message when corlib can't
13749         be loaded.
13751 2002-02-26  Martin Baulig  <martin@gnome.org>
13753         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13754         New icall to get the time zone data.
13756 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
13758         * reflection.c: set virtual and raw size of section correctly.
13759         * threads.c: transfer domain information to newly created threads.
13761 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
13763         * class.c: when instancing a class in a domain, load the default
13764         vaules for static fields from the constant table. Fix System.Enum to
13765         not be an enum.
13766         * icall.c: implement Object::GetType() internalcall. Implemented
13767         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
13768         Fixed checking of binding flags in find_members().
13769         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
13770         * reflection.c: handle enumerations when writing to the constant
13771         table. Use a different object cache for types.
13774 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
13776         * object.c (mono_object_isinst): fix for arrays
13778         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
13780 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
13782         * object.c: don't use mprotect ()  and fix intern pool hash table
13783         lookup for big endian systems.
13785 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
13787         * icall.c: change type_is_subtype_of () signature.
13789 2002-02-21  Mark Crichton  <crichton@gimp.org>
13791         * rand.c, rand.h: Added random number generator for
13792         System.Security.Cryptography classes.
13794         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
13796         * icall.c: Added System.Security.Cryptography calls.
13798 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
13800         * class.c, icall.c, metadata.c: better support for pointer types.
13801         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
13802         * reflection.c: Add support for getting custom attrs for properties
13803         and simplify some code.
13805 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
13807         * icall.c: change getToken () and add custom attribute GetBlob()helper
13808         method.
13809         * reflection.h: add custom attrs array to the reflection builder structures.
13810         * reflection.c: encode and emit custom attributes for all the relevant
13811         reflection objects. Cache fieldref and methodref tokens. Change
13812         mono_image_create_token() interface to take a MonoDynamicAssembly.
13813         More complete custom attributes decoder. Load custom attributes for
13814         Assembly, Field, Method and Constructor objects, too. Make the
13815         returned array an Attribute[] one, not object[]. Added
13816         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
13817         custom attribute constructor.
13819 2002-02-20  Dick Porter  <dick@ximian.com>
13821         * icall.c:
13822         * rawbuffer.c:
13823         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
13824         problem code out for now).
13826 2002-02-19  Radek Doulik  <rodo@ximian.com>
13828         * object.c (mono_ldstr): use hash table to avoid multiple swapping
13830 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
13832         * icall.c: register the GetCustomAttributes method.
13833         * object.c, object.h: add mono_string_new_len ().
13834         * reflection.h, reflection.c: added mono_runtime_invoke(),
13835         mono_install_runtime_invoke(). Added
13836         mono_reflection_get_custom_attrs () to load custom attributes and
13837         create the attribute objects.
13839 2002-02-19  Dick Porter  <dick@ximian.com>
13840         * threads-dummy-types.c:
13841         * threads-dummy-types.h:
13842         * threads-dummy.c:
13843         * threads-dummy.h:
13844         * threads-pthread-types.c:
13845         * threads-pthread-types.h:
13846         * threads-pthread.c:
13847         * threads-pthread.h:  Deleted obsolete files
13849 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
13851         * class.c (mono_class_vtable): runtime init the class when we
13852         allocate static class data.
13854         * icall.c (ves_icall_System_Array_SetValue): check for null values.
13856         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
13857         and String - but we will need generic marshalling support in the
13858         future. 
13859         (mono_init): set the domain name in a ms compatible way
13861         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
13862         String[].
13864 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
13866         * object.c (mono_array_clone): use alloca() instead of g_malloc  
13867         for sizes
13869         * appdomain.c (mono_domain_unload): impl.
13871 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
13873         * appdomain.c, object.c: fix intern pool implementation.
13874         * class.c: fix alignment code.
13876 2002-02-16  Radek Doulik  <rodo@ximian.com>
13878         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
13879         and s2 > s1, just copy lower bytes to be compatible with little
13880         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
13881         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
13883         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
13884         force big_endian to be 1 for big endian machines 
13885         (ves_icall_iconv_new_decoder): ditto
13887 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
13889         * socket-io.c (convert_sockopt_level_and_name): If the system
13890         doesn't define SOL_IP or SOL_TCP, get them by hand using
13891         getprotobyname() and caching the values (because this could be a
13892         slow operation).
13893         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
13894         Use the appropriate struct when the system does support it. Ie,
13895         not all systems have struct ip_mreqn so use struct ip_mreq when
13896         appropriate.
13898 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
13900         * reflection.c: handle finally clauses.
13902 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
13904         * socket-io.c: use g_snprintf() instead of snprintf.
13906 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
13908         * reflection.c (mono_param_get_objects): Cast second argument to
13909         mono_method_get_param_names to a const char** to silence the
13910         compiler warning.
13912         * appdomain.c (mono_domain_assembly_open): Put parens around the
13913         truth statement in the for-loop.
13915         * unicode.c (iconv_convert): Got rid of a compiler warning about
13916         int i being unused when the system has a new iconv.
13917         (iconv_get_length): Same.
13919         * image.c (load_class_names): Cast the second argument to
13920         g_hash_table_insert() to char* to hush compiler warnings about the
13921         arg being a const.
13922         (mono_image_open): Same here.
13924         * socket-io.c: Don't conditionally include sys/filio.h or
13925         sys/sockio.h here anymore since we now get them from
13926         io-layer/io-layer.h
13927         (inet_pton): If the system doesn't support inet_aton, implement
13928         using inet_addr and also #define INADDR_NONE if it isn't defined
13929         by the system.
13931 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
13933         * metadata.c, metadata.h: added function to get packing and size info
13934         of a typedef.
13935         * reflection.h, reflection.c: handle field RVA data. Save info about
13936         the table layout if needed. Assign typedef indexes to all the types
13937         before dumping the info about them to avoid forward reference problems.
13939 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
13941         * socket-io.c (convert_sockopt_level_and_name): ifdef
13942         SO_ACCEPTCONN because it is not defined on my system (old debian)
13944 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
13946         * opcode.c: use stddef.h to get NULL.
13948 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
13950         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
13951         for FIONBIO, FIONREAD and SIOCATMARK.
13952         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
13953         define INADDR_NONE and besides, inet_addr() is deprecated and
13954         should not be used. Use inet_pton() instead - it also has the
13955         added bonus that it can easily handle IPv6 addresses as well.
13956         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
13958 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
13960         * decimal.c: remove _MSC_VER conditional.
13962 2002-02-13  Dick Porter  <dick@ximian.com>
13964         * socket-io.c: 
13965         * icall.c: Internal calls for Blocking, Select, Shutdown,
13966         GetSocketOption and SetSocketOption
13968 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13970         * assembly.cs: better resolver: use it instead of some kludgy
13971         code.
13973 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
13975         * reflection.c: the best way to speed-up the compiler is to avoid
13976         infinite loops.
13978 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
13980         * class.c (mono_class_vtable): changed the object layout
13981         (obj->vtable->class). 
13982         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
13984 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13986         * assembly.c: look for assemblies in the assembly dir, too.
13988 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
13990         * class.c: fix thinko in mono_class_from_type().
13992 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
13994         * exception.h, exception.c: added TypeLoadException.
13995         * object.h, object.c: added mono_array_clone ().
13996         * icall.c: handle throwOnError in AssemblyGetType().
13997         Added Array.Clone().
13998         * opcode.h, opcode.c: use a single value for the opcode val.
13999         Compile fix for non-gcc compilers.
14001 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
14003         * opcodes.c, opcodes.h: export interesting info about opcodes.
14005 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
14007         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
14008         icalls. 
14010         * class.c (class_compute_field_layout): set element_class for enums
14011         (mono_class_create_from_typedef): set element_class for normal classes
14013         * icall.c (ves_icall_System_Enum_get_value): impl.
14015         * class.c (mono_class_create_from_typedef): do not set valuetype
14016         flag for System.ValueType and System.Enum
14018 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
14020         * unicode.c (iconv_convert): fix big endian problem.
14022 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
14024         * class.c: add asserts if we are ever going to scribble over memory.
14025         * socket-io.c: not all systems have AF_IRDA defined.
14027 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
14029         * class.c (class_compute_field_layout): do not consider static
14030         fields to compute alignment
14032 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
14034         * appdomain.c (mono_appdomain_get): impl.
14035         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
14037 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
14039         * icall.c: ignore "file://" prefix when loading an assembly.
14041 2002-01-23  Dick Porter  <dick@ximian.com>
14043         * socket-io.c:
14044         * icall.c:
14045         * Makefile.am: Added socket support
14047 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
14049         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
14050         code back.  This should return the assemblies that are loaded by
14051         the runtime on behalf of an application domain. 
14053         The current implementation is still broken, it just returns every
14054         assembly loaded, but until we get real applications domain this
14055         will do.
14057 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
14059         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
14060         AppDomain object.
14062 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
14064         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
14065         the mono_class_from_name lookup.
14066         (ves_icall_get_parameter_info): ditto.
14067         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
14068         method.
14069         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
14071 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
14073         * class.c: load also nested classes on class init.
14074         System.ValueType instance methods gets passed boxed
14075         values, unless methods in derived classed that get a pointer to the
14076         data.
14077         * icall.c: use better name parsing code in GetType().
14078         * image.c, image.h: add mono_image_loaded ().
14079         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
14080         * reflection.c, reflection.h: added mono_reflection_parse_type().
14082 2002-01-22  Veronica De Santis <veron78@interfree.it>
14084         * icall.c : Added mapping of internal calls for Manual and Auto reset events
14085         * threads.c : Added the implementation of internal calls for events
14086         * threads.h : Added prototypes of internal calls for events
14087         
14088 2002-01-21  Radek Doulik  <rodo@ximian.com>
14090         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
14092 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
14094         * class.c (mono_class_init): set min_align to 1 (instead of 0)
14095         (mono_class_value_size): use min_align
14097 2002-01-20  Dick Porter  <dick@ximian.com>
14099         * threads.h:
14100         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
14101         so it compiles on w32.
14103 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
14105         * metadata.c (mono_type_stack_size): impl.
14107         * class.c (mono_class_get_field): impl. memberref token
14109 2002-01-16 Veronica De Santis <veron78@@interfree.it>
14111         * icall.h : Added the internal calls mapping for CreateMutex_internal
14112                     and ReleaseMutex_internal.
14113         * threads.h : Added the prototype of mutexes internal calls.
14114         * threads.c : Added the implementations of mutexes internal calls.
14116 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
14118         * metaparse.h: removed unused file.
14119         * reflection.c, reflection.h: added stream_data_align () function 
14120         to align data in streams and keep stream aligned. Add support for
14121         exception support in method headers.
14123 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
14125         * unicode.c: make iconv_convert () return the number of bytess written
14126         in the output buffer.
14128 2002-01-15  Dick Porter  <dick@ximian.com>
14129         * threads.c: Make the runtime's idea of infinite timeouts coincide
14130         with the class library's
14132         Fix a particularly egregious bug in mono_thread_cleanup(). That
14133         code was so utterly bogus it must have been written on a Monday.
14135 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
14137         * reflection.h: add subtypes field to TypeBuilder.
14138         * reflection.c: encode constants for literal fields.
14139         Handle subtypes. Fix user string token (and add a zero byte)
14140         at the end.
14141         
14142 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
14144         * class.c (mono_class_init): bug fix: assign slot numbers for
14145         abstract methods.
14147 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14149         * reflection.c: don't try to output a code RVA for abstract methods.
14150         Small fixes for method header format. Output parameter info to the
14151         ParamDef table. Save method overriding info to MethodImpl table.
14152         Fix property support. Allow typedef.extends to be a type in the
14153         building assembly.
14154         * verify.c: fix off-by-one error.
14156 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
14158         * class.c: fix mono_class_from_mono_type () for szarray types.
14159         Remove unused cache check in mono_class_from_type_spec().
14160         * icall.c: *type_from_name () functions handle simple arrays and byref.
14161         * reflection.c: handle byref and szarray types. Handle methods without
14162         body (gets P/Invoke compilation working). Handle types and fields in
14163         get_token ().
14164         * reflection.h: add rank to MonoTypeInfo.
14166 2002-01-10  Dick Porter  <dick@ximian.com>
14168         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
14169         internal calls
14171 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
14173         * icall.c: initialize class in type_from_handle ().
14174         Loop also in parent classes for get_method ().
14175         * reflection.c: properly encode class and valuetype types.
14176         Start on encoding TypeBuilder types. Handle fieldrefs.
14177         Use correct length when registering a user string.
14178         Handle ConstructorBuilder and MonoMethod in get_token ().
14179         Make mono_type_get_object () aware of cached types.
14180         * object.c: back out change to mono_string_new ().
14182 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
14183         * object.c: mono_string_new should return a NULL when the string 
14184         passed in is NULL -- not try to deference it.
14185         
14186 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
14188         * icall.c: hack to make IsSubType work for TypeBuilders.
14189         * reflection.c: emit constructors before methods.
14190         Retrieve param names in mono_param_get_objects().
14192 2002/01/05  Nick Drochak  <ndrochak@gol.com>
14194         * Makefile.am: fix list of headers and sources so automake 1.5
14195         doesn't complain. Removed \# at end of list.
14197 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
14199         * reflection.c: get token for a method ref. Set return type of
14200         constructor to void.
14201         * loader.c: debug message.
14202         * class.c: typo fix.
14204 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
14206         * icall.c: fix array init with rank > 1. FindMembers
14207         loops in parent class as well.
14208         * image.c: do not insert nested types in name cache.
14209         * reflection.c: warning fix.
14210         * reflection.h: add override method (for interface impl).
14212 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
14214         * metadata.c: fix customattr decoding.
14216 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
14218         * rawbuffer.cs: Added native Win32 implementation, avoids using
14219         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
14221 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
14223         * class.c: make the low-level routines handle the cache.
14225 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
14227         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
14229 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
14231         * class.c: fix mono_array_element_size() for objects.
14232         * class.h, class.c: add properties to MonoClass and load them
14233         at init time.
14234         * icall.c: check with isinst() when assigning a value to an array
14235         instead of requiring the classes to match exactly.
14236         Implemented icall for System.Type::GetType().
14237         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
14238         enums. Handle bindingflags when looking for methods and fields.
14239         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
14240         and mono_metadata_methods_from_property().
14241         * reflection.h, reflection.c: added structures for propreties,
14242         parameters and enums. Implemented mono_property_get_object() and
14243         mono_param_get_objects().
14245 2001-12-18  Dick Porter  <dick@ximian.com>
14247         * file-io.c: Use mono_string_to_utf16() instead of
14248         mono_string_chars()
14250         * object.c: Added mono_string_to_utf16(), which copies the non
14251         NULL-terminated MonoString into a new double-null-terminated
14252         buffer.
14254 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
14256         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
14258 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
14260         * file-io.c: raise exceptions if handle is invalid.
14262 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
14264         * assembly.c: yet another check for mscorlib.
14265         * class.c, class.h: load nesting info for classes.
14266         * icall.c: many new functions to support the Reflection classes.
14267         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
14268         * reflection.h, reflection.c: mono_image_create_token(),
14269         mono_assembly_get_object(), mono_type_get_object(),
14270         mono_method_get_object(), mono_field_get_object(): methods to return
14271         objects that parallel the C representation of assemblies, types,
14272         methods, fields.
14274 2001-12-11  Dick Porter  <dick@ximian.com>
14276         * icall.c:
14277         * file-io.c: Internal calls for file IO.
14279 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
14281         * tabledefs.h: missing FileAttributes.
14282         * verify.h, verify.c: use is_valid_string () to simplify and check for
14283         valid strings more correctly. Fix warnings and speeling.
14284         Check more tables: Filed, File, ModuleRef, StandAloneSig.
14285         Check code: branches, maxstack, method calls.
14287 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
14289         * object.c (mono_object_allocate): removed static, so that the jit
14290         can allocate value types.
14292         * icall.c (ves_icall_System_DateTime_GetNow): impl.
14294 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14296         * class.c: init enum types right away and register the
14297         token->MonoClass map in mono_class_create_from_typedef ().
14298         * verify.h, verify.c: first cut of the verifier.
14299         * pedump.c: add --verify switch to verify metadata tables.
14300         * tabledefs.h: add some missing enums.
14302 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
14304         * class.c (mono_install_runtime_class_init): impl.
14305         (mono_class_init): renamed mono_class_metadata_init to
14306         mono_class_init, also removed the metadata_inited flag
14308         * object.c (mono_object_isinst): use faster algorithm
14310 2001-11-30  Radek Doulik  <rodo@ximian.com>
14312         * mono-endian.h: reverted last change
14313         added function prototypes
14315         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
14316         add mono-endian.c back
14318         * mono-endian.c: returned back, as Paolo pointed out, it's needed
14319         for unaligned access, I've mistaked it with endianess. I am
14320         sorry.
14321         (mono_read16): fix reverted endianess
14322         (mono_read64): ditto
14323         (mono_read32): ditto
14325 2001-11-30  Dick Porter  <dick@ximian.com>
14327         * exception.c: Implement mono_exception_from_name()
14329 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
14331         * metadata.h, metadata.c: remove params_size and locals_size and their
14332         calculation from the metadata code: they are only usefult to the
14333         interp.
14335 2001-11-29  Radek Doulik  <rodo@ximian.com>
14337         * object.c (mono_ldstr): swap bytes here, it's probably not the
14338         best place, but works for me now, I'll redo it once I know mono
14339         better, also note that I add PROT_WRITE and don't reset back, also
14340         note that it's only affects big endians, so x86 should be OK
14342         * mono-endian.h (read16): use just glib macros for both endians
14344         * mono-endian.c: removed as glib macros are used in in
14345         mono-endian.h so we don't need to care about endianess for read
14346         macros as glib does that for us already
14348 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
14350         * class.h, class.h: take minimum alignment into consideration so
14351         that the fields of a class remain aligned also when in an array.
14353 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14355         * loader.h, loader.c: add mono_method_get_param_names().
14356         * class.c: 0-init class fields.
14358 2001-11-26  Dick Porter  <dick@ximian.com>
14360         * icall.c:
14361         * threads-types.h:
14362         * threads.c: New file that handles System.Threading on all platforms
14364         * object.c: 
14365         * object.h: Remove the synchronisation struct from MonoObject,
14366         replace it with a pointer that gets initialised on demand
14368         * Makefile.am: Replace all the system-specific threading code with
14369         a single file that uses the new wrapper library
14371 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
14373         * class.c, class.h: add mono_install_trampoline() so that the runtime
14374         can register a function to create a trampoline: removes the ugly
14375         requirement that a runtime needed to export arch_create_jit_trampoline.
14376         * object.h, object.c: added mono_install_handler() so that the runtime
14377         can install an handler for exceptions generated in C code (with
14378         mono_raise_exception()). Added C struct for System.Delegate.
14379         * pedump.c: removed arch_create_jit_trampoline.
14380         * reflection.c: some cleanups to allow registering user strings and
14381         later getting a token for methodrefs and fieldrefs before the assembly
14382         is built.
14383         * row-indexes.h: updates and fixes from the new ECMA specs.
14385 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
14387         * class.h, class.c: add enum_basetype field to MonoClass.
14388         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
14389         to get index in the constant table reated to a field, param or
14390         property.
14391         * reflection.h, reflection.c: handle constructors. Set public-key and
14392         version number of the built assembly to 0.
14393         * row-indexes.h: update from new ECMA spec.
14395 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
14397         * class.h, class.c: add a max_interface_id to MonoClass.
14398         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
14399         since it's used to do that. Added mono_type_type_from_obj().
14400         Make GetType() return NULL instead of segfaulting if the type was not
14401         found. Handle simple arrays in assQualifiedName.
14402         * object.h: add a struct to represent an Exception.
14403         * reflection.c: output call convention in method signature.
14404         Add code to support P/Invoke methods and fixed offsets for fields.
14406 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
14408         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
14409         the value.
14410         * icall.c: use mono_array_addr instead of array->vector: fixes the
14411         reflection image writing.
14412         * reflection.c: init call convention byte to 0 in method signature.
14413         Encode the property signature. Don't output property-related methods
14414         twice. Really process the properties for a type (don't cast a field to
14415         a property, my mom always told me that).
14416         Fix 64 bit issues in pointer alignment in a different and more
14417         readable way.
14419 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
14421         * loader.h: Removed type class from MonoDefaults, added monotype
14423         * loader.c: Loaded MonoType, removed loading of Type
14425         * icall.c (my_mono_new_object): Now returns a System.MonoType,
14426         and fills in System.Type._impl with a RuntimeTypeHandle rather
14427         than the actual MonoClass *
14429         (ves_icall_type_from_handle): change from type_class to
14430         monotype_class
14432         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
14433         implemented
14435         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
14436         implemented
14438         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
14440         (ves_icall_System_Reflection_Assembly_GetType): implemented
14442         (ves_icall_System_MonoType_assQualifiedName): implemented
14444         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
14446 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
14448         * assembly.c (mono_assembly_open): Implement a cache for the
14449         assemblies. 
14451         (mono_assembly_close): only destroy the assembly when the last
14452         reference is gone.
14453         
14454 2001-11-09  Dick Porter  <dick@ximian.com>
14456         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
14458 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
14460         * class.c (mono_class_metadata_init): bug fix: compute the right slot
14462 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
14464         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
14465         from Martin Weindel.
14466         * object.h: add mono_string_chars ().
14468 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
14470         * reflection.c (build_compressed_metadata): Eliminates warnings
14471         and uses 64-bit clean code.
14473         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
14474         (mono_type_equal): Change signature to eliminate warnings.
14476 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14478         * icall.c, loader.c: remove the internalcall array constructors.
14479         Changes to match the new MonoArray structure.
14480         * object.h, object.c: an array object doesn't allocate an extra
14481         vector. Add mono_array_new_full () to create jagged arrays easily.
14483 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
14485         * metadata.h, metadata.c: add mono_metadata_field_info () to
14486         retreive all the info about a field from vairous tables.
14487         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
14488         * class.h, class.c: augment MonoClassField with more info.
14489         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
14490         policy and load a field's RVA if needed.
14492 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
14494         * class.c (mono_class_metadata_init): create a trampoline for all
14495         virtual functions instead of actually compiling them.
14497 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
14499         * class.h, class.c: include name in MonoClassField.
14500         * class.c: fix fundamental type of System.Object and System.String.
14501         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
14502         tokens in ldtoken.
14503         * icall.c: remove internalcalls for the Reflection stuff that is now
14504         done in C# code.
14505         * loader.c: mono_field_from_memberref () implementation.
14506         * mono-endian.c: thinko (s/struct/union/g).
14507         * object.c, object.h: make the mono_string_* prototypes actually use
14508         MonoString instead of MonoObject.
14509         * reflection.c, reflection.h: updates for changes in the reflection
14510         code in corlib: we use C structures that map to the actual C# classes.
14511         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
14512         fat method header if needed and use the info from the ILGenerator for
14513         methods. Handle fields in types. Misc fixes.
14515 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
14517         * class.c (mono_class_metadata_init): bug fix: always allocate
14518         space for static class data
14520 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
14522         * class.c (mono_compute_relative_numbering): use relative
14523         numbering to support fast runtime type checks.
14525 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
14527         * class.c (mono_class_create_from_typeref): added debugging output
14528         to print class name when MonoDummy is returned instead of real class
14530 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
14532         * class.c (mono_class_metadata_init): interface offset table now
14533         contains pointers into the vtable - this is more efficient for the jit
14535 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
14537         * class.c (mono_class_metadata_init): use a temporary vtable (the
14538         old algorithm only worked for the interpreter, but not for the jit)
14540 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
14542         * loader.c (method_from_memberref): use mono_class_get to get the
14543         class of an array instead of using System.Array directly.
14544         (mono_get_method): also add MEMBERREF methods to the method cache
14545         which usefull for arrays.
14547 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
14549         * pedump.c (arch_compile_method): added to compute vtable entry
14551         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
14552         number of interfaces.
14553         
14554         * class.h: merged MonoArrayClass into MonoClass
14556         * class.c (mono_class_create_from_typedef): compute the vtable size and
14557         allocate space to include the vtable inside MonoClass
14558         (mono_class_metadata_init): initialize the vtable
14560 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
14562         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
14563         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
14564         * image.c: endian fixes by Laurent Rioux.
14565         * object.h, object.c: rename MonoStringObject to MonoString and
14566         MonoArrayObject to MonoArray. Change some function names to conform to
14567         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
14568         guint16* as first argument, so don't use char*.
14569         Provide macros to do the interesting things on arrays in a portable way.
14570         * threads-pthread.c: updates for the API changes and #include <sched.h>
14571         (required for sched_yield()).
14572         * icall.c: updates for the API changes above.
14573         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
14574         platforms that need them.
14576 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
14578         * class.c: set the correct type for all the fundamental
14579         type when loading the class.
14581 2001-10-05  Dick Porter  <dick@ximian.com>
14583         * threads-pthread.c (pthread_mutex_timedlock): Simple
14584         compatibility version for C libraries that lack this call.
14586 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
14588         * class.c: MonoTypes stored in MonoClass are stored as
14589         fundamental MonoTypes when the class represents a
14590         fundamental type (System.Int32, ...).
14591         The TypeHandle return by ldtoken is a MonoType*.
14592         * icall.c: ves_icall_get_data_chunk () write out all the
14593         PE/COFF stuff. Implement ves_icall_define_method (),
14594         ves_icall_set_method_body (), ves_icall_type_from_handle ().
14595         * image.c: properly skip unknown streams.
14596         * loader.h, loader.c: add type_class to mono_defaults.
14597         * metadata.c, metadata.h: export compute_size () as
14598         mono_metadata_compute_size () with a better interface.
14599         Typo and C&P fixes.
14600         * pedump.c: don't try to print the entry point RVA if there is no entry point.
14601         * reflection.c, reflection.h: many cleanups, fixes, output method
14602         signatures and headers, typedef and typeref info, compress the metadata
14603         tables, output all the heap streams, cli header etc.
14604         * row-indexes.h: typo fixes.
14606 2001-10-04  Dick Porter  <dick@ximian.com>
14608         * object.h: Add a synchronisation mutex struct to MonoObject
14610         * object.c (mono_new_object): Initialise the object
14611         synchronisation mutexes
14613         * icall.c: System.Threading.Monitor internal calls
14614         
14615         * threads-pthread.h:
14616         * threads-pthread.c: System.Threading.Monitor internal calls
14618         * threads-types.h: New file, includes the system-specific thread
14619         structures
14620         
14621         * threads-pthread-types.h:
14622         * threads-pthread-types.c: New files, handle pthread-specific
14623         synchronisation types
14625         * threads-dummy-types.h: 
14626         * threads-dummy-types.c: New files of dummy support for
14627         thread-specific types
14629         * metadata.c:
14630         * image.c:
14631         * pedump.c: include mono-endian.h not endian.h
14632         
14633         * Makefile.am: More threads files.
14634         Name mono-endian.h not endian.h
14636 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
14638         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
14639         stuff and implement a few more bits.
14640         * icall.c: a field needs to be dereferenced twice. Do not use the same
14641         name for two variables in the same scope.
14642         * image.c, image.h: cleanups.
14644 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
14646         * class.c (mono_class_metadata_init): bug fix: compute the right size
14648 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
14650         * icall.c: implemented some of the Reflection internalcalls.
14651         * image.c, image.h: start writing out the PE/COFF image.
14652         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
14653         that does the reverse than decode_blob_size ().
14654         * object.c: use mono_metadata_encode_value (). Move here
14655         temporary implementation of mono_string_to_utf8 ().
14656         * rawbuffer.c: make malloc_map static.
14658 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
14660         * metadata.c: fix type comparison for arrays.
14661         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
14662         Added a couple of new classes to monodefaults.
14663         * icall.c: added a couple of Reflection-related internalcalls.
14664         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
14665         Added a byval_arg MonoType to MonoClass.
14667 2001-09-28  Dick Porter  <dick@ximian.com>
14669         * icall.c:
14670         * threads-pthread.h: 
14671         * threads-pthread.c: Implemented internal calls for
14672         LocalDataStoreSlot operations.  Applied mutexes around all shared
14673         data.  Reworked the thread creation and Start() operations to
14674         avoid a race condition.
14675         
14676         * threads-dummy.h:
14677         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
14679 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
14681         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
14683 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
14685         * class.c, loader.c: warn and return NULL instead of erroring out.
14686         * icall.c: added System.AppDomain::getCurDomain().
14687         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
14689 2001-09-25  Dick Porter  <dick@ximian.com>
14691         * threads-pthread.h:
14692         * threads-pthread.c: Implemented timed thread joining and added
14693         System.Threading.Thread::Join_internal internal call
14695         * icall.c: Added System.Threading.Thread::Join_internal internal call
14697         * threads-dummy.h:
14698         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
14700 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
14702         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
14703         mono_string_intern () to implement the semantics of the ldstr opcode
14704         and the interning of System.Strings.
14705         * icall.c: provide hooks to make String::IsIntern and String::Intern
14706         internalcalls.
14708 2001-09-23  Dick Porter  <dick@ximian.com>
14710         * threads-dummy.c: 
14711         * threads-dummy.h: New files of dummy threading routines
14713         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
14714         support code based on system specifics
14716         Rename PTHREAD_LIBS to THREAD_LIBS
14717         
14718 2001-09-23  Dick Porter  <dick@ximian.com>
14720         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
14721         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
14722         internal calls.
14723         (mono_thread_init): Set up a Thread object instance to return when
14724         the main thread calls Thread.CurrentThread
14725         (mono_thread_cleanup): Wait for all subthreads to exit
14727         * icall.c: New internal calls for System.Threading.Thread::Sleep
14728         (including Schedule) and CurrentThread
14730         * threads.h: New file, to insulate thread-specific stuff from the
14731         rest of the code
14733 2001-09-21  Dick Porter  <dick@ximian.com>
14735         * threads-pthread.h: 
14736         * threads-pthread.c: New file, for handling pthreads-style
14737         threading support.  Start() now starts a new thread and executes
14738         the ThreadStart delegate instance.
14740         * icall.c: Added the internalcall for
14741         System.Threading.Thread::Start_internal
14743         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
14745 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
14747         * loader.c: work around the different signatures for delegates
14748         constructors csc generates in compiled code vs the ones compiled in mscorlib.
14750 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
14752         * class.h, class.c: add mono_class_get_field_from_name ().
14753         * *: Fix C comments and other ANSI C issues.
14755 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
14757         * endian.h, assembly.c: fix some endianness issues.
14759 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
14761         * loader.h, load.c: add delegate_class to mono_defaults.
14762         Handle runtime provided methods in mono_get_method ().
14764 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
14766         * loader.c (mono_get_method): use pinvoke for internal call
14768         * icall.c: use pinvoke for internal call
14770         * loader.c (method_from_memberref): set the method name
14772 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
14774         * metadata.c: help the compiler generate better code for
14775         mono_class_from_mono_type ().
14777 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
14779         * class.c (mono_class_metadata_init): delayed computing of the
14780         class size to mono_class_metadata_init ()
14782 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
14784         * class.c, class.h: add an interfaces member to MonoClass.
14785         * image.c, image.h: add assembly_name field to MonoImage
14786         from the assembly table.
14787         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
14789 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
14791         * class.c: Handle Array in mono_class_from_mono_type ().
14792         * metadata.c, pedump.c: some endian fixes.
14794 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
14796         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
14797         * metadata.c: fix small problem introduced with the latest commit.
14799 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
14801         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
14802         We don't need a MonoMetadata pointer anymore to compare signatures in
14803         mono_metadata_signature_equal (), update callers.
14804         Reduced memory usage an number of allocations for MonoMethodHeader and
14805         MonoMethodSignature.
14807 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
14809         * metadata.c: added compare for szarray.
14811 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
14813         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
14814         and add a couple more types to it and mono_defaults. Give an hint on
14815         classes that need implementing in our corlib and are referenced
14816         in mscorlib.
14818 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
14820         * class.h, class.c: keep track if a class is also an Enum.
14821         * loader.c: Implement a couple more types for use in libffi
14822         marshalling. Gives better diagnostics when failing to dlopen
14823         a library. Set method->klass for P/Invoke methods, too.
14825 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
14827         * class.c, class.h: add a MonoType this_arg to MonoClass that
14828         represents a pointer to an object of the class' type that
14829         can be used by the interpreter and later the type cache.
14830         Add best guess alignment info for valuetype objects.
14832 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
14834         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
14835         into MonoType: one less level of indirection and allocation and
14836         simplifies quite a bit of code. Added cache for MonoTypes that are
14837         used frequently, so that we don't need to allocate them all the time.
14839 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
14841         * class.c (mono_class_create_from_typedef): System.Enum is also a
14842         value type, although it does not derive from System.ValueType
14843         (maybe a bug in the ms compiler?)
14845         * metadata.c (mono_type_size): return the right size for value types
14847         * loader.c (mono_get_method): only initialize method header if not abstract
14849         * class.c (mono_class_from_mono_type): use mono_default values. 
14851 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
14853         * *: use MonoClass pointers instead of <type_tokens>
14854         
14855         * class.h: new flag: metadata_inited.
14857         * class.c (mono_class_metadata_init): impl.
14858         (mono_class_instance_size): impl.
14859         (mono_class_data_size): impl.
14861 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
14863         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
14864         MonoClass now has the name and name_space fields. 
14865         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
14866         mono_get_method () takes and optional MonoClass as argument.
14867         Removed mono_typedef_from_name() and added mono_class_token_from_name()
14868         instead that takes advantage of a map from class names to typedef
14869         tokens in MonoImage.
14871 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
14873         * metadata.c: zero is not a valid alignment boundary.
14874         Merge MONO_TYPE_VOID in default decoding code.
14876 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
14878         * image.h: merged MonoMetadata into MonoImage
14880         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
14881         identify the type of elements.
14883 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
14885         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
14886         * cil-coff.h: split MonoMSDOSHeader and add size info.
14887         * image.c: add some consistency checks.
14888         * metadata.c: fix row size computation: one programmer
14889         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
14890         add explanation for the locator routine.
14891         Fix decoding of size in method header.
14892         
14893 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
14895         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
14896         (g_concat_dir_and_file): Bring g_concat_dir_and_file
14897         function from gnome-libs.  This uses the right path separator
14898         based on the OS, and also works around a bug in some systems where
14899         a double slash is not allowed. 
14900         (default_assembly_name_resolver): Use g_concat_dir_and_file
14901         (mono_assembly_open): ditto.
14903 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
14905         * metadata.c (mono_metadata_signature_equal): impl.
14907         * *: void is now a realy MonoType (instead of using NULL)
14908         
14909         * metadata.c (do_mono_metadata_parse_type): use
14910         mono_metadata_parse_type to parse void value.
14912 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
14914         * metadata.c, metadata.h: in the signature and method header store
14915         only the space required for holding the loca vars and incoming arguments.
14917 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
14919         * metadata.c (do_mono_metadata_parse_type): treat void like any
14920         other type (instead of assigning NULL);
14922 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
14924         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
14926 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
14928         * image.c (do_mono_image_open): added a cache for arrays.
14930 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
14932         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
14933         decode a single column from a row in a metadata table and changes
14934         to take advantage of it in the typedef locator (gives a nice speed up).
14935         Store offset info for function params.
14937 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
14939         * image.h (MONO_IMAGE_IS_CORLIB): removed 
14941 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
14943         * assembly.c: how could mono_assembly_close () had ever worked?
14944         * metadata.c, metadata.h: provide offset info for local vars.
14945         Implement mono_type_size () to take care of alignment as well
14946         as size (it was mono_field_type_size in cli/class.c before).
14948 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
14950         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
14952         * assembly.h (CORLIB_NAME): set to corlib.dll
14954         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
14956 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
14958         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
14959         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
14960         tokentype.h: massive namespace cleanup.
14962 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
14964         * metadata.h, metadata.c: decode exception clauses when parsing method header.
14966 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
14968         * metadata.c (mono_metadata_free_type): added check for type !=
14969         NULL (void) before calling mono_metadata_free_type()
14971 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
14973         * metadata.h, row_indexes.h: added header with enumerations to use
14974         to index in the columns from tables in metadata and to decode coded
14975         tokens: we should start using this instead of embedding magic numbers
14976         all over the code.
14978 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
14980         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
14981         Move metadata_t info from cli_image_info_t to MonoImage, where
14982         it's easily accessible. Changed all the uses accordingly.
14983         Added the method and class caches to MonoImage.
14984         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
14985         and mono_metadata_decode_value () signature to be more consistent
14986         with the other parse functions (and simplify code). Taken advantage
14987         of zero-length array allocation with GCC. Removed reduntant (and
14988         wrong) MonoFieldType struct and use MonoParam instead. Changed
14989         mono_metadata_parse_field_type () to use common code for parsing.
14990         Added mono_metadata_typedef_from_field () and
14991         mono_metadata_typedef_from_method () to lookup a typedef index from a
14992         field or method token.
14993         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
14995 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
14997         * metadata.c (mono_metadata_parse_field_type): Implement. 
14998         (do_mono_metadata_parse_type): Split engine from
14999         mono_metadata_parse_type, so that we can create smaller structures
15000         for things that just have one pointer to the MonoType (look at
15001         the MonoFieldType)
15003 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
15005         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
15006         as Jan Gray found out, it is incorrect. 
15008 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
15010         * assembly.c: Implement asssembly loading.  This loads an image
15011         and loads all the referenced assemblies.  Come to think of it, we
15012         could always do lazy loading of the assemblies. 
15014         * image.c (mono_image_open): Keep loaded images in a hashtable.
15016         * image.h (MonoImage): Add reference count.
15018 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
15020         * assembly.c (mono_assembly_open): Keep track of the file name in
15021         case the assembly has no ASSEMBLY table.
15023         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
15024         from get.c here.
15026 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
15028         * metadata.c, metadata.h: decode local vars in method header
15029         parse function. Change callers accordingly.
15031 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
15033         * metadata.h, cil-coff.h: protect against multiple inclusion.
15034         Added some new structures to hold information decoded from metadata:
15035         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
15036         and relevant decoding/free functions.
15037         * metadata.c: implement decoding functions. Add warning for out of bounds
15038         index in mono_metadata_locate(). Implement mono_get_method () to retreive
15039         all the info about a method signature and invocation. Remove check on
15040         uninitialized local var in parse_mh() and fix memory leak.
15042 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
15044         * metadata.h: More macros.
15046         * tokentype.h: New file.
15048 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
15050         * assembly.c: added a consistency check and initialize
15051         some structures with g_new0().
15052         * metadata.c: fixed a couple more bugs in table size computation
15053         and add other checks for out-of bound access to metadata.
15055 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
15057         * metatada.c: fix bugs computing table sizes. Spew a
15058         warning when index in string heap is out of bounds.
15060 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
15062         * metadata.h: Add a couple of macros to manipulate tokens. 
15064 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
15066         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
15067         cli_section_tables).
15069 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
15071         * metadata.c (mono_metadata_user_string): New function, provides
15072         access to the UserString heap. 
15074 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
15076         * metadata.c: Add inline documentation.
15078 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
15080         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
15081         files. 
15083 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
15085         * typeattr.h: New file, TypeAttribute flags. 
15087 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
15089         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
15090         mono_assembly_ensure_section): Section loading code.
15091         (load_section_tables): Load the sections.
15093         * mono/metadata/metadata.c (mono_metadata_locate_token,
15094         mono_metadata_locate): Functions to locate the information
15095         definition given a token or a table and an index.
15096         (mono_metadata_compute_table_bases): New.
15097         (compute_size): New function to compute the sizes of the various
15098         tables.
15100         * mono/metadata/metadata.h: Finish listing the different index
15101         types. 
15103         * mono/metadata/pedump.c: Improve to dump new information.
15105 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
15107         * mono/metadata/metadata.c: Entered all the tables matching
15108         Beta2. 
15110         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2