1 2006-12-19 Jonathan Chambers <joncham@gmail.com>
3 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
4 ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
5 and GlobalFree on Windows. Remove FIXME.
7 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
9 * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
10 implementation for managed objects.
12 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
14 * object.c: implemented code to be used for checking
15 that no reference field overlaps with non-references.
17 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19 * threadpool.c: fix queue code to be compatible with the
22 2006-12-18 Miguel de Icaza <miguel@novell.com>
24 * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
25 in structures by throwing ArgumentNullException.
27 (emit_marshal_safehandle): Also when they are null parameters.
29 (emit_marshal_safehandle): Add support for ref
30 SafeHandles parameters
32 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
34 * profiler.c: updated to use the mono-dl API instead of
37 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
39 * profiler.c: updated to use the mono-dl dynamic loading
40 API instead of gmodule.
42 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
44 * profiler.c: use readlink, older versions of glib don't have
47 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
49 * profiler.c: try to detect the path to mono if libc fails to provide
50 a useful name (bug #80286).
52 2006-12-16 Raja R Harinath <rharinath@novell.com>
55 * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
56 instance, use the generic type definition instead.
57 (ves_icall_Type_GetNestedTypes): Likewise.
58 * class.c (mono_class_create_generic): Always set the
59 nested_classes of a generic instance to NULL, even if the generic
60 type definition has nested types.
62 2006-12-15 Jonathan Chambers <joncham@gmail.com>
64 * marshal.c (mono_string_from_bstr): Revert previous Windows change
67 2006-12-15 Miguel de Icaza <miguel@novell.com>
69 * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
70 my arguments were in the wrong order. I also fixed the Windows
71 version which seems to have had the same issue.
73 (mono_free_bstr): On Unix, this is g_free.
74 (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
75 conversions (for the tests in corlib to pass).
77 2006-12-14 Miguel de Icaza <miguel@novell.com>
79 * marshal.c (emit_ptr_to_object_conv): For now, ignore
80 MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
81 exception if a ref SafeHandle in a struct has changed).
83 (emit_struct_conv): Do not perform layout checks for classes
84 derived from SafeHandle, as those are specially handled.
86 (emit_object_to_ptr_conv): Add support for
87 MONO_MARSHAL_CONV_SAFEHANDLE conversion.
89 (emit_marshal_safehandle): Implement conversion of return values
90 of safehandles (MARSHAL_ACTION_CONV_RESULT).
92 * threads.c: WaitHandle now is compiled with two different handles
93 "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
96 (ves_icall_System_Threading_WaitHandle_WaitAll_internal)
97 (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
98 these routines to cope with both kinds of fields.
100 2006-12-12 Miguel de Icaza <miguel@novell.com>
102 * metadata.c (mono_type_to_unmanaged): Handle the case where
103 type->data.klass is a SafeHandle, and in that case, return the
104 size of a pointer (MONO_NATIVE_INT) and set the conversion to be
105 MONO_MARSHAL_CONV_SAFEHANDLE.
107 2006-12-11 Miguel de Icaza <miguel@novell.com>
109 * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
110 MONO_TYPE_OBJECT cases and check for a SafeHandle here before
111 calling emit_marshal_object.
113 (emit_marshal_safehandle): Implement marshalling of
114 SafeHandle parameters (no ref support yet).
116 (MarshalAction): Document the defines as I implement
119 (emit_marshal_object): indentation police.
121 * class-internals.h: Define MonoSafeHandle.
122 Add safehandle_class to MonoDefaults type.
124 * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
125 list of classes to check for fields.
127 * domain.c (mono_init_internal): Add SafeHandle to the list of
128 mono_defaults loaded.
130 2006-12-15 Raja R Harinath <rharinath@novell.com>
133 * reflection.c (mono_reflection_bind_generic_parameters): If the
134 generic type definition is a type builder, ensure that it is fully
135 initialized before instantiating it. Kill some dead code.
137 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
139 * object.c: clear the loader_error () before loading
140 more metadata stuff (bug #80258).
142 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
144 * icall.c, icall-defs.h: type modifiers icalls for
145 parameters and properties.
147 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
149 * object.c, icall.c: fixed warnings.
151 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
153 * marshal.c: fixed a couple of leaks and coding style in a few places.
155 2006-12-08 Dick Porter <dick@ximian.com>
157 * process.c: Cope with NULL ProcessStartInfo arguments on windows
158 too. Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
161 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
163 * process.c: ProcessStartInfo may have only filename set and
164 arguments can be NULL.
166 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
168 * icall.c: fix leak found by Robert Jordan.
170 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
172 * marshal.c, marshal.h: generate managed method to access an element
173 of a multi-dimensional array.
175 2006-11-30 Paolo Molaro (lupus@ximian.com)
177 * metadata.c, marshal.c: locking fixes when writing to image->mempool.
179 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
181 * icall.c: back out GetFields () fix until the serialization code is
182 fixed to not depend on the incorrect behaviour.
184 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
186 * profiler.c: provide defaults if none are set.
188 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
190 * Makefile.am, attrdefs.h: new public header file with
191 constants for attributes for use by embedders.
193 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
195 * icall.c: GetFields () fix for bug #80064.
197 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
199 * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
200 removed long unused icalls.
202 2006-11-27 Jonathan Chambers <joncham@gmail.com>
205 (mono_marshal_emit_managed_wrapper): Level of indirection for
206 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
207 can be generated without a delegate class.
208 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
210 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
212 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
214 * console-io.c: add the 'signal' call removed by mistake. Fixes bug
217 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
219 * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
220 icall-def.h: added icalls needed by System.GC.
222 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
224 * loader.c: ensure the class in catch clauses is handled
225 correctly for generics methods (fixes bug#79980).
227 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
229 * monitor.h, monitor.c: added mono_locks_dump () function
230 to help debug deadlocks involving managed locks.
232 2006-11-13 Dick Porter <dick@ximian.com>
234 * file-io.c (get_file_attributes): If the file is a symlink try
235 and get the stat data for the target, but also add the
236 FILE_ATTRIBUTE_REPARSE_POINT flag. This is an attempt to follow
237 the specs for the windows symlink support, but will probably have
238 to be reworked when I have test data from a vista machine. Fixes
241 2006-11-13 Dick Porter <dick@ximian.com>
243 * gc.c (mono_domain_finalize):
244 * marshal.c (mono_delegate_begin_invoke):
245 * threadpool.c (socket_io_init, mono_thread_pool_init)
246 (mono_thread_pool_finish):
247 * monitor.c (mono_monitor_try_enter_internal):
248 * threads.c (mono_thread_resume, mono_thread_init)
249 (mono_thread_suspend_all_other_threads)
250 (mono_thread_execute_interruption):
251 * appdomain.c (mono_domain_unload): Check for NULL error returns
252 from CreateThread(), CreateEvent() and CreateSemaphore(). See bug
255 2006-11-11 Miguel de Icaza <miguel@novell.com>
258 (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
259 Only close the handle if the value of the handle is not
260 INVALID_HANDLE_VALUE. This just makes the process a bit more
263 Improvement for #75733, so that we do not run into this problem.
266 * assembly.c (check_path_env, check_extra_gac_path_env): Do not
267 include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
268 internal variables. Fixes #79462
271 2006-11-09 Dick Porter <dick@ximian.com>
273 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
274 Use poll() not select(). Fixes bug 79397.
276 2006-11-09 Raja R Harinath <rharinath@novell.com>
279 * assembly.c (mono_assembly_load_from_full): Check that the given
280 image has an assembly manifest.
282 2006-11-09 Ankit Jain <jankit@novell.com>
284 * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
285 (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
286 (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
288 2006-11-07 Dick Porter <dick@ximian.com>
290 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
291 Put the old resolver behaviour back for pre-2.0 profiles.
293 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
295 * threadpool.c: precise GC and locking fixes.
297 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
299 * class.c: don't load types that have an explicit unaligned
300 managed reference. Provide better info in the TypeLoad exception.
301 Part of the fix for bug #79744.
302 * object.c: use the correct check for class type load issues.
304 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
306 * class.c: enforce alignment of fields with managed references
307 even when Pack=1 is forced by the user (bug #77788).
309 2006-11-03 Dick Porter <dick@ximian.com>
311 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
312 If the address reverse lookup fails, return it as the hostname
313 anyway. Fixes bug 79721.
315 2006-11-03 Dick Porter <dick@ximian.com>
317 * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
318 Fix build on Windows.
320 2006-11-02 Dick Porter <dick@ximian.com>
323 * object-internals.h:
324 * exception.c (mono_get_exception_thread_interrupted):
325 * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
328 * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
329 Check for pending Thread.Interrupt.
331 2006-10-27 Massimiliano Mantione <massi@ximian.com>
332 * loader.c: Fixed bug 79684.
334 2006-10-27 Dick Porter <dick@ximian.com>
336 * file-io.c (get_file_attributes): Force symlinks to directories
337 to be returned as a regular file. Fixes bug 79733.
338 2006-10-26 Dick Porter <dick@ximian.com>
340 * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
341 CreateFile to open a directory then we need to set the
342 FILE_FLAG_BACKUP_SEMANTICS flag. Fixes bug 75285.
344 2006-10-23 Zoltan Varga <vargaz@gmail.com>
346 * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
349 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
351 * sgengc.c: small cleanup of timer code.
353 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
355 * sgen-gc.c: fix some warnings and start adding support for
356 complete object removal on domain unload.
358 2006-10-22 Gert Driesen <drieseng@users.sourceforge.net>
360 * assembly.c: build_assembly_name should not consider a version
361 number without build or revision number invalid. Fixes bug #79715.
363 2006-10-18 Jonathan Chambers <joncham@gmail.com>
365 * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
366 call kernel32 function OutputDebugString directly.
368 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
370 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
372 * reflection.c: small cleanup, using a function to insert a MonoString
375 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
377 * reflection.c: moving GC fixes.
379 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
381 * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
382 all the objects with finalizers belonging to an unloading appdomain.
384 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
386 * sgen-gc.c: added ability to allocate even when the nursery is fully
387 pinned and fixed a couple of bugs.
389 2006-10-15 Zoltan Varga <vargaz@gmail.com>
391 * threads.h: Revert the last change for now.
393 * threads.h (mono_thread_get_pending_exception): Rename this to
394 mono_thread_get_undeniable_exception ().
396 2006-10-15 Gert Driesen <drieseng@users.sourceforge.net>
398 * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
399 BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
400 when fname does not refer to valid assembly. This result in a more
401 meaningful error message.
402 * exception.c: added mono_get_exception_bad_image_format2 which
403 constructs a BadImageFormatException using the ctor taking a custom
404 message and the file name. Passing in a NULL msg results in a default
406 * exception.h: define mono_get_exception_bad_image_format2 function.
407 * icall.c: in InternalGetAssemblyName, throw BadImageFormatException
408 when file name pointed to an invalid IL image. Use
409 mono_get_exception_file_not_found2 to construct FileNotFoundException,
410 as this results in a more meaningful error message.
412 2006-10-15 Zoltan Varga <vargaz@gmail.com>
414 * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
417 2006-10-12 Zoltan Varga <vargaz@gmail.com>
419 * metadata.c (mono_type_size): Change the align parameter to guint32 for
420 consistency with the other _size functions.
421 (mono_type_stack_size): Ditto.
423 * class.c object.c icall.c: Fix warnings caused by the above change.
425 * class.c (mono_class_get_method_from_name_flags): Fix a typo.
427 * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
429 * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
431 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
433 * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
434 process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
435 socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
436 threadpool.h, threads-types.h: mark more internal functions.
438 2006-10-11 Dick Porter <dick@ximian.com>
440 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
441 Fix typo spotted by Robert Jordan in bug 79352 (though I can't
442 reproduce the bug even before applying the fix.)
444 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
446 * reflection.c: allow retrieving attributes for arguments in generic
447 methods (bug #79241).
449 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
451 * debug-mono-symfile.c: properly check fopen () result (found by
454 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
456 * reflection.c: make error message clearer and fixed two
457 issuelets found by Coverity.
459 2006-10-10 Zoltan Varga <vargaz@gmail.com>
461 * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
463 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
465 * object-internals.h, gc-internal.h, profiler-private.h:
466 mark internal functions.
468 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
470 * reflection.c: put data in the text section.
471 * icall.c: recognize more types in type_from_typename ().
472 * process.c, marshal.c: added some GC FIXMEs.
474 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
476 * loader.c: check for NULL before initializing.
478 2006-10-09 Zoltan Varga <vargaz@gmail.com>
480 * gc.c (finalizer_thread): Use a non-alertable wait here.
482 * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
483 until the correct solution is found.
485 2006-10-06 Zoltan Varga <vargaz@gmail.com>
487 * reflection.c (mono_module_get_object): Avoid an assert when operating on
488 modules with no metadata. Fixes #79596.
490 * image.c (load_metadata_ptrs): Put back the error message when
491 the #- heap is encountered since the support is not complete yet.
493 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
495 * gc.c: do not allow the user to SuppressFinalize () a
496 delegate because it would leak the trampoline if present.
498 2006-10-06 Zoltan Varga <vargaz@gmail.com>
500 * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
503 2006-10-05 Zoltan Varga <vargaz@gmail.com>
505 * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
507 * metadata.c (mono_metadata_get_param_attrs): Ditto.
509 * row-indexes.h: Add definitions for *Ptr tables.
511 * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
513 * metadata.c (mono_metadata_translate_token_index): New helper function to
514 translate table indexes used in uncompressed metadata.
515 (mono_metadata_decode_table_row): Ditto.
516 (mono_metadata_decode_table_row_col): Ditto.
518 * metadata.c: Add table schema for *Ptr tables.
520 * class.c loader.c: Use the new helper function to access the affected metadata
523 * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
526 2006-10-04 Zoltan Varga <vargaz@gmail.com>
528 * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
529 sequences which can be unbounded in size. Fixes #79583.
531 2006-10-02 Zoltan Varga <vargaz@gmail.com>
533 * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
534 static initialization.
536 * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
538 * class-internals.h (MonoVTable): Add an 'init_failed' flag.
540 * domain.c (mono_domain_free): Free up type_init_exception_hash.
542 * object.c (mono_runtime_class_init): Implement correct semantics when a static
543 ctor fails, i.e. throw the same exception on subsequent accesses.
545 2006-09-0 Jonathan Chambers <joncham@gmail.com>
547 * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
548 * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
549 Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
550 Handle marshalling of interfaces and VARIANTs contained in structs.
552 Code is contributed under MIT/X11 license.
554 2006-09-30 Zoltan Varga <vargaz@gmail.com>
556 * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
558 * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
561 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
563 * console-io.c: ignore previous SIGINT handler.
565 2006-09-27 Zoltan Varga <vargaz@gmail.com>
567 * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual
568 (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
569 #79460, #79461, #79485.
571 * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
573 * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
576 2006-09-26 Zoltan Varga <vargaz@gmail.com>
578 * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
579 could be generated from it.
581 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
583 * rand.c: fix read loop to correctly handle EINTR.
585 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
587 * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
588 internal calls are defined to keep methods closer to the declaring
589 type and allow a significant reduction in runtime relocations and
592 2006-09-21 Gert Driesen <drieseng@users.sourceforge.net>
594 * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
595 exception message to have FileNotFoundException use the default
596 assembly load error message. Fixes bug #79426.
597 * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
599 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
601 * threadpool.c: (start_thread_or_queue) use the root domain when
602 creating the thread instead of the async object one.
604 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
606 * class.c, object.c, class-internals.h, reflection.c:
607 for arrays, store element_size inside MonoClass (speedup
608 for array object creation).
610 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
612 * icall.c: fixed CodeBase to use the file name and not the module
615 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
617 * mono-debug.c, mono-debug.h: export find_method as
618 mono_debug_find_method ().
620 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
622 * debug-helpers.c, class-internals.h: added a few functions useful
623 when debugging under gdb.
625 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
627 * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
628 characters that need special handling.
630 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
632 * mono-config.c: make the os/cpu specification more flexible,
633 allowing lists and negation.
635 2006-09-18 Jonathan Chambers <joncham@gmail.com>
637 * marshal.c: COM Interop fixes. Handle case where method->klass.
638 is interface. Handle BSTR/MonoString when null. Use CDECL as
639 calling convention on non-windows platforms. This is for
640 compatibility with XPCOM and MainWin COM.
642 Code is contributed under MIT/X11 license.
645 2006-09-18 Zoltan Varga <vargaz@gmail.com>
647 * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
648 correctly. Fixes #79217.
650 * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
652 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
654 * mono-config.c: allow both an os and cpu attribute for dllmap
655 and dllentry elemnets to enable a single config file to be used
656 for multiple architectures.
658 2006-09-18 Gert Driesen <drieseng@users.sourceforge.net>
660 * loader.c: MonoLoaderError was cleared too soon on load failure.
663 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
665 * icall.c: use the defining class vtable when accessing a
666 static field, not a pobblibly derived class.
668 2006-09-17 Zoltan Varga <vargaz@gmail.com>
670 * icall.c string-icalls.c: Remove references to unicode.h.
672 * unicode.h unicode.c Makefile.am: Remove these unused source files.
674 * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
676 * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument,
677 indicating the image where custom marshaller types should be looked up.
678 (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
679 custom marshallers, instead of corlib. Fixes #79425.
681 2006-09-14 Zoltan Varga <vargaz@gmail.com>
683 * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
685 2006-09-14 Jonathan Chambers <joncham@gmail.com>
687 * environment.c (ves_icall_System_Environment_get_ProcessorCount):
688 Implement Environment.ProcessorCount.
690 * environment.h (ves_icall_System_Environment_get_ProcessorCount):
691 Implement Environment.ProcessorCount.
694 Add Environment.ProcessorCount icall.
696 Patch by Jason McFall.
698 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
700 * assembly.c: don't append .exe/.dll when the filename already contains
701 one of those extensions.
703 2006-09-12 Martin Baulig <martin@ximian.com>
705 * class.c (mono_bounded_array_class_get): Also add `IList<object>'
708 2006-09-11 Martin Baulig <martin@ximian.com>
710 * reflection.c (mono_image_build_metadata): Create the
711 MethodImpl's after emitting all types and methods, so we don't
712 need another fixup pass for them.
714 2006-09-11 Zoltan Varga <vargaz@gmail.com>
716 * class.c (mono_class_from_name_case): Fix regression introduced by the last
719 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
721 * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
724 2006-09-10 Zoltan Varga <vargaz@gmail.com>
726 * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
727 args is not set. Fixes #78926.
729 2006-09-08 Zoltan Varga <vargaz@gmail.com>
731 * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
733 * image.c (load_class_names): Move this to class.c, and rename it to
734 'mono_image_init_name_cache'.
735 (load_modules): Fix a warning.
737 * class.c icall.c image.c: Initialize image->name_cache lazily.
739 * class-internals.h (MonoGetClassFromName): New hook function to find a class based
740 on its name using information in the AOT file.
742 * class.c (mono_class_from_name): Use the new hook function.
744 2006-09-06 Zoltan Varga <vargaz@gmail.com>
746 * reflection.c (mono_param_get_objects): Handle enum default parameter values
749 * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
752 2006-09-06 Martin Baulig <martin@ximian.com>
754 * icall.c (mono_lookup_internal_call): Small fix.
756 2006-09-05 Raja R Harinath <rharinath@novell.com>
758 * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
761 2006-09-04 Sebastien Pouliot <sebastien@ximian.com>
763 * debug-mono-symfile.c: Fix *some* memory leaks that happens only
764 when --debug is specified.
766 2006-09-04 Zoltan Varga <vargaz@gmail.com>
768 * class.c (setup_generic_array_ifaces): Fix a warning.
770 2006-09-04 Miguel de Icaza <miguel@novell.com>
772 * Temporarily remove the patch to assemly.c that checks the
773 assembly versions as it breaks our gacutil.
775 2006-09-03 Zoltan Varga <vargaz@gmail.com>
777 * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
779 * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
782 * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
783 created using the default ctor. Fixes #79152.
784 (mono_string_builder_to_utf16): Ditto.
786 2006-09-01 Martin Baulig <martin@ximian.com>
788 Fix handling of the generic array interfaces.
791 (MonoDefaults): Removed `generic_array_class' and added
792 `generic_ilist' class.
795 (mono_bounded_array_class_get): Add the new generic array interfaces.
796 (setup_generic_array_ifaces): New static method; create vtable
797 entries for each method in the generic array interfaces.
800 (select_container): Allow "parent-less" generic methods.
803 (mono_marshal_get_generic_array_helper): New public method.
806 (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
807 Renamed into ves_icall_System_Array_GetGenericValueImpl() and
808 moved the interncall into System.Array.
810 2006-09-01 Raja R Harinath <rharinath@novell.com>
812 A few more cases of avoiding work on types with ->byref set.
813 Has the real fix for #79238
814 * icall.c (is_generic_parameter): New helper.
815 (ves_icall_Type_GetGenericParameterPosition): Use it.
816 (ves_icall_Type_GetGenericParameterAttributes): Likewise.
817 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
818 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
819 (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
821 (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
823 (ves_icall_Type_get_IsGenericInstance): Likewise.
824 (ves_icall_Type_get_IsGenericType): Likewise.
826 2006-09-01 Zoltan Varga <vargaz@gmail.com>
828 * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
831 * mempool.h (mono_mempool_get_allocated): New helper function.
833 * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
836 * mempool.c: Fix warnings and the calculation of stats.
838 * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
840 * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
842 * loader.c (mono_get_method_from_token): Update method_count stat.
844 * class-internals.h (MonoStats): Add some stats.
846 2006-08-31 Robert Jordan <robertj@gmx.net>
848 * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
849 with managed variants.
850 All code is contributed under the MIT/X11 license.
852 2006-08-31 Zoltan Varga <vargaz@gmail.com>
854 * reflection.c (reflection_methodbuilder_to_mono_method): Set
855 method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
857 * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
859 * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
860 with cycles in classes.
862 * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
864 * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is
865 missing a [MarshalAs] directive. Fixes #79203.
867 * marshal.c (mono_marshal_load_type_info): Fix a race in initializing
868 klass->marshal_info. Fixes #79217.
870 2006-08-30 Martin Baulig <martin@ximian.com>
872 Committing a patch from Joachim Ante <joe@otee.dk>:
873 Add support for binary data symbol stores.
875 * debug-mono-symfile.c
876 (mono_debug_open_mono_symbol_file): Renamed into
877 mono_debug_open_mono_symbols() and added `raw_contents' and `size'
881 (mono_debug_open_image): Added `raw_contents' and `size' args.
882 (mono_debug_init_2_memory): New public function.
884 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
886 * icall.c: handle TypedReference in GetTypeCode (bug #79150).
888 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
890 * appdomain.c: implement support for ShadowCopyFiles.
892 2006-08-22 Sebastien Pouliot <sebastien@ximian.com>
894 * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
895 when value is NULL (and should remove CID #51).
897 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
899 * image.c: moved 2 functions to ../utils.
901 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
903 * gc.c: cope with the target object of a GC handle being NULL
906 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
908 * class.c: recursively check parent's explicit implementations
909 of interface methods (fixes bug #79125).
911 2006-08-19 Miguel de Icaza <miguel@novell.com>
913 * filewatcher.c: Avoid warnings when building, do not redefine
914 constants that are defined.
918 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
920 * image.c: don't fail when the link points to an absolute path.
922 2006-08-18 Sebastien Pouliot <sebastien@ximian.com>
924 * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
927 2006-08-17 Miguel de Icaza <miguel@novell.com>
929 * image.c (full_path): A new method used to obtain the actual path
930 of an assembly even in the presence of symbolic links.
932 This is necessary for the case where we are running a binary that
933 has been GACed, but we are using the "published" path name
934 ($prefix/mono/1.0/blah.exe) which happens to point to the real
937 This was the source of the failure for the `xsp' command with the
938 recent AppDomain changes, as far as the runtime was concerned,
939 there were two different assemblies: $prefix/mono/1.0/blah.exe and
940 $prefix/mono/gac/blah/version/blah.exe.
942 (do_mono_image_open): use full path
944 2006-08-17 Zoltan Varga <vargaz@gmail.com>
946 * object.c (mono_class_create_runtime_vtable): Add a FIXME.
948 2006-08-17 Sebastien Pouliot <sebastien@ximian.com>
950 * marshal.c: Fix mono_marshal_check_domain_image if an invalid
951 domain_id is supplied. Fix CID #241 and corlib's unit tests.
953 2006-08-17 Zoltan Varga <vargaz@gmail.com>
955 * class.c (mono_class_layout_fields): Set min_align to a bigger value for
956 small structures. Fixes #78990.
958 2006-08-17 Zoltan Varga <vargaz@gmail.com>
960 * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
962 * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
964 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
967 * marshal.c: don't load all the assemblies from a domain into newly
968 created ones. The new domains might have different rules and load
969 assemblies from different locations. Fixes bug #76757.
971 Patch by Lluis. Conflicts resolved by Brian Crowell.
973 2006-08-16 Alp Toker <alp@atoker.com>
975 * socket-io.c: First half of the fix for #79084.
976 Set sa_size to the length of the content, not that of the struct.
977 Don't add NULL suffix to the content, this should be done in
978 managed code if needed.
980 2006-08-14 Raja R Harinath <rharinath@novell.com>
983 * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
984 mono_metadata_parse_type returns NULL.
986 2006-08-13 Atsushi Enomoto <atsushi@ximian.com>
988 * normalization-tables.h : new file for string normalization data.
989 * locales.c, locales.h, icall.c :
990 added load_normalization_resource() for string normalization,
992 * Makefile.am : added normalization-tables.h to the sources.
994 2006-08-13 Zoltan Varga <vargaz@gmail.com>
996 * marshal.c: Add more helper functions to reduce code duplication and use them
999 2006-08-12 Zoltan Varga <vargaz@gmail.com>
1001 * marshal.c: Fix non-x86 stdcall warnings.
1003 * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use
1006 2006-08-11 Jonathan Chambers <joncham@gmail.com>
1008 * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
1009 type check on multi-dimensional arrays. Fixes #79000.
1011 2006-08-10 Jonathan Chambers <joncham@gmail.com>
1013 * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
1014 * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
1015 to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
1016 * class-internals.h: add is_com_object to class structure.
1017 * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
1018 null checks to COM object marshalling. Fix .ctor call on RCW.
1019 * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
1021 All code is contributed under the MIT/X11 license.
1023 2006-08-09 Dick Porter <dick@ximian.com>
1025 * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
1026 racing mono_monitor_allocator_lock() somewhere, so don't delete
1027 the critical section for now. Found by running and exiting
1030 2006-08-10 Zoltan Varga <vargaz@gmail.com>
1032 * marshal.c (cominterop_get_native_wrapper): Fix a warning.
1033 (ves_icall_System_ComObject_FindInterface): Ditto.
1034 (ves_icall_System_ComObject_CacheInterface): Ditto.
1036 * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
1037 (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
1039 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1041 * threadpool.c: treat pipes from process asynchronous reads as sockets
1042 when reading from them, so we get select/poll or epoll to wait for
1045 2006-08-07 Sebastien Pouliot <sebatien@ximian.com>
1047 * loader.c: Fix a typo (CID #233) in the null check.
1049 2006-08-07 Zoltan Varga <vargaz@gmail.com>
1051 * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
1052 Hopefully fixes #78949.
1054 * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from
1055 Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
1056 bytes. Fixes #78972.
1058 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1060 * filewatcher.c: we need to set errno here.
1062 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1064 * filewatcher.c: let Win32Exception get the error value.
1066 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1068 * filewatcher.c: translate errno into win32 errors for Win32Exception
1069 to know what happened.
1071 2006-08-01 Zoltan Varga <vargaz@gmail.com>
1073 * threadpool.c: Fix more warnings.
1075 * assembly.c (search_loaded): Fix warnings.
1077 * threadpool.c (mono_thread_pool_finish): Fix warnings.
1078 (mono_async_invoke): Ditto.
1080 2006-07-28 Jonathan Chambers <joncham@gmail.com>
1082 * object.c (mono_remote_class_vtable): Need to create proxy vtable
1083 entries for __ComObject type in addition to ComImport types.
1084 * marshal.c: Added support for marshalling COM RCWs. Fixed warning
1087 All code is contributed under the MIT/X11 license.
1089 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1091 * image.c: avoid tentative loading of modulerefs that contain
1092 no metadata (P/Invoke library names).
1094 2006-07-28 Dick Porter <dick@ximian.com>
1096 * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
1097 mono_loader_lock() somewhere, so don't delete the critical section
1098 for now. Found by running and exiting monodevelop.
1100 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1102 * filewatcher.c: define the inotify syscalls when we're building on
1103 linux and have sys/syscall.h. The build system might not have support
1104 for inotify but the target system might have it.
1106 2006-07-26 Miguel de Icaza <miguel@novell.com>
1108 * domain.c: Documentation updates.
1110 * loader.c (mono_free_method): Do not release the method
1111 information if we are being profiled, as profilers will use this
1112 information at shut down to present some data to the user.
1114 This is needed so that the profiler does not crash, as the
1115 profiler tends to keep MonoMethods around, and they might become
1116 invalid if we free these.
1118 (mono_get_method_constrained): Return the original CIL stream
1119 method as well, so verification can be performed against it.
1121 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1123 * filewatcher.[ch]: support for inotify file system watcher.
1124 * icall.c: add new internal calls for the inotify file system watcher.
1126 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1128 * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
1131 2006-07-20 Dick Porter <dick@ximian.com>
1133 * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
1136 2006-07-20 Dick Porter <dick@ximian.com>
1138 * threads.c (start_wrapper): Do the thread cleanup while we still
1139 hold a reference to its object. Fixes bug 78123.
1141 2006-07-18 Kornél Pál <kornelpal@gmail.com>
1143 * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
1144 * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
1145 "managed-to-managed".
1146 * icall.c: Redirect string constructors that take sbyte* to
1147 ves_icall_System_String_ctor_RedirectToCreateString.
1148 * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
1149 to CreateString () methods with matching signature.
1150 * reflection.c: Use original security informations for
1151 MONO_WRAPPER_MANAGED_TO_MANAGED.
1152 * security-manager.c: Use original security informations for
1153 MONO_WRAPPER_MANAGED_TO_MANAGED.
1154 * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
1155 that is a placeholder and only its address should be used.
1156 * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
1157 that is a placeholder and only its address should be used.
1159 2006-07-15 Jonathan Chambers <joncham@gmail.com>
1161 Begin implementing COM Interop.
1162 * appdomain.c: Increment corlib version.
1163 * class.c: Set ComImport classes' parent to __ComObject.
1164 * loader.c: Mark cominterop methods as such.
1165 * domain.c: Add __ComObject class to MonoDefaults structure.
1166 * image.c: Add 2 hashtables to the image for COM Interop related methods
1167 * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
1168 using the mempool allocator
1170 * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
1171 * metadata.h: Added cominterop field to _MonoMethodSignature struct and
1172 declaration for mono_metadata_type_dup_mp.
1174 * debug-helpers.c: Added strings for two additional wrapper types
1175 * object.c: Create proxy objects for ComImport classes
1176 * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
1177 and added __ComObject class to MonoDefaults structure.
1179 * object-internals.h: Finish MonoRealProxy definition, and add definition of
1180 MonoComInteropProxy and MonoComObject.
1182 * marshal.c: Added support for COM Interop
1183 (signature_cominterop): Converts managed signature to corresponding
1184 unmanaged COM signature.
1185 (cominterop_get_function_pointer): gets unmanaged function pointer via
1187 (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
1188 (cominterop_get_method_interface): returns interface type that method is defined on
1189 (mono_mb_emit_cominterop_call): emits native call to function pointer
1191 (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
1192 that matches signature of unmanaged function.
1193 (cominterop_get_native_wrapper): wrapper around adjusted method call.
1194 (cominterop_get_invoke): forwards call from proxy to __ComObject
1195 (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef
1196 (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface
1197 (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release
1199 * marshal.h: Added Marshal icall declarations.
1200 * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
1201 so we can access them in finalizer
1203 2006-07-14 Dick Porter <dick@ximian.com>
1205 * object.c (mono_type_initialization_cleanup): Fix a race
1206 condition by temporarily commenting out the critical section
1209 2006-07-14 Zoltan Varga <vargaz@gmail.com>
1211 * reflection.c (create_custom_attr): Fix some warnings.
1212 (create_custom_attr_data): Ditto.
1213 (typebuilder_setup_properties): Save custom attrs for properties in dynamic
1214 types. Fixes #78855.
1216 2006-07-11 Zoltan Varga <vargaz@gmail.com>
1218 * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
1220 * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
1222 2006-07-08 Zoltan Varga <vargaz@gmail.com>
1224 * reflection.c (resolve_object): Add support for DynamicMethod.
1226 * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
1227 Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
1229 2006-07-06 Sebastien Pouliot <sebastien@ximian.com>
1231 * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal
1232 don't leak GPtrArray's pdata has we have no use (nor free) for it.
1234 2006-07-01 Zoltan Varga <vargaz@gmail.com>
1236 * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
1239 2006-06-30 Raja R Harinath <rharinath@novell.com>
1241 * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
1242 slightly: remove a shadow local variable.
1244 2006-06-29 Raja R Harinath <rharinath@novell.com>
1246 * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
1247 definition that introduces the virtual function slot.
1248 Also fix Coverity #105.
1250 2006-06-29 Zoltan Varga <vargaz@gmail.com>
1252 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
1253 for dynamic assemblies. Fixes #78724.
1255 2006-06-28 Zoltan Varga <vargaz@gmail.com>
1257 * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
1260 2006-06-21 Martin Baulig <martin@ximian.com>
1263 (method_encode_clauses): Don't assert on `ex_info->handlers' here;
1266 2006-06-21 Zoltan Varga <vargaz@gmail.com>
1268 * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
1270 2006-06-20 Raja R Harinath <rharinath@novell.com>
1272 Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
1274 * class.c (mono_class_create_from_typespec): Add 'context' argument.
1275 Inflate result if necessary.
1276 (mono_class_get_full): Remove old version. Rename from
1277 'mono_class_get' and add 'context' argument. Pass it to
1278 ..._create_from_typespec.
1279 (mono_class_get): New. Simple wrapper to mono_class_get_full.
1280 (mono_ldtoken): Revert change below.
1282 2006-06-20 Martin Baulig <martin@ximian.com>
1284 * class.c (mono_ldtoken): Don't pass the generic context to
1285 mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF. Fixes #78053.
1287 2006-06-15 Zoltan Varga <vargaz@gmail.com>
1289 * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
1290 and later freeing it. Fixes #78638.
1292 2006-06-15 Miguel de Icaza <miguel@novell.com>
1294 * icall.c (mono_class_get_throw): Revert over-zealous error
1295 throwing, the caller for mono_class_get_throw will cope with
1296 errors when classes are not properly initialized already.
1298 The code still copes with loader exceptions though.
1300 Fixes the regression in reftype1 and reftype3 from the CAS tests.
1302 2006-06-14 Miguel de Icaza <miguel@novell.com>
1304 Fixes the `make run1' version of RuntimeAbort (to be commited,
1305 source is in Bugzilla).
1307 * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
1308 FALSE on class loading failure instead of returning true.
1310 * class.c (mono_class_create_from_typedef): It is possible for
1311 mono_metadata_interfaces_from_typedef_full to fail if a class is
1312 not found, cope with this.
1315 2006-06-14 Dick Porter <dick@ximian.com>
1318 * process.c: Fix a bunch of signed/unsigned warnings from gcc
1321 2006-06-12 Atsushi Enomoto <atsushi@ximian.com>
1323 * culture-info-table.h : oops, forgot to make it nsync with r61548.
1325 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
1327 * icall.c: Another fix for building mono in Visual Studio.
1329 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
1331 * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
1333 2006-06-09 Martin Baulig <martin@ximian.com>
1335 * debug-mono-symfile.c: Put this back and really fix it this
1336 time. Sorry for all the trouble.
1338 2006-06-08 Zoltan Varga <vargaz@gmail.com>
1340 * icall.c (mono_class_get_throw): Fix a warning.
1341 (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw
1342 ReflectionTypeLoadException if needed. Fixes #78606.
1344 * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
1345 (mono_class_init): Ditto.
1347 * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
1348 ref_only exceptions.
1349 (mono_loader_clear_error): Make this work even if there is no error.
1351 2006-06-08 Jonathan Chambers <jonathan.chambers@ansys.com>
1353 * object-internals.h marshal.c marshal.h icall.c: Implement method
1354 Marshal.GetComSlotForMethodInfo using internal call.
1356 2006-06-07 Zoltan Varga <vargaz@gmail.com>
1358 * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
1359 a function for signalling it.
1361 * class.c (mono_class_from_typeref): Use the new kind of loader error when
1362 a referenced assembly is not found.
1364 * loader.c (mono_loader_error_prepare_exception): Add support for
1365 LOADER_ERROR_ASSEMBLY. Fix formatting.
1367 2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
1369 * domain.c appdomain.c class-internals.h marshal.c: Add support
1370 for VARIANT marshalling on windows and increment corlib version
1371 since Variant struct was added.
1373 2006-06-03 Miguel de Icaza <miguel@novell.com>
1375 * debug-mono-symfile.c: Revert Martin's previous patch which broke
1376 stack trace line information:
1378 (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
1379 (Martin) when looking up B which is between A and C, return A not C.
1383 Thanks to Alexander Olk for tracking this down.
1385 2006-06-02 Zoltan Varga <vargaz@gmail.com>
1387 * marshal.c (mono_marshal_set_last_error_windows): Fix build.
1389 * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
1390 avoid clobbering its value.
1391 (mono_string_to_lpstr): Fix a warning on windows.
1393 2006-05-31 Zoltan Varga <vargaz@gmail.com>
1395 * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
1397 * reflection.c loader.c: Removed references to 'dummy' flag.
1399 * loader.c (mono_loader_error_prepare_exception): Fix a warning.
1401 * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
1402 it gets GC tracking.
1404 * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
1407 * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
1409 * marshal.c threadpool.c: Update callers of mono_async_result_new.
1411 * appdomain.c: Bump corlib version.
1413 2006-05-30 Zoltan Varga <vargaz@gmail.com>
1415 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1416 CEE_STIND_REF when working with object references.
1418 2006-05-31 Zoltan Varga <vargaz@gmail.com>
1420 * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
1423 2006-05-30 Miguel de Icaza <miguel@novell.com>
1425 * loader.c (method_from_memberref): Fix argument value for
1426 mono_loader_set_error_method_load (I was passing the MonoClass
1427 instead of the class name char *).
1429 2006-05-30 Zoltan Varga <vargaz@gmail.com>
1431 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
1432 CEE_STIND_REF when working with object references.
1434 2006-05-30 Martin Baulig <martin@ximian.com>
1436 * mono-debug.c (mono_debug_print_stack_frame): Reverted the
1437 mono_method_full_name() change and replace the ':' with a '.'
1440 2006-05-30 Martin Baulig <martin@ximian.com>
1442 * debug-mono-symfile.c
1443 (mono_debug_symfile_lookup_location): Fix the algorithm:
1444 when looking up B which is between A and C, return A not C.
1446 2006-05-29 Martin Baulig <martin@ximian.com>
1449 (MonoDebugMethodInfo): Make the typedef public.
1450 (MonoDebugSourceLocation): New public struct.
1453 (mono_debug_source_location_from_address): Removed.
1454 (mono_debug_source_location_from_il_offset): Removed.
1455 (mono_debug_il_offset_from_address): Removed.
1456 (mono_debug_address_from_il_offset): Removed.
1457 (mono_debug_lookup_method): New public function.
1458 (mono_debug_lookup_source_location): New public function; replaces
1459 the old mono_debug_source_location_from_*() functions; see the
1460 inline documentation.
1461 (mono_debug_free_source_location): New public function.
1462 (mono_debug_print_stack_frame): New public function; see the
1463 inline documentation.
1465 * debug-mono-symfile.c
1466 (mono_debug_find_source_location): Renamed into
1467 mono_debug_symfile_lookup_location(); only take a
1468 `MonoDebugMethodInfo *' and an `offset' argument; added inline
1470 (mono_debug_find_method): Renamed into
1471 mono_debug_symfile_lookup_method().
1473 2006-05-27 Zoltan Varga <vargaz@gmail.com>
1475 * assembly.c (mono_assembly_open_full): Dont overwrite the status
1476 returned by mono_image_open_full ().
1478 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
1479 MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
1482 * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
1485 2006-05-27 Miguel de Icaza <miguel@novell.com>
1487 * class.c (mono_class_from_typeref): handle missing images
1488 earlier, deals with bug #78418. Refactor code;
1490 Fix a warning introduced in my previous commit (some stale code
1491 from before I revisited my patch).
1493 * class.c (mono_class_create_from_typedef): On failure, remove the
1494 class from the MonoImage->class_cache as the class is not
1495 initialized; Fixes the leak pointed out by Paolo.
1497 2006-05-25 Dick Porter <dick@ximian.com>
1499 * threads.c (mono_thread_cleanup): Build fix. Comment out the
1500 DeleteCriticalSections until I figure out which one may still be
1501 sometimes locked when mono_thread_cleanup is called.
1503 2006-05-24 Dick Porter <dick@ximian.com>
1505 * threads.c (mono_thread_cleanup): Move the threading cleanup out
1506 of mono_thread_manage and back into its own function, so it can be
1507 called after the finalizer thread has finished.
1509 * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
1511 2006-05-24 Zoltan Varga <vargaz@gmail.com>
1513 * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
1516 * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
1517 with non-blittable elements.
1518 (emit_object_to_ptr_conv): Ditto. Fixes #78492.
1520 2006-05-24 Martin Baulig <martin@ximian.com>
1522 * mono-debug-debugger.h (MonoDebuggerEvent): Added
1523 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.
1525 * mono-debug-debugger.c (mono_debugger_cleanup): Send a
1526 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
1527 `mono_debugger_event_handler' to NULL.
1529 2006-05-24 Martin Baulig <martin@ximian.com>
1531 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
1533 2006-05-24 Martin Baulig <martin@ximian.com>
1535 * mono-debug-debugger.h
1536 (mono_debugger_create_notification_function): Added
1537 `MonoCodeManager *' argument.
1539 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
1541 * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
1543 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
1545 * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
1546 * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
1549 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
1551 * icall.c: precise GC support: objects can't be stored in unmanaged
1552 memory anymore, even if they are kept alive by other references: since
1553 they can move the GC needs to be able to always find them.
1555 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1557 * object.c: precise GC support for static fields. Support
1558 for moving GCs: write barriers and pinned allocation for interned
1561 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1563 * domain.c, domain-internals.h: precise GC support for the MonoDomain
1566 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1568 * class.c, gc.c: sgen and precise GC updates.
1570 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
1572 * marshal.h, marshal.c: added write barrier wrapper and precise type
1575 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
1577 * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
1580 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
1582 * reflection.c: precise and sgen GC updates.
1584 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
1586 * debug-helpers.c, class-internals.h: added write barrier wrapper type.
1588 2006-05-22 Zoltan Varga <vargaz@gmail.com>
1590 * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
1592 2006-05-20 Zoltan Varga <vargaz@gmail.com>
1594 * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
1595 MONO_TYPE_OBJECT. Fixes #78462.
1597 2006-05-18 Zoltan Varga <vargaz@gmail.com>
1599 * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct
1600 and blittable types.
1602 2006-05-17 Miguel de Icaza <miguel@novell.com>
1604 * class.c (mono_class_get_exception_for_failure): Implement parts
1605 of a TODO: if the loader error is set (instead of the class
1606 error), we return a Loader exception that can be properly thrown
1609 This was exposed by some Winforms 2.0 code that I tried to run
1610 (Atsushi pointed me to it).
1612 2006-05-17 Zoltan Varga <vargaz@gmail.com>
1614 * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
1615 uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
1617 * marshal.c (emit_marshal_vtype): Add limited support for
1618 UnmanagedType.LPStruct. Fixes #78427.
1620 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure):
1621 Applied a patch from kangaroo to fix #77523.
1623 2006-05-17 Martin Baulig <martin@ximian.com>
1626 (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
1627 (debugger_thread_created): Removed.
1628 (debugger_thread_exited): Removed.
1630 2006-05-15 Zoltan Varga <vargaz@gmail.com>
1632 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1634 * object-internals.h (MonoReflectionResource): Sync with managed version.
1636 2006-05-12 Wade Berrier <wberrier@novell.com>
1638 * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
1640 2006-05-12 Zoltan Varga <vargaz@gmail.com>
1642 * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
1643 functions try to allocate from the image mempool.
1645 2006-05-12 Dick Porter <dick@ximian.com>
1647 * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
1649 2006-05-12 Lluis Sanchez <lluis@ximian.com>
1651 * object.c: The FieldGetter and FieldSetter methods require the full
1652 name of the class, not only the name. Fixes bug #78277.
1654 2006-05-11 Miguel de Icaza <miguel@novell.com>
1656 * loader.c (method_from_memberref): Do not pass the NULL klass to
1657 mono_loader_set_error_() methods. Pass the non-NULL value
1660 2006-05-11 Zoltan Varga <vargaz@gmail.com>
1662 * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
1663 (mono_assembly_close): Null out assembly->image->references after freeing it.
1665 * image.c (mono_image_close): Free image->references.
1667 * reflection.c (mono_image_basic_init): Fix a small memory leak.
1669 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
1671 * marshal.c: In function mono_mb_add_local don't use the mb pointer
1672 before checking if it's NULL (g_assert).
1674 2006-05-10 Martin Baulig <martin@ximian.com>
1676 * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
1677 I thought I already killed that two months ago, but now it somehow reappeared.
1679 2006-05-10 Martin Baulig <martin@ximian.com>
1681 * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
1683 2006-05-10 Zoltan Varga <vargaz@gmail.com>
1685 * reflection.c: Allocate memory for dynamically created methods in the image
1688 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
1690 * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions,
1691 don't use the ad pointer before checking if it's NULL (g_assert).
1693 2006-05-09 Zoltan Varga <vargaz@gmail.com>
1695 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
1696 a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
1698 * marshal.c: Allocate all signatures from mempools.
1700 * marshal.c: Allocate some more signatures from mempools.
1702 2006-05-09 Miguel de Icaza <miguel@novell.com>
1704 * object.c (mono_load_remote_field): The code used to provide a
1705 temporary variable for returning results if the user did not
1706 provide a result pointer. But our temporary variable was allocted
1709 Fix calling code to always pass a result area. Coverity ID 103.
1711 2006-05-06 Zoltan Varga <vargaz@gmail.com>
1713 * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
1714 value, not the old. Fixes #78312.
1715 (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
1717 * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
1718 (mono_ptr_class_get): Ditto. Also change the cache from a global one to a
1721 * assembly.c (mono_assembly_close): Free image->references.
1723 * assembly.c (mono_assembly_names_equal): Fix a warning.
1724 (mono_assemblies_cleanup): Cleanup more global data.
1726 * metadata-internals.h (MonoImage): Add 'ptr_cache'.
1728 * image.c (mono_image_close): Free up the contents of 'array_cache', free up
1729 ptr_cache and image->modules.
1731 * image.c (mono_image_init): Allocate array_cache lazily.
1733 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1735 * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
1736 behavior was changed recently and has bad side effects.
1738 2006-05-05 Zoltan Varga <vargaz@gmail.com>
1740 * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
1742 * assembly.c (mono_assembly_close): Remove a debug printf.
1744 * profiler.c (create_profiler): Use mono_aligned_addr_hash.
1746 * metadata-internals.h image.c assembly.c: Change the reference counting scheme
1747 to also allow for temporary references between mono_image_open ()/close ().
1749 * domain.c (get_runtimes_from_exe): Add a FIXME.
1751 2006-05-04 Zoltan Varga <vargaz@gmail.com>
1753 * marshal.c: Fix support for dynamic methods.
1755 * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
1757 * marshal.c (mono_marshal_cleanup): New cleanup function.
1759 * marshal.c: Rewrite the wrapper code to allocate most of its memory from the
1762 * class.c (mono_class_init): Fix leaking class->nested_classes.
1764 * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
1766 * image.c (mono_image_init): Initialize the new cashes.
1768 * image.c (mono_image_close): Destroy the new cashes.
1770 * marshal.c: Get rid of most of the static caches in favor of per-image caches.
1772 * mempool.c (mono_mempool_strdup): New helper function.
1774 * class-internals.h: Add prototype for mono_loader_unlock ().
1776 * domain.c (mono_jit_info_table_find): Fix a warning.
1777 (mono_debugger_check_runtime_version): Ditto.
1779 * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h
1780 class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
1781 functions to these modules.
1783 * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
1786 * marshal.c (mono_free_bstr): Fix a warning.
1788 * assembly.c (mono_assembly_open_full): Fix another small leak.
1790 * object.c: Fix some unload leaks in the remoting code.
1792 * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
1795 * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
1797 * reflection.c: Fix some unload leaks in dynamic assemblies.
1799 2006-05-02 Jonathan Chambers <jonathan.chambers@ansys.com>
1801 * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
1802 * marshal.h: Add BSTR support on Win32
1803 * icall.c: Add BSTR icalls
1804 * metadata.h: Add BSTR enums
1806 2006-04-28 Miguel de Icaza <miguel@novell.com>
1808 Work to catch the crash from #76795 and turn it into an
1809 exception. As I stubbed out pieces of the VisualBasic support,
1810 I found a number of places where the code was failing and I added
1811 checks to those places.
1813 * metadata.c (do_mono_metadata_parse_generic_class): Make this
1814 function return a status code. If we fail to parse the signature
1815 from mono_metadata_parse_generic_inst, return FALSE.
1817 * loader.c (mono_get_method_from_token): If we fail to load the
1818 method (mono_class_get) return NULL.
1820 * (method_from_memberref): Return NULL if we are unable to parse
1821 the method signature
1823 (mono_loader_error_prepare_exception): Since we now use the
1824 loader_error flag internally to stop processing, and obtaining
1825 exceptions that might be thrown will walk this code path the
1826 proper way of going from a MonoLoaderError into a
1827 MonoException was convoluted. This new routine encapsulates the
1828 process of turning the error into an exception and *clearing* the
1831 2006-04-27 Miguel de Icaza <miguel@novell.com>
1833 Work to catch the crashes from 75075 (cope in Assembly.GetTypes
1834 with missing assemblies), and to cope with:
1836 * Missing fieldref from a non-existing assembly.
1837 * Missing methodref from a non-existing assembly.
1839 The first batch of work to address *some* of the issues from 76661.
1841 * object.c (mono_class_create_runtime_vtable): If we fail to
1842 initialize the class raise the exception here.
1844 * metadata.c (mono_class_get_overrides_full): If any methods fail
1845 to load return the failure to the caller.
1847 * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
1848 flagging assemblies that failed to load.
1850 Do not crash if we are unable to load the assembly.
1852 (mono_assembly_close): Do nothing with REFERENCE_MISSING
1855 * loader.c (mono_loader_set_error_type_load): Change the
1856 convention to always pass unallocated strings, so we make our own
1857 copies (I know our own code had duplicated strings before, but
1858 this keeps the normal conventions).
1859 (method_from_memberref): Call mono_loader_set_error_method_load
1860 for all possible failures of loading the class.
1861 Remove assert, turn into a loader error.
1863 (mono_loader_error_to_exception): Move this routine from mini
1864 (mini_loader_error_to_exception) there was no need to have that in
1867 * class.c (mono_class_from_typeref): If we were not able to load
1868 the assembly with mono_assembly_load_reference, call the
1869 mono_loader_set_error_type_load to register the problem.
1871 (mono_class_setup_fields): If we fail to load the type from
1872 mono_metadata_parse_type_full, call mono_class_set_failure and
1873 break from the loop.
1875 If class->exception_type is set, we do not layout the fields as
1876 that might crash the runtime, and instead return (from breaking
1877 from the previous loop).
1879 (mono_class_setup_vtable): This now returns a boolean indicating
1880 whether the table was properly setup. The decision is driven by
1881 mono_class_get_overrides_full which might run into non-existing
1884 (mono_class_init): Returns TRUE on success or FALSE if there was a
1885 problem in loading the type (incorrect assemblies, missing
1886 assemblies, methods, etc).
1888 When we call mono_class_setup_fields we also check for a potential
1889 error inside this call (either a class exception or a general
1892 (mono_class_create_from_typedef): If the parent fails to load
1893 (calling mono_class_get_full) return NULL.
1897 calls to mono_metadata_parse_type_full should be checked
1898 everywhere and set the mono_class_set_failure
1899 (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
1901 The current patch checks the places where my manually constructed
1902 tests show the errors are showing up, but we should do it
1907 mono_class_init return values should be tested everywhere, like
1908 the previous case this is something that we should audit
1909 everywhere and not only on the cases exposed by the tests I
1912 2006-04-26 Miguel de Icaza <miguel@novell.com>
1914 * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
1915 boolean parameter and instead pass the information on `options'
1916 parameter (FileOptions).
1918 * icall.c: Register the new signature for MonoIO.Open.
1920 * debug-helpers.c (dis_one): Trying to understand how coverity
1921 works. Fix Run 5, item 78.
1923 2006-04-26 Dick Porter <dick@ximian.com>
1925 * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
1928 2006-04-25 Martin Baulig <martin@ximian.com>
1930 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
1932 * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
1933 debugger_thread_created().
1934 (debugger_gc_push_all_stacks): Don't handle the main thread in any
1936 (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
1937 (mono_debugger_finalize_threads): New function; undo the effects
1938 of mono_debugger_init_threads().
1939 (mono_debugger_create_all_threads): Removed.
1941 2006-04-24 Zoltan Varga <vargaz@gmail.com>
1943 * image.c (mono_image_close): Tidy up trace messages.
1945 * assembly.c (mono_assembly_close): Ditto.
1947 * assembly.c (mono_assembly_close): Clear out image->assembly so the image
1948 no longer references an already freed assembly. Fixes #78168.
1950 2006-04-21 Dick Porter <dick@ximian.com>
1952 * threads.c (mono_thread_detach): Fix reference counting when
1955 2006-04-21 Zoltan Varga <vargaz@gmail.com>
1957 * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
1960 2006-04-19 Zoltan Varga <vargaz@gmail.com>
1962 * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
1963 (mono_type_to_stind): Ditto.
1965 * marshal.c: Use the new helper functions to simplify code.
1967 * image.c (mono_image_close): Add some code for help debug assembly unloading
1970 * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
1973 * assembly.c (mono_assembly_open_full): Invoke the load hook when the
1974 assembly was already loaded in another appdomain. Fixes #78083.
1976 2006-04-13 Zoltan Varga <vargaz@gmail.com>
1978 * assembly.c (mono_assembly_load_reference): Increase the refcount of the
1979 referenced assemblies.
1980 (mono_assembly_close): Decrease the refcount of the referenced assemblies.
1982 * domain.c (mono_domain_free): Add a trace message.
1984 * appdomain.c (add_assemblies_to_domain): Ditto.
1986 * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
1989 2006-04-12 Zoltan Varga <vargaz@gmail.com>
1991 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
1993 2006-04-12 Martin Baulig <martin@ximian.com>
1995 * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
1996 `USE_INCLUDED_LIBGC'.
1998 2006-04-12 Zoltan Varga <vargaz@gmail.com>
2000 * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
2001 the patch contains ../ and a small directory name later. Hopefully fixes
2004 2006-04-10 Martin Baulig <martin@ximian.com>
2006 Clean up the debugger's thread-handling code.
2008 The debugger's thread-handling code has been moved from
2009 ../mini/debug-debugger.c to threads.c. We now iterate directly
2010 over the `threads' hash, keep track of exiting threads and also
2013 We can now debug XSP and XSP based applications with the debugger.
2015 * object-internals.h (MonoThread): Added `gpointer end_stack'.
2018 (MonoThreadCallbacks): Removed; this was only used by the debugger.
2019 (mono_install_thread_callbacks): Likewise.
2021 * threads.c (mono_thread_callbacks): Removed.
2022 (debugger_thread_created, debugger_thread_exited): New static functions.
2023 (start_wrapper): Call debugger_thread_created().
2024 (thread_cleanup): Call debugger_thread_exited().
2025 (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
2026 (mono_debugger_init_threads): New public function.
2027 (debugger_thread_vtable): Moved here from debug-debugger.c; we now
2028 iterate directly over the `threads' hash and also use proper locking.
2030 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
2032 * mono-debug-debugger.h
2033 (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
2035 2006-04-10 Zoltan Varga <vargaz@gmail.com>
2037 * reflection.c (encode_cattr_value): Fix handling of parameter type=object,
2038 argument type=array. Fixes #78057.
2040 2006-04-10 Atsushi Enomoto <atsushi@ximian.com>
2042 * culture-info-table.h : regenerated. Fixed bug #69652.
2044 2006-04-07 Zoltan Varga <vargaz@gmail.com>
2046 * loader.c metadata.c: Reapply a variant r59116.
2048 * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
2050 * class.c (mono_class_setup_interface_offsets): New internal function.
2052 * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
2053 interfaces too. Fixes #77398.
2055 * reflection.c (encode_cattr_value): Add support for
2056 parameter type=object, argument type=array.
2057 (load_cattr_value): Ditto. Fixes #77916.
2059 * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
2060 (emit_ptr_to_object_conv): Ditto. Fixes #77960.
2062 * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
2063 a byval char array and CharSet is Ansi.
2065 * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
2067 2006-04-06 Zoltan Varga <vargaz@gmail.com>
2069 * metadata.c: Add some locking comments.
2071 * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
2073 (mono_metadata_free_method_signature): Don't free the signature itself.
2075 * loader.c (mono_free_method): Don't free the signature in non-dynamic methods.
2077 * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
2078 reference the same MonoImage.
2079 (mono_assembly_load_from_full): Add an assert.
2081 2006-04-05 Zoltan Varga <vargaz@gmail.com>
2083 * image.c (mono_image_close): Don't put the image we are about to free into the
2084 loaded_images_guid_hash.
2086 * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
2087 to reduce code duplication.
2089 * marshal.c: Register the native functions called by this module as icalls, to
2090 somewhat centralize the creation of MonoMethodSignature's.
2092 * loader.c (mono_method_signature): Add a cache for method signatures.
2094 * metadata.c (mono_metadata_get_param_attrs): New helper function to return
2095 the parameter attributes of a method.
2096 (mono_metadata_parse_method_signature_full): Refactored the computation of
2097 parameter attributes into a separate function. Also avoid one allocation in
2100 * assembly.c (mono_assembly_close): Ditto.
2102 * image.c (mono_image_close): Log trace messages with INFO level.
2104 * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
2106 * image.c reflection.c: Correct reference counting of image modules.
2108 * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
2109 of this function from the image mempool.
2111 (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
2112 to allow more cached types to be used.
2114 * mono-debug.c (mono_debug_add_method): Appled patch from
2115 David S. Miller <davem@sunset.davemloft.net>: Access
2116 minfo->lexical_blocks[] entry elements using read32().
2118 2006-04-04 Zoltan Varga <vargaz@gmail.com>
2120 * loader.c (mono_free_method): No longer free the method header for non-dynamic
2121 methods as it is allocated from the mempool.
2123 * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
2126 * metadata-internals.h: Add comments describing the reference counting scheme
2127 used for MonoImage and MonoAssembly.
2129 * image.c assembly.c reflection.c: Rework reference counting of images and
2130 assemblies so they are freed when the runtime is shut down. Free some
2131 additional memory structures when an image is unloaded.
2133 2006-04-03 Zoltan Varga <vargaz@gmail.com>
2135 * class.c loader.c reflection.c: Allocate more data structures in
2138 2006-03-31 Miguel de Icaza <miguel@novell.com>
2141 (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
2142 build on pre glib 2.4 systems.
2144 2006-03-31 Zoltan Varga <vargaz@gmail.com>
2146 * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
2148 * icall.c: Fix some warnings.
2150 2006-03-29 Atsushi Enomoto <atsushi@ximian.com>
2152 * culture-info-table.h : regenerated.
2154 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
2156 * threads.c, object-internals.h, verify.c: changed the culture caching
2157 code to use a normal MonoArray for storage so the GC can keep track of
2158 them easily. Fixed bits of the cache logic, too and simplified the
2161 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
2163 * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
2164 thread for non-Boehm GCs.
2166 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
2168 * domain.c, object.c, domain-internals.h: reduce the amount of memory
2169 needed to keep track of the data for static fields.
2171 2006-03-29 Raja R Harinath <rharinath@novell.com>
2174 * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
2175 for interface classes. Use 'num_methods' instead.
2176 (ves_icall_Type_GetPropertiesByName): Likewise. Setup vtable
2177 before using '->vtable_size' field.
2179 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
2181 * domain.c, object.c, domain-internals.h: proxy_vtable_hash
2182 doesn't contain managed pointers, so use a normal hashtable.
2184 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
2186 * reflection.c, class-internals.h, domain.c: fixed handling of types
2187 used as values for objects in custom attributes (bug #77915):
2189 2006-03-24 Martin Baulig <martin@ximian.com>
2191 * class.c (mono_class_setup_fields): Added support for generic
2192 instances; fixes #77580.
2194 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2196 * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
2198 2006-03-24 Dick Porter <dick@ximian.com>
2200 * file-io.c (get_file_attributes): More stat macro breakage.
2203 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
2205 * profiler.c: added the file=filename option in the default profiler
2206 to output the profile data to filename.
2208 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2210 * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
2213 2006-03-22 Martin Baulig <martin@ximian.com>
2215 * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
2216 allocated `MonoClassField *' in `fb->handle'.
2218 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
2220 * class.c, image.c, metadata-internals.h: implemented new mechanism to
2221 allocate interface ID to save memory and allow better ID reuse on
2222 appdomain unload. setup_generic_vtable () removal from Martin.
2224 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2226 * object.h, appdomain.c, domain.c, exception.c, icall.c,
2227 locales.c, marshal.c, object.c, reflection.c, threadpool.c,
2228 threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
2229 write barriers for reference stores with managed objects accessed with
2230 C structures in the runtime and in embedding programs.
2232 2006-03-20 Raja R Harinath <rharinath@novell.com>
2234 * icall.c (ves_icall_Type_GetInterfaces): Avoid using
2235 'interface_id' and 'max_interface_id' fields of MonoClasses
2236 representing open generic types.
2238 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
2240 * object.h, object.c, icall.c: added functions to deal with
2241 storing valuetypes that contain references in managed objects.
2242 * reflection.c, string-icalls.c, threads.c, marshal.c: small
2243 fixes and comments around uses of mono_array_addr ().
2245 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
2247 * object.h, icall.c, monitor.c: object.GetHashCode ()
2248 implementation that supports the moving garbage collector.
2250 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
2252 * icall.c, threads-types.h, threads.c: implemented finalizer for
2255 2006-03-15 Zoltan Varga <vargaz@gmail.com>
2257 * metadata.c (mono_type_size): Add a fixme.
2258 (mono_type_stack_size): Ditto.
2260 * object-internals.h (MonoReflectionAssemblyBuilder): Added
2261 'type_forwarders' field.
2263 * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
2264 attribute from net 2.0.
2266 * object.c (mono_vtable_get_static_field_data): Moved this to object.c
2269 * class.c (mono_class_setup_fields): Fix a warning.
2271 * class.c (mono_class_from_name): Add support for assemblyref entries
2272 in the EXPORTEDTYPE table.
2274 * reflection.c: Add support for handling type forwarders under net 2.0.
2276 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2278 2006-03-14 Zoltan Varga <vargaz@gmail.com>
2280 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
2281 overwriting entries in ModuleBuild->types, also clean up the code
2282 a little. Fixes #77774.
2284 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
2286 * domain.c, assembly.c, metadata-internals.h, class-internals.h:
2287 load friend assembly info when present.
2289 2006-03-14 Raja R Harinath <rharinath@novell.com>
2291 Fix crasher on gtest-158.cs.
2292 * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
2293 the return value if the MonoClass we want is yet in an
2295 * class.c (mono_class_create_from_typedef): Add an comment
2296 explaining an order dependency between mono_class_setup_parent and
2297 mono_class_setup_mono_type.
2299 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
2301 * class.c: documentation updates and events bug fix.
2303 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
2305 * class.c: some cleanup, locking fixes.
2307 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
2309 * class.c: fix the generics code to setup nested
2310 type info to the instantiated type (bug #77770).
2312 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
2314 * marshal.c: fixed a few type correctness issues.
2316 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2318 * loader.c: the Set/Get/Addrtess array methods should be public.
2320 2006-03-11 Zoltan Varga <vargaz@gmail.com>
2322 * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
2324 * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
2327 2006-03-10 Zoltan Varga <vargaz@gmail.com>
2329 * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
2331 * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
2333 * mempool.c (mono_mempool_alloc): Speed this up a bit.
2334 (mono_mempool_alloc0): Ditto.
2336 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2339 (create_object_from_sockaddr): it was allocating 4 extra bytes
2340 for the AF_UNIX data. Fixes bug #77747.
2342 2006-03-09 Zoltan Varga <vargaz@gmail.com>
2344 * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
2346 2006-03-09 Dick Porter <dick@ximian.com>
2348 * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
2349 Fixes bug 76966 again.
2351 2006-03-07 Peter Dennis Bartok <pbartok@novell.com>
2353 * verify.c (dtfinfo_fields): Updated to match new (serializable) field
2355 * appdomain.c: Bumped corlib version to 48 (due to r57532)
2357 2006-03-07 Martin Baulig <martin@ximian.com>
2360 (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
2362 2006-03-07 Martin Baulig <martin@ximian.com>
2365 (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
2366 regression introduced in r56970; see gtest-252.cs.
2368 * loader.c (mono_get_method_constrained): Correctly handle generic
2369 methods; see gtest-253.cs.
2371 2006-03-04 Zoltan Varga <vargaz@gmail.com>
2373 * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
2375 2006-03-04 Martin Baulig <martin@ximian.com>
2377 * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
2378 compute the parent type at runtime, just like we're already doing
2382 (mono_reflection_bind_generic_parameters): Don't compute the
2383 parent type anymore.
2385 * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
2387 2006-03-04 Martin Baulig <martin@ximian.com>
2389 * mono-debug-debugger.h
2390 (mono_debugger_create_notification_function): Allocate memory at
2391 runtime and return a pointer to it.
2393 2006-03-03 Zoltan Varga <vargaz@gmail.com>
2395 * assembly.c: Fix windows build.
2397 * assembly.c: Fix build.
2399 * assembly.c: Move the contents of os/{unix,win32}/util.c to this file.
2401 * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
2403 2006-03-03 Dick Porter <dick@ximian.com>
2406 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
2407 Check parameters before dereferencing them. Fixes Aaron's part of
2410 2006-03-03 Raja R Harinath <rharinath@novell.com>
2412 Fix performance regression.
2413 * loader.c (find_method_in_class): Add 'from_class' argument.
2414 Rename 'klass' argument to 'in_class'. The signature is compared
2415 against the method in 'in_class', and the corresponding method is
2416 returned from 'from_class'.
2417 (find_method): Walk both 'in_class' and 'from_class' in parallel.
2418 (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
2419 type definition and generic instantiation in parallel.
2420 (mono_get_method_constrained): Update to changes.
2422 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
2424 * threads.c: make sure the domain is correct, too when doing
2425 mono_thread_attach ().
2427 2006-03-01 Zoltan Varga <vargaz@gmail.com>
2429 * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
2430 windows. Fixes #77683.
2432 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
2434 * object.h, *: introduced specific way to set elements of an array
2435 of references to be used as write barrier. Still need to audit the
2436 uses of mono_array_addr.
2438 2006-03-01 Miguel de Icaza <miguel@novell.com>
2440 * object-internals.h: New field to cache the assmebly name, patch
2441 from Tambet Ingo (tambet@ximian.com)
2443 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
2445 * decimal.h, class-internals.h, metadata-internals.h,
2446 file-io.h: mark a few function declarations as internal, to
2447 reduce the number of PLT entries.
2449 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2451 * file-io.c: fix typo in warning message.
2453 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
2455 * loader.c: on unix, lookup the "*A" version of a function
2456 if charset is auto as a second option before failing.
2458 2006-02-28 Raja R Harinath <rharinath@novell.com>
2460 * class.h (mono_class_inflate_generic_method): Revert to two
2462 * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
2463 (mono_class_inflate_generic_method_full): Add.
2464 * class.c (mono_class_inflate_generic_method_full): Rename from
2465 'mono_class_inflate_generic_method'. Don't set 'inflated' field.
2466 (mono_class_inflate_generic_method): New. Wrapper around ..._full.
2467 * loader.c, reflection.c: Update to changes.
2469 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
2471 * icall.c: const fixes and small improvements.
2473 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2475 * threadpool.c: for asynchronous connect(), enable the same workaround
2476 for BSD 6 as for the Mac. Fixes bug #77637.
2478 2006-02-24 Zoltan Varga <vargaz@gmail.com>
2480 * marshal.c (mono_marshal_free_asany): Fix handling of blittable
2481 formatted classes. Fixes #77524.
2483 2006-02-24 Raja R Harinath <rharinath@novell.com>
2485 * class.c (inflate_generic_type): Add a couple more
2486 micro-optimizations.
2487 (inflate_generic_context): Don't use the 'gmethod' from
2489 (mono_class_inflate_generic_method): If the method has generic
2490 parameters, but the passed-in context doesn't have a 'gmethod',
2491 create one. Use the possibly simplified generic instantiation
2492 from the declaring class instead of the one passed in.
2494 2006-02-24 Raja R Harinath <harinath@gmail.com>
2496 Make generic method signature and method header handling lazy.
2497 * class.c (mono_class_inflate_generic_signature): Move to loader.c.
2498 (inflate_generic_header): Likewise.
2499 (mono_class_inflate_generic_method): Rewrite. Add a 'klass_hint'
2500 parameter to avoid inflating types.
2501 (mono_get_inflated_method): Empty out.
2502 * class.h (mono_class_inflate_generic_method): Update to changes.
2503 * loader.c (mono_get_method_from_token): Don't parse signature for
2504 generic methods, nor methods of generic classes.
2505 (mono_method_signature): Rename from 'mono_method_signature'.
2506 Inflate signature on demand.
2507 (mono_method_get_header): Inflate method header on demand.
2508 * reflection.c: Update to changes.
2510 2006-02-23 Raja R Harinath <rharinath@novell.com>
2512 * metadata.c (mono_metadata_inflate_generic_inst): If the
2513 instantiation is closed, don't bother expanding it in the new
2515 * class.c (inflate_generic_class): If the generic instantiation
2516 doesn't change after inflation, return the argument itself.
2517 (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
2519 (inflate_generic_context): If neither the generic class nor the
2520 generic method instantiations change, return the original context.
2521 * reflection.c (mono_method_get_object): Do
2522 'mono_get_inflated_method' before accessing the ->klass field.
2523 (inflate_mono_method): Don't create a MonoGenericMethod unless
2525 (inflate_method): Don't pass a constructed type as the declaring
2526 type of a methodbuilder.
2528 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
2530 * object.c: fix memory overwrite.
2532 2006-02-22 Dick Porter <dick@ximian.com>
2534 * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
2535 it doesn't work any more.
2536 (mono_threads_request_thread_dump): Fix unused variable warnings.
2538 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
2540 * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
2541 mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
2542 the public header file.
2544 2006-02-21 Zoltan Varga <vargaz@gmail.com>
2546 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
2548 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
2550 * class-internals.h, object.c: reduce the size of MonoVTable
2551 and store the interface_offsets array at negative offsets.
2553 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
2555 * metadata.c: tweak table descriptors data structures to reduce
2556 size and runtime relocations.
2558 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2560 * marshal.c: fix some types and opcodes to be type-safe
2561 in marshaling wrappers.
2563 2006-02-21 Ankit Jain <jankit@novell.com>
2565 * metadata.h (mono_metadata_decode_signed_value): Add declaration.
2567 2006-02-21 Raja R Harinath <rharinath@novell.com>
2569 * metadata.c (get_constraints): Relax debugging checks for monodis.
2571 2006-02-21 Ankit Jain <jankit@novell.com>
2573 * metadata.c (mono_metadata_load_generic_params): Move the code
2574 checking for ambiguous generic params from here to mono/dis/get.c
2575 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
2577 2006-02-21 Raja R Harinath <harinath@gmail.com>
2579 Fix assertion triggered when compiling nemerle.
2580 * class.c (mono_get_shared_generic_inst): Rename from
2581 get_shared_inst and make non-static.
2582 * loader.c (mono_get_shared_generic_method): New. Used to create
2583 the MonoGenericContext-equivalent of a MonoGenericContainer.
2584 (mono_get_method_from_token): Initialize the 'context' field of
2585 the created MonoGenericContainer.
2586 * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
2587 * metadata.c (get_constraints): Add sanity check.
2588 * class-internals.h: Add new internal methods.
2590 * reflection.c (verify_safe_for_managed_space): New sanity check.
2591 Currently checks that owner-less generic parameters aren't allowed
2593 (mono_type_get_object): Use it.
2594 * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
2595 that are now in mono_type_get_object.
2596 (ves_icall_MonoMethod_GetGenericArguments): Likewise.
2598 2006-02-19 Raja R Harinath <harinath@gmail.com>
2600 * metadata.c (mono_type_create_from_typespec): Rename from
2601 mono_type_create_from_typespec_full. Remove MonoGenericContainer*
2602 argument and caching of types in the generic container.
2603 (unwrap_arrays, find_generic_param): Remove.
2604 * metadata-internals.h: Update.
2605 * class-internals.h (_MonoGenericContainer): Remove 'types' field.
2607 2006-02-18 Zoltan Varga <vargaz@gmail.com>
2609 * class.c (mono_class_get_exception_for_failure): Fix a warning.
2611 * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
2612 return values. Fixes #77581.
2614 * class.c (mono_fnptr_class_get): Switch name and name_space.
2616 * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
2617 classes and add support for [In, Out] attributes.
2618 (mono_marshal_free_asany): Ditto. Fixes #77524.
2620 2006-02-18 Raja R Harinath <harinath@gmail.com>
2622 * class.c (mono_class_from_generic_parameter): Make more robust to
2623 incomplete MonoGenericContainers from monodis.
2625 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2627 * class-internals.h: added some more exception types.
2628 * class.c, metadata.c: added a few checks to handle missing
2631 2006-02-17 Raja R Harinath <rharinath@novell.com>
2633 Use owner-less generic-params some more.
2634 * class.c (my_mono_class_from_generic_parameter): Remove.
2635 (mono_class_from_generic_parameter): Handle null image,
2636 param->name and param->owner.
2637 (mono_class_from_mono_type): Update.
2638 (mono_class_create_from_typespec): Remove 'container' parameter.
2639 If that parameter is non-null, the result is always inflated by
2640 'mono_class_get_full' anyway.
2641 (mono_class_get): Rename from _mono_class_get. Remove 'container'
2643 (mono_class_get_full): Update.
2645 * class.c (inflate_generic_type) [GENERICINST]: If the generic
2646 instance is not open, don't bother inflating.
2647 (mono_class_setup_fields): Hoist some loop-invariants. Don't
2648 parse metadata for inflated classes.
2649 (_mono_class_get): Change GenericContext* parameter to
2651 (mono_class_create_from_typespec): Likewise. Simplify, and
2652 implement trivially. All the cases are handled in
2653 mono_class_from_mono_type. Don't inflate returned class.
2654 (mono_class_get_full): Delegate GENERICINST optimization to
2655 inflate_generic_type.
2656 (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
2658 2006-02-16 Dick Porter <dick@ximian.com>
2660 * socket-io.c (create_object_from_sockaddr): Fix typo.
2661 (create_sockaddr_from_object): Check array lengths before
2662 potentially accessing items off the end.
2663 (ves_icall_System_Net_Sockets_Socket_Receive_internal)
2664 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
2665 (ves_icall_System_Net_Sockets_Socket_Send_internal)
2666 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
2667 length checks to avoid wraparound overflows.
2668 (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
2669 contents of the array of sockets
2670 (hostent_to_IPHostEntry2)
2671 (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
2672 Check return value of inet_ntop ().
2673 (addrinfo_to_IPHostEntry): Fix typo
2675 2006-02-16 Raja R Harinath <rharinath@novell.com>
2677 Type metadata parsing doesn't use generic-instantiation information.
2678 * metadata.c (mono_metadata_parse_array_full): Change
2679 MonoGenericContext* parameter to MonoGenericContainer*.
2680 (mono_metadata_parse_type_full): Likewise.
2681 (mono_type_create_from_typespec_full): Likewise.
2682 (mono_metadata_parse_mh_full): Likewise.
2683 (mono_metadata_parse_generic_inst): Likewise.
2684 (do_mono_metadata_parse_generic_class): Likewise.
2685 (do_mono_metadata_parse_type): Likewise.
2686 * metadata-internals.h: Update to changes.
2687 * class.c (mono_class_find_enum_basetype): Likewise.
2688 (mono_class_setup_fields): Likewise.
2689 (mono_class_create_from_typespec): Likewise.
2690 * loader.c (method_from_methodspec): Likewise.
2691 (mono_get_method_from_token): Likewise.
2692 (mono_method_get_header): Likewise.
2694 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
2696 * marshal.c: handle additional GENERICINST case (patch from
2697 Thong Nguyen <tum@veridicus.com>).
2698 Fix a few cases where LDIND_I/STIND_I was used for references.
2700 2006-02-16 Raja R Harinath <rharinath@novell.com>
2702 * reflection.c (mono_reflection_get_token): Remove unused variable.
2704 2006-02-16 Martin Baulig <martin@ximian.com>
2706 * reflection.c (mono_reflection_get_token): Add support for fields
2707 in instantiated generic types.
2710 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
2712 2006-02-15 Martin Baulig <martin@ximian.com>
2715 (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
2716 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
2717 (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
2718 (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
2720 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
2722 * class.c, metadata.c, metadata.h, object.c, icall.c,
2723 marshal.c: changed mono_type_get_underlying_type () to do
2724 the sensible thing and introduced mono_type_generic_inst_is_valuetype().
2725 Fixed handling of instantiated generic valuetypes (bug #75479).
2727 2006-02-15 Raja R Harinath <rharinath@novell.com>
2729 * metadata.c (mono_metadata_decode_signed_value): Simplify.
2730 Delegate to mono_metadata_decode_value, and work on the returned value.
2732 * icall.c (ves_icall_MonoType_GetGenericArguments):
2733 Add consistency check here too.
2735 2006-02-15 Ankit Jain <jankit@novell.com>
2737 * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
2740 2006-02-15 Ankit Jain <jankit@novell.com>
2742 * metadata.c (mono_metadata_decode_signed_value): New function to decode
2743 signed values, used only for representing lower bounds of arrays.
2744 (mono_metadata_parse_array_full): Use new
2745 mono_metadata_decode_signed_value to decode lower bounds.
2747 2006-02-14 Martin Baulig <martin@ximian.com>
2750 (mono_reflection_get_token): Support "MonoGenericMethod" and
2751 "MonoGenericCMethod" and allow generic instances / methods.
2753 2006-02-11 Zoltan Varga <vargaz@gmail.com>
2755 * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
2756 to obtain the terminal size using an ioctl.
2758 * object.c (mono_nullable_init): Revert this as nullable reference
2759 types are not valid.
2760 (mono_nullable_box): Ditto.
2762 2006-02-09 Dick Porter <dick@ximian.com>
2764 * threads.c (mono_thread_detach): Drop a reference to the thread
2767 2006-02-09 Zoltan Varga <vargaz@gmail.com>
2769 * object.c (mono_nullable_init): Handle nullable reference types.
2770 (mono_nullable_box): Ditto. Fixes #77446.
2772 2006-02-07 Martin Baulig <martin@ximian.com>
2774 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
2776 2006-02-07 Ankit Jain <jankit@novell.com>
2778 * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
2779 * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
2780 (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
2781 (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
2782 (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
2783 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
2785 2006-02-02 Zoltan Varga <vargaz@gmail.com>
2787 * class.c (mono_class_create_generic): Set type_token as well.
2789 * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
2792 2006-02-02 Martin Baulig <martin@ximian.com>
2794 * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
2795 has never been used so far.
2797 2006-02-02 Martin Baulig <martin@ximian.com>
2799 * mono-debug-debugger.h: Changed comment at the top of this file;
2800 the header is not installed, but it's safe to #include it from
2803 * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
2804 * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
2806 2006-02-02 Martin Baulig <martin@ximian.com>
2809 (MonoSymbolTable): Removed the `metadata_info' field.
2812 (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
2814 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
2815 (mono_debugger_add_builtin_types): Removed.
2816 (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
2817 (mono_debugger_create_notification_function): We now operate on a
2818 pre-allocated area; take a `gpointer' and return `void'.
2820 * mono-debug-debugger.c
2821 (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
2822 (mono_debugger_add_builtin_types): Removed.
2824 2006-02-02 Martin Baulig <martin@ximian.com>
2826 * threads.c (mono_debugger_create_all_threads): New public method.
2828 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
2830 * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
2831 breaks on several platforms.
2833 2006-02-01 Sebastien Pouliot <sebastien@ximian.com>
2835 * assembly.c: the VS.NET build doesn't supply default values for
2836 MONO_ASSEMBLIES and MONO_CFG_DIR.
2838 2006-02-01 Zoltan Varga <vargaz@gmail.com>
2840 * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
2843 * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
2845 * loader.c (method_from_memberref): Fix a warning.
2847 * metadata.c (mono_metadata_load_generic_params): Fix a warning.
2849 * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
2850 with explicit layout. Fixes #77433.
2852 2006-01-31 Zoltan Varga <vargaz@gmail.com>
2854 * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure
2855 max_interface_id is initialized before using it. Fixes #77398.
2856 (ves_icall_Type_GetInterfaces): Ditto.
2858 2006-01-30 Raja R Harinath <rharinath@novell.com>
2860 * metadata.c (mono_metadata_parse_method_signature_full): Don't
2861 allocate memory for parameter attributes when parsing memberref
2863 * loader.c (mono_loader_set_error_method_load): Don't warn.
2864 (method_from_memberref): Ensure MissingMethodException gets thrown
2865 if method is not found. Make warning more informative.
2867 2006-01-29 Raja R Harinath <harinath@gmail.com>
2870 * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
2871 return true if is byref.
2872 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2873 (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
2874 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
2876 2006-01-27 Raja R Harinath <rharinath@novell.com>
2878 Fix tests/find-method.2.il
2879 * loader.c (find_method, find_method_in_class): Remove is_inflated
2880 argument. Revert 2006-01-18 change.
2881 (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
2882 is generic, search for method in its generic definition.
2883 * class.c (mono_class_setup_vtable_general): Print generic
2884 arguments of generic types in debugging printf.
2886 2006-01-26 Zoltan Varga <vargaz@gmail.com>
2888 * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
2890 * threads.c (mono_threads_request_thread_dump): New helper function.
2892 2006-01-25 Raja R Harinath <rharinath@novell.com>
2894 * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
2896 2006-01-25 Ankit Jain <jankit@novell.com>
2898 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
2899 move definition to ..
2900 * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
2902 2006-01-25 Ankit Jain <jankit@novell.com>
2903 Raja R Harinath <rharinath@novell.com>
2905 * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
2906 * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
2909 2006-01-25 Martin Baulig <martin@ximian.com>
2911 * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
2912 `MonoDebuggerThread' into debug-debugger.c.
2914 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
2916 * profiler.c: fix printing of data.
2918 2006-01-24 Atsushi Enomoto <atsushi@ximian.com>
2920 * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
2921 invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
2923 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
2925 * object.c: fix deadlock related to string interning.
2927 2006-01-23 Martin Baulig <martin@ximian.com>
2929 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
2931 * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
2933 2006-01-23 Martin Baulig <martin@ximian.com>
2935 * mono-debug.h: Moved the prototypes of some functions which are
2936 used by the JIT here from mono-debug-debugger.h.
2938 2006-01-21 Martin Baulig <martin@ximian.com>
2940 * Makefile.am: Don't install mono-debug-debugger.h.
2942 2006-01-21 Martin Baulig <martin@ximian.com>
2944 * mono-debug-debugger.h: Enforce the private status of this header
2945 file and removed unneccessary #include's in metadata/*.c and mini/*.c.
2946 Moved some stuff from mono-debugger-jit-wrapper.h here.
2948 2006-01-20 Raja R Harinath <rharinath@novell.com>
2950 * class.c (mono_class_from_typeref): Add a sanity test to help
2951 catch lack of assembly load/search hooks.
2953 2006-01-19 Zoltan Varga <vargaz@gmail.com>
2955 * marshal.c (emit_struct_conv): Relax the fields with same offset
2956 check even more. Fixes #77230.
2958 2006-01-18 Martin Baulig <martin@ximian.com>
2960 * loader.c (find_method_in_class): Added `gboolean is_inflated'
2961 argument; if false, we compare the uninstantiated signatures.
2962 (method_from_memberref): Compare the uninstantiated signatures;
2965 2006-01-18 Robert Jordan <robertj@gmx.net>
2967 * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
2968 Clear the weak link. Fixes bug #77170.
2970 * gc.c (mono_gchandle_free):
2971 Reflect *-gc.c changes (tiny optimization).
2973 2006-01-18 Zoltan Varga <vargaz@gmail.com>
2975 * metadata.c (mono_metadata_signature_dup): Applied patch from
2976 Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
2979 2006-01-17 Zoltan Varga <vargaz@gmail.com>
2981 * marshal.c (emit_struct_conv): Allow fields with the same offset when
2982 marshalling from native to managed code. Fixes #77230.
2984 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2986 * threadpool.c: fix problem (Mac only) when more than one asynchronous
2987 connect. Fixes bug #77020.
2989 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
2991 * class.c: fixed id assignement for nested interfaces (bug #77275).
2992 Added also better info for --print-vtable debugging.
2994 2006-01-12 Martin Baulig <martin@ximian.com>
2996 * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
2997 interfaces on-the-fly; fixes #76625.
3000 (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
3001 don't need that anymore.
3003 2006-01-12 Miguel de Icaza <miguel@novell.com>
3006 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
3007 To avoid initing the nested_classes when not needed I turned the
3008 PeerCredData as a toplevel internal class, as it has to be shared
3011 Fixes the CASA issue.
3013 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
3015 * domain.c: Accessors for MonoJitInfo
3017 * profiler-private.h: Add jitinfo to the end jit hook
3019 * profiler.[ch]: Define new hooks, called after jitting which give
3020 the MonoJitInfo that was compiled
3022 2006-01-10 Martin Baulig <martin@ximian.com>
3024 * class.c (mono_class_setup_events): Add support for generic
3025 classes; fixes #76440.
3027 2006-01-06 Raja R Harinath <rharinath@novell.com>
3030 * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
3031 on passed-in method.
3033 2006-01-03 Zoltan Varga <vargaz@gmail.com>
3035 * object.c (mono_runtime_invoke_array): Add Nullable support.
3037 * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
3039 2006-01-03 Sebastien Pouliot <sebastien@ximian.com>
3041 * file-io.c: Don't consider sockets as directory and avoid an endless
3042 loop. Fix bug #76966.
3044 2006-01-03 Zoltan Varga <vargaz@gmail.com>
3046 * object.c (mono_nullable_init): New helper function.
3047 (mono_nullable_box): Ditto.
3049 * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
3051 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
3053 * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
3055 2006-01-02 Zoltan Varga <vargaz@gmail.com>
3057 * class.c (mono_class_is_assignable_from): Make T assignable to
3060 2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
3062 * appdomain.c: Bump corlib version to 46.
3063 * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
3064 serialization purpose) and changed ves_icall_System_Reflection_
3065 Assembly_get_code_base signature to accept a boolean (to escape, or
3066 not, the assembly code base).
3068 2005-12-23 Dick Porter <dick@ximian.com>
3072 * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
3073 CreateEvent icall now returns "created" boolean parameter.
3075 2005-12-22 Zoltan Varga <vargaz@gmail.com>
3077 * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
3080 * reflection.c (mono_custom_attrs_construct_by_type): Handle the case
3081 when attr_klass is an interface. Fixes #77045.
3083 2005-12-20 Zoltan Varga <vargaz@gmail.com>
3085 * marshal.c (emit_struct_conv): Fix previous patch.
3087 * marshal.c (emit_struct_conv): Add a check for fields with the same
3090 2005-12-20 Raja R Harinath <rharinath@novell.com>
3092 Fix regression in Mono.C5.
3093 * class.c (mono_class_create_generic): If 'klass' is an interface
3094 set up the interface offsets.
3095 (mono_class_is_assignable_from): Don't throw away generic arguments.
3097 2005-12-19 Raja R Harinath <rharinath@novell.com>
3099 * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
3102 2005-12-15 Raja R Harinath <rharinath@novell.com>
3104 * metadata.c (mono_metadata_parse_method_signature_full): Remove a
3106 (do_mono_metadata_parse_generic_class): Don't pass the current
3107 generic context when parsing the type being instantiated: it
3108 cannot use it, anyway.
3110 * loader.c (method_from_memberref): Don't inflate a signature if
3111 it doesn't contain any type parameters.
3113 2005-12-15 Zoltan Varga <vargaz@gmail.com>
3115 * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
3117 2005-12-14 Martin Baulig <martin@ximian.com>
3120 (mono_type_get_name_recurse): Don't return null for type
3121 parameters and open generic classes.
3122 (mono_class_setup_methods): Don't exclude generic instances.
3123 (mono_get_unique_iid): Use different IDs for different
3124 instantiations of the same generic type.
3125 (mono_class_setup_vtable): Only use setup_generic_vtable() for
3126 open generic instances; create a normal vtable for closed generic
3128 (mono_class_setup_vtable_general): We're now also called for
3129 closed generic instances.
3132 (mono_reflection_bind_generic_parameters): Correctly use
3133 mono_metadata_lookup_generic_inst() everywhere.
3135 2005-12-14 Zoltan Varga <vargaz@gmail.com>
3137 * object.c (mono_class_create_runtime_vtable): Call
3138 mono_class_setup_vtable ().
3140 * reflection.c (mono_reflection_get_dynamic_overrides): New helper
3142 (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
3145 * loader.c (mono_loader_set_error_type_load): Print the type load
3146 warnings to the console so they are more visible to the user.
3147 (mono_loader_set_error_method_load): Ditto.
3149 * reflection.c (ensure_runtime_vtable): Revert the last change as it
3152 * reflection.c (ensure_runtime_vtable): Fix build.
3154 * reflection.c (ensure_runtime_vtable): Disable an optimization which
3155 doesn't work in all cases.
3157 2005-12-13 Zoltan Varga <vargaz@gmail.com>
3159 * object.c (mono_array_new_full): Treat a single dimensional array
3160 with 0 lower bounds as an szarray. Fixes #76973.
3162 * reflection.c (custom_attr_visible): Really fix this.
3164 2005-12-12 Zoltan Varga <vargaz@gmail.com>
3166 * reflection.c (custom_attr_visible): Allow nested public attributes
3169 * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
3172 2005-12-12 Raja R Harinath <harinath@gmail.com>
3174 * class.c (set_generic_param_owner): Delete.
3175 (mono_class_create_from_typedef): Don't set ->owner field of
3176 generic parameters to "param containers" of enclosing classes.
3177 * reflection.c (mono_reflection_initialize_generic_parameter):
3180 2005-12-11 Zoltan Varga <vargaz@gmail.com>
3182 * reflection.c (custom_attr_visible): Fix build.
3184 2005-12-10 Zoltan Varga <vargaz@gmail.com>
3186 * reflection.c (mono_custom_attrs_from_builders): Avoid returning
3189 * reflection.c (reflection_methodbuilder_to_mono_method): Fix
3190 handling of null parameter defaults.
3192 2005-12-09 Raja R Harinath <rharinath@novell.com>
3194 * class.c (mono_class_from_generic_parameter): Don't set
3195 klass->generic_container.
3196 (my_mono_class_from_generic_parameter): Likewise.
3198 2005-12-07 Zoltan Varga <vargaz@gmail.com>
3200 * reflection.c (load_public_key): Fix a warning.
3201 (method_encode_code): Fix unaligned accesses.
3203 2005-12-07 Martin Baulig <martin@ximian.com>
3205 * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
3208 (write_generic_param_entry): Encode our custom attrs.
3210 * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
3212 2005-12-07 Martin Baulig <martin@ximian.com>
3214 * reflection.c (encode_new_constraint): Removed; we don't use the
3215 `NewConstraintAttribute' anymore.
3217 2005-12-06 Zoltan Varga <vargaz@gmail.com>
3219 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
3220 not fire a TypeResolve event when Assembly.GetType () is called.
3222 2005-12-05 Ben Maurer <bmaurer@ximian.com>
3224 Beginning of support for nullable types in the runtime. Parts of
3225 this patch are from Martin.
3227 * appdomain.c (MONO_CORLIB_VERSION): Bump
3229 * domain.c (mono_init_internal): get the nullable type
3231 * class.c (mono_class_is_nullable): New method
3232 (mono_class_get_nullable_param): New mehod
3233 (mono_class_create_generic): In types T? set cast_class to T
3235 * class-internals.h (MonoDefaults): new nullable default class
3236 (mono_class_get_nullable_param, mono_class_get_nullable_param):
3239 2005-12-05 Raja R Harinath <rharinath@novell.com>
3241 * metadata.c (select_container): New. Refactor code to select the
3242 appropriate GenericContainer given the type of generic parameter
3244 (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
3245 not a MonoGenericContext. Use select_container. Update parameters.
3246 (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
3248 (unwrap_arrays): Remove duplicate tests.
3249 (find_generic_param): Rename from 'has_same_context'. Now walks a
3250 generic instantiated class to find any arguments that are generic
3252 (mono_type_create_from_typespec_full): Use find_generic_param to
3253 avoid evicting some generic instantiations from the typespec
3256 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
3258 * reflection.c: fixed writing of doubles on ARM FPA.
3260 2005-12-02 Robert Jordan <robertj@gmx.net>
3262 * icall.c: Fixed EventInfo.ReflectedType (#76829).
3264 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3266 * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
3267 least on SUSE 10 they are not the same (on debian, they are just the
3270 2005-12-01 Raja R Harinath <rharinath@novell.com>
3272 * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
3273 DeclaringType for VARs and MVARs.
3274 * class.c (set_generic_param_owner): Fix initialization of owner
3277 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
3279 * icall.c: fixed Enum.ToObject() to correctly convert the values.
3281 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3283 * threadpool.c: workaround for a bug that shows up on the Mac:
3284 select()+connect() on a blocking socket is not like it should
3285 be, so we proceed to connect() in that case, wasting the I/O
3286 threadpool thread until connect succeedes. Fixes bug #75436.
3288 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3290 * threadpool.c: fix typo when setting file descriptor states.
3292 2005-11-28 Raja R Harinath <rharinath@novell.com>
3294 * class-internals.h (MonoGenericContainer.is_signature): Remove.
3295 * metadata.c (mono_metadata_parse_method_signature_full): Don't
3296 create a temporary signature container.
3297 (mono_metadata_parse_generic_param): Update to changes.
3298 (mono_type_create_from_typespec_full): Update to changes.
3299 * loader.c (method_from_memberref): Don't use a
3300 MonoGenericContainer while parsing a memberref signature.
3301 (method_from_methodspec): Remove dead-store of the 'container'
3302 variable. It's overwritten before use.
3304 * metadata.c (mono_type_create_from_typespec_full): Make debugging
3306 (mono_metadata_parse_generic_param): Likewise.
3307 * loader.c (find_method_in_class): Does not need a
3308 MonoGenericContainer. Use 'mono_method_signature' rather than
3309 'mono_method_signature_full'.
3310 (find_method, mono_get_method_constrained, method_from_memberref):
3313 * metadata.c (mono_type_create_from_typespec_full): Ensure that
3314 owner-less generic-parameters are never evicted from the typespec
3317 * loader.c (method_from_memberref): Don't use the current context
3318 when parsing signatures.
3319 (method_from_methodspec, mono_get_method_from_token): Update to changes.
3321 * metadata.c (do_mono_metadata_parse_generic_class): Avoid
3322 side-effects in g_assert.
3323 * loader.c (mono_get_method_from_token): Resolve klass earlier so
3324 that we don't potentially lose information.
3326 2005-11-26 Dick Porter <dick@ximian.com>
3329 * threads.c: icalls to implement basic (ie, not named)
3330 System.Threading.Semaphore.
3332 2005-11-24 Dick Porter <dick@ximian.com>
3335 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3336 Use GetProcessId() if it's available.
3338 2005-11-23 Zoltan Varga <vargaz@gmail.com>
3340 * icall.c threads-types.h threads.c: Add Exchange<T> icall.
3342 2005-11-23 Raja R Harinath <rharinath@novell.com>
3343 Ankit Jain <jankit@novell.com>
3345 * loader.c (mono_get_method_from_token): Initialize 'method' field
3346 of all generic parameters before parsing the signature. Remove
3347 code that "fixed"-up MVAR references.
3349 2005-11-23 Ankit Jain <jankit@novell.com>
3351 * metadata.c (mono_metadata_has_generic_params):
3352 (mono_metadata_load_generic_param_constraints):
3353 (mono_metadata_load_generic_params): Move duplicate code ...
3354 (mono_metadata_get_generic_param_row): ... here. Returns the
3355 first row-id in GenericParam table for a given owner (token).
3356 * metadata-internals.h (mono_metadata_get_generic_param_row): Add
3359 2005-11-23 Raja R Harinath <rharinath@novell.com>
3360 Ankit Jain <jankit@novell.com>
3362 * metadata.c (mono_metadata_class_equal): Pass signature_only when
3364 * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at
3365 type->data.generic_param only if the type is an MVAR.
3366 (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
3367 leak owner-less VARs and MVARs into managed space.
3369 2005-11-21 Martin Baulig <martin@ximian.com>
3372 (MonoMethod): Moved the `generic_container' here from
3373 `MonoMethodNormal' since we now also need it for
3374 `MonoMethodPInvoke';
3375 (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
3376 (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
3377 an union containing both `MonoMethodNormal' and
3378 `MonoMethodPInvoke'.
3381 (mono_get_method_from_token): Allow implementing generic methods
3385 (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
3388 2005-11-17 Dick Porter <dick@ximian.com>
3392 * process.c: Split the Process Start_internal icall into
3393 ShellExecuteEx_internal and CreateProcess_internal, which are
3394 called depending on whether UseShellExecute is true. Fixes bug
3397 * appdomain.c (MONO_CORLIB_VERSION): Incremented
3399 2005-11-17 Zoltan Varga <vargaz@gmail.com>
3401 * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
3402 'msize' parameters, use the information in 'mspec' instead.
3403 (emit_object_to_ptr_conv): Ditto.
3405 * marshal.c (emit_struct_conv): Handle explicit layout structs with
3406 fields out of order. Fixes #76733.
3408 2005-11-17 Ankit Jain <jankit@novell.com>
3410 * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
3412 2005-11-16 Atsushi Enomoto <atsushi@ximian.com>
3414 * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
3417 2005-11-16 Zoltan Varga <vargaz@gmail.com>
3419 * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
3420 for types with non-auto layout. Fixes #76717.
3422 2005-11-16 Ankit Jain <jankit@novell.com>
3424 * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
3425 * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam
3426 if generic_context is null.
3427 (mono_metadata_generic_param_equal): param->owner can be null.
3428 (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
3431 2005-11-16 Zoltan Varga <vargaz@gmail.com>
3433 * reflection.c (create_dynamic_mono_image): Set md_version_minor to
3436 2005-11-15 Martin Baulig <martin@ximian.com>
3438 * object.c (set_value): Use mono_class_from_mono_type() instead of
3439 the hack for generic instances; fixes #76136.
3441 2005-11-15 Zoltan Varga <vargaz@gmail.com>
3443 * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
3446 * image.c (load_metadata_ptrs): Initialize the new fields.
3448 * reflection.c (create_dynamic_mono_image): Ditto.
3450 * reflection.c (build_compressed_metadata): Use the new fields.
3452 * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
3455 * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
3458 2005-11-15 Ankit Jain <jankit@novell.com>
3459 Raja R Harinath <harinath@gmail.com>
3461 * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
3462 * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
3463 new per-generic_container cache if the cached MonoType's context matches
3464 the current context.
3465 (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
3466 to the expected context.
3467 (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
3469 2005-11-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3471 * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
3472 we changed the signature of an icall.
3473 * icall.c: Modify to mono_double_ParseImpl return true/false
3474 depending on the success, instead of throwing the exception. This will
3475 help us in Double.TryParse methods.
3477 2005-11-14 Zoltan Varga <vargaz@gmail.com>
3479 * marshal.c (emit_marshal_object): Throw an exception when
3480 marshalling 'object' instead of crashing. Fixes #76696.
3482 2005-11-11 Zoltan Varga <vargaz@gmail.com>
3484 * class-internals.h: Add prototype for mono_type_get_full_name ().
3486 2005-11-11 Dick Porter <dick@ximian.com>
3488 * threads.c (mono_thread_manage): Make sure the main thread has
3489 abandoned all its mutexes when cleaning up. Fixes bug 74680.
3491 2005-11-11 Zoltan Varga <vargaz@gmail.com>
3493 * loader.c (mono_loader_set_error_type_load): Log a warning to the
3494 console about the missing type.
3495 (mono_loader_set_error_method_load): Ditto.
3497 2005-11-09 Miguel de Icaza <miguel@novell.com>
3499 * mono-config.c (mono_get_config_dir): Set the system defaults if
3502 * assembly.c (mono_set_dirs): New API entry point to set the
3503 assembly and the config directory in one call
3505 2005-11-09 Zoltan Varga <vargaz@gmail.com>
3507 * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
3508 the ftnptr was created from a delegate in a domain other than the
3509 current domain. Fixes #75377.
3511 * exception.h exception.c: Add mono_get_exception_not_supported ().
3513 2005-11-08 Martin Baulig <martin@ximian.com>
3515 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
3517 2005-11-07 Sebastien Pouliot <sebastien@ximian.com>
3519 * security-manager.h: Added definitions to deal with strongname key
3520 pairs bigger (and smaller) than 1024 bits.
3521 * reflection.c: Remove hardcoded strongname size (128 bytes) and
3522 adjust wrt the public key length being used.
3524 2005-11-03 Atsushi Enomoto <atsushi@ximian.com>
3526 * marshal.c, icall.c : reverted sig->pinvoke changes which broke
3527 Windows build (r51396-51397).
3529 2005-11-03 Martin Baulig <martin@ximian.com>
3531 * class.c (mono_class_setup_vtable_general): Also add generic
3532 methods to the vtable; fixes #76581.
3534 2005-11-01 Miguel de Icaza <miguel@novell.com>
3536 * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
3537 sure that we lookup GetString method from the System.Text.Encoding
3538 class, not the derived class or we get an empty method.
3542 2005-10-25 Miguel de Icaza <miguel@novell.com>
3544 * assembly.c (mono_assemblies_init): Do not set the Mono root dir
3545 if it has been previously set (embedders).
3547 Make mono_set_rootdir available also on Unix.
3549 005-10-24 Robert Jordan <robertj@gmx.net>
3551 * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
3553 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
3555 * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
3556 only calls which are made to native code use this flag.
3558 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
3560 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
3562 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
3563 Add support for FieldBuilders.
3565 2005-10-29 Martin Baulig <martin@ximian.com>
3568 (mono_debug_using_mono_debugger): New public method; returns
3569 whether we're running inside the debugger.
3571 2005-10-27 Zoltan Varga <vargaz@gmail.com>
3573 * reflection.c (mono_reflection_get_custom_attrs_info): Add support
3574 for Method/Constructor/FieldBuilders.
3576 2005-10-26 Zoltan Varga <vargaz@gmail.com>
3578 * reflection.c (module_add_cattrs): Save custom attributes for global methods
3581 2005-10-26 Martin Baulig <martin@ximian.com>
3583 * mono-debug-debugger.c
3584 (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
3586 2005-10-24 Raja R Harinath <harinath@gmail.com>
3588 * icall.c (base64_to_byte_array): Don't pass an out-of-range
3591 2005-10-21 Zoltan Varga <vargaz@gmail.com>
3593 * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
3594 when passing valuetypes byref. Fixes #76502.
3596 2005-10-19 Jackson Harper <jackson@ximian.com>
3598 * profiler.c: Don't put a . in front of types that are not in a
3601 2005-10-18 Zoltan Varga <vargaz@gmail.com>
3603 * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
3605 2005-10-15 Zoltan Varga <vargaz@freemail.hu>
3607 * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
3609 (mono_marshal_get_ldflda_wrapper): Fix a warning.
3611 2005-10-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3613 * assembly.c metadata-internals.h icall.c: Define an additional
3614 parameter for mono_assembly_name_parse_full, so we can avoid creating
3615 S.R.AssemblyName.Version when no version info wasn't passed.
3617 2005-10-09 Miguel de Icaza <miguel@novell.com>
3619 * class.c (mono_type_get_full_name): Reimplement method that was
3622 * image.c: Some docs
3624 2005-10-10 Zoltan Varga <vargaz@gmail.com>
3626 * profiler.c (output_newobj_profile): Fix printing of Total memory
3629 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
3631 * profiler.c: Add support for allocations > 2GB. Fixes #74886.
3633 2005-10-08 Gert Driesen <drieseng@users.sourceforge.net>
3635 * threads.c: remove debug output.
3637 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
3639 * threads.c (mono_thread_manage): Fix crashes if more than 64
3640 threads need to be aborted. Hopefully fixes #75899.
3642 * assembly.c (mono_stringify_assembly_name): New helper function.
3644 * class.c: Use mono_stringify_assembly_name instead of the similar
3647 * assembly.h assembly.c: Add support for calling a postload search
3648 hook if an assembly cannot be loaded.
3650 * appdomain.c: Register new search hooks which call the AssemblyResolve
3651 events in AppDomain. Fixes #75231
3653 2005-10-07 Martin Baulig <martin@ximian.com>
3655 * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
3656 methods without debug info.
3658 2005-10-07 Zoltan Varga <vargaz@gmail.com>
3660 * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
3663 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3665 * file-io.c: now that we return symlinks, use lstat and, when the file
3666 is a symbolic link, stat, to get the file attributes. Also avoid the
3667 conversion to/from utf16/external.
3669 2005-10-06 Zoltan Varga <vargaz@gmail.com>
3671 * class.c (mono_class_layout_fields): Compute klass->has_references
3672 correctly if an embedded valuetype is not yet initialized. Fixes
3675 2005-10-04 Martin Baulig <martin@ximian.com>
3678 (mono_metadata_load_generic_param_constraints): New public
3679 function; splitted the constraints loading out from
3680 mono_metadata_load_generic_params().
3682 * class.c (mono_class_create_from_typedef): Call
3683 mono_metadata_load_generic_param_constraints() after setting up
3684 the type and creating our parent; fixes #75329.
3686 2005-10-04 Martin Baulig <martin@ximian.com>
3688 * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
3689 non-dynamic parent classes.
3691 2005-10-04 Atsushi Enomoto <atsushi@ximian.com>
3693 * file-io.c : win32 build fix (ETXTBSY seems not found).
3695 2005-10-04 Martin Baulig <martin@ximian.com>
3698 (mono_image_get_methodspec_token): Make the cache actually work;
3701 2005-10-04 Martin Baulig <martin@ximian.com>
3703 * class.c (mono_class_name_from_token): Removed the unneccessary
3704 `MonoGenericContext *' argument.
3706 2005-10-04 Martin Baulig <martin@ximian.com>
3709 (method_from_methodspec): Make the caching work again; fixes the
3710 performance regression from #76262.
3712 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3716 * icall.c: replace FindFirst/FindNext/FindClose calls with a new
3717 GetFileSystemEntries that performs the same work but without going
3718 into io-layer, locking, etc.
3720 2005-09-30 Zoltan Varga <vargaz@gmail.com>
3722 * threads.c (ves_icall_System_Threading_Thread_Abort): Handle
3723 ThreadState_Stopped as well. Fixes #76047.
3725 2005-09-29 Martin Baulig <martin@ximian.com>
3728 (inflate_generic_context): If the new context has a `gmethod', set
3729 its `container' that that gmethod's `container'.
3732 (mono_metadata_parse_generic_param): Simplify things;
3733 `generic_container = generic_context->container;' is just fine.
3735 * loader.c (method_from_methodspec): Code cleanups.
3737 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
3739 * decimal.c: fix warning (and let gcc generate correct
3740 code on ARM with optimizations).
3742 2005-09-28 Martin Baulig <martin@ximian.com>
3745 (method_from_memberref): Added `MonoGenericContext *class_context'
3746 argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
3747 (method_from_methodspec): If we're a memberref, use the enclosing
3748 context when parsing its parent. Fixes #76262; see gtest-206.cs.
3750 2005-09-28 Martin Baulig <martin@ximian.com>
3752 * object.c (mono_runtime_invoke_array): Added support for
3753 MONO_TYPE_GENERICINST; fixes #75917.
3755 2005-09-27 Martin Baulig <martin@ximian.com>
3757 * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
3758 `k->byval_arg.type' to determine the actual type.
3760 * loader.c (method_from_methodspec): Removed some hacks.
3762 2005-09-27 Ben Maurer <bmaurer@ximian.com>
3764 * class-internals.h (mono_field_is_deleted): Do the test for
3765 rtspecialname before we check the actual name of the field. This
3766 prevents us from dereferencing a pointer into the string table,
3767 saving us from accessing a few pages
3769 * *.c: Replace the use of {Enter,Leave}CriticalSection with
3770 macros. This will allow a deadlock debugger to easily be plugged
3773 2005-09-27 Martin Baulig <martin@ximian.com>
3775 * loader.c (method_from_methodspec): Create a "signature"
3776 MonoGenericContainer and use mono_get_method_full(). Fixes #75584.
3778 2005-09-27 Martin Baulig <martin@ximian.com>
3781 (inflate_generic_class): Correctly set the new context's
3785 (find_method, find_method_in_class): Take a `MonoGenericContainer *'
3786 instead of a `MonoGenericContext *'.
3787 (mono_method_signature_full): Take a `MonoGenericContainer *'
3788 instead of a `MonoGenericContext *'.
3791 (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
3792 instead of a `MonoGenericContext *'.
3793 (mono_metadata_parse_method_signature_full): Likewise.
3795 2005-09-26 Martin Baulig <martin@ximian.com>
3798 (mono_class_from_generic_parameter): Set `klass->generic_container'
3799 (mono_class_from_generic_parameter): Likewise.
3800 (mono_bounded_array_class_get): We inherit the generic container
3801 from the element class.
3804 (find_method, find_method_in_class): Take a `MonoGenericContext *'
3805 argument rather than computing it here.
3806 (method_from_memberref): Correctly set the generic context before
3807 parsing the signature. Fixes #75681.
3809 2005-09-26 Zoltan Varga <vargaz@gmail.com>
3811 * object.c (mono_class_has_special_static_fields): Fix warnings.
3813 2005-09-26 Carlos Alberto Cortez <calberto.cortez@gmail.com>
3815 * assembly.c: Add parse_public_key function, to
3816 par the public keys. Also added mono_assembly_name_parse_full,
3817 to define it the parsed key should be freed or not.
3818 * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
3819 to parse a long format assembly name.
3820 * metadata-internals.h: Keep mono_assembly_name_parse_full as
3821 private, since calling it to preserve the key requires
3822 freeing it manually.
3824 2005-09-26 Atsushi Enomoto <atsushi@ximian.com>
3826 * locales.c : removed HAVE_ICU part.
3828 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
3830 * object.c (mono_class_create_runtime_vtable): Avoid calling
3831 field_is_special_static if the klass has no special static fields.
3833 * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
3834 (MonoCachedClassInfo): Likewise.
3836 * object.c (mono_class_has_special_static_fields): New helper function.
3838 2005-09-23 Zoltan Varga <vargaz@gmail.com>
3840 * class.c (mono_class_create_from_typedef): Don't call
3841 interfaces_from_typedef_full for enums.
3842 (mono_class_create_from_typedef): Compute the base types of enums directly
3843 without calling mono_class_setup_fields ().
3844 (mono_class_find_enum_basetype): New helper function.
3846 * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
3847 one place inside the string heap.
3849 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
3851 * class.c: locking fixes, code cleanups, some docs added.
3852 Allocate some data structures in the image mempool.
3854 2005-09-23 Zoltan Varga <vargaz@gmail.com>
3856 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
3859 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
3861 * class-internals.h, class.c, reflection.c: reduce memory taken by
3864 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
3866 * metadata.c, metadata.h, loader.h: documentation updates, code and
3869 2005-09-23 Zoltan Varga <vargaz@gmail.com>
3871 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
3874 * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
3875 page faults caused by the runtime while reading metadata.
3877 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3879 * socket-io.c: the field names were changed 3 months ago and no one
3880 realized until bug #76077 got filed!
3882 2005-09-20 Martin Baulig <martin@ximian.com>
3884 * icall.c (assembly_icalls): Removed some unused debugger icalls.
3886 2005-09-20 Martin Baulig <martin@ximian.com>
3888 * mono-debug.c (mono_debug_add_type): Ignore array types and don't
3889 write the rank into the class entry.
3891 2005-09-20 Martin Baulig <martin@ximian.com>
3893 * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
3895 2005-09-19 Zoltan Varga <vargaz@gmail.com>
3897 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3899 * icall.c (custom_attrs_defined_internal): New icall.
3901 * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
3903 (mono_custom_attrs_construct_by_type): New helper function.
3905 2005-09-17 Zoltan Varga <vargaz@freemail.hu>
3907 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
3908 terminate the resulting string. Fixes #76123.
3910 2005-09-16 Martin Baulig <martin@ximian.com>
3913 (mono_debug_add_method): Ignore inflated methods for the moment.
3915 2005-09-14 Martin Baulig <martin@ximian.com>
3917 * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
3919 2005-09-13 Zoltan Varga <vargaz@gmail.com>
3921 * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
3922 return a success/failure indication.
3923 (mono_metadata_interfaces_from_typedef_full): Ditto.
3924 (get_constraints): Ditto.
3926 2005-09-12 Zoltan Varga <vargaz@gmail.com>
3928 * marshal.c (emit_marshal_array): Fix handling of null arrays.
3930 * marshal.c (emit_marshal_array): Add support for returning string
3931 arrays from delegates. Fixes #76063.
3933 * marshal.c: Use the emit_ldloc/stloc macros where possible.
3935 2005-09-11 Zoltan Varga <vargaz@gmail.com>
3937 * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
3940 2005-09-09 Zoltan Varga <vargaz@gmail.com>
3942 * reflection.c icall.c: Fix after mono_get_exception_type_load
3945 * assembly.c (mono_assembly_get_assemblyref): New helper function.
3946 (mono_assembly_load_reference): Use the new helper.
3948 * class-internals.h (MonoLoaderError): New structure containing
3949 information about type loading errors.
3951 * class-internals.h loader.c: Add APIs to store per-thread loader
3954 * loader.c class.c: Set the loader error if needed.
3956 * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
3958 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
3960 * decimal.c: fixed to handle the broken ARM fp format.
3962 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
3964 * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
3967 2005-09-06 Martin Baulig <martin@ximian.com>
3969 * domain.c (supported_runtimes): Added v2.0.50727.
3971 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
3973 * culture-info.h: reduce the size of some structures.
3975 2005-09-05 Martin Baulig <martin@ximian.com>
3977 Reflect latest API changes in the August CTP.
3980 ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
3981 ("MonoType.HasGenericArguments"): Removed.
3982 ("MonoMethod.BindGenericParameters"): Renamed to
3983 "MakeGenericMethod".
3984 ("MethodBuilder.BindGenericParameters"): Renamed to
3985 "MakeGenericMethod".
3987 2005-09-05 Martin Baulig <martin@ximian.com>
3989 * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
3991 2005-09-05 Martin Baulig <martin@ximian.com>
3993 Applying a patch from Michal Moskal <malekith@nemerle.org>.
3995 * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
3996 generic_container is non-NULL.
3998 2005-09-05 Martin Baulig <martin@ximian.com>
4000 Applying a patch from Michal Moskal <malekith@nemerle.org>.
4002 * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
4004 2005-08-29 Michal Moskal <malekith@nemerle.org>
4006 * reflection.c (encode_locals,
4007 mono_reflection_sighelper_get_signature_local): Increase buffer sizes
4008 for large generic types.
4010 2005-09-05 Martin Baulig <martin@ximian.com>
4012 Applying a patch from Michal Moskal <malekith@nemerle.org>.
4014 * class.c (mono_dup_array_type): New public method.
4015 (mono_metadata_signature_deep_dup): New public method.
4016 (dup_type): Correctly duplicate array and function types.
4018 2005-09-05 Martin Baulig <martin@ximian.com>
4020 Applying a patch from Michal Moskal <malekith@nemerle.org>.
4022 * reflection.c (get_default_param_value_blobs): Handle generic types
4023 and generic methods.
4025 2005-09-02 Sebastien Pouliot <sebastien@ximian.com>
4027 * class.c: Fixed error reporting (method/class were inversed) for
4028 inheritance demands.
4029 * security-manager.c|h: Added the AppDomain when calling the managed
4030 System.Security.SecurityManager.InheritanceDemand method.
4032 2005-09-01 Raja R Harinath <rharinath@novell.com>
4034 * reflection.c (encode_marshal_blob): 'marshaltype' and
4035 'marshaltyperef' are alternate sources for the custom marshaler
4038 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
4040 * class.c: fix creation of array classes with rank == 1
4041 (patch by Ankit Jain <jankit@novell.com>).
4043 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
4045 * object.c: fix check for creating the bound data for arrays vs
4048 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4050 * object.c: configuration file name is now based on the executable name,
4051 not the image name. Fixes bug #75931.
4053 2005-08-29 Zoltan Varga <vargaz@gmail.com>
4055 * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
4056 flag using LDIND_U4 since it leads to smaller and faster code on ia64.
4058 2005-08-25 Zoltan Varga <vargaz@gmail.com>
4060 * rand.c: Use wincrypt.h instead of WinCrypt.h.
4062 2005-08-24 Ankit Jain <jankit@novell.com>
4063 Raja R Harinath <rharinath@novell.com>
4065 * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
4066 called by it recursively.
4067 (mono_class_init): Remove special case in pending_init handling, since it's
4068 superseded by the fix to mono_class_from_typeref.
4070 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
4072 * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the
4073 BROKEN_THREAD_START stuff.
4075 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
4077 * class-internals.h object.c: Add a new kind of trampoline called a delegate
4080 * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
4082 * object.c (mono_delegate_ctor): Replace the original function address with
4083 a delegate trampoline.
4085 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
4087 * icall.c: add boolean argument to base64_to_byte_array and
4088 InternalFromBase64String to control whether a whitespace-only string
4089 is allowed (or should casue a FormatException to be thrown). We need
4090 this as the behavior has changed between MS.NET 1.x and 2.0, and we
4091 to match the MS behaviour in both profiles.
4092 * appdomain.c: Bump corlib version.
4094 2005-08-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4096 This patch implements a big portion of publisher policy
4097 support, used to bind assembly versions and redirect
4098 one assembly from version A to version B.
4101 New GSList loaded_assembly_bindings, for storing the cached
4103 (assembly_binding_maps_name): New static function for checking if a
4104 assembly binding information maps an assembly name.
4105 (mono_assembly_binding_info_free): New function for freeing
4106 assembly binding information resources.
4107 (get_publisher_policy_info): New static function for retrieving
4108 assembly binding information from a MonoImage.
4109 (compare_versions): New static function for comparing an assembly
4110 binding information data and the version of an assembly name.
4111 (check_policy_versions): New static function for checking if an
4112 assembly binding info mapping an assembly name is valid for it.
4113 (mono_assembly_load_publisher_policy): New static function for
4114 loading the 'policy.major.minor.MyAssembly' image for an assembly
4115 with an assembly name 'aname'.
4116 (mono_assembly_bind_version): New static function for updating
4117 assembly redirection.
4118 (mono_assembly_apply_binding): New static function for applying
4120 (search_binding_loaded): New static function for searching
4121 loaded assembly binding infos in the cache domain.
4122 (mono_assembly_load_full): Don't apply assembly binding for
4123 reflection only assemblies.
4125 * metadata-internals.h: Add MonoAssemblyBindingInfo,
4126 which contains information about assembly binding. Also
4127 declare signature for mono_config_parse_publisher_policy ()
4128 function, used to retrieve pub policy info.
4131 (publisher_policy_start): New static function used to parse publisher
4132 policy config files.
4133 (publisher_policy_parser): New static MonoParseHandler containing
4134 the functions used when parsing config files.
4135 (mono_config_parse_publisher_policy): New function for parsing
4136 publisher policy files.
4138 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
4140 * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
4142 * marshal.c (mono_delegate_free_ftnptr): Ditto.
4144 * object.c (mono_get_addr_from_ftnptr): New helper function.
4146 * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
4148 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4150 2005-08-19 Dick Porter <dick@ximian.com>
4152 * threads.c, threads.h, appdomain.c, appdomain.h,
4153 profiler-private.h, monitor.c, object.c, object-internals.h,
4154 profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
4155 store the thread ID, so it can hold a 64 bit value if needed.
4157 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
4159 * reflection.c (mono_reflection_create_dynamic_method): Store the
4160 handle class into the method references as well so ldtoken works in
4163 * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
4166 2005-08-19 Ankit Jain <jankit@novell.com>
4169 * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature
4170 here rather than using the method signature of a arbitrary function
4171 named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with
4173 Hack done with Harinath.
4175 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4177 * threadpool.c: disable printing stack traces when we get a exception
4178 in a threadpool thread. I need to do more testing to figure out which
4179 cases actually print this. Fixes bug #75828.
4181 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4183 * icall.c: there might be ignored whitespace after the last '='. This
4184 fixes length computation and bug #75840.
4186 2005-08-18 Zoltan Varga <vargaz@freemail.hu>
4188 * assembly.c (mono_assembly_load_full): Consider .exe extension as
4191 * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
4194 * reflection.c (create_custom_attr_data): Ditto.
4196 2005-08-17 Atsushi Enomoto <atsushi@ximian.com>
4198 * locales.c, culture-info.h : removed RegionLCIDMap.
4199 * culture-info-tables.h : regenerated.
4201 2005-08-16 Martin Baulig <martin@ximian.com>
4203 * class.c (mono_type_get_name_recurse): Small fix.
4205 2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
4207 * locales.c : indentation fixie.
4209 2005-08-15 Atsushi Enomoto <atsushi@ximian.com>
4211 * object-internals.h,
4215 icall.c : added RegionInfo table support.
4216 * culture-info-table.h : regenerated for region support.
4218 2005-08-14 Kamil Skalski <nazgul@nemerle.org>
4220 * reflection.c (resolve_object): handle all kinds of MonoMethod
4221 including generic ones
4223 2005-08-12 Ankit Jain <jankit@novell.com>
4225 * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
4226 (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY.
4228 2005-09-12 Lluis Sanchez <lluis@ximian.com>
4230 * process.c: Don't close a thread handle when it's NULL. This is a
4231 workaround for bug #75733.
4233 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
4235 * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
4237 2005-08-10 Zoltan Varga <vargaz@freemail.hu>
4239 * icall.c (ves_icall_Type_get_IsGenericType): New icall.
4241 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4243 * threadpool.c: if a work item in the thread pool has a callback that
4244 catches a exception, don't propagate it after invoking the callback.
4247 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
4249 * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
4251 * class-internals.h (MonoCachedClassInfo): Add some new fields.
4253 * class.c (mono_class_init): Load field info lazily in the AOT case.
4255 * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
4257 2005-08-03 Ankit Jain <jankit@novell.com>
4260 * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
4261 PInvoke calling convention is 0.
4263 2005-08-02 Zoltan Varga <vargaz@freemail.hu>
4265 * socket-io.c (convert_sockopt_level_and_name): Applied patch from
4266 Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
4268 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
4270 * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
4271 to handle threads not started by the GC (patch by Michael Meeks
4272 <michael.meeks@novell.com>).
4274 2005-07-31 Kamil Skalski <nazgul@omega.pl>
4276 * reflection.c: Make buffer used in emitting types larger for some
4277 big generic types (patch by Michal Moskal).
4279 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
4281 * mono-debug.c: Fix some (not all) alignment problems.
4283 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4285 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
4286 Invoke mono_image_load_from_data_full passing the refonly
4290 (mono_assembly_open_from_bundle): Add the refonly argument,
4291 in order to pass it to other methods it calls to.
4292 (do_mono_assembly_open): Add the refonly argument, in order
4293 to pass it to other methods it calls to.
4294 (mono_assembly_open_full): Invoke do_mono_assembly_open passing
4295 the refonly parameter to it.
4297 * image.c: Add loaded_images_refonly_hash and
4298 loaded_images_refonly_guid_hash to cache the reflection
4300 (mono_images_init): Initialize the hash tables used for
4301 caching the reflection only images.
4302 (load_modules): Invoke mono_image_open_full passing the refonly
4303 parameter to load the modules the correct way.
4304 (build_guid_table): Add the refonly argument, to re-build the
4306 (do_mono_image_open): Added the refonly argument, in order to
4307 define it for the loaded image.
4308 (mono_image_loaded_full): New function, which receives an
4309 additional parameter to look for the image in the refonly or
4310 non-refonly section.
4311 (mono_image_loaded): Updated, using mono_image_loaded_full.
4312 (mono_image_loaded_by_guid_full): The same case that happens
4313 with mono_image_loaded_full.
4314 (mono_image_loaded_by_guid): Likewise.
4315 (register_image): Use the ref_only variable inside MonoImage
4316 to decide in which hash table store the current image.
4317 (mono_image_open_from_data_full): Rename
4318 mono_image_open_from_data to mono_image_open_from_data_full,
4319 adding the refonly argument, to define the ref_only variable
4321 (mono_image_open_from_data): Return
4322 mono_image_open_from_data_full.
4323 (mono_image_open_full): Rename mono_image_open to
4324 mono_image_open_full, receiving the new refonly argument,
4325 to pass it to inner methods.
4326 (mono_pe_file_open): Update this function, to open
4327 a MonoImage as a non-refonly image.
4328 (mono_image_close): Use the refonly variable inside
4329 MonoImage to remove the image from the correct caches.
4331 * image.h: Add the signatures of mono_image_open_full,
4332 mono_image_open_from_data_full, mono_image_loaded_full,
4333 mono_image_loaded_by_guid_full.
4335 * metadata-internals.h: Add the ref_only field to
4338 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4340 * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
4341 Fix the last behavior, which used to load the assemblies and
4342 extract MonoReflectionAssemblyName information, instead of
4343 extract it from the metadata tables. Needed for Reflection
4346 2005-07-29 Martin Baulig <martin@ximian.com>
4348 * mono-debug-debugger.c
4349 (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
4353 (mono_debug_address_from_il_offset): Check whether we have
4354 debugging support before attempting to take the lock.
4355 (mono_debug_source_location_from_address): Likewise.
4356 (mono_debug_source_location_from_il_offset): Likewise.
4357 (mono_debug_il_offset_from_address): Likewise.
4358 (mono_debug_address_from_il_offset): Likewise.
4360 2005-07-29 Zoltan Varga <vargaz@freemail.hu>
4362 * class.c (mono_class_from_name_case): Add support for dynamic images.
4365 * object.c (mono_class_compute_gc_descriptor): Add a workaround
4368 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
4370 * reflection.c (mono_method_get_object): Fix warning.
4372 2005-07-28 Martin Baulig <martin@ximian.com>
4375 (mono_debug_add_wrapper): Also write the wrapper type.
4377 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
4379 * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
4381 * class.c (mono_class_init): Avoid reading nested classes if the AOT
4382 data indicates the class has none.
4384 2005-07-26 Ben Maurer <bmaurer@ximian.com>
4386 * mono-debug.c, debug-mono-symfile.c: Replace the use of the
4387 loader lock with the debugger lock. Prevents deadlocks for beagle.
4389 Beagle can now run on an smp box for a weekend without any
4392 2005-07-26 Zoltan Varga <vargaz@freemail.hu>
4394 * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
4395 in a module. Fixes #75629.
4397 2005-07-26 Martin Baulig <martin@ximian.com>
4399 * mono-debug.c (mono_debug_add_wrapper): New static method.
4400 (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
4401 interncall or a wrapper.
4403 * mono-debug.h (MonoDebugWrapperData): New public typedef.
4404 (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
4405 (MONO_DEBUGGER_VERSION): Bump to 51.
4407 * mono-debug-debugger.c
4408 (mono_debugger_add_type): Removed this empty function.
4409 (mono_debugger_add_method): Likewise.
4411 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
4413 * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable ()
4414 before accessing method->slot.
4416 2005-07-21 Jb Evain <jbevain@gmail.com>
4418 * reflection.c (method_encode_clauses/class): Handle filters clauses.
4421 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
4423 * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
4426 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
4428 * image.h image.c: Add mono_image_get_guid () API function.
4430 2005-07-19 Ben Maurer <bmaurer@ximian.com>
4432 There were issues when multiple threads tried to load
4433 assemblies. A deadlock was created between assemblies_mutex and
4434 mono_domain_assemblies_lock. This fixes the issue by making the
4435 assembly ref counting be lock free. See bug 75586.
4437 * image.c (mono_image_close): The add ref function here was using
4438 Interlocked operations while the unref was using a mutex and a
4439 --. I don't think this was ever a bug that would be exposed in a
4440 non-pendantic way (ie, by an embedder doing a ref on one thread
4441 and an unref on another), but for the sake of correctness, this is
4444 * assembly.c (mono_assembly_addref): Use InterlockedIncrement
4445 (mono_assembly_load_reference): Call mono_assembly_addref rather
4446 than touching the refcount ourselves.
4447 (mono_assembly_close): Use InterlockedDecrement to unref the
4448 assembly. Don't acquire the lock unless it is actually needed.
4450 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
4452 * class.c (mono_class_layout_fields): Fix calculation of has_references
4455 2005-07-12 Martin Baulig <martin@ximian.com>
4457 Applying a patch from Michal Moskal <malekith@nemerle.org>.
4460 (mono_type_hash): Provide better hashing for generic instances.
4461 (mono_generic_inst_hash): Improve hashing.
4462 (mono_generic_class_hash): Likewise.
4464 * reflection.c (mymono_metadata_type_hash): Improve hashing for
4467 2005-07-12 Martin Baulig <martin@ximian.com>
4469 * reflection.c (mono_reflection_create_runtime_class): Remove the
4470 hack for generic type definitions and non-`Run' assemblies.
4471 (mono_reflection_bind_generic_parameters): Also use
4472 `klass->wastypebuilder' to check for TypeBuilders.
4474 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
4476 * class.c (mono_class_layout_fields): Fix calculation of has_references
4479 * class.c (inflate_generic_class): Fix a leak.
4480 (mono_class_init): Fix calculation of gchimpl and has_finalize fields
4483 2005-07-11 Martin Baulig <martin@ximian.com>
4485 * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
4488 2005-07-11 Martin Baulig <martin@ximian.com>
4490 * loader.c (find_method): Also lookup in
4491 `mono_defaults.object_class' if we're an interfaces; fixes #75460.
4493 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
4495 * appdomain.c (mono_domain_unload): Don't free the error message
4496 before passing it to mono_get_exception_...
4498 * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
4500 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
4502 * threads.c: try to better guess an available RT signal (bug #75387).
4504 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
4506 * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
4509 2005-07-07 Martin Baulig <martin@ximian.com>
4511 * class.c (mono_type_get_name_full): Return NULL for
4512 MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
4515 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
4517 * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
4518 exit the appdomain as well being aborted.
4520 * threadpool.c: Create all threadpool threads inside the root appdomain, and
4521 change back to the root domain after calling managed code. This enables
4522 appdomains using threadpools to be unloaded.
4524 2005-07-07 Martin Baulig <martin@ximian.com>
4527 (MonoInflatedGenericClass): Moved the `MonoType *parent' field
4528 into `MonoDynamicGenericClass' since we only need it for dynamic
4531 * reflection.c (mono_class_bind_generic_parameters): We don't need
4532 to compute the `parent' here.
4534 2005-07-07 Atsushi Enomoto <atsushi@ximian.com>
4536 * culture-info-table.h : regenerated.
4538 2005-07-06 Martin Baulig <martin@ximian.com>
4541 (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
4543 * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
4545 2005-07-06 Martin Baulig <martin@ximian.com>
4547 * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
4548 we're doing a signature-only comparision; fixes #74945.
4550 2005-07-06 Martin Baulig <martin@ximian.com>
4552 * class-internals.h (MonoGenericClass): Moved some things out into
4553 a new `MonoInflatedGenericClass' type.
4554 (MonoInflatedGenericClass): New type; the `klass' of a
4555 `MonoGenericClass' is now computed lazyly in
4556 mono_get_inflated_generic_class().
4558 * class.c (mono_get_inflated_generic_class): New public function.
4559 (mono_class_inflate_generic_method): Removed the unused
4560 `MonoClass *' argument.
4561 (setup_generic_vtable): Don't call mono_get_inflated_method() on
4563 (mono_class_create_generic): Make this static and merge it with
4564 mono_class_create_generic_2(); we're now called automatically from
4565 mono_get_inflated_generic_class().
4567 * loader.c (mono_method_signature): Call
4568 mono_get_inflated_method() here.
4570 2005-07-06 Zoltan Varga <vargaz@freemail.hu>
4572 * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
4573 type of fields with RVA.
4575 * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
4576 for this pseudo class.
4577 (my_mono_class_from_generic_parameter): Likewise.
4578 (mono_class_init): Allow interfaces to have cctors.
4580 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
4582 * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
4583 lazily for AOT methods.
4585 2005-07-05 Martin Baulig <martin@ximian.com>
4587 * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
4588 returns FALSE for a successful match, not TRUE.
4590 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
4592 * loader.c (mono_method_get_index): Optimize this a bit.
4594 2005-07-04 Martin Baulig <martin@ximian.com>
4597 (class_compute_field_layout): Move the check for generic type
4598 definitions into mono_class_layout_fields(). Fixes #74684.
4599 (mono_class_from_generic_parameter): Correctly compute
4600 `klass->parent'; fixes #75457.
4602 * reflection.c (register_assembly, register_module): Make sure
4603 `domain->rejobject_hash' is already created.
4605 2005-07-02 Martin Baulig <martin@ximian.com>
4608 (MonoGenericClass): Move `count_ifaces' and `ifaces' into
4609 `MonoDynamicGenericClass'.
4611 2005-07-01 Lluis Sanchez <lluis@ximian.com>
4613 * icall.c: In ves_icall_InternalExecute() dont't assert if the value
4614 returned by a field getter is null, since null is a valid value.
4616 2005-07-01 Martin Baulig <martin@ximian.com>
4618 * reflection.c (mono_reflection_generic_class_initialize): Update
4619 the `dgclass->fields [i].parent' to the correct class.
4620 (mono_image_get_fieldref_token): Use the declaring type, not the
4623 2005-07-01 Martin Baulig <martin@ximian.com>
4625 * loader.c (find_method): Also look in the interfaces; fixes #75429.
4627 2005-06-30 Ben Maurer <bmaurer@ximian.com>
4629 * threads.c (thread_cleanup): assert that thread != NULL
4630 (wait_for_tids_or_state_change): We were using the wrong variable
4631 when accessing wait->threads. `i' was always out of the bounds of
4634 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4636 * loader.c: map user32 and kernel32 to libMonoSupportW
4638 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
4640 * appdomain.c (unload_thread_main): Mark this as WINAPI.
4642 2005-06-28 Martin Baulig <martin@ximian.com>
4644 * loader.c (method_from_methodspec): Fix #75334.
4646 2005-06-28 Martin Baulig <martin@ximian.com>
4648 Fix #74953 - Arrays now implement the generic IList<T> interface
4649 on the 2.0 platform.
4651 * class-internals.h (MonoDefaults): Added `generic_array_class'.
4653 * reflection.c (mono_class_bind_generic_parameters): New public
4654 function; similar to mono_reflection_bind_generic_parameters(),
4655 but operates on a `MonoType *' and not on a `MonoReflectionType *'.
4657 * domain.c (mono_init_internal): Try to initialize.
4658 `mono_defaults.generic_array_class' here; this'll only succeed if
4659 we're using the 2.0 corlib.
4662 (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
4663 interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
4664 (mono_lookup_internal_call): Added support for nested classes.
4667 (mono_get_method_from_token): Set `result->signature->pinvoke' if
4668 we're an interncall and have generic arguments.
4671 (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
4672 (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
4673 instance of System.Array.InternalArray<T> for arrays, so they
4674 implement the generic IList<T> interface.
4676 2005-06-27 Zoltan Varga <vargaz@freemail.hu>
4678 * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
4679 (chastamar@yahoo.com). Fixes #75374.
4681 2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
4683 * culture-info-table.h: regenerated.
4685 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4687 * icall.c: handle spaces correctly for base64 strings.
4689 2005-06-26 Ben Maurer <bmaurer@ximian.com>
4691 * *.c: Kill some warnings.
4693 2005-06-23 Duncan Mak <duncan@novell.com>
4695 * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
4696 that this builds on Solaris 10 (x86).
4698 2005-06-23 Martin Baulig <martin@ximian.com>
4701 (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
4702 generic type definitions.
4704 2005-06-23 Martin Baulig <martin@ximian.com>
4708 * metadata.c (mono_class_get_overrides): Renamed to
4709 mono_class_get_overrides_full() and added a `MonoGenericContext *'.
4710 (method_from_method_def_or_ref): Added `MonoGenericContext *' and
4711 pass it to mono_get_method_full().
4713 2005-06-22 Ben Maurer <bmaurer@ximian.com>
4715 * reflection.c (mono_reflection_create_runtime_class): take the
4716 mono_domain_lock in this method. Prevents deadlocks
4718 2005-06-22 Martin Baulig <martin@ximian.com>
4720 * loader.c (method_from_methodspec): Fix #75330.
4722 2005-06-22 Martin Baulig <martin@ximian.com>
4724 * reflection.c (type_get_qualified_name): Use
4725 mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
4726 (_mono_reflection_get_type_from_info): Added `MonoImage *image'
4727 argument; use it if we don't have an assembly name.
4729 2005-06-22 Lluis Sanchez Gual <lluis@novell.com>
4731 * object.c: In mono_message_init, set "copy out" flag for in
4732 parameters with the [Out] flag.
4734 2005-06-21 Martin Baulig <martin@ximian.com>
4737 (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
4740 2005-06-21 Martin Baulig <martin@ximian.com>
4742 * class.c (mono_class_init): Don't initialize `class->fields' for
4743 generic instances since they're initialized again in
4744 compute_field_layout().
4745 (compute_field_layout): Set the field's `generic_info' here; fix
4748 2005-06-21 Martin Baulig <martin@ximian.com>
4751 (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
4753 * metadata.c (mono_metadata_generic_method_equal): Also
4754 distinguish the `generic_class'; fixes #75334.
4756 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4760 * domain-internals.h:
4761 * reflection.c: 'domain_assemblies' field is now protected by its own
4762 lock. Don't call into managed code to run the AssemblyLoad event if we
4763 now there are no registered delegates for it.
4765 2005-06-20 Martin Baulig <martin@ximian.com>
4767 * class.c (mono_class_is_assignable_from): Use a custom version of
4768 mono_class_has_parent() to make things work for generic instances;
4771 2005-06-20 Martin Baulig <martin@ximian.com>
4773 * loader.c (method_from_methodspec): Apply a patch from
4774 Kamil Skalski <nazgul@nemerle.org> to fix #75296.
4776 2005-06-20 Martin Baulig <martin@ximian.com>
4778 * class.c (mono_class_init): Reverted Zoltan's last change; it
4781 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
4783 * threads.c (wait_for_tids_or_state_change): Add missing locking.
4785 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4787 * socket-io.c: fix the index in the socket array for writable/error
4788 sockets. Fixes bug #75306.
4790 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
4792 * class.c (mono_class_init): Allow interfaces to have static ctors.
4794 2005-06-17 Martin Baulig <martin@ximian.com>
4796 * loader.c (method_from_methodspec): Use `context->container' when
4797 parsing the `gmethod->inst'.
4799 2005-06-17 Martin Baulig <martin@ximian.com>
4801 * class.c (mono_type_get_name_recurse): Don't add the assembly
4802 name for type arguments.
4804 2005-06-15 Martin Baulig <martin@ximian.com>
4806 * reflection.c (mono_image_get_inflated_method_token): Encode
4807 correct klass; fixes #75260.
4809 2005-06-13 Michal Moskal <malekith@nemerle.org>
4811 * icall.c: Make GetCorrespondingMethod/Constructor take
4812 MonoReflectionMethod method not MonoMethod. Removed
4813 MonoType.GetCorrespondingField, and make
4814 MonoGenericType.GetCorrespondingField take name not
4817 2005-06-13 Michal Moskal <malekith@nemerle.org>
4819 * reflection.c (field_encode_signature, encode_locals):
4820 Make sizes of buffers for types larger (for big generic types).
4821 (create_generic_typespec,
4822 mono_reflection_sighelper_get_signature_local,
4823 mono_reflection_sighelper_get_signature_field):
4824 Add asserts for too small buffers.
4826 2005-06-15 Martin Baulig <martin@ximian.com>
4828 * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
4829 if our parent is not a dynamic type.
4831 2005-06-15 Martin Baulig <martin@ximian.com>
4833 * class-internals.h (MonoTypeNameFormat): New enum.
4836 (mono_class_get_name_full): Renamed to mono_type_get_name_full().
4837 (mono_type_get_full_name): Removed.
4838 (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
4839 argument instead of the boolean's.
4841 * icall.c (ves_icall_System_MonoType_getFullName):
4842 Added `gboolean assembly_qualified'.
4845 (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
4847 * reflection.c (mono_reflection_parse_type): Parse the new type
4850 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4852 * icall.c: no need to convert from utf16 to utf8 and then back again
4853 after the call to GetLogicalDrives.
4855 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4857 * icall.c: frombase64. Fix problems exposed by new tests.
4859 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4861 * icall.c: added internal calls for converting char [] and strings in
4862 base64 into byte [].
4864 2005-06-10 Martin Baulig <martin@ximian.com>
4866 * class.c (mono_class_create_generic_2): Read the nested classes
4867 from the metadata rather than from `gklass->nested_classes' since
4868 `gklass' might not be initialized yet.
4870 2005-06-09 Duncan Mak <duncan@novell.com>
4872 * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
4873 all public headers. Fixes #74919.
4875 2005-06-09 Lluis Sanchez Gual <lluis@novell.com>
4877 * domain.c: The key for proxy_vtable_hash is now a pointer
4878 array. Added new GHashFunc and GCompareFunc functions for this.
4880 * class.h: The list of interfaces in MonoRemoteClass is known in
4881 advance and can't grow (we create a new MonoRemoteClass if needed),
4882 so now the interface array can be allocated together with
4885 * object.c: Added a new method create_remote_class_key.
4886 Fixed mono_remote_class so it does not depend on
4887 mono_upgrade_remote_class.
4888 Removed extend_interface_array.
4889 Added new method clone_remote_class(), which makes a copy of a remote
4890 class and adds a new interface or class to it.
4891 mono_upgrade_remote_class() now creates a new remote class (or gets
4892 it from the cache) if an vtable upgrade is needed. In this way
4893 we make sure that other objects sharing the same remote class
4894 don't get the new vtable with unwanted interfaces.
4896 * object-internals.h:
4897 * object.h: Moved mono_upgrade_remote_class to object-internals.h.
4899 * marshal.c: Track changes in mono_upgrade_remote_class().
4901 2005-06-08 Kamil Skalski <nazgul@nemerle.org>
4902 * icall.c: Add runtime methods for obtaining members of inflated
4903 class, which were created from supplied non-inflated members. It
4904 is used in internal Get{Method,Constructor,Field} methods in
4907 2005-06-09 Martin Baulig <martin@ximian.com>
4910 (mono_reflection_bind_generic_method_parameters): Fix #75169.
4912 2005-06-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4913 * reflection.c (mono_image_basic_init): Define
4914 Version in MonoDynamicAssembly.
4916 2005-06-08 Martin Baulig <martin@ximian.com>
4921 (mono_method_signature_full): New public method; takes a
4922 `MonoGenericContext *'.
4923 (find_method): Use mono_method_signature_full() and pass the
4924 klass'es context to it.
4926 * class.c (mono_class_is_inflated_method): Use
4927 mono_method_signature_full() and pass the context to it.
4929 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
4931 * object.c: add proper locking in mono_remote_class_vtable(),
4932 fixes possible memory corruption.
4934 2005-06-08 Michael Meeks <michael.meeks@novell.com>
4936 * marshal.c (mono_remoting_marshal_init): set
4937 initialized after initialization.
4939 2005-06-08 Atsushi Enomoto <atsushi@ximian.com>
4943 2005-06-06 Michael Meeks <michael.meeks@novell.com>
4945 * object.c (extend_interface_array): fix really silly
4946 memory corrupting / comparison bug.
4948 2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4950 * reflection.c: Functions added to support the creation
4951 of CustomAttributeData, which includes Attribute data
4952 used by ReflectionOnly methods.
4954 * reflection.h: mono_reflection_get_custom_attrs_data and
4955 mono_custom_attrs_data_construct added (functions exposed).
4957 * icall.c: Added mono_reflection_get_custom_attrs_data
4960 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
4962 * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
4965 2005-06-06 Zoltan Varga <vargaz@freemail.hu>
4967 * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
4969 * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
4970 dynamic DllImportAttribute.
4972 * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of
4973 dynamic DllImportAttribute.
4975 * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
4978 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4980 * threads.c: avoid segfault when an unstarted thread is aborted.
4982 2005-06-05 Kornél Pál <kornelpal@hotmail.com>
4984 * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
4985 Returns the name and version of the runtime for reporting.
4987 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4989 * appdomain.c: bump corlib version.
4990 * object-internals.h: new field in MonoReflectionAssembly.
4992 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4994 * object-internals.h: Carlos forgot to add this field.
4996 2005-06-03 Carlos Alberto Cortez <calberto.cortez@gmail.com>
4998 * icall.c: Added create_version to create instances
4999 of Version of MonoReflectionAssemblyName. This change helps
5000 the AssemblyName tests to keep running fine.
5002 2005-06-03 Lluis Sanchez Gual <lluis@novell.com>
5004 * object.c (mono_method_return_message_restore): A somehow less
5005 intrusive fix for #75138.
5007 2005-06-03 Raja R Harinath <rharinath@novell.com>
5009 * object.c (mono_method_return_message_restore): Fix computation
5010 of expected number of out args.
5012 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
5014 * reflection.c (mono_image_get_method_info): Fix the case when the
5017 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
5019 * object.c: Added missing null check in
5020 mono_method_return_message_restore.
5022 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
5024 * reflection.c (mono_image_get_method_info): Handle the case when
5027 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
5029 * object.c: When creating the vtable for a proxy, take into account
5030 all inherited interfaces, not only the ones registered in
5031 iclass->interfaces. This fixs bug #74996.
5032 Also, in mono_method_return_message_restore, verify that the array
5033 of out args has the expected lengh.
5035 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5037 * socket-io.c: update the timeout in Poll when the call is interrupte.
5039 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5041 * socket-io.c: support abort/suspend in Select_internal after last
5044 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5046 * threadpool.c: remove warning.
5048 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5051 * socket-io.[ch]: Select_internal uses poll() now when available, thus
5052 removing the 1024 limit from select(). Runtime part of the fix for
5055 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5057 * socket-io.c: when resolving the addresses for the same
5058 host returned by gethostname(), get the local IPs from the interface
5059 list. Loopback addresses are discarded if the are interfaces up with
5060 non-loopback ones. Fixes bug #63265.
5062 2005-05-27 Vladimir Vukicevic <vladimir@pobox.com>
5064 * appdomain.c, verify.c, object-internals.h, reflection.c:
5065 bumped corlib number to 36, and added new extra_flags field
5066 to ReflectionMethodBuilder and friends. Fixes #75060.
5068 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
5070 * gc.c: register a new weak link only if the object is non-null
5073 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
5075 * culture-info.h : short time pattern too.
5077 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
5079 * culture-info.h : expand long time pattern string length.
5081 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
5083 * culture-info-table.h : update (more French date format; #72788).
5085 2005-05-25 Zoltan Varga <vargaz@freemail.hu>
5087 * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
5088 the method is static. Fixes #75029.
5090 2005-05-25 Lluis Sanchez Gual <lluis@novell.com>
5092 * reflection.c: Update the table_idx field of method builders after
5093 saving the module, since it can change. This is a workaround for
5096 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
5098 * culture-info-table.h : update (additional French date format).
5100 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
5102 * icall.c (ves_icall_type_Equals): Revert last change.
5104 * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
5106 * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
5108 2005-05-20 Sebastien Pouliot <sebastien@ximian.com>
5110 * class-internals.h: Added executioncontext_class field to
5111 MonoDefaults structure.
5112 * domain.c: Cache System.Threading.ExecutionContext class in
5114 * object.c: Capture the ExecutionContext for asynchroneous calls in
5115 mono_async_result_new.
5116 * object-internals.h: Added execution_context and original_context
5117 fields to MonoAsyncResult. Added execution_context to MonoThread.
5118 * security-manager.c|.h: Added mono_get_context_capture_method to
5119 return the capture method (if required by the security manager or by
5120 the framework version used).
5121 * threadpool.c: Apply capture (if present) ExecutionContext in
5122 mono_async_invoke and revert to original context after it completes.
5124 2005-05-19 Atsushi Enomoto <atsushi@ximian.com>
5126 * culture-info-table.h : updated (real hacky solution for zh-CHT).
5128 2005-05-18 Atsushi Enomoto <atsushi@ximian.com>
5130 * culture-info-table.h : zh-CHT related workaround.
5132 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
5134 * marshal.c (emit_marshal_custom): Add some error checking and call the
5135 methods in the ICustomMarshaler interface. Fixes #74875.
5137 * marshal.c (emit_marshal_array): Implement [Out] marshalling in
5138 native->managed wrappers.
5140 2005-05-12 Martin Baulig <martin@ximian.com>
5142 * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
5143 here and use the loader lock.
5145 * mono-debug.c: Properly lock when the debugger is not attached.
5146 (mono_debug_init): Release the initial lock if we're not running
5149 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
5151 * marshal.c (emit_marshal_custom): Pass through NULL values without
5152 calling the custom marshalling routines.
5154 * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
5155 conversion in structures. Fixes #74882.
5157 2005-05-12 Atsushi Enomoto <atsushi@ximian.com>
5159 * culture-info-table.h : zh-* cultures were missing.
5161 2005-05-12 Lluis Sanchez Gual <lluis@novell.com>
5163 * threads.c: Added a new event background_change_event which is signaled
5164 when a thread changes its background mode.
5165 Moved here several checks previously done in managed code. The checks
5166 require the thread lock, and using the thread lock in managed code
5167 can result in deadlocks.
5168 Merged Start_internal and Thread_internal into a single method. Now
5169 Thread_internal does all work of creating and starting a thread.
5170 Added icalls for setting and getting the state of the object. Moved from
5171 managed code to avoid locking there.
5172 Added wait_for_tids_or_state_change() which is called instad of
5173 wait_for_tids when waiting for non-backround threads to end. This method
5174 will return if one of the threads ends or the background_change_event
5176 * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
5177 the background mode. This method signals the background_change_event
5180 * threads-types.h: Added icalls for ClrState, SetState and GetState, and
5181 removed Start_internal.
5183 2005-05-11 Martin Baulig <martin@ximian.com>
5185 * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
5186 to order of some fields to get proper alignment on 64-bit machines.
5188 2005-05-11 Martin Baulig <martin@ximian.com>
5190 * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
5191 changes as they're broken and completely fuck up the debugger.
5193 * mono-debug.c (mono_debug_add_method): Properly unlock on error.
5195 2005-05-10 Martin Baulig <martin@ximian.com>
5197 * reflection.c (mono_reflection_generic_class_initialize): Don't
5198 call mono_class_setup_parent() here.
5200 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5202 * metadata/socket-io.c: on windows, getsockopt/setsockopt for
5203 send/receive timeout use an integer in milliseconds. We were using a
5206 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5209 (internal_get_cultures): reserve the first slot of the array for the
5210 InvariantCulture, which will be filled in managed code.
5212 2005-05-06 Zoltan Varga <vargaz@freemail.hu>
5214 * reflection.c (mono_image_fill_module_table): Initialize the
5215 GENERATION field as well.
5217 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5219 * monitor.c: ignore calls to Monitor.Exit even if no one ever called
5220 Monitor.Enter on the object.
5222 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
5224 * threads.c: Enable the wait for running threads when exiting.
5225 * icall.c: Suspend all threads before exiting.
5227 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
5229 * assembly.c (mono_assembly_load_reference): Fix warning.
5231 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5233 * threadpool.c: changed the default number of threads per cpu. From now
5234 on, the default will be 20 + (5 * number of cpus) instead of 50.
5236 2005-05-04 Zoltan Varga <vargaz@freemail.hu>
5238 * loader.c (mono_method_get_signature_full): Add locking here.
5240 2005-05-03 Lluis Sanchez Gual <lluis@novell.com>
5242 * appdomain.c: Moved methods for parsing and freeing assembly
5243 names to assembly.c.
5244 * assembly.c, domain-internals.h: Created public methods for parsing
5245 assembly names. Fixed mono_assembly_load_with_partial_name:
5246 it now finds the best match, taking into account the version,
5247 token and culture specified in the partial name. Also return
5248 the latest version if no version information is specified.
5250 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
5252 * threadpool.c: replace check for SocketAsyncCall class.
5254 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5256 * threadpool-internals.h:
5257 * Makefile.am: added threadpool-internals.h
5259 * threadpool.c: call mono_unhandled_exception on exceptions not handled
5260 that happen in threadpool threads (tested on MS).
5261 (mono_thread_pool_remove_socket): new function that dispatch any pending
5262 AIO call on a socket that is closing. By now only epoll really needs it,
5263 as select/poll wake up when the socket closes.
5266 * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
5268 2005-05-01 Zoltan Varga <vargaz@freemail.hu>
5270 * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
5272 2005-05-01 Lluis Sanchez Gual <lluis@novell.com>
5274 * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
5276 2005-04-30 Lluis Sanchez Gual <lluis@novell.com>
5278 * threads.c: In mono_thread_suspend_all_other_threads, if a thread
5279 has an abort request, convert it into a suspend request.
5281 2005-04-30 Ben Maurer <bmaurer@ximian.com>
5283 * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
5284 warning for the usage of `UnmanagedFunctionPointerAttribute' which
5285 is not supported yet.
5287 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5289 * image.c: register assemblies loaded from data (bundles) in the loaded
5290 assemblies hash. Fixes bug #74772.
5292 2005-04-29 Martin Baulig <martin@ximian.com>
5294 * class.c (mono_type_get_name_recurse): Update to the new naming
5295 schema from the latest .NET 2.x beta2.
5296 (mono_class_setup_vtable_general): If we're a generic instance,
5297 copy the vtable from our generic type definition and inflate all
5300 * loader.c (find_method): Update to the new naming schema from the
5301 latest .NET 2.x beta2.
5303 2005-04-29 Raja R Harinath <harinath@gmail.com>
5305 * class.c (mono_class_init): Add a mono_loader_unlock to the
5308 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
5310 * icall.c (ves_icall_System_Environment_Exit): Remove the
5311 suspend_all_other_threads () call for the time being, since it can hang.
5313 * threads.c (mono_thread_manage): Similarly, disable the waiting for
5314 the background threads to exit, since it can also hang.
5316 * class.c (mono_class_init): Applied patch from Ankit Jain
5317 (radical@gmail.com). Avoid pending init errors when a field refers
5318 to a nested class using a typeref. Fixes #74734.
5320 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
5321 this for dynamic modules.
5323 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5325 * threads.c: don't wait for threads that are in the process of aborting
5326 or aborted. Set the 'shutting_down' flag before cleaning the threadpool
5327 and waiting for background threads to finish. This makes xsp and
5328 mod-mono-server exit without random length delays and/or hangs.
5330 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5332 * icall.c: remove duplicate assignment from GetReferencedAssemblies.
5334 2005-04-25 Zoltan Varga <vargaz@freemail.hu>
5336 * class.c (mono_class_is_assignable_from): Call is_assignable_to for
5337 dynamic types to prevent infinite loops. Fixes #74727.
5339 * reflection.c (mono_reflection_call_is_assignable_from): Rename to
5340 ..._is_assignable_to.
5342 2005-04-25 Sebastien Pouliot <sebastien@ximian.com>
5344 * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
5346 2005-04-25 Martin Baulig <martin@ximian.com>
5348 Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
5351 (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
5353 * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
5355 * reflection.c (build_compressed_metadata): Set metadata header
5358 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
5360 * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
5361 number into an integral and a decimal part. Fixes #70473.
5363 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
5365 2005-04-23 Atsushi Enomoto <atsushi@ximian.com>
5367 * culture-info-table.h : reflected the latest locale-builder output.
5369 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5371 * threadpool.c: check for SuspendRequested too when deciding if
5372 mono_thread_interruption_checkpoint should be called.
5374 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5376 * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
5377 * threads.c: remove interruption_mutex and use Interlocked instead. When
5378 suspending all the threads, wait for all the suspended events at once.
5379 If we're shutting down and get an APC that is going to be queued,
5380 call mono_thread_execute_interruption immediately, as the thread might
5381 be sleeping on a pthread condition or mutex.
5383 * icall.c: call mono_runtime_set_shutting_down before suspending the
5386 Fixes bug #74693. And now xsp is happier when exiting.
5388 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
5390 * loader.c (mono_stack_walk): Fix #74690.
5392 2005-04-22 Martin Baulig <martin@ximian.com>
5394 * mono-debug.h (MonoDebugMethodJitInfo): Added
5395 `MonoDebugMethodJitInfo *jit'.
5397 * mono-debug.c (mono_debug_read_method): Cache the
5398 MonoDebugMethodJitInfo in `address->jit'.
5399 (mono_debug_free_method_jit_info): New public method.
5401 2005-04-22 Martin Baulig <martin@ximian.com>
5403 * class.c (mono_class_is_assignable_from): Disallow
5404 type parameter -> interface.
5406 2005-04-21 Dick Porter <dick@ximian.com>
5408 * threads.c (mono_thread_create): Turn an assertion into an error.
5410 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
5412 * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
5414 * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c:
5415 Fix some gcc 4.0 warnings.
5417 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
5419 * file-io.c: fix alt dir separator char on unix systems
5420 and cleanup (fixes bug #71214).
5422 2005-04-19 Lluis Sanchez Gual <lluis@novell.com>
5424 * marshal.c: Use CALLVIRT instead of CALL when dispatching
5425 a call to a remote domain, since the method may be an
5426 interface method in the client domain. This fixes bug #74192.
5428 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5430 * threadpool.c: recv/send are now performed before going back to managed
5431 code to save one transition.
5433 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5435 * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
5437 * metadata/threadpool.c: removed hack to workaround the bug above.
5441 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
5443 * reflection.c reflection.h: Fix handling of parameter defaults in
5444 dynamic methods. Also fixes handling of parameter attributes.
5447 * mono-debug.c (mono_debug_close_image): Fix warning.
5449 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5451 * socket-io.h: replaced old unused field with new 'blocking'.
5452 * threadpool.c: restore socket blocking state on windows(tm).
5454 2005-04-14 Sebastien Pouliot <sebastien@ximian.com>
5456 * icall.c: don't return the codebase in the AssemblyName[] returned by
5457 ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
5458 * object-internals.h: Removed FIXME (fields were presents) and fixed
5459 versioncompat declaration.
5461 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5463 * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
5464 not closed, so don't cleanup when it happens.
5466 2005-04-13 Chris Toshok <toshok@ximian.com>
5468 * mono-debug-debugger.h: change prototype for
5469 mono_debugger_lookup_type.
5471 * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
5472 this function, although it should probably be named
5473 mono_debugger_init_type.
5475 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5477 * threadpool.c: fix non-AIO case.
5479 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
5481 * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
5482 the built-in profiler to measure just JIT compilation times.
5484 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5486 * threadpool.c: the epollfd might be closed by another thread at
5487 any time, so ignore EBADF at treat it as a "we're closing" sign.
5489 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5491 * threadpool.c: release the semaphores with a count equals to the number
5492 of working threads in both IO and regular pools. Fixed typo that messed
5493 up the count of IO pool threads. Don't initialize the pipe handles if
5496 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5498 * threadpool.c: some systems don't like a NULL when deleting the socket
5501 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5503 * threadpool.c: fix semaphore allocation.
5505 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5507 * threadpool.c: added epoll() based implementation for asynchronous IO
5508 that is used instead of the default poll() when available.
5509 It can be disabled by setting MONO_DISABLE_AIO.
5511 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5513 * threadpool.c: windows needs 'closesocket' and instead of returning
5514 0 when the stream is closed while in select, it returns -1. Fixes bug
5517 2005-04-12 Zoltan Varga <vargaz@freemail.hu>
5519 * class.c (class_compute_field_layout): Fix the regression caused by
5522 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5524 * threadpool.c: separate pool for socket async. IO.
5525 * threadpool.h: mono_max_worker_threads is not a global any more.
5527 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
5529 * class.c (class_compute_field_layout): Fix #74549.
5531 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5533 * threadpool.c: select() on windows doesn't allow pipe handles, soooo
5534 use 2 connected sockets instead.
5536 2005-04-08 Miguel de Icaza <miguel@novell.com>
5538 * mono-config.c: Add new entry point for mkbundle
5539 mono_config_parse_memory.
5541 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5543 * threadpool.c: removed another unused function.
5545 2005-04-08 Ankit Jain <radical@corewars.org>
5547 * reflection.c (get_default_param_value_blobs): Add 'types'
5548 parameter to get the types encoded in the constant table.
5549 (mono_param_get_objects): Use the type from the constant table,
5550 not the type of the parameter, when creating default values.
5551 Handle null default values correctly.
5553 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5560 * socket-io.c: removed dead code for async IO.
5562 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5564 * socket-io.h: 2 more fields in MonoSocketAsyncResult.
5566 * threadpool.c: intercept socket async. calls and pass them to a thread
5567 that is polling and dispatching the job items to the threadpool as
5568 socket become ready. Fixes bugs #71217, #71933.
5570 * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
5571 between char and short/ushort arrays.
5573 * socket-io.c: remove dead code.
5575 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
5578 icall.c : removed InternalToUpper_Comp() and
5579 InternalToLower_Comp().
5581 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
5583 * char-conversions.h : The tables were incorrectly generated. Should
5584 be generated against invariant culture.
5586 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
5588 * object.c (mono_runtime_invoke_array): Fix return value when
5589 passing pre-created valuetype objects to ctors.
5591 * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer
5592 (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
5595 2005-03-30 Sebastien Pouliot <sebastien@ximian.com>
5597 * domain.c: removed g_assert for runtimesecurityframe_class. This is
5598 only used with --security and hides the wrong corlib version error.
5600 2005-03-30 Joshua Tauberer <tauberer@for.net>
5602 * class.c: Changed mono_class_name_from_token so that types
5603 outside of a namespace don't have an initial period. Improved
5604 the g_warning message used in _mono_class_get when loading
5606 * assembly.c: In mono_assembly_load_reference, when an assembly
5607 can't be found, "No such file or directory" is misleading and
5608 unhelpful because a few paths were checked for the presence of
5609 the assembly. When that happens (ENOENT), display a nicer
5610 message indicating the directories that were searched. In all
5611 cases, the warning is made easier to read for non-hackers.
5613 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
5615 * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
5617 * appdomain.h|domain.c: Removed inline from functions.
5618 * appdomain.c: Reduced warnings when compiling on windows.
5619 * icall.c: Fixed output_debug declaration to gunichar2*.
5620 * mono-config.c: Reduced warnings when compiling on windows.
5621 * rand.c: Added missing "windows.h". Added missing return value.
5622 * rawbuffer.c: Added missing winsock2.h for windows.
5623 * sysmath.h: Added mono-compiler.h header to allow/ease
5624 compilation with non-GCC compilers.
5625 * threads.c: Fixed declarations to compile with VS.NET C compiler.
5626 Removed cast warnings.
5628 Adapted from the work of J Lothian (for VC6).
5630 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
5632 * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
5635 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
5637 * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
5640 2005-03-27 Raja R Harinath <harinath@gmail.com>
5642 * Makefile.am (assembliesdir): Fix. If it is arch-dependent it
5643 has to be in $(exec_prefix). $(prefix) is for arch-independent
5644 stuff, and it would probably use $(prefix)/share rather than
5647 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5649 * console-io.c: added 2 includes that might be missing.
5651 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
5653 * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
5656 * reflection.c (create_custom_attr): Allocate the params array using
5657 alloca so it gets GC tracking.
5659 2005-03-23 Chris Toshok <toshok@ximian.com>
5661 * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
5664 2005-03-24 Raja R Harinath <rharinath@novell.com>
5666 * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
5667 changes to pick up any changes in prefix, etc.
5669 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
5671 * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
5673 * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
5674 * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
5676 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
5678 * class-internals.h object-internals.h class.c reflection.c: Extend the
5679 mono_lookup_dynamic_token () function to return the class of the
5682 * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
5685 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
5687 * security-manager.c: Skip inheritance checks for intra-corlib
5688 class inheritance and method overrides. This skips a lot of checks
5689 and (anyway) permissions cannot work until corlib is loaded.
5691 2005-03-23 Martin Baulig <martin@ximian.com>
5693 * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
5694 MONO_TYPE_GENERICINST.
5696 2005-03-23 Martin Baulig <martin@ximian.com>
5698 * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
5700 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
5702 * class.c: added locking comments to some functions.
5703 Cache the interface offsets arrays (saves about 20 KB
5704 of runtime memory in a typical app).
5705 Reduce the time overhead in mono_class_setup_supertypes ().
5707 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
5709 * icall.c: speedup and fix leaks in GetMethodsByName and
5710 GetPropertiesByName.
5712 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
5714 * reflection.c: some locking fixes.
5716 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
5718 * metadata.c: added missing break in case statement.
5720 2005-03-22 Zoltan Varga <vargaz@freemail.hu>
5722 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
5723 typedbyref return values. Fixes #73941.
5725 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
5727 * security-manager.c|h: Added demandunmanaged method and
5728 suppressunmanagedcodesecurity class to MonoSecurityManager.
5729 Renamed aptc class to allowpartiallytrustedcallers.
5731 2005-03-17 Martin Baulig <martin@ximian.com>
5733 * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
5735 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5737 * file-io.c: disabled file async. IO using aio_*. It uses the
5738 threadpool now. Workaround for bug #73718.
5740 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
5742 * assembly.h, mono-config.c: added code to deal with bundled configs
5743 for bundled assemblies.
5745 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
5747 * *.c, private.h: cleanup, removing old private.h header file.
5749 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
5751 * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
5752 and throw_on_unmappable_char attributes.
5754 2005-03-13 Sebastien Pouliot <sebastien@ximian.com>
5756 * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
5757 _ProcessName_internal.
5759 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
5761 * object.c (mono_array_new_full): Fix aligning of array size. Fixes
5764 * icall.c threads.c threads-types.h: Remove slothash icalls as they
5767 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
5769 * object.c (compute_class_bitmap): Add support for generics. Fixes
5772 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
5774 * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
5776 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5778 * filewatcher.c: commented out the code for windows watcher, as we don't
5779 use it (we use the managed implementation instead).
5781 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
5783 * object-internals.h (MonoThread): Remove 'unused1' field.
5785 * appdomain.c: Bump corlib version.
5787 * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
5789 * reflection.c (mono_reflection_create_runtime_class): Remove the
5790 AssemblyBuilder.Save optimization since it causes too many problems.
5792 2005-03-10 Sebastien Pouliot <sebastien@ximian.com>
5794 * exception.c|h: Added mono_get_exception_reflection_type_load to
5795 create a ReflectionTypeLoadException object.
5796 * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
5797 to return NULL is a InheritanceDemand fails during reflection. Updated
5798 ves_icall_System_Reflection_Assembly_GetTypes to throw a
5799 ReflectionTypeLoadException if an InheritanceDemand fails during
5800 reflection. Added icall mapping for GetLinkDemandSecurity.
5801 * security-manager.c|h: Added ves_icall_System_Security_
5802 SecurityManager_GetLinkDemandSecurity internal call to return the
5803 class and methods permissions set for a LinkDemand. Removed unused
5804 fields in MonoSecurityManager.
5806 2005-03-10 Martin Baulig <martin@ximian.com>
5808 * class.c (mono_bounded_array_class_get): Initialize `eclass' if
5809 it's a generic instance.
5811 2005-03-09 Zoltan Varga <vargaz@freemail.hu>
5813 * reflection.c (mono_get_object_from_blob): Applied patch from
5814 Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
5816 * class.c (mono_class_is_assignable_from): Another try at fixing
5817 #73469 without breaking anything.
5819 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
5821 * class.c: (mono_class_is_assignable_from): Revert the last changes
5822 since they don't work with generics.
5824 * class.c (mono_class_is_assignable_from): Fix build bustage.
5826 * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
5827 the managed IsAssignableFrom method. Fixes #73469.
5829 * reflection.c (mono_reflection_call_is_assignable_from): New helper
5832 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
5834 * object.c (mono_load_remote_field_new): Fix returning uninitialized
5835 memory when the remoting callback does not sets the out arguments.
5838 * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
5841 * string-icalls.c: Return String.Empty where needed. Fixes #73310.
5843 * object-internals.h (MonoStackFrame): Sync with managed object layout.
5845 * appdomain.c: Bump corlib version.
5847 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
5849 * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
5852 * threads.c (mono_thread_attach): Detect threads which are not started
5853 by the GC pthread wrappers.
5855 2005-03-03 Sebastien Pouliot <sebastien@ximian.com>
5857 * icall.c: Added new icall for RNG.
5858 * rand.c|h: Added new icall to open the RNG. This allows to share a
5859 single handle on Linux to access /dev/urandom and fix #73183.
5861 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
5863 * object.c: setting the new vtable in a transparent proxy object must
5864 not change the GC descriptor.
5866 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
5868 * object.c: fixed compilation without GCJ support.
5869 * reflection.c: for runtime-created types ensure klass->has_references
5870 is correct (bug #73215).
5872 2005-03-02 Martin Baulig <martin@ximian.com>
5874 * class.c (mono_class_is_assignable_from): Make this work if
5875 `oklass' is a generic instance; fixes #72831.
5877 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
5879 * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
5882 * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
5884 * marshal.c: Reorganize native->managed marshalling code to also use
5885 the emit_marshal_... functions.
5887 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
5889 * object.c: typed allocs have issues with bitmap sizes > 30,
5890 so check for max_set >= 30.
5892 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
5894 * marshal.c (emit_marshal_array): Implement marshalling of arrays to
5895 managed code. Fixes #73012.
5897 * metadata.h (MonoMarshalSpec): Add elem_mult field.
5899 * metadata.c reflection.c: Load/Emit elem_mult as well.
5901 * metadata.h (MonoMarshalSpec): Add comment.
5903 * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
5905 * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
5906 num_elem to -1 if not given.
5908 * object-internals.h (MonoReflectionMarshal): Add has_size field.
5910 * reflection.c (encode_marshal_blob): Differentiate between 0 and not
5913 2005-03-01 Marek Safar <marek.safar@seznam.cz>
5915 * null-gc.c (mono_gc_free_fixed): Was not compilable.
5917 2005-02-28 Zoltan Varga <vargaz@freemail.hu>
5919 * reflection.c (encode_marshal_blob): Encode param_num field as well.
5921 * object-internals.h (MonoReflectionMarshal): Add param_num field.
5923 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
5925 * object.c: generalized the reference bitmap creation
5926 and added hooks for the new GC.
5927 * class-internals.c: removed the gc_bitmap field from MonoClass.
5929 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
5931 * domain.c: help the compiler to produce better code
5932 in mono_jit_info_table_find ().
5934 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
5936 * object.c: make all allocations look typed.
5938 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
5940 * socket-io.c: load Mono.Posix if it's not loaded already
5943 2005-02-24 Martin Baulig <martin@ximian.com>
5945 * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
5946 * reflection.c (dup_type): Likewise.
5948 2005-02-24 Zoltan Varga <vargaz@freemail.hu>
5950 * gc.c (run_finalize): Set the domain for finalizing delegates as well.
5951 Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
5953 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
5955 * domain.c, threads.c, object-internals.h: make the critical thread
5956 local vars use the fast access mode (even when we're compiled in
5957 a lib). Provide accessors to be used by the jit during codegen.
5959 2005-02-24 Carlos Alberto Cortez <calberto.cortez@gmail.com>
5961 * appdomain.c: Changed hook functios behavior to include
5962 support for the reflection only assemblies. Some icalls were changed
5963 to support the mentioned assemblies too. Signatures of static methods
5964 try_assembly_resolve and real_load now have an additional parameter:
5967 * assembly.c: General changes to mono_assembly_ methods to support
5968 reflection only api. Functions mono_assembly_open, mono_assembly_load,
5969 mono_assembly_load_from and mono_assembly_loaded have got a '_full'
5970 suffix, to support an additional gbool parameter to specify whether
5971 the assembli is reflection only or not. Created some new hook functions
5972 to add support for reflection only assemblies. Signatures of static
5973 methods load_in_path, search_loaded, and mono_assembly_load_from_gac
5974 have now an additional parameter: refonly.
5976 * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
5977 indicating whether the assembly is reflection only or not.
5979 * exception.c: Add mono_get_exception_invalid_operation.
5981 * icall.c: Throw an InvalidOperationException when trying to invoke
5982 a property/method/event, or trying to set/get the value of a field.
5983 Also add an icall to retrieve the ref_only flag to the
5984 MonoReflectionAssembly.
5986 2005-02-23 Chris Toshok <toshok@ximian.com>
5988 Part of fix for #72827.
5989 * mono-debug.c (mono_debug_add_method): add lexical block data to
5990 the info we write. Kind of a hack at the moment - we copy the
5991 lexical block info from the MonoDebugMethodInfo to the
5992 MonoDebugMethodJitInfo here, before writing it.
5993 (mono_debug_read_method): read the lexical block info.
5995 * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
5997 * debug-mono-symfile.h: add lexical block support.
5999 * debug-mono-symfile.c (mono_debug_find_method): add lexical block
6002 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
6004 * loader.c (mono_lookup_pinvoke_call): Fix warning.
6006 * object.c (mono_runtime_free_method): Call mono_free_method () and
6007 put the TODOs there.
6009 * loader.c (mono_free_method): Free up most memory allocated for
6012 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6014 * reflection.c: properly flag a Type argument to a
6015 named custom attr value (bug #72248).
6017 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6019 * reflection.c: reduce code duplication in named custom
6022 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
6024 * reflection.c: properly encode custom attrs of type object
6027 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
6029 * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
6031 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
6033 * socket-io.c: load System.dll if it's not loaded already
6034 (bug #72850 and #70477).
6036 2005-02-21 Martin Baulig <martin@ximian.com>
6038 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
6041 2005-02-21 Martin Baulig <martin@ximian.com>
6043 * reflection.c (mono_image_build_metadata): We also need to
6044 "fixup" the MethodImpl table after we computed the final method
6045 indices. Call fixup_methodimpl() to do that.
6046 (fixup_methodimpl): New private method.
6048 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
6050 * assembly.c: special case mscorlib.dll (bug#72536),
6051 patch from Carlos Alberto Cortez.
6053 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
6055 * threads-types.h threads.c: Fix build bustage.
6057 * threads.c: Use a union for long<->double conversions.
6059 * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
6060 functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
6062 * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock
6063 containing the checkpoint call with NOT_TAKEN.
6065 * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt
6066 checkpoint before pushing the arguments, so they won't have to be
6069 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6071 * domain.c, assembly.c, domain-internals.h: make some data
6072 const and relocation-free.
6074 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
6076 * object.c, appdomain.c, class-internals.h: introduce the
6077 MonoClassRuntimeInfo structure to hold the info needed to
6078 use a class at runtime. Made mono_class_vtable() lock-free
6079 for all the appdomains.
6081 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
6083 * metadata-internals.h, image.c: introduce a per-image mempool to
6084 be used for memory that has the same lifetime as the image.
6086 2005-02-18 Lluis Sanchez Gual <lluis@novell.com>
6088 * domain.c: In mono_init_internal(), instead of selecting the first
6089 runtime version supported by an executable, get a list of all
6090 supported versions and select the one for which an mscorlib exists
6091 (since even if the runtime supports a given version, it doesn't mean
6092 that the framework for that version is installed).
6093 Modified get_runtimes_from_exe to support this behavior.
6094 In supported_runtimes, added information about additional system
6097 * assembly.c: Added support for more than one system assembly version
6098 per runtime version. Updated the assembly list.
6099 In mono_assembly_remap_version, removed the initial version check,
6100 since we don't know to which version we need to compare until we
6101 get the version set on which the assembly is based.
6102 Moved the code for loading corlib into the new method
6103 mono_assembly_load_corlib(), so it can be used by the initialization
6106 * domain-internals.h: Updated data structures and added declaration
6107 for mono_assembly_load_corlib.
6109 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
6111 * reflection.c (resolve_object): Fix the creation of the signature in
6112 the SignatureHelper case.
6114 * assembly.c (mono_assembly_remap_version): Fix binary search.
6116 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
6118 * class.c: Added inheritance check when a method is overloaded (from a
6119 virtual method or when implementing an interface) and when a class is
6120 inherited. Added functions to set a failure for a class and to
6121 retreive the exception from a failure.
6122 * class-internals.h: Added fields to MonoClass to keep the exception
6123 information status for inheritance (or other exceptions) to be thrown
6124 later (i.e. not at load time).
6125 * object.c: Throw the inheritance SecurityException when a type is to
6126 be created with either class or method inheritance violations.
6127 * reflection.c|h: Fix when getting declsec from a class. Removed
6128 unrequired code for class. Improved sanity in parameter naming.
6129 * security-manager.c|h: Added functions to check for class and method
6132 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
6134 * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
6135 and has_finalize in dynamic types as well.
6137 2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
6139 * culture-info-table.h : fixed currency format for en-GB (and so on).
6141 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
6143 * gc.c: ensure the GC handles never have 0 as a value.
6145 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
6147 * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
6148 a pointer to a struct to unmanaged code. Fixes #72625.
6150 2005-02-16 Martin Baulig <martin@ximian.com>
6152 * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
6154 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
6156 * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
6158 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
6160 * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
6162 * marshal.c (mono_ftnptr_to_delegate): If the delegate has the
6163 UnmanagedFunctionPointerAttribute, use it for determining calling convention
6166 * reflection.c (mono_custom_attrs_get_attr): New helper function.
6168 * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
6170 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
6172 * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
6173 changes to make the current context a field in MonoThread.
6175 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
6177 * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
6180 * marshal.c (mono_marshal_emit_native_wrapper): New helper function
6181 extracted from mono_marshal_get_native_wrapper.
6183 * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
6184 to create wrappers around native functions.
6186 * marshal.c (mono_ftnptr_to_delegate): Add support for creating
6187 delegates for arbitrary function pointers. Fixes #71472.
6189 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6191 * threads.c: cleaned up the code a little.
6193 2005-02-15 Martin Baulig <martin@ximian.com>
6195 * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
6198 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
6199 allocate larger chunks if needed.
6201 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
6203 * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
6206 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
6208 * domain.c: keep the domains in an array and ensure the domain ids
6209 are kept small, so they can be used as indexes to domain-specific data
6210 with a small memory overhead.
6212 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
6214 * icall.c: Handle byref types in Type icalls. Fixes #72544.
6216 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
6218 * Makefile.am: remove libmetadata: we build just libmonoruntime now.
6220 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
6222 * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
6224 * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
6227 * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
6229 2005-02-12 Ben Maurer <bmaurer@ximian.com>
6231 * domain-internals.h: add the hashtable here.
6233 * class-internals.h: Remove `info' from MonoMethod
6235 * domain.c: Add a new hashtable, jit_trampoline_hash
6237 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6239 * object.c: don't set the value of static fields
6242 2005-02-11 Martin Baulig <martin@ximian.com>
6244 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
6245 (mono_debug_add_method): Silently ignore the method if it's too big.
6246 (mono_debug_add_type): Likewise.
6248 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
6250 * threads.c, appdomain.c: remove #ifdefs from the code.
6252 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
6254 * metadata-internals.h: Added flags to MonoAssembly to cache the most
6255 common security informations. This allows us to stay in unmanaged code
6256 when doing LinkDemand and it's special cases (except for the first
6257 time for initialization). The flags a very much used with --security.
6258 * reflection.c|h: Added code to get declarative security attributes
6259 for LinkDemand and InheritanceDemand. This required to refactor the
6260 existing code for Demand.
6261 * security-manager.c|h: Added new method fields for the special cases
6264 2005-02-10 Martin Baulig <martin@ximian.com>
6266 * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
6267 (ves_icall_MonoDebugger_GetTypeToken): New interncall.
6269 2005-02-10 Martin Baulig <martin@ximian.com>
6271 * mono-debug.c, mono-debug-debugger.c: Completely reworked the
6272 debugging code; this is almost a complete rewrite.
6274 * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
6276 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6278 * domain.c, object.h: expose mono_string_equal () and
6279 mono_string_hash ().
6280 * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
6281 it's implemented in managed code.
6283 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6285 * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
6286 lo leak objects between appdomains.
6288 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6290 * assembly.c: old compilers compilation fix from
6291 robertj@gmx.net (Robert Jordan).
6293 2005-02-09 Ben Maurer <bmaurer@ximian.com>
6295 * class-internals.h: Little reminder for the future.
6297 * debug-helpers.c: Fix up wrapper_type_names
6299 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6301 * image.c, metadata-internals.h: when loading an image from a file,
6302 mmap all of it and use the same codepaths as when using a
6303 in-memory image: the code is simpler and we use less memory
6304 (both writable and readonly).
6306 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6308 * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
6309 API to alloc runtime data structures that need to be tracked by the
6310 GC and contain pointers.
6311 * appdomain.c, threads.c, object.c, gc.c: use the above changes to
6312 make the code more readable and eventually use a different GC.
6314 2005-02-09 Zoltan Varga <vargaz@freemail.hu>
6316 * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
6319 2005-02-09 Lluis Sanchez Gual <lluis@novell.com>
6321 * object.c: In release_type_locks(), don't release the cctor lock
6322 if it has already been released. This fixes a crash in the
6325 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
6327 * gc.c, marshal.c, icall.c: register a delegate for finalization
6328 only when the native function pointer has been allocated for it.
6330 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6332 * object.c: cleaned up some code, allocate objects that are
6333 pointer free with the atomic malloc variant. Allocate memory
6334 for static data from the mempool if it's pointer-free.
6335 Allocate the bounds array at the end of the array data, when needed.
6336 * object-internals.h, object.h: move a private function in a private
6338 * class.c: handle missing case in tracking references in fields.
6340 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
6342 * class.c, class-internals.h: keep track if a type has
6343 reference fields in either the instance or static fields.
6345 2005-02-07 Lluis Sanchez Gual <lluis@novell.com>
6347 * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
6348 and renamed to MonoRuntimeInfo. Added fields to store the expected
6349 framework assembly version. Changed mono_get_framework_version and
6350 mono_get_runtime_version for a single mono_get_runtime_info method.
6352 * assembly.c: Added method to remap system assembly versions to the
6353 current executing runtime version. Removed old mapping code.
6354 Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
6356 * icall.c, reflection.c: Track api changes.
6358 2005-02-06 Miguel de Icaza <miguel@novell.com>
6360 * loader.c (method_from_memberref): Improve error reporting,
6361 produce the class name instead of the typeref/typedef index.
6363 2005-02-07 Zoltan Varga <vargaz@freemail.hu>
6365 * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
6367 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
6369 * loader.c (mono_lookup_pinvoke_call): Allow for combination of
6370 stdcall and charset name mangling. Reorganize the code and add
6373 2005-02-05 Ben Maurer <bmaurer@ximian.com>
6375 * monodiet.c: More iters!
6377 * marshal.c: Iter usage.
6379 * icall.c: Iter usage.
6381 * object.c: Use iters.
6383 * debug-helpers.c: More iters
6385 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
6387 * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
6390 2005-02-05 Ben Maurer <bmaurer@ximian.com>
6392 * mono-debug-debugger.c: use iters
6394 * class.c, class-internals.h: mono_class_setup_events is static
6397 * All callers: use iters
6399 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
6401 * class.c string-icalls.c marshal.c reflection.c: Applied patch from
6402 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
6404 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
6406 * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
6408 * marshal.h: Add prototypes for ldfld/stfld_remote.
6410 * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
6411 this is called during startup.
6413 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
6415 * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
6416 MonoThreadsSync struct private in monitor.c. Changed the way
6417 MonoThreadsSync is allocated so it's faster and there is no
6418 need to keep track of it with a finalizer and it uses less memory.
6419 This also finally allows us to allocate mono objects as ptrfree when
6420 there are no reference fields.
6422 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
6424 * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
6425 disappearing link to the GC interface and use them to simplify
6428 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
6430 * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
6431 stfld_remote which call mono_load/store_field_new. This allows methods
6432 calling ldfld/stfld wrappers to be AOTed.
6434 * console-io.c: Include sys/filio.h under solaris.
6436 * console-io.c: Include curses.h if needed correctly.
6438 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
6440 * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
6441 method->klass as well.
6443 * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
6445 * class.c (mono_class_init): Switch on lazy initialization of
6448 * class.c (mono_class_get_finalizer): Handle the case when the
6449 finalizer is inherited.
6451 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6453 * console-io.c: <curses.h> is needed by term.h on solaris.
6455 2005-02-03 Ben Maurer <bmaurer@ximian.com>
6457 * icall.c, class-internals.h, monodiet.c, class.c: Remove
6458 mono_class_setup_properties where possible. Remove this ftn from
6459 the header file, and make it static.
6461 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
6463 * loader.c: Add missing setup_... call.
6465 * class.c: Add missing setup_... calls.
6467 * class.c (mono_class_init): Switch on lazy initialization of
6470 * class.c (mono_class_init): Fix generics broken by the recent changes.
6472 * monodiet.c (handle_type): Add missing setup_... calls.
6474 * class.c: Back out garbage in previous patch.
6476 * class.c: Add missing setup_... calls.
6478 * class.c (mono_class_get_method_from_name_flags): Avoid calling
6479 mono_class_setup_methods () if possible.
6481 * class-internals.h (MonoClass): Add 'has_cctor' flag.
6483 * class-internals.h (MonoCachedClassInfo): New structure.
6485 * class.c: Initialize properties and events fields of MonoClass lazily.
6487 * class.c: Add infrastructure for lazily initializing the methods and
6488 vtable fields of MonoClass. Not yet used.
6490 * class.c (mono_class_get_finalizer): New helper function.
6492 * class.c: Add infrastructure for loading some class related data from
6495 * object.c: Add infrastructure for initializing the vtable from data
6498 * gc.c (run_finalize): Use mono_class_get_finalizer ().
6500 * class.c loader.c object.c icall.c gc.c reflection.c: Call the
6501 appropriate initialization function before accessing parts of the
6502 MonoClass structure.
6504 * marshal.c: Fix warnings.
6506 * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
6508 * mono-debug-debugger.c (get_exception_message): Use
6509 mono_class_get_method_from_name_flags ().
6511 2005-02-02 Ben Maurer <bmaurer@ximian.com>
6513 * reflection.c, appdomain.c: Replace a few manual searches that
6514 Zoltan missed. (Paolo approved this part of my initial patch).
6516 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
6518 * profiler.c: disable recording statistical events at report time.
6520 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6522 * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
6523 to byteswap arrays of enum values, too (bug #72080).
6525 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
6527 * appdomain.c (set_domain_search_path): Allow this to be called if
6528 domain->setup is not yet set.
6530 * loader.c (mono_method_get_index): New helper function.
6532 * loader.c reflection.c: Use mono_method_get_index ().
6534 * class.c (mono_class_get_method_from_name_flags): New helper method.
6536 * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
6539 * class.c (mono_class_get_cctor): New helper method.
6541 * string-icalls.c object.c class.c marshal.c reflection.c: Use
6542 mono_class_get_method () to look up methods.
6544 2005-02-01 Miguel de Icaza <miguel@novell.com>
6546 * console-io.c: Fix the build, this should work on Windows.
6548 2005-01-31 Ben Maurer <bmaurer@ximian.com>
6550 * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
6551 be set to null to keep things valid
6553 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6555 * icall.c: added Console 2.0 icalls.
6556 * Makefile.am: added console-io.[ch]
6557 * console-io.[ch]: internal calls for Console 2.0 API.
6559 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6561 * class.c: make sure we consider all the interfaces
6562 when calculating max_interface_id (bug found by
6563 Jeroen Frijters running ikvm).
6565 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
6567 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
6568 valuetype fields to null.
6570 * object.c (set_value): Ditto. Fixes #71669.
6572 2005-01-31 Martin Baulig <martin@ximian.com>
6574 * metadata.c (mono_metadata_has_generic_params): New public
6575 function; checks whether something is a generic method.
6577 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
6579 * appdomain.c: fix infinite recursion when adding assemblies.
6581 2005-01-30 Sebastien Pouliot <sebastien@ximian.com>
6583 * object.c: Fix small typo to return all items for Environment.
6586 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6588 * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
6589 reflection.c: more domain and assembly-unload related fixes
6590 and memory leaks plugs.
6592 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
6594 * 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.
6596 2005-01-29 Ben Maurer <bmaurer@ximian.com>
6598 * loader.c (mono_method_signature): Make this method lazy
6599 (mono_get_method_from_token): Don't computate the signature here.
6601 Doing this saves quite a bit of memory. I got 90 kb on starting up
6602 monodoc. It should also save some disk reads on startup.
6604 * *: MonoMethod->signature might be NULL now. You *MUST* use
6605 mono_method_signature.
6607 2005-01-29 Zoltan Varga <vargaz@freemail.hu>
6609 * object.c (mono_runtime_get_main_args): Return an array from the
6610 current domain here. Fixes #71938.
6612 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
6614 * monitor.c: formatting changes to comply with the
6615 mono coding style and remove #ifdefs from the code.
6617 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6619 * metadata.c, private.h: remove some unneeded data
6620 and use a more compact representation for table schemas.
6622 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
6624 * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
6625 to get a better distribution in hash tables.
6626 * *.c: use mono_aligned_addr_hash() where appropriate.
6627 * assembly.c: make var static.
6629 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
6631 * domain-internals.h: Put MonoJitInfo on a diet.
6633 * domain.c: Fix a warning.
6635 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6637 * gc.c: rework the gc handles code to reuse handles
6640 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
6642 * domain.c: fixed long standing bug in mono_string_equal() which
6643 was brought to light with the ldstr changes.
6645 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
6647 * reflection.c: Remove warning by adding missing include for marshal.h
6649 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
6651 * domain.c, object.c: change the ldstr_table to hold
6652 MonoString* as keys: makes the runtime isinterned lookup
6653 faster and simplifies memory management.
6655 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
6657 * icall.c: Renamed GetEnvironmentVariable so internal* so it was
6658 possible to add imperative security checks before calling the icall.
6659 * reflection.c: Return security attributes on the original MonoMethod
6660 (and not the wrapped one). This fix permissions on icalls.
6662 2005-01-25 Dick Porter <dick@ximian.com>
6664 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
6665 the check for mktime() support actually test the mktime() return
6666 value. "Fixes" bug 71682, though the output is still different to
6669 2005-01-25 Martin Baulig <martin@ximian.com>
6671 * class.c (mono_class_is_assignable_from): Make this work for
6674 2005-01-24 Ben Maurer <bmaurer@ximian.com>
6676 * marshal.c (mono_string_utf8_to_builder)
6677 (mono_string_builder_to_utf16): We might not have ownership of the
6678 string. In thise case, we need to create a new buffer.
6680 * object-internals.h (mono_stringbuilder_capacity): sb->str might
6681 be null, in which case, use the default capacity.
6683 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6685 * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
6686 GC events to the profiler.
6688 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6690 * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
6691 if you don't want the GC to run.
6693 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
6695 * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
6696 start providing a GC API and keeping different implementations in
6698 * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
6700 2005-01-22 Ben Maurer <bmaurer@ximian.com>
6702 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
6703 mmap rather than allocating a huge buffer.
6704 (mono_debug_close_mono_symbol_file): Free the buffer allocated
6707 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
6709 * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
6710 and CheckExecutionRights.
6711 * reflection.c|h: Keep the index of the declarative security to be
6712 used, instead of the pointer, when AOT compiler is used. Also add
6713 class initialization when requesting demands.
6714 * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
6715 CheckExecutionRights. Both properties are now FALSE by default, and
6716 unmodifiable, unless the --security option is used.
6718 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6720 * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
6721 reflection.c: properly refcount images and assemblies, many leaks fixed.
6723 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6725 * threadpool.c: increase the timeout for threads in the thread pool to
6726 10s. Fixes bug #67159.
6728 2005-01-20 Bernie Solomon <bernard@ugsolutions.com>
6730 * class-internals.h: Sun's compiler insists on explicit
6731 signed on bit fields to handle then correctly.
6733 2005-01-19 Miguel de Icaza <miguel@ximian.com>
6735 * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
6736 Make the size of the array fit only the number of invalid path
6739 * class.c (_mono_class_get): Improve the error reporting when a
6740 class referenced is not found, to assist debugging.
6742 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
6744 * threads.c: fix off-by-one error.
6745 * domain.c: free data allocated in the domain.
6747 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
6749 * reflection.c (mono_method_body_get_object): Fill out exception info
6752 * object-internals.h: Add MonoReflectionExceptionHandlingClause
6755 2005-01-19 Martin Baulig <martin@ximian.com>
6757 * loader.c (mono_get_method_constrained): Make this work again.
6759 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
6761 * object-internals.h (_MonoReflectionMethodBody): Make local_index a
6762 guint16 to match the managed side.
6764 * reflection.c (mono_reflection_body_get_object): Fill out local
6767 * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
6770 * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
6771 'local_var_sig_token'.
6773 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
6775 * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks
6778 * reflection.c (mono_method_body_get_object): Handle abstract and
6781 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
6783 * marshal.c, loader.c, class-internals.h, reflection.c:
6784 store the emthod data for a wrapper in an array instead of a list.
6786 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
6788 * marshal.c: change the code to allocate memory more
6789 conservatively for method wrappers.
6791 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
6793 * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
6794 fields from MonoClass to the marshal info structure where they belong.
6796 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
6798 * class.c, object.c, class-internals.h, marshal.c: rearrange
6799 some fields and tweak some types to lower memory usage.
6801 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
6803 * threads.c (signal_thread_state_change): Handle the case when the
6804 target thread is the current thread.
6806 * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
6808 * marshal.c: Rename emit_ptr_to_str_conv and its pair to
6809 emit_ptr_to_object_conv.
6811 * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
6812 marshalling. Fixes #71352.
6814 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
6816 * metadata.h, blob.h: move table enum to blob.h so it can be included
6818 * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
6819 cut the size of MonoImage/MonoDynamicImage.
6821 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
6823 * profiler.c (mono_profiler_install_simple): Fix default arguments.
6825 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
6827 * reflection.c, reflection.h, icall.c: add a function to check
6828 if an attribute type is defined for a metadata object.
6830 2005-01-14 Lluis Sanchez Gual <lluis@novell.com>
6832 * object-internals.h: Added some needed fields from StringBuilder class.
6833 * marshal.c: Set the maxCapacity when creating a StringBuilder.
6835 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
6837 * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
6838 threads before shutting down the runtime.
6840 * threads.c (mono_thread_suspend_all_other_threads): New helper function.
6842 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
6844 * object-internal.h, threads.c: implement stacksize and
6845 parameterized thread start functionality (requires
6846 matching corlib). Marked broken code for later removal.
6848 2005-01-12 Martin Baulig <martin@ximian.com>
6850 * class-internals.h (MonoGenericClass): Moved the `initialized'
6851 flag to MonoDynamicGenericClass, removed `init_pending'.
6852 (MonoGenericInst): Added `is_reference' flag.
6854 2005-01-12 Zoltan Varga <vargaz@freemail.hu>
6856 * reflection.c (mono_image_create_pefile): Only set the pe_offset
6857 inside the MSDOS header. Fixes #71201.
6859 * gc.c (mono_gc_cleanup): Handle the case when this is called from the
6861 (mono_domain_finalize): Ditto.
6863 2005-01-12 Martin Baulig <martin@ximian.com>
6865 * class.c (mono_get_shared_generic_class): Use the cache for
6866 non-dynamic generic classes.
6868 * class-internals.h (mono_class_create_generic_2): Removed
6869 function prototype, this function is now static inside class.c.
6871 * class.c (mono_class_create_generic_2): Made this static, only
6872 call it from mono_class_init() and mono_class_setup_parent().
6873 (collect_implemented_interfaces_aux): Call mono_class_init() on
6874 the interfaces we collect.
6875 (mono_class_setup_vtable): Call mono_class_init (class->parent).
6877 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
6879 * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
6880 it a real thread handle.
6882 * domain-internals.h: Move exvar_offset from MonoJitInfo to
6883 MonoJitExceptionInfo, since each catch clause needs its own variable.
6885 2005-01-11 Dick Porter <dick@ximian.com>
6887 * image.c (mono_pe_file_open): New variant on mono_image_open()
6888 that does not set up the CLI metadata; used for FileVersionInfo so
6889 it can get the data for windows binaries too.
6891 * process.c (process_read_string_block): Don't read off the end of
6892 the StringTable block.
6894 These both fix bug 70766.
6896 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
6898 * gc.c: set some fields to NULL at GC cleanup time.
6899 * threads.c: if we quit the main thread, call exit ().
6901 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
6903 * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
6905 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
6907 * threads.h, threads.c, object.c: added accessor and settor for
6908 main_thread. Handle it specially when exiting from it: wait
6909 for other foreground threads to exit.
6911 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
6913 * process.c, verify.c: remove some bloat.
6915 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
6917 * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
6918 the calling convention to cdecl under win32.
6920 2005-01-08 Ben Maurer <bmaurer@ximian.com>
6922 * object.c (mono_object_get_size): New function to get the size of
6925 * profiler.c (simple_allocation): Use above.
6927 2005-01-08 Sebastien Pouliot <sebastien@ximian.com>
6929 * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
6930 ves_icall_System_AppDomain_getRootDomain (as it's not required to
6931 get an appdomain by it's id and we can't assume the root's id is 0).
6932 * domain-internals.h: Change the function prototype to match.
6933 * icall.c: Change the icall table for AppDomain.
6935 2005-01-08 Miguel de Icaza <miguel@ximian.com>
6937 * locales.c (string_invariant_compare_char): Only compute
6938 GUnicodeTypes in the case where we need them. Test for ordinality
6939 first and return if so.
6944 * FIXME: here we must use the information from c1type and c2type
6945 * to find out the proper collation, even on the InvariantCulture, the
6946 * sorting is not done by computing the unicode values, but their
6947 * actual sort order.
6950 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
6952 * loader.c: for P/Invoke methods, allow the "Internal" shared
6953 library name to refer to the calling process symbol namespace.
6955 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
6957 * Makefile.am: Add the security manager to the build.
6958 * security-manager.c|h: New. Initialization of the security manager.
6960 2005-01-07 Dick Porter <dick@ximian.com>
6963 * monitor.c: Update thread state during Monitor and WaitHandle
6964 waits. Fixes bug 71031.
6966 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
6968 * reflection.c (property_encode_signature): Correctly handle when the
6969 property has no methods.
6971 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
6973 * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
6975 * reflection.c (reflection_methodbuilder_from_method_builder): Copy
6976 fields from mb, not rmb. Fixes #71017.
6978 * marshal.c (emit_ptr_to_str_conv): Add support for
6979 ByValTStr -> string conversion. Fixes #71015.
6981 * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
6983 * mempool.c (mono_mempool_contains_addr): New helper function.
6985 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
6987 * metadata.c (mono_metadata_compute_size): Fix size calculation of
6988 HasSematics encoded fields.
6990 * metadata.c (mono_type_to_unmanaged): Improve error message for
6991 invalid string marshalling.
6993 * metadata.c: Fix warnings.
6995 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
6997 * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
7000 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
7002 * domain.c object.c domain-internals.h: Revert part of r38077 since the
7003 keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
7006 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
7008 * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
7009 so methods containing these can be AOTed.
7011 2005-01-03 Martin Baulig <martin@ximian.com>
7013 * loader.c (find_method): Removed the hack for generic instances.
7014 (method_from_memberref): If our parent is a generic instance, pass
7015 its generic type definition to find_method() and then inflate the
7017 (mono_get_method_constrained): Pass the generic type definition to
7018 find_method() and inflate the method later.
7020 * class-internals.h (MonoStats): Added `generic_class_count'.
7022 * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
7023 Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
7025 * reflection.c (mono_custom_attrs_from_params): Don't ignore
7026 generic type definitions.
7028 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
7030 * loader.c icall.c: Fix warnings.
7032 2004-12-29 Zoltan Varga <vargaz@freemail.hu>
7034 * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
7035 blittable types. Fixes #70864.
7037 2004-12-29 Martin Baulig <martin@ximian.com>
7040 (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
7042 * reflection.c (mono_method_get_object): Create a
7043 "System.Reflection.MonoGenericMethod" for inflated methods; don't
7044 call mono_get_inflated_method().
7046 * class-internals.h (MonoStats): Added `inflated_method_count_2'.
7048 2004-12-27 Martin Baulig <martin@ximian.com>
7050 * class-internals.h (MonoMethod): Added `is_inflated' flag.
7051 (MonoMethodInflated): Added `inflated' field.
7053 * class.c (mono_class_inflate_generic_method): Don't really
7054 inflate the method here; just set the `is_inflated' flag in the
7056 (mono_class_get_inflated_method): Actually inflate the method here
7057 if it's not already inflated; we use the MonoMethodInflated's new
7058 `inflated' field as a cache.
7060 2004-12-26 Martin Baulig <martin@ximian.com>
7063 (inflate_generic_class): Moved some code out of inflate_generic_type().
7064 (mono_class_inflate_generic_method): If we're already inflated,
7065 inflate the context and use the declaring method; ie. make sure
7066 the declaring method of an inflated method is always the generic
7068 (mono_class_create_from_typedef): Create
7069 `class->generic_container->context->gclass'.
7071 2004-12-24 Ben Maurer <bmaurer@ximian.com>
7073 * metadata-internals.h, marshal.c, reflection.c: More
7074 MonoGHashTable->GHashTable.
7076 * domain-internals.h, class.c: Change MonoGHashTable's into
7077 GHashTables for some cases where no gc stuff is used
7079 All users: update apis
7081 2004-12-23 Ben Maurer <bmaurer@ximian.com>
7083 * metadata.c (builtin_types): Make this `const'. Makes this get
7084 put into the shareable section.
7085 (mono_metadata_init): Casts to make gcc happy.
7087 2004-12-22 Zoltan Varga <vargaz@freemail.hu>
7089 * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
7091 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
7093 * icall.c: Added an internal call to retrieve the position and length
7094 of assembly-level declarative security attributes (RequestMinimum,
7095 RequestOptional and RequestRefuse). This is used by the Assembly class
7096 to re-create the corresponding permission sets.
7098 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
7100 * marshal.c: fix the stelemref wrapper to be type correct
7103 2004-12-20 Ben Maurer <bmaurer@ximian.com>
7105 * icall.c (ves_icall_System_Object_GetHashCode): There was no need
7106 to do key & 0x7fffffff. Hashtable already does this. It just
7107 results in longer code.
7109 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
7111 * appdomain.c: Bump corlib version.
7112 * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
7113 * domain.c: Add RuntimeSecurityFrame to mono_defaults.
7114 * reflection.c|h: Add functions to get declarative security infos
7115 (blob position and length) for assemblies, classes and methods.
7117 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
7119 * reflection.c: sort the constant table (bug #70693).
7121 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
7123 * object-internals.h, threads.c, domain.c: add accessors for
7124 the MonoThread and MonoDomain tls keys.
7126 2004-12-18 Martin Baulig <martin@ximian.com>
7128 * class.c (inflate_generic_type): If we're inflating a generic
7129 instance, set `ngclass->context->container = context->container';
7130 ie. the container we inflated into.
7132 * metadata.c (mono_metadata_parse_generic_param): Reflect above
7133 inflate_generic_type() changes.
7135 2004-12-17 Martin Baulig <martin@ximian.com>
7138 (MonoGenericClass): Replaced `MonoType *generic_type' with
7139 `MonoClass *generic_class'. Removed `dynamic_info'; if
7140 `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
7141 (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
7143 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
7145 * exception.c (mono_exception_from_token): New helper function.
7147 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
7149 * assembly.c (mono_assembly_load_with_partial_name): Call
7150 mono_assembly_loaded before invoking the preload hooks. Fixes
7153 * object-internals.h (MonoThread): Change culture_info and
7154 ui_culture_info into an array.
7156 * threads.c: Cache culture info objects from more than one appdomain.
7158 * threads.c threads-types.h icall.c: Add icalls for manipulating the
7161 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
7163 * threads.h threads.c appdomain.c: Clear the culture_info field of
7164 all threads during unloading if they point to an object in the dying
7167 2004-12-13 Ben Maurer <bmaurer@ximian.com>
7169 * culture-info.h (TextInfoEntry): New struct
7170 * object-internals.h: sync with managed
7171 * locales.c: fill the `text_info_data' field
7172 * culture-info-tables.h: update
7174 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
7176 * Makefile.am, monodiet.c: add monodiet, an IL code garbage
7179 2004-12-12 Ben Maurer <bmaurer@ximian.com>
7181 * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
7182 (ves_icall_ModuleBuilder_getMethodToken): Ditto
7184 2004-12-12 Martin Baulig <martin@ximian.com>
7186 * mono-debug-debugger.c (write_type): If we're an enum and the
7187 builtin types have already been initialized, call mono_class_init().
7189 2004-12-11 Martin Baulig <martin@ximian.com>
7191 * metadata.c (mono_metadata_load_generic_params): Added
7192 `MonoGenericContainer *parent_container' argument; automatically
7193 compute `container->is_method'; pass the correct owner to
7196 * reflection.c (compare_genericparam): Sort the GenericParam table
7197 according to increasing owners.
7199 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
7201 * profiler.c: allow disabling the default profiler.
7203 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
7205 * decimal.c, icall.c: allow disabling System.Decimal support.
7207 2004-12-09 Marek Safar <marek.safar@seznam.cz>
7209 * reflection.c: Add support for null attribute arguments.
7211 2004-12-09 Martin Baulig <martin@ximian.com>
7213 * metadata.h, loader.h: Use `idx' instead of `index' in parameter
7214 names to get rid of compiler warnings.
7216 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
7218 * marshal.c (mono_marshal_get_struct_to_ptr): Call
7219 mono_marshal_load_type_info (). Fixes #69625.
7220 (mono_marshal_get_ptr_to_struct): Likewise.
7222 2004-12-08 Martin Baulig <martin@ximian.com>
7224 * mono-debug.h: Bumped version number to 47.
7226 * mono-debug-debugger.c
7227 (mono_debugger_event_handler, mono_debugger_event): Take two
7228 guint64 arguments insteed of a gpointer and a guint32.
7230 2004-12-08 Martin Baulig <martin@ximian.com>
7232 * debug-mono-symfile.h
7233 (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
7234 `address' to `native_offset'.
7236 2004-12-08 Martin Baulig <martin@ximian.com>
7238 * class.c (mono_class_create_from_typespec): Only inflate if we
7239 either have `context->gclass' or `context->gmethod'.
7241 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
7243 * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
7245 * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
7247 * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
7249 * reflection.c (mono_assembly_get_object): Remove the workaround put
7252 * appdomain.c: Use the corlib_internal field from MonoAssembly.
7254 * appdomain.c: Bump corlib version.
7256 * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
7257 be visible in other appdomains.
7259 2004-12-07 Ben Maurer <bmaurer@ximian.com>
7261 * threads.c: Interlocked inc and dec for longs were messed up,
7262 use a KISS based impl for this. Fixes 70234
7264 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
7266 * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
7268 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
7270 * icall.c: fix to follow policy not to allow struct
7271 arguments in icalls.
7273 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7275 * process.c: make the patch that handles spaces in file paths work
7276 on mono/windows too.
7278 2004-12-06 Martin Baulig <martin@ximian.com>
7280 * class.c (mono_class_create_generic): Call
7281 mono_class_setup_supertypes() if we're dynamic.
7282 (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
7284 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
7286 * object-internals.h: Add new fields to MonoThread.
7288 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7290 * icall.c threads-types.h threads.c: Add new icalls.
7292 * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
7294 * object-internals.h (MonoReflectionAssembly): Sync object layout with
7297 * appdomain.c: Bump corlib version.
7299 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
7300 internal assemblies. Fixes #69181.
7302 2004-12-05 Martin Baulig <martin@ximian.com>
7304 * class.c (mono_class_inflate_generic_signature): Make this a
7305 no-op if `context' is NULL or we don't have any type parameters;
7306 also copy `sentinelpos'.
7308 2004-12-04 Zoltan Varga <vargaz@freemail.hu>
7310 * image.c: Add unbox_wrapper_cache.
7312 * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
7314 * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
7317 * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
7320 * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
7322 2004-12-04 Martin Baulig <martin@ximian.com>
7324 * loader.c (mono_method_get_signature_full): New public function;
7325 like mono_method_get_signature(), but with an additional
7326 `MonoGenericContext *' argument.
7328 * class.c (mono_class_inflate_generic_signature): Formerly known
7329 as inflate_generic_signature(); make this public.
7331 2004-12-04 Martin Baulig <martin@ximian.com>
7334 (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
7335 instead of a `MonoGenericContainer *'.
7336 (mono_metadata_parse_array_full): Likewise.
7337 (mono_metadata_parse_signature_full): Likewise.
7338 (mono_metadata_parse_method_signature_full): Likewise.
7339 (mono_metadata_parse_generic_inst): Likewise.
7340 (mono_metadata_parse_generic_param): Likewise.
7341 (mono_metadata_parse_mh_full): Likewise.
7342 (mono_type_create_from_typespec_full): Likewise.
7344 2004-12-03 Martin Baulig <martin@ximian.com>
7346 * class-internals.h (MonoGenericContainer): Replaced the
7347 `MonoGenericContext * pointer with a `MonoGenericContext'
7348 structure and made it the first element.
7350 2004-12-03 Martin Baulig <martin@ximian.com>
7353 (inflate_generic_type): Set the `context->container' when creating
7354 a new MonoGenericContext.
7355 (mono_class_inflate_generic_method): Likewise.
7356 (mono_class_create_from_typespec): Just use `context->container'
7357 to get the container.
7359 * loader.c (method_from_methodspec): Set `context->parent' from
7360 `context->container' - and if that's a method container, use its
7361 parent. Also set the `context->container' when creating a new
7363 (mono_get_method_from_token): Use just `context->container' to get
7366 * metadata.c (do_mono_metadata_parse_generic_class): Also set
7367 `gclass->context->container'.
7369 * reflection.c (do_mono_reflection_bind_generic_parameters): Set
7370 the `context->container' when creating a new MonoGenericContext.
7372 2004-12-03 Zoltan Varga <vargaz@freemail.hu>
7374 * reflection.c (compare_genericparam): Sort params with identical
7375 owner by their number. Fixes gen-111 on sparc.
7377 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
7379 * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
7380 around the domain changes.
7382 * appdomain.c (mono_domain_unload): Handle the case when the thread
7383 calling Unload is itself being aborted during unloading. Fixes #70022.
7385 * appdomain.h: Add prototype for mono_install_runtime_cleanup.
7387 * marshal.c (emit_thread_interrupt_checkpoint_call): Call
7388 checkpoint_func as an icall so it gets a wrapper.
7389 (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
7390 in the cross-appdomain wrappers too.
7392 * threads.c (mono_thread_has_appdomain_ref): Make this public.
7394 * assembly.c (mono_assembly_open_from_bundle): Fix warning.
7396 * reflection.c: Fix some memory leaks.
7398 2004-12-02 Martin Baulig <martin@ximian.com>
7400 * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
7402 * metadata.c (generic_class_cache): New static hashtable.
7403 (mono_metadata_lookup_generic_class): New public method.
7405 2004-12-02 Martin Baulig <martin@ximian.com>
7407 * class.c (mono_class_create_from_typedef): Call
7408 mono_class_setup_parent() and mono_class_create_mono_type() before
7409 parsing the interfaces.
7411 2004-12-02 Martin Baulig <martin@ximian.com>
7413 * metadata.c (generic_inst_cache): New static hashtable.
7414 (mono_metadata_lookup_generic_inst): New public function.
7415 (mono_metadata_inflate_generic_inst): New public function.
7416 (mono_metadata_parse_generic_inst): New public function.
7417 (do_mono_metadata_parse_generic_class): Use the new
7418 mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
7419 since this'll also use the cache.
7421 * reflection.c (mono_reflection_bind_generic_method_parameters):
7422 Use mono_metadata_lookup_generic_inst() to use the new cache.
7424 * class.c (inflate_mono_type): Use
7425 mono_metadata_inflate_generic_inst() to inflate a generic
7426 instance; this'll also use the new cache.
7428 * loader.c (method_from_methodspec): Use
7429 mono_metadata_parse_generic_inst() and
7430 mono_metadata_inflate_generic_inst() rather than parsing it
7431 manually, so we can use the new cache.
7433 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
7435 * threads.c (wait_for_tids): Do not incorrectly free threads when
7438 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
7440 * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
7441 iter->args based on whether parameters are passed in registers (i.e.
7442 MONO_ARCH_REGPARMS is defined)
7444 2004-12-01 Zoltan Varga <vargaz@freemail.hu>
7446 * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
7447 the exception message. Fixes #70070.
7448 (method_from_methodspec): Fix warnings.
7450 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7452 * process.c: (complete_path) return the path quoted
7454 2004-12-01 Martin Baulig <martin@ximian.com>
7456 * class-internals.h (MonoGenericInst): New structure.
7457 (MonoGenericClass): Replaced `type_argc', `type_argv' and
7458 `is_open' with `MonoGenericInst *inst'.
7459 (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
7460 `is_open' with `MonoGenericInst *inst'.
7462 2004-11-30 Martin Baulig <martin@ximian.com>
7464 Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
7466 * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
7467 to `generic_class_cache'.
7470 (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
7471 (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
7472 (mono_generic_inst_is_valuetype): Renamed to
7473 mono_generic_class_is_valuetype().
7476 (MonoGenericInst): Renamed to MonoGenericClass.
7477 (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
7478 (MonoClass): Renamed `generic_inst' to `generic_class'.
7479 (MonoGenericContext): Renamed `ginst' to `gclass'.
7481 * object-internals.h
7482 (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
7484 * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
7485 mono_reflection_generic_class_initialize().
7487 * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
7488 now known as "System.Reflection.MonoGenericClass".
7489 (monogenericinst_icalls): Renamed to monogenericclass_icalls.
7491 2004-11-29 Sebastien Pouliot <sebastien@ximian.com>
7493 * class-internals.h: Added a flag field to MonoClass to cache the
7494 declarative security attributes actions associated with the class.
7495 * domain-internals.h: Added booleans to MonoJitInfo to cache the
7496 (class or method level) stack modifiers (Assert, Deny and PermitOnly)
7497 applicable to the JITted method.
7498 * reflection.c|h: Added functions to extract (as flags) which security
7499 actions are available (declaratively) for a method, class or assembly.
7500 * metadata.c|h: Added functions to search the declarative security
7501 table in the metadata.
7503 2004-11-29 Ben Maurer <bmaurer@ximian.com>
7505 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
7506 EXPORTEDTYPES are already in the class name cache, so there is no
7507 need to add extra code here to look at them. Just removes a bit of
7510 (ves_icall_System_Environment_get_TickCount): No need for #if
7511 WINDOWS. We already have the code in io-layer.
7513 2004-11-28 Martin Baulig <martin@ximian.com>
7516 (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
7519 2004-11-27 Miguel de Icaza <miguel@ximian.com>
7521 * assembly.c (do_mono_assembly_open): Instead of having a
7522 conditional WITH_BUNDLE, incorporate support for bundles here, by
7523 having a global `bundles' variable holding a pointer to the actual
7526 (mono_register_bundled_assemblies): New API call used by the
7529 See mkbundle.1 for details.
7531 2004-11-27 Martin Baulig <martin@ximian.com>
7533 * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
7534 the vtable for generic methods.
7536 2004-11-26 Martin Baulig <martin@ximian.com>
7539 (mono_metadata_generic_method_hash): New public function.
7540 (mono_metadata_generic_method_equal): Likewise.
7543 (MonoGenericContainer): Added `GHashTable *method_hash'.
7545 * reflection.c (ReflectionMethodBuilder): Added
7546 `MonoGenericContainer *generic_container'.
7547 (reflection_methodbuilder_to_mono_method): Don't create a new
7548 MonoGenericContainer each time we're called.
7549 (mono_reflection_bind_generic_method_parameters): Use
7550 `container->method_hash' to cache the results so we don't create a
7551 different method if we're called several times with the same
7554 * loader.c (method_from_methodspec): Use the new
7555 `container->method_hash' here, too.
7557 2004-11-26 Martin Baulig <martin@ximian.com>
7559 * class.c (inflate_generic_signature): Correctly compute
7560 `res->has_type_parameters'.
7561 (mono_class_vtable): Use the `has_type_parameters' flag to
7562 determine whether we're a generic method.
7564 * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
7566 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
7568 * object.c (mono_runtime_run_main): Fix a small memory leak.
7570 2004-11-25 Martin Baulig <martin@ximian.com>
7572 * class.c (set_generic_param_owner): Fixed the loop.
7574 2004-11-25 Martin Baulig <martin@ximian.com>
7576 * object.c (mono_class_vtable): Don't create any JIT wrappers for
7579 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
7581 * reflection.c: Allow all kinds of whitespace, not just ' ' in type
7582 names. Fixes #69787.
7584 2004-11-24 Martin Baulig <martin@ximian.com>
7586 * class.c (mono_class_create_generic_2): If we don't have a
7587 `ginst->parent', inflate `gklass->parent' to get our parent.
7589 2004-11-24 Martin Baulig <martin@ximian.com>
7591 * reflection.c (compare_genericparam): Correctly sort the
7592 GenericParam table; fixes #69779.
7594 2004-11-23 Ben Maurer <bmaurer@ximian.com>
7596 * reflection.c: When writing a PE file, don't create a huge
7597 buffer in memory. Just write the arrays we have to the file.
7598 This reduces memory usage.
7600 * metadata-internals.h: MonoDynamicStream pefile is no longer used
7603 2004-11-17 Martin Baulig <martin@ximian.com>
7605 * class.c (mono_class_init): Don't setup `class->parent' for
7606 dynamic instances; moved this to mono_class_generic_2().
7607 (mono_class_create_generic): Also set `klass->inited' for dynamic
7609 (mono_class_create_generic_2): Don't do anything for dynamic
7610 generic instances. Set `klass->parent' here and also call
7611 mono_class_setup_parent() here.
7613 * reflection.c (do_mono_reflection_bind_generic_parameters): Added
7614 `MonoType *parent' argument; set `ginst->parent' before calling
7615 mono_class_create_generic_2(), so we set the correct parent.
7617 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
7619 * reflection.c: allow getting attributes from ModuleBuilder
7622 2004-11-17 Martin Baulig <martin@ximian.com>
7624 * class.c (mono_class_create_from_typedef): If a type parameter is
7625 inherited from an outer class, set its owner to that class.
7627 2004-11-17 Atsushi Enomoto <atsushi@ximian.com>
7629 * reflection.c: (mono_image_create_pefile): Don't use NULL argument
7630 for (int*) written size. This fixes bug #69592.
7632 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
7634 * icall.c: Added IsAuthenticodePresnet internal call.
7635 * image.c|h: New function that check a MonoImage for an Authenticode
7636 signature in the certificate PE data directory.
7637 * security.c|h: New internal call to ask the runtime if an
7638 Authenticode signature seems referenced in the PE header.
7640 2004-11-15 Zoltan Varga <vargaz@freemail.hu>
7642 * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
7644 * reflection.c (mono_image_create_pefile): Free the assembly streams
7645 after writing out the assembly file.
7647 * object.c (mono_runtime_run_main): Fix small memory leak.
7649 * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
7650 property access modifiers. Fixes #69389.
7652 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
7654 * domain.c, object.c, object-internals.h, domain-internals.h,
7655 object.h, marshal.c: keep dynamic code info per domain.
7657 2004-11-15 Martin Baulig <martin@ximian.com>
7659 * class.c (mono_type_get_name_recurse): Put type arguments in
7660 `[',`]' instead of in `<','>'. Thanks to Atsushi for the patch,
7663 2004-11-15 Martin Baulig <martin@ximian.com>
7665 * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
7666 (mono_class_setup_vtable): When computing `the_cname' for a
7667 generic instance, don't include the namespace since we'd otherwise
7670 2004-11-15 Martin Baulig <martin@ximian.com>
7672 * class.c (mono_class_create_generic): Changed return type to void.
7673 (mono_class_create_generic_2): New public function; setup
7674 `class->method', `class->field' and `class->interfaces' here
7675 instead of in mono_class_init().
7677 * class.h (mono_class_create_generic): Moved to class-internals.h.
7679 2004-11-14 Ben Maurer <bmaurer@ximian.com>
7681 * reflection.c (mono_image_create_pefile): take a file HANDLE.
7682 rather than writing to memory, write to this file. Right now,
7683 we are just writting into a buffer, and copying that. However
7684 we can avoid the buffer later.
7686 (mono_dynamic_stream_reset): new function
7688 * icall.c, object-internals.h: update for the above.
7690 2004-11-13 Ben Maurer <bmaurer@ximian.com>
7692 * reflection.c: Remove *_ATOMIC macros. We really shouldn't
7693 have been using gc'd memory. First it is slower, unlikely
7694 the comment in the source code said, secondly, it increases
7695 our footprint to do it in the gc.
7697 * icall.c (WriteToFile): rename of getDataChunk. Rewrite
7698 the method so that it does not have to copy to managed code.
7700 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
7702 * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
7704 2004-11-12 Martin Baulig <martin@localhost>
7706 * reflection.c (mono_image_create_token): Allow generic method
7707 definitions here, since they may appear in an `.override'; see
7708 gen-98/gen-99 for an example.
7710 2004-11-11 Zoltan Varga <vargaz@freemail.hu>
7712 * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
7715 * marshal.c (mono_string_to_ansibstr): Make g_error messages more
7718 2004-11-11 Martin Baulig <martin@ximian.com>
7720 * class.c (mono_class_setup_vtable): In an explicit interface
7721 implementation, the method name now includes the arity.
7723 2004-11-10 Zoltan Varga <vargaz@freemail.hu>
7725 * object.c (mono_array_full_copy): Fix warning.
7727 2004-11-10 Lluis Sanchez Gual <lluis@novell.com>
7729 * appdomain.c: Removed look_for_method_by_name(). Use the new method
7730 mono_class_get_method_from_name() instead.
7732 * class-internals.h: Added two new types of wrappers.
7733 Added MonoRemotingTarget enum. Added new trampoline function type, which
7734 takes an additional MonoRemotingTarget value as parameter, so it is
7735 possible to request a trampoline for a specific target.
7737 * class.c: Added new mono_class_get_method_from_name() method.
7739 * class.h: In MonoRemoteClass, we can have now to vtables, one for
7740 general remoting sinks and one specific for cross domain calls.
7742 * debug-helpers.c: Added new wrapper names.
7744 * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
7747 * image.c: Porperly delete value objects form the remoting invoke hashtable.
7749 * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
7750 with several other methods (mono_marshal_get_xappdomain_dispatch,
7751 mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
7752 and others) can generate a fast remoting wrapper for cross domain calls.
7753 More information can be found in docs/remoting.
7754 Other changes: Removed mono_find_method_by_name, and used
7755 mono_class_get_method_from_name instead.
7756 Remoting wrappers are now stored in a MonoRemotingMethods struct, which
7757 is stored in the remoting invoke hashtable.
7759 * marshal.h: published the new method for getting the xdomain wrapper,
7760 and also added a method for getting the adequate wrapper for a given
7763 * object-internals.h, object.c: Added a couple of methods for capying and
7765 Modified mono_install_remoting_trampoline, which takes the new remoting
7766 trampoline that has a remoting target as parameter.
7767 mono_class_proxy_vtable now also takes a remoting target as parameter, and
7768 will return the most suitable vtable for the target.
7769 Added mono_remote_class_vtable, which returns the vtable of a remote class
7770 (which can be the normal remoting vtable or the xdomain vtable).
7772 * threads.c: the xdomain invoke and dispatch wrappers must also be
7773 protected against interruptions.
7775 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7777 * icall.c: use memmove in BlockCopyInternal when the source and
7778 destination arrays are the same.
7780 2004-11-09 Martin Baulig <martin@ximian.com>
7782 * class-internals.h (MonoGenericContainer): Removed `method' and
7783 `signature', replaced them with `is_method' and `is_signature'
7784 flags. Added `context'.
7786 * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
7787 instead of a `MonoGenericContainer *'.
7789 * metadata.c (mono_metadata_generic_param_equal): Removed the hack
7790 for dynamic type parameters.
7791 (mono_metadata_load_generic_params): Setup `container->context'.
7793 * reflection.c (mono_reflection_setup_generic_class): Setup
7794 `tb->generic_container->context'.
7795 (do_mono_reflection_bind_generic_parameters): Use
7796 mono_class_inflate_generic_type() to correctly inflate types,
7797 rather than using our own hack just for MONO_TYPE_VAR.
7799 2004-11-09 Martin Baulig <martin@ximian.com>
7801 * class.c (mono_class_inflate_generic_method): Small fix; don't
7805 (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
7806 (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
7807 (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
7808 (ves_icall_Type_BindGenericParameters): Likewise.
7809 (ves_icall_Type_get_IsGenericInstance): Likewise.
7810 (ves_icall_Type_GetGenericParameterPosition): Likewise.
7811 (ves_icall_MonoType_get_HasGenericArguments): Likewise.
7812 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
7813 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
7815 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
7817 * assembly.c (mono_assembly_names_equal): Reenable the comparison of
7818 assembly versions and public key tokens. Fixes #69113.
7820 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
7822 * metadata.c: fix bug introduced with the type cache changes
7825 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
7827 * metadata.h, metadata.c, domain-internals.h, marshal.c: include
7828 the MonoClass pointer instead of the token in exception clauses.
7829 * reflection.c: updates for the above and make the code not depend
7830 on the structure of MonoExceptionClause.
7832 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
7834 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
7835 Add support for dynamic assemblies. Fixes #69114.
7837 * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
7839 2004-11-07 Ben Maurer <bmaurer@ximian.com>
7841 * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
7842 since most only those methods use it. the code member of
7843 MonoMethodPInvoke was dead, so that can be removed too. Also,
7844 remove inline_count (again, not used), and move slot so that it
7845 can share bits with some other flags. This saves 8 bytes in the
7846 structure and gives us about 50 kb back for mcs helloworld.cs
7848 * *.[ch]: Do naming changes for the above.
7850 * loader.c (mono_method_get_header): Lazily init the header
7852 (mono_get_method_from_token): don't init the header here
7853 (mono_free_method): the header may never be allocated
7855 Overall, this saves 150 kb of unmanaged allocations
7856 for mcs helloworld.cs. That accounts for 10% of the unmanaged
7859 * loader.c, loader.h (mono_method_get_header): new accessor.
7861 * *.[ch]: use the above method. Prepares us to lazily load
7864 * *.[ch]: Clean up all the pesky warnings. gcc now only gives
7865 three warnings, which are actual bugs (see 69206).
7867 * class-internals.h (MonoMethod): Remove remoting_tramp. It is
7868 unused. Saves a cool 4 bytes / method.
7870 2004-11-06 Ben Maurer <bmaurer@ximian.com>
7872 * metadata.c (builtin_types): Add types for System.Object here.
7873 (mono_metadata_parse_type_full): Cache MonoType*'s that are
7874 for a class or valuetype from klass->this_arg or klass->byval_arg.
7876 On mcs for a hello world, this gets us down from 21836 MonoType's
7879 (mono_metadata_free_type): Account for the above change.
7881 2004-11-06 Zoltan Varga <vargaz@freemail.hu>
7883 * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an
7884 exception instead of asserting if name is null.
7885 (ves_icall_System_AppDomain_GetData): Ditto.
7887 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
7889 (ves_icall_get_enum_info): Avoid crash when called on a non-finished
7892 * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly):
7893 Return NULL when the domain does not have entry_assembly set.
7895 * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal):
7896 Add a 'resource_modules' argument.
7897 (ves_icall_type_GetTypeCode): Fix typecode of byref types.
7899 * reflection.c (mono_reflection_create_runtime_class): Move setting
7900 of wastypebuilder here, so mono_get_type_object () returns a MonoType
7903 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
7904 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
7905 Throw an ArgumentNullException if 'ptr' is null.
7907 * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
7908 assemblies here. Fixes #69020.
7910 2004-11-05 Geoff Norton <gnorton@customerdna.com>
7912 * reflection.c (build_compressed_metadata): Fix the previous patch for
7913 big endian systems. GUINT32_FROM_LE isn't needed on strlen and was overwriting
7916 2004-11-04 Zoltan Varga <vargaz@freemail.hu>
7918 * assembly.c (mono_assembly_names_equal): Allow a match if one of
7919 the cultures is false. Fixes #69090.
7921 * reflection.c (build_compressed_metadata): Fix invalid memory read
7922 detected by valgrind.
7924 * reflection.c (mono_reflection_get_type): Avoid triggering a
7925 TypeResolve multiple times for the same type. Fixes #65577.
7927 2004-11-04 Ben Maurer <bmaurer@ximian.com>
7929 * marshal.c: Avoid using ldftn to call managed functions. It is
7930 much slower than just a call.
7932 * reflection.c (mono_module_get_object): free the basename we
7933 allocate here from glib.
7935 * reflection.c (ensure_runtime_vtable): make sure to free
7936 overrides. Also, we were allocating an array of MonoMethod not an
7937 array of MonoMethod*.
7939 * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
7941 * image.c (mono_image_close): free image->guid here.
7943 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
7945 * reflection.c: Fix some spec conformance issues with the PE file
7946 structures so mcs compiled apps run on the Net 2.0 beta.
7948 2004-11-01 Zoltan Varga <vargaz@freemail.hu>
7950 * string-icalls.c (ves_icall_System_String_ctor_encoding):
7951 Implement this. Fixes #67264.
7953 * debug-helpers.h debug-helpers.c marshal.c: Move
7954 mono_find_method_by_name to debug-helpers.c.
7956 2004-10-31 Zoltan Varga <vargaz@freemail.hu>
7958 * object.c (mono_release_type_locks): type_initialization_hash is
7961 * reflection.c object.c object-internals.h: Fix warnings.
7963 * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
7964 without accessors. Fixes #61561.
7966 * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
7967 application base from the root domain if not set. Fixes #65641.
7968 (mono_runtime_init): Fix warning.
7970 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7972 * appdomain.c: call mono_thread_pool_init.
7973 * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
7974 of worker threads based on the number of CPUs and the environment
7975 variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
7976 for non-windows (windows) systems.
7978 2004-10-27 Chris Toshok <toshok@ximian.com>
7980 * mono-debug-debugger.c (write_class): don't call mono_class_init
7981 here, as even with the check for (!klass->init_pending), we get
7982 into a situation where we're hitting cycles in class
7983 initialization. Fixes #68816.
7985 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
7987 * image.c: Avoid overwriting values in the loaded_images_hash when an
7988 assembly is loaded multiple times. Fixes #61152.
7990 * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
7991 so multiple satellite assemblies for the same name can be loaded.
7994 * mono_domain_assembly_preload: Actually return the loaded assembly,
7997 * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
7998 (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
8000 * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
8001 pending finalizers are not invoked after the appdomain has been
8002 unloaded. Fixes #67862.
8004 2004-10-22 Martin Baulig <martin@ximian.com>
8006 * mono-debug-debugger.c
8007 (mono_debugger_runtime_invoke): Don't box valuetypes.
8009 2004-10-22 Chris Toshok <toshok@ximian.com>
8011 * mono-debug-debugger.c (do_write_class): handle .cctors too, and
8012 don't hide private methods.
8014 2004-10-22 Sebastien Pouliot <sebastien@ximian.com>
8016 * icall.c: Allows the runtime to "share" (when known) the public key
8017 token of an assembly. This avoid the need to recalculate the token
8018 (from the public key) in managed code.
8020 2004-10-21 Chris Toshok <toshok@ximian.com>
8022 * debug-helpers.c (append_class_name): argh, revert last patch.
8024 2004-10-21 Chris Toshok <toshok@ximian.com>
8026 * debug-helpers.c (append_class_name): use '+' as the delimiter,
8027 not '/', so that it matches what the debugger uses to look up
8030 2004-10-21 Martin Baulig <martin@ximian.com>
8032 * mono-debug-debugger.c (mono_debugger_throw_exception): New
8033 public method; this is called each time an exception is thrown and
8034 allows the debugger to use exception catch points.
8036 2004-10-21 Martin Baulig <martin@ximian.com>
8038 * mono-debug-debugger.c (mono_debugger_handle_exception): Write
8039 the stack pointer and the exception object in some struct and pass
8040 that to the debugger.
8042 2004-10-21 Chris Toshok <toshok@ximian.com>
8044 * mono-debug-debugger.c (do_write_class): add instance/static
8045 event support. We don't expose "raise" or "other" yet.
8046 (event_is_static): new method.
8048 2004-10-20 Bernie Solomon <bernard@ugsolutions.com>
8050 * mono-debug-debugger.c
8051 (mono_debugger_handle_exception): Remove
8052 bogus return value for fussy compilers.
8054 2004-10-20 Martin Baulig <martin@ximian.com>
8056 * mono-debug-debugger.c
8057 (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
8058 (mono_debugger_handled_exception): Likewise.
8060 2004-10-20 Martin Baulig <martin@ximian.com>
8062 * mono-debug-debugger.h (MonoDebuggerEvent): Added
8063 MONO_DEBUGGER_EVENT_EXCEPTION.
8065 * mono-debug-debugger.c (mono_debugger_handle_exception): New
8066 public function to send the debugger a notification for an
8067 exception and inform it about a catch/finally clause.
8069 2004-10-19 Zoltan Varga <vargaz@freemail.hu>
8071 * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
8072 Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
8075 * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
8077 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
8079 * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
8080 marshalled as [In,Out]. Fixes #58325.
8082 2004-10-14 Zoltan Varga <vargaz@freemail.hu>
8084 * reflection.c (mono_method_body_get_object): Implement some fields.
8086 2004-10-12 Martin Baulig <martin@ximian.com>
8088 * reflection.c (mono_reflection_bind_generic_parameters): Small
8089 fix, correctly retrieve our parent from a generic instance.
8091 2004-10-12 Martin Baulig <martin@ximian.com>
8093 * metadata.c (mono_metadata_generic_param_equal): We always have
8097 (mono_class_from_generic_parameter): We need to have an owner.
8098 (my_mono_class_from_generic_parameter): Likewise.
8100 * reflection.c (mono_reflection_setup_generic_class): Renamed to
8101 mono_reflection_create_generic_class() and added a new
8102 mono_reflection_setup_generic_class().
8103 (mono_reflection_initialize_generic_param): If we're a nested
8104 generic type and inherited from the containing class, set our
8105 owner to the outer class.
8107 2004-10-11 Zoltan Varga <vargaz@freemail.hu>
8109 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
8111 * reflection.c (mono_method_body_get_object): New function to create
8112 a MethodBody object.
8114 * object-internals.h object.h: Add MonoReflectionMethodBody structure.
8116 2004-10-11 Martin Baulig <martin@ximian.com>
8118 * metadata.c (_mono_metadata_type_equal): Renamed to
8119 do_mono_metadata_type_equal() and made static.
8121 2004-10-11 Martin Baulig <martin@ximian.com>
8123 * appdomain.c: Bump corlib version number to 28.
8125 2004-10-10 Martin Baulig <martin@ximian.com>
8128 (MonoGenericInst): Added `MonoGenericContainer *container'.
8129 (MonoGenericMethod): Likewise.
8130 (MonoGenericContext): Likewise.
8131 (MonoGenericParam): Added `MonoGenericContainer *owner'.
8134 (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
8135 (do_mono_metadata_parse_generic_inst): Likewise.
8136 (mono_metadata_parse_type_full): New public method. This is the actual
8137 mono_metadata_parse_type() implementation - with an additional
8138 `MonoGenericContainer *' argument.
8139 (mono_metadata_parse_array_full): Likewise.
8140 (mono_metadata_parse_signature_full): Likewise.
8141 (mono_metadata_parse_method_signature_full): Likewise.
8142 (mono_metadata_parse_mh_full): Likewise.
8143 (mono_type_create_from_typespec): Likewise.
8144 (mono_metadata_interfaces_from_typedef_full): New public method;
8145 this is similar to the other _full() methods, but we take a
8146 `MonoGenericContext *' since we have to pass it to mono_class_get_full().
8147 (mono_metadata_parse_generic_param): Take an additional
8148 `MonoGenericContainer *' argument and lookup the MonoGenericParam
8149 from that container.
8150 (mono_metadata_generic_param_equal): New static method to compare
8151 two type parameters.
8152 (_mono_metadata_type_equal): New static method; takes an
8153 additional `gboolean signature_only' argument - if true, we don't
8154 compare the owners of generic parameters.
8155 (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
8156 with a TRUE argument - do a signature-only comparision.
8158 * loader.c: Use the new _full() methods and pass the
8159 MonoGenericContainer to them.
8161 * object-internals.h (MonoReflectionTypeBuilder): Added
8162 `MonoGenericContainer *generic_container' field.
8163 (MonoReflectionMethodBuilder): Likewise.
8165 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
8167 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
8168 case initial images of dynamic assemblies.
8170 * reflection.c (mono_image_basic_init): Set 'initial_image' field.
8172 * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
8174 * reflection.c (mono_reflection_event_builder_get_event_info): Fix
8175 length of event->other array.
8176 (typebuilder_setup_events): Ditto.
8178 * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
8179 'assembly_by_name' and add an 'assemblies' list.
8181 * assembly.h assembly.c: Add a new search hook for determining whenever
8182 an assembly is already loaded. Use this instead of searching in the
8183 loaded_assemblies list.
8185 * domain.c appdomain.c: Implement the new search hook so loaded
8186 assemblies are now scoped by appdomain. Fixes #67727.
8188 2004-10-07 Zoltan Varga <vargaz@freemail.hu>
8190 * threads.c (mono_thread_attach): Initialize synch_lock field so
8191 mono_thread_detach works again.
8193 * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
8194 'lib' too. Fixes #63130.
8196 2004-10-06 Jackson Harper <jackson@ximian.com>
8198 * culture-info-tables.h: regenerated.
8200 2004-10-06 Zoltan Varga <vargaz@freemail.hu>
8202 * icall.c (ves_icall_Type_GetInterfaces): Include interfaces
8203 implemented by other interfaces in the result. Fixes #65764.
8205 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8206 Handle unloadable modules without crashing.
8208 * image.c (load_modules): Revert the previous patch since modules must
8209 have a fixed index inside the array.
8211 * image.c (load_modules): Don't include native modules in the modules
8214 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
8216 * reflection.h: Add param_defaults field.
8218 * reflection.c: Add support for parameter defaults in dynamic methods.
8221 * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
8222 an empty string when a type has no namespace. Fixes #64230.
8224 2004-10-04 Sebastien Pouliot <sebastien@ximian.com>
8226 * tabledefs.h: Added "internal" security actions to support non-CAS
8227 permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance.
8228 Note: they do not seems to be used anymore in 2.0 (new metadata format)
8230 2004-10-04 Zoltan Varga <vargaz@freemail.hu>
8232 * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
8233 constructor of abstract class. Fixes #61689.
8235 2004-10-04 Martin Baulig <martin@ximian.com>
8237 * class-internals.h (MonoGenericContainer): New type.
8238 (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
8239 `MonoGenericContainer *generic_container'.
8240 (MonoClass): Replaced `gen_params' and `num_gen_params' with
8241 `MonoGenericContainer *generic_container'.
8243 * metadata.c (mono_metadata_load_generic_params): Return a
8244 `MonoGenericContainer *' instead of a `MonoGenericParam *';
8245 removed the `num' argument.
8247 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
8249 * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
8252 * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
8255 * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
8257 * reflection.c: Save pe_kind and machine values into the generated
8260 * appdomain.c: Bump corlib version number.
8262 * object-internals.h: Reorganize layout of LocalBuilder.
8264 * class-internals.h class.c (mono_class_get_implemented_interfaces):
8265 New helper function.
8267 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
8268 created MonoType for dynamic types. Fixes #66180.
8270 2004-10-02 Ben Maurer <bmaurer@ximian.com>
8272 * threadpool.c: the ares hashtable needs a critical section around it.
8273 this prevents some nasty segfaults
8275 2004-10-02 Massimiliano Mantione <massi@ximian.com>
8277 * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
8278 on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
8281 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
8283 * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
8285 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
8287 * image.c: Always canonicalize image file names, to avoid loading
8288 the same assembly twice when referenced using a relative path.
8290 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
8292 * marshal.h marshal.c icall.c: Fix bugs in previous patch.
8294 * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
8296 * marshal.c: Fix warnings.
8298 2004-09-29 Geoff Norton <gnorton@customerdna.com>
8300 * marshal.c (mono_ftnptr_to_delegate): This method was improperly
8301 attempting to marshal the delegate_trampoline as the method_addr.
8302 This patch has a static hashtable of marshalled delegates so that
8303 we can map delegate_trampoline addresses back to delegates. This
8304 allows a delegate passed to managed code to be passed back into native
8307 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
8309 * icall.c: Add GetFunctionPointerForDelegateInternal icall.
8311 * reflection.c (method_encode_code): Align method headers properly.
8314 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
8316 * marshal.c: In the runtime invoke wrapper, reset the abort
8317 exception if it is cached. This avoids the automatic rethrowal of
8318 the exception after the catch of the wrapper. Also check for pending
8319 interruptions before calling the managed method. This is done using
8320 the new method emit_thread_force_interrupt_checkpoint, since the
8321 normal checkpoint method is ignored when running the invoke wrapper.
8322 * object.c: If the abort exception is rethrown, set the abort_exc
8323 field of the thread, so it will be rethrown aftere every catch.
8324 * threadpool.c: Only run an interruption checkpoint if what has been
8325 requested is a stop of the thread (aborts will be ignored).
8326 * threads.c: By default, a thread will now never be interrumped while
8327 running the runtime invoke wrapper (this ensures that runtime_invoke
8328 will always return to the caller if an exception pointer is provided).
8329 There is a new special method mono_thread_force_interruption_checkpoint()
8330 to force an interruption checkpoint even if running a protected
8331 wrapper, which is used by the same runtime invoke wrapper to do a check
8334 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
8336 * object.c, object-internals.h: Implemented mono_release_type_locks,
8337 which releases the cctor locks held by a thread.
8338 * threads.c, threads.h: In thread_cleanup, release cctor locks held
8339 by a thread. Added mono_thread_exit() method to be used to safely stop
8342 2004-09-28 Raja R Harinath <rharinath@novell.com>
8344 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8345 Move null check before dereference. Avoid indexing beyond the end
8346 of the 'modules' array.
8348 2004-09-28 Raja R Harinath <rharinath@novell.com>
8350 * metadata-internals.h (MonoImage): Add module_count field.
8351 * image.c (load_modules): Set image->module_count.
8352 (mono_image_load_file_for_image): Use image->module_count.
8353 * reflection.c (mono_image_load_module): Append to image->modules array
8354 of dynamic assembly.
8355 (mono_module_get_object): Fix loop to actually increment index.
8356 Use image->module_count.
8357 * assembly.c (mono_assembly_load_references): Use image->module_count.
8358 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
8361 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
8363 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
8364 Avoid assert on generic types.
8366 2004-09-26 Zoltan Varga <vargaz@freemail.hu>
8368 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
8370 * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
8372 * reflection.c (mono_reflection_marshal_from_marshal_spec): New
8373 function to convert a MarshalSpec structure to its managed counterpart.
8375 * reflection.c: Fix warnings.
8377 * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
8380 * icall.c (mono_create_icall_signature): Fix build.
8382 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
8384 * icall.c: Add MakePointType icall.
8386 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
8389 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8391 * threadpool.c: reuse allocated slots in the queue.
8393 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
8395 * object-internals.h (MonoReflectionDllImportAttribute): New structure.
8397 * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
8399 * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
8402 * tabledefs.h: Add constants for pinvoke attributes BestFit and
8403 ThrowOnUnmappableChar.
8405 * icall.c (ves_icall_Type_GetPacking): New icall.
8407 2004-09-24 Martin Baulig <martin@ximian.com>
8409 * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
8411 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8414 (mono_domain_set): allow setting a domain that is being unloaded.
8415 (mono_domain_unload): invoke the DomainUnload callbacks in the domain
8418 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
8420 * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
8421 the GetCustomAttributes icall.
8423 2004-09-23 Martin Baulig <martin@ximian.com>
8425 * object-internals.h (MonoReflectionGenericParam): Replaced
8426 'has_ctor_constraint', `has_reference_type' and `has_value_type'
8427 with `guint32 attrs'.
8429 2004-09-23 Martin Baulig <martin@ximian.com>
8431 * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
8433 2004-09-23 Martin Baulig <martin@ximian.com>
8435 * object-internals.h (GenericParameterAttributes): New enum.
8437 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
8439 * object-internals.h (MonoEventInfo): Add 'other_methods' field.
8441 * class.c (init_events): Fill out event->other field.
8443 * class.c: Fix warnings.
8445 * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
8447 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
8449 * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
8450 walk which doesn't supply the IL offset.
8452 2004-09-22 Martin Baulig <martin@ximian.com>
8454 * reflection.c (mono_reflection_setup_internal_class): If we're
8455 System.ValueType, System.Object or System.Enum, set
8456 `klass->instance_size' and create the vtable.
8457 (mono_reflection_create_internal_class): If we're an enum type,
8458 get the base class from our current corlib.
8460 2004-09-22 Zoltan Varga <vargaz@freemail.hu>
8462 * reflection.h (MonoResolveTokenError): New type.
8464 * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
8467 * icall.c: Add an 'error' argument to the ResolveToken icalls.
8469 2004-09-22 Lluis Sanchez Gual <lluis@novell.com>
8471 * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
8472 Support also calling constructors, but only for already allocated objects.
8474 2004-09-17 Geoff Norton <gnorton@customerdna.com>
8476 * reflection.c (type_get_qualified_name): If the klass is null
8477 return the typename to avoid a NullRefEx.
8478 (encode_cattr_value): Get the qualified name of the boxed type,
8479 not the underlying enumtype. Fixes #62984.
8481 2004-09-21 Zoltan Varga <vargaz@freemail.hu>
8483 * marshal.c: Fix problems with previous checkin.
8485 2004-09-21 <vargaz@freemail.hu>
8487 * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
8488 existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
8490 * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
8492 2004-09-21 Geoff Norton <gnorton@customerdna.com>
8494 * icall.c (ves_icall_MonoType_GetElementType): GetElementType
8495 should only return a type for pointers, arrays, and passbyref types.
8498 2004-09-21 Martin Baulig <martin@ximian.com>
8500 * domain.c (mono_debugger_check_runtime_version): New public
8503 * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.
8505 2004-09-20 Sebastien Pouliot <sebastien@ximian.com>
8507 * reflection.c: Added missing sort to the declarative security
8508 attributes table. MS implementation stops seeing the attributes if the
8509 token number regress in the table (as shown by ildasm and permview).
8511 2004-09-20 Zoltan Varga <vargaz@freemail.hu>
8513 * object-internals.h (MonoReflectionModule): Add 'token' field.
8515 * reflection.c (mono_reflection_get_token): Add support for Module
8517 (mono_module_get_object): Set 'token' field.
8518 (mono_module_file_get_object): Set 'token' field.
8520 * icall.c: Add new Assembly and Module icalls.
8522 * appdomain.c: Bump corlib version.
8524 2004-09-19 Zoltan Varga <vargaz@freemail.hu>
8526 * loader.h loader.c class.h class.c: Add helper functions for obtaining
8527 tokens of metadata objects.
8529 * reflection.h reflection.c (mono_reflection_get_token): New function
8530 to obtain the token of a metadata object.
8532 * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
8534 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
8536 * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
8538 * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
8540 2004-09-16 Sebastien Pouliot <sebastien@ximian.com>
8542 * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
8543 * object-internals.h: Added 3 MonoArray* members to MonoReflection
8544 AssemblyBuilder to access the permissions set in the class lib.
8545 * reflection.c: Added security attributes encoding step in
8546 mono_image_build_metadata.
8547 * tabledefs.h: Added new security actions defined in 2.0:
8548 LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
8550 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
8552 * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
8555 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
8557 * locales.c: nullify the ICU_collator member of CompareInfo when it is
8558 finalized. There where random SIGSEVs at program termination, when
8559 an object being finalized was trying to do a string comparison and
8560 the current culture was already finalized.
8562 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8564 * threads.c: call thread_cleanup before finishing the thread if we get
8567 2004-09-16 Zoltan Varga <vargaz@freemail.hu>
8569 * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
8570 assemblies from the parent. Fixes #65665.
8572 2004-09-15 Zoltan Varga <vargaz@freemail.hu>
8574 * metadata.c (mono_metadata_parse_type): Fix parsing of custom
8577 2004-09-14 Bernie Solomon <bernard@ugsolutions.com>
8579 * reflection.h: add prototype for mono_get_dbnull_object
8580 * reflection.c: add prototypes for get_default_param_value_blobs
8581 and mono_get_object_from_blob for fussier compilers
8583 2004-09-14 Lluis Sanchez Gual <lluis@novell.com>
8585 * object.c: Added a "done" flag to TypeInitializationLock. This avoids
8586 false deadlock checks in class initialization.
8588 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
8590 * image.c (mono_image_addref): Fix comment.
8592 * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
8595 2004-09-12 Jambunathan K <kjambunathan@novell.com>
8597 * reflection.c (mono_param_get_objects): Modified to return
8598 ParameterInfo.DefaultValue object.
8600 (get_default_param_value_blobs):
8601 (mono_get_object_from_blob):
8602 (mono_get_dbnull_object): New helper routines.
8604 * object.c (mono_get_constant_value_from_blob): New helper routine
8605 carved out from get_default_field_value ()
8607 * object-internals.h (mono_get_constant_value_from_blob): Added
8608 function declaration.
8610 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
8612 * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load
8613 referenced assemblies. Fixes #62135.
8615 * exception.h exception.c (mono_get_exception_file_not_found2): New
8618 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
8620 * class.h class.c: Add mono_type_get_underlying_type ().
8622 2004-09-09 Geoff Norton <gnorton@customerndna.com>
8624 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
8625 Fix GetTypes() to support dynamically created assemblies.
8627 2004-09-09 Zoltan Varga <vargaz@freemail.hu>
8629 * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
8631 * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
8634 * reflection.h reflection.c loader.c: Allow dynamic construction of
8635 pinvoke methods. Fixes #65571.
8637 * reflection.c (mono_reflection_get_type): Revert previous change since
8638 it causes regressions.
8640 2004-09-08 Martin Baulig <martin@ximian.com>
8642 * class.c (class_compute_field_layout): Don't call
8643 mono_class_layout_fields() for open generic instances.
8645 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
8646 * threads.c appdomain.c: fix typo in GC macro
8648 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8650 * threads.c: don't call mono_thread_detach() in start_wrapper(),
8651 avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
8653 2004-09-08 Zoltan Varga <vargaz@freemail.hu>
8655 * image.c (mono_image_close): Applied patch from
8656 vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
8657 assembly is loaded multiple times from data.
8659 * image.c (mono_image_open): Fix warning.
8661 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
8663 * reflection.h reflection.c icall.c: Only call TypeResolve handlers
8666 * reflection.c (mono_reflection_create_runtime_class): Initialize
8667 klass->nested_classes. Fixes #61224.
8669 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
8671 * threads.c: sched_yield() on exit, to allow threads to quit.
8673 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
8675 * object.c (mono_unhandled_exception): Remove leftover debug code.
8677 2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
8679 * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
8681 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
8683 * marshal.c (emit_marshal_array): Really null terminate string arrays.
8685 * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
8687 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
8689 * marshal.c (emit_marshal_array): Null terminate string arrays.
8691 * marshal.c (raise_auto_layout_exception): Fix warning.
8693 * reflection.c (mono_param_get_objects): Initialize the default value
8694 with DBNull.Value, not null. Fixes #62123.
8696 2004-09-01 Miguel de Icaza <miguel@ximian.com>
8698 * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
8699 throw an exception with a cute explanation.
8701 2004-09-06 Dick Porter <dick@ximian.com>
8703 * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
8704 Close the new process's thread handle, as we don't use it. The
8705 handle stays around forever otherwise.
8707 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
8709 * object.c (arith_overflow): Fix warning.
8711 * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
8712 calling conventions in method refs. Fixes #65352.
8714 * reflection.c: Fix warnings.
8716 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
8718 * icall.c: Add a new icall for Array.Clear
8720 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
8722 * object.c: When allocating an array, we have to throw
8723 an overflow exception if any of the lengths are < 0.
8725 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
8727 * marshal.h marshal.c: Free unmanaged memory allocated by managed code
8728 properly. Also move implementation of string array marshalling to
8729 managed code. Fixes #42316.
8731 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8733 * assembly.c: provide more information when loading an assembly fails.
8735 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8737 * filewatcher.c: don't expect the development fam package to be
8740 2004-09-03 Zoltan Varga <vargaz@freemail.hu>
8742 * marshal.c: Make a copy of the signature cookie since it will be
8743 freed by the caller.
8745 * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
8747 * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
8749 * metadata.c (mono_metadata_free_marshal_spec): New function to free
8752 * marshal.c: More refactoring.
8754 * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
8757 2004-09-03 Lluis Sanchez Gual <lluis@novell.com>
8759 * object.c: In mono_message_invoke, fill the output parameter array after
8760 calling the managed method (it was done before the call). This fixes
8763 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
8765 * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
8768 2004-09-02 Martin Baulig <martin@ximian.com>
8770 * class.c (mono_class_instance_size): Don't allow generic type
8771 definitions or open generic instances.
8772 (mono_class_array_element_size): If we're a value type, call
8773 mono_class_instance_size() on the original class.
8775 * metadata.c (mono_type_size, mono_type_stack_size): Correctly
8776 handle generic instances.
8778 * mono-debug-debugger.c (write_type): Handle generic instances
8781 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
8783 * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
8784 the allocation request fails. Fixes #65089.
8786 * object.c (mono_runtime_free_method): Do not call mono_free_method.
8788 * object.c (mono_runtime_free_method): New function to free a dynamic
8791 * marshal.c (mono_delegate_free_ftnptr): New function to free the
8792 delegate trampoline.
8794 * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
8795 with hasthis as dynamic,
8797 * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
8799 * domain.c (mono_jit_info_table_remove): New function to remove an
8800 entry from the jit info table.
8802 * class-internals.h (MonoMethod): Add 'dynamic' field.
8804 * loader.c: Fix warnings.
8806 2004-09-01 Martin Baulig <martin@ximian.com>
8808 * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
8809 instead of mono_debugger_lock() because the latter one is a no-op
8810 unless running in the debugger.
8812 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
8814 * class.c (class_compute_field_layout): Classes with auto-layout or
8815 reference fields are not blittable.
8817 2004-09-01 Dick Porter <dick@ximian.com>
8819 * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
8820 mono_image_get_filename() to get the assembly location.
8823 * metadata.h: Fix compile warnings
8825 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
8827 * class.c (class_compute_field_layout): System.Object is blittable.
8829 * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
8830 as in/out. Fixes #59909.
8832 2004-09-01 Martin Baulig <martin@ximian.com>
8834 * metadata.h (MONO_TYPE_ISREFERENCE): Call
8835 mono_metadata_generic_inst_is_valuetype() if we're a generic
8836 instance to check whether our underlying type is a reference type.
8838 2004-09-01 Martin Baulig <martin@ximian.com>
8840 * metadata.c (mono_type_size): If we're a generic instance, call
8841 mono_class_value_size() for value types.
8843 2004-08-31 Zoltan Varga <vargaz@freemail.hu>
8845 * marshal.c: Implement more custom marshalling functionality. Fixes
8848 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
8850 * mono-debug.c, debug-mono-symfile.c: add some locking love.
8852 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
8854 * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
8856 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
8858 * icall.c: Fix some warnings.
8860 * threads.c (abort_appdomain_thread): Fix unref errors.
8861 (mono_thread_current): Fix THREAD_DEBUG define.
8863 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
8865 * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
8867 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
8869 2004-08-28 Zoltan Varga <vargaz@freemail.hu>
8871 * marshal.c (mono_marshal_get_native_wrapper): Add support for byref
8874 2004-08-28 Martin Baulig <martin@ximian.com>
8877 (mono_metadata_generic_inst_is_valuetype): New public function.
8879 * metadata.h (MONO_TYPE_ISSTRUCT): Call
8880 mono_metadata_generic_inst_is_valuetype() if we're a generic
8881 instance to check whether our underlying type is a valuetype.
8883 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
8885 * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
8888 2004-08-25 Martin Baulig <martin@ximian.com>
8890 * loader.c (mono_get_method_from_token): Abstract methods can also
8891 be generic and thus have type parameters.
8893 * metadata-internals.h
8894 (MonoDynamicImage): Added `GPtrArray *gen_params'.
8896 * reflection.c (mono_image_get_generic_param_info): Don't create a
8897 metadata row, just add an entry to the `gen_params' array.
8898 (build_compressed_metadata): Sort the `gen_params' array and then
8899 actually create the metadata.
8901 2004-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8903 * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
8905 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
8907 * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
8909 2004-08-24 Martin Baulig <martin@ximian.com>
8911 * class.cs (mono_class_is_subclass_of): Like an interface, a
8912 generic instance also derives from System.Object.
8914 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
8916 * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
8917 custom modifiers to be in any order. Fixes #61990.
8919 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
8921 * object.c: Register mono_object_new_fast icall.
8923 * object.c (mono_class_get_allocation_ftn): Return to calling
8924 mono_object_new_fast, since it seems faster to compute the object
8925 size in unmanaged code than passing it as a parameter.
8927 * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
8929 * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
8930 this function with Boehm as the oom handler, so we don't have to check
8931 the result of GC_malloc.
8933 * object.c: Remove checks for oom.
8935 * object.h object.c (mono_class_get_allocation_ftn): New function to
8936 return the icall which can be used to allocate an instance of a given
8939 * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
8941 * class-internals.h: Add 'enabled' field.
8943 2004-08-19 Zoltan Varga <vargaz@freemail.hu>
8945 * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
8947 2004-08-18 Jambunathan K <kjambunathan@novell.com>
8948 * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
8951 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
8953 * appdomain.c: use the Tls function for appdomain too,
8954 at Zoltan's request. Actually return in mono_context_get
8956 * appdomain.c, profiler.c, threads.c: use __thread
8958 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
8960 * appdomain.c threads.c: Call GC_CreateThread on windows.
8962 * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
8963 multiple libraries since this don't work on windows.
8965 2004-08-18 Martin Baulig <martin@ximian.com>
8968 (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
8971 * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
8972 MonoMethodNormal since we also need it for abstract and interface
8976 (build_compressed_metadata): Sort the GenericParam table.
8977 (mono_image_create_token): Added `gboolean create_methodspec'
8978 argument; this is false when generating a MethodImpl token.
8979 (reflection_methodbuilder_to_mono_method): Abstract and interface
8980 methods may also have generic parameters.
8982 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
8984 * appdomain.c: thread local alloc
8986 2004-08-17 Martin Baulig <martin@ximian.com>
8988 * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
8991 (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
8994 * class.c (mono_type_get_full_name): New public function.
8995 (mono_type_get_name): Don't include the type arguments.
8997 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
8999 * Makefile.am: Build static versions of libmetadata and libmonoruntime
9000 for inclusion into the mono executable.
9002 2004-08-16 Martin Baulig <martin@ximian.com>
9004 * metadata.c (do_mono_metadata_parse_generic_inst): Store the
9005 MonoGenericInst, not the MonoType in the `generic_inst_cache'.
9007 2004-08-14 Martin Baulig <martin@ximian.com>
9009 * class.c (dup_type): Also copy the `byref' field.
9011 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
9013 * reflection.c (create_dynamic_mono_image): Revert the last change
9014 since it breaks bootstrap.
9016 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
9018 * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
9020 * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
9021 not free them with g_free.
9023 2004-08-11 Martin Baulig <martin@ximian.com>
9025 * reflection.c (mono_reflection_setup_internal_class): Also call
9026 mono_class_setup_mono_type() if we already have a `tb->type.type'.
9028 2004-08-09 Sebastien Pouliot <sebastien@ximian.com>
9030 * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when
9031 called during default (first) AppDomain creation. Keep track of
9032 Evidence when loading assemblies.
9034 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9036 * opcodes.c, opcodes.h: reduce runtime relocations.
9038 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
9040 * culture-info.h, locales.c: fixes and chages to sue the new
9041 optimized format of the locale data.
9042 * culture-info-tables.h: regenerated.
9044 2004-08-06 Geoff Norton <gnorton@customerdna.com>
9046 * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
9048 2004-08-05 Sebastien Pouliot <sebastien@ximian.com>
9050 * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
9051 ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
9052 * domain-internals.h: icall declaration.
9053 * icall.c: icall registration.
9054 * object-internals.h: New fields in MonoAssembly for CAS.
9056 2004-08-05 Duncan Mak <duncan@ximian.com>
9058 * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
9061 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9063 * reflection.c: fix to deal with object[] arrays in custom ctors
9066 2004-08-05 Martin Baulig <martin@ximian.com>
9068 * class.c (mono_class_array_element_size): Added support for
9069 generic instances and correctly handle "recursive" types.
9071 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
9073 * assembly.c: Fix warnings.
9075 2004-08-04 Martin Baulig <martin@ximian.com>
9078 (mono_type_get_name_recurse): Added `gboolean include_arity'
9079 argument specifying whether or not we should include the generic
9080 arity in the type name.
9081 (_mono_type_get_name): New static function.
9082 (mono_class_setup_vtable): If we're a generic instance, don't
9083 include the generic arity in the names of explicit method
9086 2004-08-03 Martin Baulig <martin@ximian.com>
9088 * class.c (mono_type_get_name_recurse): Enclose the generic type
9089 arguments in `<', '>'.
9091 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9093 * gc.c: make GC warning messages use the trace API, they are just
9094 noise to most of the users.
9096 2004-08-03 Martin Baulig <martin@ximian.com>
9098 * debug-mono-symfile.c (read_string): Correctly read the string.
9100 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
9102 * marshal.c (signature_dup_add_this): Fix bug in previous patch.
9104 * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
9106 (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
9108 2004-07-30 Martin Baulig <martin@ximian.com>
9110 * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
9111 Reflect latest symbol writer changes.
9113 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9115 * object.c: always create an object if null is passed
9116 to Invoke() where a valuetype is expected.
9118 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
9120 * marshal.c (mono_marshal_init): make managed
9121 signatures match native ones better for 64bits.
9123 2004-07-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9125 * appdomain.c: hack to build correctly the private bin path on windows.
9128 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
9130 * assembly.c: Load mscorlib from the correct framework directory
9131 (mono/<version>/mscorlib.dll).
9132 * appdomain.h: Added prototypes for new functions.
9133 * internals.h: Added some prototypes.
9134 * domain.c: When initializing the runtime, get from the executable and
9135 the configuration files the runtime version that the app supports.
9136 Added support methods for reading app.exe.config. Added list of versions
9137 supported by the JIT. Added two new methods: mono_init_from_assembly,
9138 which initializes the runtime and determines the required version from
9139 the provided exe file, and mono_init_version, which initializes
9140 the runtime using the provided version.
9141 * icall.c: Get machine.config from version-specific directory.
9142 * reflection.c: When generating an image, embed the version number
9143 of the current runtime.
9145 2004-07-28 Dick Porter <dick@ximian.com>
9148 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
9149 returned sockaddr size before creating the remote address object.
9150 Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
9153 2004-07-28 Dick Porter <dick@ximian.com>
9155 * locales.c (string_invariant_compare_char): Fix invariant char
9156 compares between upper and lower cases. Fixes bug 61458.
9158 2004-07-27 Ben Maurer <bmaurer@ximain.com>
9160 * marshal.c: actually cache stelem.ref wrappers.
9162 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
9164 * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image
9165 sections and remove the mono_cli_rva_map () function.
9167 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9169 * debug-mono-symfile.c: fix one more endianess issue, from a patch
9170 by Geoff Norton (<gnorton@customerdna.com>).
9172 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
9174 * class.c: fix class loads for pointer types (typeof(int) !=
9177 2004-07-27 Martin Baulig <martin@ximian.com>
9179 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
9180 reading the debugging information from an external ".mdb" file.
9182 2004-07-24 Martin Baulig <martin@ximian.com>
9184 * reflection.c (mono_image_get_type_info): Only write a class
9185 layout entry if we actually have a size or a packing size.
9187 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
9189 * reflection.c (type_get_fully_qualified_name):
9190 insert cast to get type checking of ?: with non-gcc compilers
9192 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
9194 * rand.c: use g_getenv for both lookups of
9197 2004-07-17 Martin Baulig <martin@ximian.com>
9199 * reflection.c (mono_reflection_bind_generic_method_parameters):
9200 Set `gmethod->reflection_info'.
9202 2004-07-17 Martin Baulig <martin@ximian.com>
9204 * class.c (mono_class_create_from_typedef): Insert the newly
9205 created class into the hash table before computing the interfaces
9206 since we could be called recursively.
9208 2004-07-16 Ben Maurer <bmaurer@ximain.com>
9210 * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
9211 function to implement stelem.ref in managed code
9212 * class-internals.h, debug-helpers.c: a new wrapper type
9215 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
9217 * gc.c: allow GC handles to work even when no GC is compiled in.
9218 Fix part of bug #61134 (GetAddrOfPinnedObject).
9220 2004-07-13 Peter Williams <peter@newton.cx>
9222 * process.c (complete_path): Make sure we don't attempt to execute
9225 2004-07-12 Geoff Norton <gnorton@customerdna.com>
9227 * DateTime.cs: Patch for bug #61112. Our DateTime wasn't roundtripping over timezone
9228 boundaries properly. This patch checkes ToLocalTime() to see if we're tripping over a boundary
9229 and will add/subtract the hour if needed
9231 2004-07-12 Martin Baulig <martin@ximian.com>
9233 * reflection.c (mono_field_get_object): If we have
9234 `field->generic_info', take the attributes from
9235 `field->generic_info->generic_type'.
9237 2004-07-12 Martin Baulig <martin@ximian.com>
9239 * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
9240 This function must be called before initializing the runtime.
9241 (mono_debug_init_1): New function; call this after initializing
9242 the runtime, but before loading the assembly. It tells the
9243 debugger to load corlib and the builtin types.
9245 * mono-debug-debugger.c: Did some larger changes in the debugging
9246 code; support recursive class declarations, make sure we actually
9249 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9251 * debug-helpers.c: undo my previous patch and fixed the real issue in
9252 ../mini/exceptions-x86.c
9254 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9256 * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
9257 when no HOME env. variable was set and a NullRef was thrown in a .cctor
9258 called from other .cctors.
9260 2004-07-09 Miguel de Icaza <miguel@ximian.com>
9262 * loader.c: Removed the mono_loader_wine_init hack now that we are
9263 doing a managed version of Windows.Forms.
9265 2004-07-09 Ben Maurer <bmaurer@ximian.com>
9267 * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
9268 threadpool.c, threads.c: remove static data from rootset.
9270 2004-07-09 Dick Porter <dick@ximian.com>
9272 * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
9273 Don't do any more processing if the matched length was 0. It was
9274 increasing the size of the string before. Fixes bug 61167.
9276 2004-07-09 Dick Porter <dick@ximian.com>
9280 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
9281 Add support for SO_PEERCRED if its available.
9283 2004-07-09 Peter Bartok <pbartok@novell.com>
9284 * loader.c: winelib.exe.so error message is now only displayed if
9285 MONO_DEBUG is set. To help us avoid questions when people are trying
9286 out the new Managed.Windows.Forms.
9288 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
9290 * class-internals.h debug-helpers.c marshal.c: Add new wrapper types
9291 for isinst and castclass wrappers.
9293 * class-internals.h icall.c: Move registration and lookup of JIT icalls
9294 to libmetadata from the JIT, so they could be used by the marshalling
9295 code and the interpreter.
9297 * marshal.c: Register marshalling related JIT icalls here instead of
9298 in mini.c. Use CEE_MONO_ICALL instead of the family of
9299 CEE_MONO_PROC<x> opcodes to call marshalling functions.
9301 * metadata.h: Remove unneeded marshalling conversions.
9303 * opcodes.c: Update for new opcodes.
9305 2004-07-08 Martin Baulig <martin@ximian.com>
9307 * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
9308 (mono_debug_get_domain_data): Make this function static.
9310 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9312 * gc.c, object.h: add nice GC handle API for embedders.
9314 2004-07-06 Ben Maurer <bmaurer@ximian.com>
9316 * reflection.c: more changes for the new api
9318 * object.c: When we reflect on a field w/ a constant value, it
9319 will not have a memory location, so we must access metadata. Also,
9320 allow easier reading of strings so that we can read them from
9323 * class.c (mono_class_layout_fields): no need for literal fields here.
9325 * class-internals.h: api changes for const fields
9327 * icall.c (ves_icall_get_enum_info): use new apis for const fields
9329 2004-07-06 Martin Baulig <martin@ximian.com>
9331 * mono-debug.h: Increment version number to 44.
9333 * mono-debug.c (mono_debug_add_wrapper): The second argument is
9334 now a gpointer, rewrote this whole method.
9336 * mono-debug-debugger.c (mono_debugger_add_wrapper): New
9337 function. Add information about the wrapper in a new "misc table".
9339 * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
9340 for the new misc table.
9342 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
9344 * metadata-internals.h image.c: Add a cache for helper signatures.
9346 * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
9348 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
9350 * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
9351 delegates from a delegate. Fixes #61033.
9353 * marshal.c: Fix managed->native stringbuilder marshalling. Implement
9354 marshalling of stringbuilder arrays. Fixes #59900.
9356 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
9358 * icall.c: Add EnumBuilder:setup_enum_type icall.
9360 2004-06-30 Ben Maurer <bmaurer@ximian.com>
9362 * icall.c: Added a new icall for the property version of
9365 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
9367 * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
9368 it has a constant size across platforms.
9370 * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
9373 2004-06-29 Martin Baulig <martin@ximian.com>
9375 * mono-debug.c (mono_debug_add_method): Protect the whole function
9376 in mono_debugger_lock(), not just parts of it.
9378 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9380 * reflection.c: make sure padding bytes in heaps are zeroed.
9382 2004-06-24 David Waite <mass@akuma.org>
9384 * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
9385 image.c, loader.c, locales.c, marshal.c, metadata.c,
9386 mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
9387 string-icalls.c, threads.c: change to C90-style comments from C99 /
9390 2004-06-24 Dick Porter <dick@ximian.com>
9393 (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
9394 return createdNew. Fixes bug 60412.
9397 * icall.c: Add createdNew parameter to CreateMutex icall
9399 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9401 * reflection.c, object-internals.h: save default value in params.
9403 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9405 * appdomain.c: for paths in PrivateBinPath that are absolute, there's
9406 no need to build a new path combining that with the application base.
9409 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
9411 * reflection.c: fixed minor standard compliance issues.
9413 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
9415 * reflection.c: fixed issue with encoding some custom attributes
9416 (arrays in properties and fields, bug #60411).
9418 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9420 * reflection.c: fix start address when copying the public key token.
9422 2004-06-23 Martin Baulig <martin@ximian.com>
9424 * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
9425 the `exc' object in a static object to put it into the GC's root set.
9427 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
9429 * reflection.c: make mono_reflection_setup_internal_class ()
9430 callable a second time to setup a new parent class.
9432 2004-06-23 Dick Porter <dick@ximian.com>
9434 * threads.c: Check for WAIT_IO_COMPLETION return values.
9436 2004-06-22 Sebastien Pouliot <sebastien@ximian.com>
9438 * appdomain.c: Removed the g_free on the public key token. Now copy
9439 the pk token string into the MonoAssemblyName buffer using g_strlcpy.
9440 * assembly.c: Added public key token string value when loading
9441 assemblies. Fix bug #60439.
9442 * icall.c: Added missing informations (like public key) in
9443 GetReferencedAssemblies. Fix #60519.
9444 * image.h: Changed definition for public key token from const char*
9445 public_tok_value to guchar public_key_token [17];
9446 * reflection.c: Updated for changes to public key token.
9448 2004-06-22 Lluis Sanchez Gual
9450 * icall.c: In ves_icall_InternalExecute, when setting a filed, also look
9451 for the field in base classes.
9453 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9455 * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
9456 mark headers as not supported, they are installed only for use by the
9459 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
9461 * *.c, *.h: avoid namespace pollution in public headers.
9463 2004-06-21 Martin Baulig <martin@ximian.com>
9465 * exception.c (mono_get_exception_security): It's in
9466 "System.Security", not in "System".
9468 * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
9469 the exception classes.
9471 2004-06-21 Martin Baulig <martin@ximian.com>
9473 * mono-debug-debugger.c (mono_debugger_unhandled_exception):
9474 Protect the exception object from being finalized.
9476 2004-06-21 Martin Baulig <martin@ximian.com>
9478 * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
9481 2004-06-21 Sebastien Pouliot <sebastien@ximian.com>
9483 * reflection.c: Load the assembly in mono_reflection_type_from_name,
9484 if it was not loaded before. Fix parts of #60439.
9486 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
9488 * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
9489 code that was broken since Ben's change: wrappers are now
9490 dependent on the method signature only again.
9492 2004-06-21 Martin Baulig <martin@ximian.com>
9494 * mono-debug-debugger.c (write_class): Cleaned this up a bit and
9495 added interface support.
9497 2004-06-21 Martin Baulig <martin@ximian.com>
9499 * class.c (mono_vtable_get_static_field_data): New public method.
9501 2004-06-20 Atsushi Enomoto <atsushi@ximian.com>
9503 * filewatcher.c : Windows build fix to be compliant with API changes.
9505 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9507 * class.h, class.c: more accessors.
9508 * metadata.h, metadata.c: prepare for hiding MonoType and
9509 MonoMethodSignature: people should use the accessors from now on
9510 outside of the tree.
9512 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
9514 * *.c, *.h: more API cleanups.
9516 2004-06-18 Jackson Harper <jackson@ximian.com>
9518 * assembly.c: Trace loading assemblies.
9519 * loader.c: Trace loading native libraries.
9520 * mono-config.c: Trace loading config files.
9522 2004-06-18 Dick Porter <dick@ximian.com>
9524 * locales.c: Tell ICU the lengths of strings, it can cope with
9525 embedded \0 then. Fixes bug 59274, and doesn't break bug 55822.
9527 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
9529 * image.c: swapped name/filename;
9531 2004-06-18 Martin Baulig <martin@ximian.com>
9533 * mono-debug-debugger.c (write_class): Write the parent class at
9534 the end of the header.
9536 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
9538 * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
9540 2004-06-17 Raja R Harinath <rharinath@novell.com>
9542 * Makefile.am (PLATFORM_LIB): New. Possibly refer to ../os/libmonoos.la.
9543 (bundle_obj): New conditional define.
9544 (BUILT_SOURCES): Remove.
9545 ($(bundle_srcs)): Make parallel-make safe.
9546 (libmonoruntime_la_LIBADD): Make unconditional.
9547 (libmetadata_la_LIBADD): Make unconditional. Refer to $(bundle_obj).
9548 (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
9550 2004-06-17 Atsushi Enomoto <atsushi@ximian.com>
9552 * culture-info-tables.h: It was inconsistent with the latest
9555 2004-06-17 Zoltan Varga <vargaz@freemail.hu>
9557 * assembly.c (mono_assembly_open): Fix crash when the assembly can't
9560 * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
9563 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
9565 * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
9566 cleaned up public header threads.h.
9568 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
9570 * Makefile.am, *.c, *.h: more API cleanups.
9572 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
9574 * Makefile.am: removed monosn from compilation.
9575 * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
9576 debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
9577 image.c, image.h, loader.c, marshal.c, metadata-internals.h,
9578 metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
9579 mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
9580 reflection.c, reflection.h, verify.c: more API cleanups and fixes.
9582 2004-06-15 Jackson Harper <jackson@ximian.com>
9584 * assembly.c: Make locales lower case when searching the GAC for
9585 assemblies. gacutil will always make locales lowercase when
9586 installing so this effectively makes them case insensitive.
9588 2004-06-15 Lluis Sanchez Gual <lluis@ximian.com>
9590 * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
9591 * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
9592 parameter which allows to choose whether the wait can be interrupted or
9593 not. Also added the method mono_monitor_enter(), which locks the monitor
9594 using an infinite wait and without allowing interruption.
9595 In the Monitor.Enter and Wait icalls, retry the lock if the wait is
9597 * object.h: Added new fields in MonoThread. suspend_event holds the event
9598 used to susped/resume the thread. synch_lock is the lock object to use for
9599 modifying the thread state.
9600 * threads.c: Use the new synch_lock object for locking, instead of "this",
9601 which can generate deadlocks.
9602 Moved thread state change in Thread.Sleep and Thread.Join from managed
9603 to unmanaged code. This avoids a deadlock when the thread was suspended
9604 just after acquiring the thread lock.
9605 In general, use mono_monitor_enter instead of mono_monitor_try_enter.
9606 Implemented Thread.Suspend using an event instead of ThreadSuspend,
9607 which is not fully implemented in the io-layer.
9608 * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
9610 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
9612 * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
9613 threads-types.h: more API cleanups.
9615 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
9617 * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
9618 domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
9619 threadpool.c, threads.c: first pass at the exported API cleanup.
9621 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
9623 * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
9625 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9627 * icall.c: added internalGetHome.
9629 2004-06-14 Dick Porter <dick@ximian.com>
9631 * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
9632 possible to return successfully when '.' or '..' were the only
9633 entries in a directory, but were skipped. The MonoIOStat was not
9634 filled in in that case. Now return ERROR_NO_MORE_FILES instead.
9637 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
9639 * reflection.c: make binaries run on .Net 1.1 by default.
9641 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
9643 * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
9645 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
9647 * marshal.c: keep track of struct size with explicit layout
9650 2004-06-12 Martin Baulig <martin@ximian.com>
9652 * mono-debug-debugger.c: Comment out a debugging g_message().
9654 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
9656 * reflection.c, reflection.h: do not free custom attrs that are cached.
9657 * icall.c: use braces to make code clearer.
9659 2004-06-11 Martin Baulig <martin@ximian.com>
9661 * class.h (MonoInflatedField): New type.
9662 (MonoClassField): Replaced `MonoType *generic_type' with
9663 `MonoInflatedField *generic_info'.
9666 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
9668 2004-06-11 Martin Baulig <martin@ximian.com>
9670 * reflection.c (mono_image_create_method_token): Correctly encode
9673 2004-06-11 Martin Baulig <martin@ximian.com>
9675 * metadata.c (mono_metadata_parse_method_signature): When parsing
9676 a MethodDef which has VarArgs, also set sentinelpos if we don't
9677 have any parameters.
9679 2004-06-11 Martin Baulig <martin@ximian.com>
9681 * verify.c (mono_method_verify): In CEE_CALL, use
9682 mono_method_get_signature() to get the method's signature, unless
9683 we're a PInvoke method.
9685 2004-06-10 Jackson Harper <jackson@ximian.com>
9687 * assembly.c: Use <path>/lib/mono/gac for the extra paths
9688 lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
9689 logical name as the supplied path is just a prefix to the gac not
9690 the direct path to it.
9692 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
9694 * reflection.c: make the token for a created method match
9695 the token of the MethodBuilder it was created from
9696 (IKVM requires this behaviour now).
9698 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
9700 * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
9701 reflection.c, socket-io.c: leak fixes.
9703 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
9705 * icall.c: handle sentinel pos in vararg methods in position different
9708 2004-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9710 * culture-info-tables.h: freshly generated.
9712 2004-06-09 Martin Baulig <martin@ximian.com>
9714 * loader.c (mono_get_method_constrained): Call `mono_class_init
9715 (constrained_class)'.
9717 2004-06-08 Gert Driesen <drieseng@users.sourceforge.net>
9719 * icall.c (ves_icall_MonoType_GetEvent): Handle events without
9720 any methods. Fixes #59629.
9722 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
9724 * culture-info-tables.h: reflecting locale-builder updates.
9726 2004-06-08 Dick Porter <dick@ximian.com>
9729 * locales.c: Fixed compile warnings, including a real bug in
9730 CompareInfo_internal_compare.
9732 2004-06-08 Dick Porter <dick@ximian.com>
9735 (ves_icall_System_Globalization_CompareInfo_internal_index):
9736 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9737 Double-check the resuls of usearches, because ICU currently
9738 ignores most of the collator settings here. Fixes bug 59720.
9740 2004-06-08 Dick Porter <dick@ximian.com>
9743 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
9744 Fix memory leak and segfault-causing typo. No idea how this one
9745 lasted so long without being noticed.
9747 2004-06-09 Zoltan Varga <vargaz@freemail.hu>
9749 * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
9750 any methods. Fixes #59629.
9752 2004-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9755 (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
9756 own the critical section before). Removed dead code (that's done
9757 in the preload hook).
9759 (mono_assembly_load_with_partial_name): call the preload hook.
9761 2004-06-08 Martin Baulig <martin@ximian.com>
9763 * metadata.c (mono_metadata_signature_alloc): Default
9764 `sentinelpos' to -1.
9766 * reflection.c (mono_image_get_array_token): Likewise.
9768 2004-06-08 Martin Baulig <martin@ximian.com>
9770 * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
9772 * metadata.c (mono_metadata_parse_method_signature): When parsing
9773 a MethodDef which has VarArgs, set sentinelpos.
9775 * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
9776 `gint16' since we're using -1 for non-varargs methods.
9779 (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
9780 (method_encode_signature): Added varargs support.
9781 (method_builder_encode_signature): Likewise.
9782 (mono_image_get_varargs_method_token): New static method.
9783 (mono_image_create_method_token): New public method; this is
9784 called via an icall instead of mono_image_create_token() when
9785 calling a varargs method.
9787 2004-06-08 Lluis Sanchez Gual <lluis@ximian.com>
9789 * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
9791 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
9793 * culture-info-tables.h : Reflecting the latest locale-builder that
9794 fixed empty array representation ({} to {0}).
9796 2004-06-07 Jackson Harper <jackson@ximian.com>
9798 * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
9799 looking up extra gac paths. This allows MONO_GAC_PATH to act
9800 exactly like a prefix.
9802 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
9804 * reflection.c (mono_reflection_type_from_name): Make a copy of the
9805 type name before modifying it. Fixes #59405.
9807 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
9809 * culture-info.h: added fields for "all datetime patterns".
9810 * locales.c: ( ves_icall_System_Globalization_CultureInfo
9811 _construct_datetime_format ()): fill xxx_patterns fields.
9812 * object.h: added fields for "all datetime patterns" to
9813 MonoDateTimeFormatInfo.
9814 * culture-info-tables.h: reflecting locale-builder updates.
9816 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
9818 * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
9819 the event has no add and remove methods. Fixes #59629.
9821 2004-06-05 Sebastien Pouliot <sebastien@ximian.com>
9823 * object.c: Fixed possible integer overflow when allocating large
9826 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
9828 * culture-info-tables.h: reflecting locale-builder updates.
9830 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
9832 * culture-info-tables.h: reflecting locale-builder updates.
9834 2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
9836 * culture-info-tables.h: reflecting locale-builder updates.
9838 2004-06-03 Lluis Sanchez Gual <lluis@ximian.com>
9840 * threads.c: Made Thread.Sleep abortable.
9842 2004-06-02 Martin Baulig <martin@ximian.com>
9844 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
9846 * debug-mono-symfile.h: Bumped symbol file version number to 37.
9848 2004-05-31 Zoltan Varga <vargaz@freemail.hu>
9850 * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
9852 2004-05-30 Jackson Harper <jackson@ximian.com>
9854 * reflection.c: Do not hardcode assembly versions or public key
9855 tokens anymore. All of this except the corlib section was dead
9858 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
9860 * object.c (mono_runtime_invoke_array): Automatically create boxed
9861 objects for byref valuetypes if needed. Fixes #59300.
9863 * object.c (mono_method_return_message_restore): Handle
9864 MONO_TYPE_OBJECT as well.
9866 2004-05-28 Jackson Harper <jackson@ximian.com>
9868 * reflection.c: The modified type encoding was causing build
9869 problems. Reverted for now.
9871 2004-05-28 Jackson Harper <jackson@ximian.com>
9873 * reflection.c/h: Take an assembly ref so that we dont create
9874 fully qualified names when encoding types in the same assembly as
9875 the custom attribute being emitted.
9876 * appdomain.c: Increment version number.
9878 2004-05-26 Duncan Mak <duncan@ximian.com>
9881 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9882 Set the full version number (major, minor, build, revision).
9884 2004-05-28 Vladimir Vukicevic <vladimir@pobox.com>
9886 * marshal.c (emit_struct_conv): increment src/dst after blit
9887 (mono_marshal_get_managed_wrapper,
9888 mono_marshal_get_native_wrapper): make sure we have marshalling
9889 info before marshalling params (info computation affects
9892 * class.c (class_compute_field_layout): correctly deal with
9894 (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
9895 value types (as per what windows dows by default)
9896 (mono_class_setup_mono_type): System.ValueType is blittable
9897 (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
9900 * marshal.c (mono_marshal_load_type_info): flag types as
9901 non-blittable if the native layout doesn't match the managed
9904 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9906 * appdomain.c: don't add stuff in the private search path that is
9907 above the application base. If application base is not set, there's
9908 no private search path.
9910 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
9912 * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
9913 byref struct arguments in native->managed marshalling.
9915 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
9917 * marshal.c (mono_marshal_get_runtime_invoke): correctly
9918 cache methods using signature (special case for methods
9919 that are value type or string class)
9921 * image.c (mono_image_close): clean up allocated GSList's
9922 in runtime_invoke_cache.
9924 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9926 * mono-config.c: set the correct path for mono_cfg_dir on windows when
9927 there's no MONO_CFG_DIR environment variable defined.
9929 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9931 * threads.c: windows version must be >= 0x0500 to include OpenThread.
9933 2004-05-28 Lluis Sanchez Gual <lluis@ximian.com>
9935 * threadpool.c: Really wait for 500ms after the async call, even if the wait
9937 * threads.c: In mono_thread_manage, call OpenThread to ref each handle
9938 before waiting for it, and call CloseHandle after the wait to unref it.
9939 This will make sure that handles are not disposed too early.
9941 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9946 ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
9949 * object.c: se the application_base only for the domain that runs
9950 Main. Fixes bug #59216,
9952 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9955 * object.c: only the domain in which Main is run have
9956 SetupInformation.ConfigurationFile set, so moved a few lines from
9957 appdomain.c to object.c.
9959 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9961 * appdomain.c: we tried to load [name].(dll|exe), but according
9962 to bug #57710, we must also try [culture]/[name].(dll|exe) and
9963 [culture]/[name]/[name](dll|exe). This patch fixes the bug.
9964 There's a test case attached to bug #58922.
9966 2004-05-27 Dick Porter <dick@ximian.com>
9969 * file-io.c: Implemented icalls for locking and unlocking regions
9971 (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
9972 FALSE on error (fixes both compiler warning and real bug.)
9974 2004-05-27 Atsushi Enomoto <atsushi@ximian.com>
9976 * culture-info-tables.h: reflecting locale-builder updates.
9978 (Added missing ChangeLog entry for 05/26)
9980 2004-05-27 Jackson Harper <jackson@ximian.com>
9982 * locales.c: Fix some cut and paste errors.
9984 2004-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9986 * mono-config.c: set the correct path for config. directory on windows.
9988 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
9990 * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
9993 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
9995 * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
9996 from pinvoke functions.
9998 * marshal.c (mono_ftnptr_to_delegate): Implement this.
10000 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
10002 * culture-info-tables.h: reflecting locale-builder updates.
10004 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
10006 * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
10009 2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
10011 * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
10012 * icall.c: Modified icalls for RNG.
10013 * rand.c|h: Changed RNG interface to allow thread-safe usage under
10014 Windows (CryptoAPI).
10016 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
10018 * locales.c: Fix build.
10020 2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
10022 * culture-info-tables.h: reflecting locale-builder updates.
10024 2004-05-25 Jackson Harper <jackson@ximian.com>
10026 * locales.c: When creating the current culture use the $LANGs
10027 specific culture. So DateTimeFormat and NumberFormat entries are created.
10029 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
10031 * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
10032 a char array as parameter.
10034 2004-05-24 Lluis Sanchez Gual <lluis@ximian.com>
10036 * image.c: In mono_image_open(), always use an absolute path name to
10037 look for already loaded images.
10039 2004-05-24 Sebastien Pouliot <sebastien@ximian.com>
10041 * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
10042 missing in the windows build (like older cygwin include files).
10044 2004-05-23 Sebastien Pouliot <sebastien@ximian.com>
10046 * icall.c: Fixed check for possible integer overflow in Buffer_
10047 BlockCopy icall. Replaced comments style // by /* */.
10049 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
10051 * marshal.c (mono_ftnptr_to_delegate): Fix warning.
10053 * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
10054 check after MONO_VTADDR. Fixes pinvoke2.exe.
10056 * marshal.h marshal.c metadata.h: Add beginnings of support for
10057 ftnptr -> delegate marshalling.
10059 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
10061 * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
10062 * threads.c: Fix warnings.
10064 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
10066 * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
10067 * icall.c: Registered icalls for Suspend and Resume.
10068 * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
10070 * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
10071 * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
10072 * process.c: Use WaitForSingleObjectEx.
10073 * threadpool.c: Use WaitForSingleObjectEx. Added some interruption
10075 * threads.c, threads.h: Make use of new Ex wait methods. Improved
10076 implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
10077 for Suspend and Resume. Added new mono_thread_stop, used for stoping
10078 background threads. Added basic support for Abort in Windows.
10079 Start new threads using a managed delegate invoke wrapper. This wrapper
10080 has an interruption checkpoint that is needed since an interruption
10081 can be requested before the thread leaves the unmanaged code that starts
10083 * marshal.c: Added interruption checkpoint after every native call, and
10084 also before managed calls for wrappers called from unmanaged code to
10085 go into managed code.
10086 * object.h: Added new field in MonoThread to keep track of interruption
10089 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
10091 * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
10094 2004-05-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10101 * rand.c: getenv -> g_getenv (windows!)
10103 * process.c: complete_path is also used on non-windows platforms.
10105 2004-05-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10107 * icall.c: new signature for Process_Start.
10109 * process.[ch]: new signature for Process_Start. If we're on windows
10110 and UseShellExecute is false, we have to search for the program by
10111 ourselves if we don't get a full path.
10113 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
10115 * marshal.c (mono_marshal_get_native_wrapper): Fix up custom
10116 marshalling and call CleanUpNativeData if needed. Fixes #58646.
10118 2004-05-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10120 * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
10123 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10125 * process.c: use double quotes to quote program name and arguments on
10126 windows. Fixes bug #58575.
10128 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10130 * file-io.c: don't return "." and ".." when using windows Find*File.
10132 2003-05-17 Patrik Torstensson <totte@hiddenpeaks.com>
10134 * marshal.c: Don't pass wrappers to message init because method
10135 addressed used to lookup metadata. part of remoting[2|3] fix.
10137 2004-05-15 Jackson Harper <jackson@ximian.com>
10139 * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
10140 path is essentially the same as MONO_PATH except that it points to
10141 GACs instead of lib directories.
10142 * loader.h: The user gac is gone so we dont need function to
10144 * mono-config.c: user gac option is now gone.
10146 2004-05-15 Jackson Harper <jackson@ximian.com>
10148 * culture-info.h: Make defines more consistent, add calendar data
10149 to the culture info table.
10150 * culture-info-tables.h: Add basic calendar data. Basically
10151 everyone gets default gregorian until all the data is
10153 * locales.c: Use the new consistent defines. Set calendar data for
10154 culture info objects.
10155 * object.h: add a field for calendar data to CultureInfo
10157 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
10159 * image.c: image->runtime_invoke_cache is keyed on signatures now.
10160 * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
10162 (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
10163 (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
10164 an extra param that is the pointer of the method to invoke. The IL for
10165 the invoke method is no longer specific to the method, but to the
10166 signature of the method. Thus, we can share the same code for multiple
10167 methods. This reduces the number of methods that have to be compiled.
10169 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
10171 * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
10173 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10175 * icall.c: Optimize Buffer.BlockCopy.
10177 2004-05-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10179 * culture-info-tables.h: seems like Spanish and Portuguese cultures had
10180 DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
10181 quote). Changed them to "MMMM yyyy".
10183 2004-05-12 Miguel de Icaza <miguel@ximian.com>
10186 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file.
10188 2004-05-13 Zoltan Varga <vargaz@freemail.hu>
10190 * reflection.h: Updated after changes to managed structures.
10192 * appdomain.c: Bump corlib version.
10194 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10196 * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
10199 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10201 * Makefile.am: link to ../os/libmonoos.la on windows.
10204 -If MONO_DEBUG, warn about non-existing directories in
10206 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
10207 compile time variable.
10208 -Removed init_default_path and call mono_set_rootdir from
10209 libmonoos.a instead (windows only).
10211 * assembly.h: declare mono_assembly_getrootdir().
10214 * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
10216 * loader.c: s/getenv/g_getenv/
10218 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
10220 * marshal.{h,c}: Add support for UnmanagedType.AsAny.
10222 * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
10224 * metadata.h: Add new marshalling conversions.
10226 * metadata.h metadata.c (mono_metadata_signature_dup): New helper
10229 * reflection.c (mono_reflection_get_type): Lookup the type in all
10230 modules of a multi-module assembly. Fixes #58291.
10232 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
10234 * threads.c: Before aborting a background, set the StopRequested
10235 state. This avoids throwing the Abort exception.
10236 In mono_thread_manage, don't continue with the shutdown until all
10237 aborted threads have actually stopped.
10239 2004-05-10 Jackson Harper <jackson@ximian.com>
10241 * locales.c: Remove the modifier from culture names.
10243 2004-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10245 * Makefile.am: monosn is not installed any more. It has been deprecated
10248 2004-05-07 Jackson Harper <jackson@ximian.com>
10251 (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
10252 Fix array construction, add bailout if the length is 0.
10254 2004-05-07 Dick Porter <dick@ximian.com>
10256 * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
10257 machine doesn't have a DNS entry. Patch by Urs Muff
10258 (umuff@quark.com), fixes bug 57928.
10260 2004-05-06 Jackson Harper <jackson@ximian.com>
10262 * reflection.c: Handle null PublicTokens properly. alloc mem for
10263 assembly names culture so we dont crash when freeing it.
10265 2004-05-06 Jackson Harper <jackson@ximian.com>
10267 * assembly.c: Check the usergac when loading with partial names.
10269 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
10271 * rand.c|h: Added new icall for (optionally) seeding the PRNG. This
10272 does nothing for now (not required for Linux/Windows) but the class
10273 library can call it (and a newer or modified runtime could need it).
10274 * icall.c: Registred icall.
10276 2004-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10278 * loader.c: prints a message on module loading error we set MONO_DEBUG
10279 environment variable.
10281 2004-05-05 Jackson Harper <jackson@ximian.com>
10283 * appdomain.c: Handle PublicKeyToken=null properly.
10285 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
10287 * environment.c|h: Added icall ves_icall_System_Environment_
10288 GetOSVersionString to get the current OS version as a string.
10289 * icall.c: Registred icall.
10291 2004-05-05 Lluis Sanchez Gual <lluis@ximian.com>
10293 * object.c: in mono_object_get_virtual_method(), take into account that
10294 non-virtual methods don't have a slot in the vtable. Check needed when
10295 the object is a proxy.
10297 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
10299 * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
10300 (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
10302 * object.c (mono_class_compute_gc_descriptor): Fix warning.
10304 * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
10305 passed when a valuetype is expected.
10307 * object.c (mono_unhandled_exception): Only set the exit code if the
10308 exception happens in the main thread. Fixes thread5.exe.
10310 * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
10311 invalid names. Fixes #58047.
10313 2004-05-03 Jackson Harper <jackson@ximian.com>
10315 * assembly.c: This line was committed accidently and is unneeded.
10317 2004-05-03 Jackson Harper <jackson@ximian.com>
10319 * icall.c: Add new icall for Assembly::LoadWithPartialName
10320 * assembly.c/.h: new function that probes the GAC to load partial
10321 assembly names by Paolo Molaro.
10323 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10325 * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
10326 * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
10327 (type_get_fully_qualified_name): Added PublicKeyToken when building a
10330 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10332 * appdomain.c: fixed check for 'neutral' culture and removed warning.
10333 * reflection.c: fix bug when parsing a full type name and Version is not
10334 the last thing in the string.
10336 2004-05-03 Zoltan Varga <vargaz@freemail.hu>
10338 * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
10339 crashes when it is freed.
10341 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10343 * assembly.c: print the compat warning to stderr.
10345 2004-05-01 Miguel de Icaza <miguel@ximian.com>
10347 * assembly.c (mono_assembly_load_references): Add a compatibility
10348 hack to run old applications that might be still referencing the
10349 3300-based assemblies, only do this for System.xxx.
10351 2004-05-01 Jackson Harper <jackson@ximian.com>
10353 * appdomain.c: If the culture is neutral we set it to "".
10355 2004-04-29 Jackson Harper <jackson@ximian.com>
10357 * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
10359 2004-04-29 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
10361 * string-icalls.c: added low overhead function for copying chars
10362 * icall.c: added needed icall for the above function
10364 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10366 * icall.c: fix return value of get_global_assembly_cache. Implemented
10367 Environment.GetLogicalDrives.
10369 2004-04-28 Bernie Solomon <bernard@ugsolutions.com>
10371 * rand.c: try and talk to egd or prngd
10372 for random bytes if opening devices fail.
10374 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
10376 * marshal.c (mono_marshal_load_type_info): Calculate the minimum
10377 alignment for the type using the native alignment of its members
10378 instead of using klass->min_align.
10380 * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
10382 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10385 * socket-io.c: added check for sys/aio.h.
10387 2004-04-28 Dick Porter <dick@ximian.com>
10389 * threads.c: Don't abort a thread thats already aborting, when
10390 terminating everything.
10392 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10394 * icall.c: added 2 new async calls for Socket.
10396 * socket-io.[ch]: fixed some warnings. Added support for asynchronous
10397 IO on *nix systems.
10399 * threadpool.c: removed unused variable.
10401 2004-04-27 Zoltan Varga <vargaz@freemail.hu>
10403 * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
10405 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10407 * locales.c: put back string_invariant_tolower () and
10408 string_invariant_toupper ().
10410 2004-04-26 David Waite <mass@akuma.org>
10415 * unicode.h: remove comma from end of enumeration declarations
10417 2004-04-26 David Waite <mass@akuma.org>
10419 * debug-mono-symfile.h:
10422 * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
10425 2004-04-26 Jackson Harper <jackson@ximian.com>
10427 * appdomain.c: Increment version number.
10429 2004-04-26 Jackson Harper <jackson@ximian.com>
10431 * appdomain.c: Set assembly references public token value when
10432 PublicKeyToken is specified, not the hash_value. Free public token
10433 values when free assembly name data. Previously the public key
10434 token was hex decoded, however we are using hex encoded public key
10435 tokens, so this is not neccasary.
10436 * assembly.c: Lookup assemblies in the gac if their public token
10437 value is set. Add function to allow enabling user gac
10438 lookups. Specify whether or not the assembly was loaded from the
10439 GAC. Compare full assembly names when checking the cache for
10440 assemblies (Temporarily disabled see comment in code). Remove
10441 mscorlib -> corlib mapping cruft. Add trace-loading. When a user
10442 specifies trace-loader they get extra info to stdout on the
10443 loading of assemblies.
10444 * image.h: Add a field for an assembly references public token
10445 value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
10446 whether an assembly has been loaded from the GAC.
10447 * image.c: Remove a corlib -> mscorlib name mapping.
10448 * loader.h: Add function to enable/disable the user gac.
10449 * mono-config.c: Check if the usergac is enabled in the config
10451 * icall.c: New icall to determine whether or not an assembly has
10452 been loaded from the GAC. Remove some mscorlib -> corlib mappings.
10453 * tabldefs.h: Add constant for assemblyref flag that specifies a
10454 full public key is used instead of a public token.
10455 * reflection.c: Remove mscorlib -> corlib mappings. Set
10456 PublicTokenValue instead of hash value. This value is a hex
10457 string so it does not need to be expanded.
10459 2004-04-26 Martin Baulig <martin@ximian.com>
10461 * mono-debug-debugger.c (mono_debugger_initialize): Set
10462 `mono_debugger_initialized' before calling mono_debug_lock().
10464 2004-04-42 Robert Shade <rshade@dvsconsulting.com>
10466 * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
10467 InternalToUpper/InternalToLower.
10468 * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
10469 removed invariant culture shortcut. This is now done in managed code.
10470 * locales.c: (string_invariant_toupper/tolower) removed.
10472 2004-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10474 * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
10475 Added Poll internal call.
10477 * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
10478 call for Poll. Select was too heavy for polling a single socket.
10480 * threadpool.[ch]: added mono_threadpool_cleanup.
10481 * threads.c: use it. Don't use Thread_Abort on windows.
10483 2004-04-23 Martin Baulig <martin@ximian.com>
10485 * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
10487 2004-04-23 Sebastien Pouliot <sebastien@ximian.com>
10489 * icall.c: Registred new icalls for key pair protection and added an
10490 icall for Environment.GetFolderPath on Windows.
10491 * security.c|h: Added new icalls for key pair protection.
10493 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10495 * socket-io.c: don't display the non-supported family warning for known
10496 families. Now this is not displayed on windows when checking support
10499 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10501 * class.c: don't display the layout warning for static fields.
10503 2004-04-21 Lluis Sanchez Gual <lluis@ximian.com>
10505 * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
10506 * locales.c, locales.h: Added new icalls for culture-specific
10507 Char.ToLower and Char.ToUpper.
10509 2004-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10511 * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
10514 2004-04-20 Martin Baulig <martin@ximian.com>
10516 * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
10517 of the type name before passing it to mono_reflection_type_from_name().
10519 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
10521 * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
10522 encodings here. Fixes #56965.
10524 2004-04-18 Bernie Solomon <bernard@ugsolutions.com>
10526 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10527 fix test on strstr result not that I can see anything that
10528 relies on the result.
10530 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
10532 * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
10535 * marshal.c (mono_marshal_get_string_encoding): New helper function.
10537 * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
10538 function to determine which marshalling to use for strings. Fixes
10541 * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
10543 * reflection.c (encode_marshal_blob): Add support for LPARRAY.
10545 2004-04-15 Bernie Solomon <bernard@ugsolutions.com>
10547 * icall.c: #include mono-config.h
10549 2004-04-15 Jackson Harper <jackson@ximian.com>
10551 * culture-info-tables.h: Fix date formats for en-US culture.
10553 2004-04-15 Lluis Sanchez Gual <lluis@ximian.com>
10555 * icall.c: Registered icalls for ThreadPool.GetMinThreads and
10556 ThreadPool.SetMinThreads.
10557 * threadpool.c: Implemented ThreadPool.GetMinThreads and
10558 ThreadPool.SetMinThreads.
10560 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10562 * mono-config.c: also load the .config file in the directory
10563 where the assembly was found.
10565 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
10567 * assembly.c: load per-assembly config files.
10568 * icall.c: decrapified code to get the config dir and moved to
10570 * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
10571 per-assembly config files. When doing a dll map lookup give precedence
10572 to the per-assembly data.
10574 2004-04-14 Martin Baulig <martin@ximian.com>
10576 * mono-debug-debugger.h (MonoDebuggerEvent): Removed
10577 MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
10578 and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
10580 * mono-debugger-debugger.c: While the debugger is locked, remember
10581 whether the symbol tables have changes and send one single
10582 MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
10584 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
10586 * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
10588 * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New
10591 * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
10592 account when marshalling string arrays. Fixes #56965.
10594 2004-04-13 Sebastien Pouliot <sebastien@ximian.com>
10596 * icall.c: Add new icalls mapping for security.
10597 * security.c|h: Add internal calls for WindowsIdentity,
10598 WindowsImpersonationContext and WindowsPrincipal.
10600 2004-04-13 Gert Driesen (drieseng@users.sourceforge.net)
10602 * class.c: Added comment to ensure the System.MonoDummy class
10603 is removed when no longer necessary
10605 2004-04-13 Miguel de Icaza <miguel@ximian.com>
10607 * appdomain.c: Pass arguments to the bootstraping exceptions to
10608 minimize JITed methods at boot
10610 * metadata.c (mono_exception_from_name_two_strings): Allow for the
10611 second string to be null.
10613 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
10614 Change the protocol to minimize the JIT methods at startup. Now
10615 it Returns the internal codepage, if the value of "int_code_page"
10616 is 1 at entry, and we can not compute a suitable code page
10617 number, returns the code page as a string.
10619 2004-04-13 Jackson Harper <jackson@ximian.com>
10621 * culture-info-tables.h: Fix number of decimal digits for all
10624 2004-04-13 Jackson Harper <jackson@ximian.com>
10626 * icall.c: Clairfy out of sync error message. It is not always
10627 your corlib that is out of sync.
10629 2004-04-13 Zoltan Varga <vargaz@freemail.hu>
10631 * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
10632 properties when only the set accessor is overriden. Fixes #55874.
10634 2004-04-09 Zoltan Varga <vargaz@freemail.hu>
10636 * assembly.c (mono_assembly_load_references): Make this thread safe.
10639 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
10641 * monosn.c: Add missing initialization calls.
10643 2004-04-08 Bernie Solomon <bernard@ugsolutions.com>
10646 ves_icall_System_Globalization_CultureInfo_construct_number_format
10647 Fix g_assert so it compiles on fussier compilers re int/ptr
10650 2004-04-08 Dick Porter <dick@ximian.com>
10653 * socket-io.c: Don't set SO_REUSEADDR on windows. Fixes bug
10654 53992. Also rearrange the code so that the internal calls return
10655 an error value and exceptions are thrown from managed code.
10657 * icall.c: Add type info to the socket icalls.
10659 2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10661 * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
10664 2004-04-07 Martin Baulig <martin@ximian.com>
10666 * class.c (mono_class_from_generic_parameter): Don't default
10667 `klass->parent' to `mono_defaults.object_type'.
10669 2004-04-07 Martin Baulig <martin@ximian.com>
10671 * reflection.c (mono_reflection_initialize_generic_parameter): Set
10672 `param->pklass->reflection_info'.
10674 2004-04-07 Jackson Harper <jackson@ximian.com>
10676 * culture-info-tables.h: Fix date separator symbol.
10678 2004-04-07 Martin Baulig <martin@ximian.com>
10680 * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
10681 from System.Type to System.MonoType.
10683 2004-04-07 Martin Baulig <martin@ximian.com>
10686 (MonoReflectionGenericParam): Added `has_reference_type' and
10687 `has_value_type' fields.
10689 * reflection.c (mono_image_get_generic_param_info): Encode the
10690 correct flags if we have the `class' or `struct' constraint.
10692 2004-04-07 Martin Baulig <martin@ximian.com>
10695 (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
10697 2004-04-07 Jackson Harper <jackson@ximian.com>
10699 * appdomain.c: Revert extra patches, just wanted to bump the
10702 2004-04-07 Jackson Harper <jackson@ximian.com>
10704 * Makefile.am: Add culture-info private headers.
10705 * icall.c: Add new icalls for contructing locales.
10706 * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
10707 * locales.h: Declare new culture info construction methods.
10708 * object.h: Add new fields used to avoid the CultureMap to
10710 * culture-info.h: Definition of structs used in the culture info
10712 * culture-info-tables.h: Autogenerated tables that contain culture
10713 info data. This file was generated with the locale-builder tool.
10714 * appdomain.c: Incement corlib version number.
10716 2004-04-07 Bernie Solomon <bernard@ugsolutions.com>
10718 * appdomain.c: (mono_runtime_init) move mono_thread_init
10719 to before mono_object_new calls so critical sections
10720 are initialized before use.
10722 2004-04-07 Martin Baulig <martin@ximian.com>
10725 (ves_icall_TypeBuilder_define_generic_parameter): Removed.
10726 (ves_icall_MethodBuilder_define_generic_parameter): Removed.
10727 (ves_icall_MonoGenericParam_initialize): Removed.
10728 (monogenericparam_icalls): Removed.
10729 (generictypeparambuilder_icalls): Added new table for
10730 System.Reflection.Emit.GenericTypeParameterBuilder.
10733 (mono_reflection_define_generic_parameter): Removed.
10734 (mono_reflection_initialize_generic_parameter): This is now called
10735 from GenericTypeParameterBuilder's .ctor.
10737 2004-04-06 Martin Baulig <martin@ximian.com>
10739 * class.c (mono_class_init): Don't inflate nested classes in a
10741 (mono_type_get_name_recurse): Include the generic arguments for
10742 generic instances and generic type declarations.
10743 (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
10744 (_mono_class_get_instantiation_name): Removed.
10745 (mono_class_create_generic): Always use `gklass->name' as our name.
10747 * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
10749 * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
10750 (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
10751 (ves_icall_MonoMethod_GetGenericParameters): Renamed to
10752 ves_icall_MonoMethod_GetGenericArguments() and correctly handle
10753 closed generic methods here.
10756 (mono_reflection_generic_inst_get_nested_types): Removed.
10757 (inflate_mono_method): Copy the generic parameters from the
10758 MonoMethodHeader into out MonoGenericMethod.
10760 2004-04-06 Martin Baulig <martin@ximian.com>
10763 (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
10765 * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
10767 * reflection.c (build_compressed_metadata): If we have any entries
10768 in the GenericParam, MethodSpec or GenericParamConstraint tables,
10769 set the header version to 1.1.
10771 2004-04-06 Martin Baulig <martin@ximian.com>
10773 * class.c (mono_class_init): If we're a generic instance,
10774 initialize our nested classes, too.
10775 (_mono_class_get_instantiation_name): Deal with the new `!%d'
10778 2004-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10780 * process.c: quote the argument passed to the shell on windows.
10782 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
10784 * threads.c (mono_alloc_special_static_data): Allow this to be
10785 called during startup.
10787 2004-04-02 Martin Baulig <martin@ximian.com>
10790 (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
10792 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
10794 * icall.c: Fix build.
10796 2004-04-02 Sebastien Pouliot <sebastien@ximian.com>
10798 * Makefile.am: Added security.c|h.
10799 * icall.c: Added icall for get_UserName;
10800 * security.c: New file for security related icalls. Added function
10801 get_UserName for System.Environment (fix #56144).
10802 * security.h: New. Header file for security.c
10804 2004-04-02 Dick Porter <dick@ximian.com>
10806 * icall.c: Deleted the icalls that were obsoleted some time ago
10807 by the ICU string code, and which were mixed into the icall
10808 rearranging. Fixes bug 55969.
10811 * string-icalls.c: Deleted the code that those icalls reference.
10813 2004-04-01 Martin Baulig <martin@ximian.com>
10815 * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
10817 * class.c (mono_class_from_generic_parameter): Don't set
10818 TYPE_ATTRIBUTE_INTERFACE.
10819 (my_mono_class_from_generic_parameter): Likewise.
10821 2004-04-01 Martin Baulig <martin@ximian.com>
10823 * loader.c (find_method): Added an optional `MonoClass *ic'
10824 argument to search in a specific interface.
10825 (mono_get_method_constrained): New public function.
10827 2004-04-01 Martin Baulig <martin@ximian.com>
10829 * reflection.c (mono_image_get_generic_field_token): Use the
10830 `handleref' cache here.
10832 2004-04-01 Martin Baulig <martin@ximian.com>
10834 * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
10836 * reflection.c (create_generic_typespec): Use the `typespec' hash
10837 here, not the `typeref' one.
10839 2004-04-01 Martin Baulig <martin@ximian.com>
10841 * class.c (mono_class_inflate_generic_type): Moved the
10842 functionality into a new static inflate_generic_type() which
10843 returns NULL if it didn't do anything. Only increment the
10844 `mono_stats.inflated_type_count' if we actually inflated
10846 (mono_class_get_full): Check the classes type to see whether we
10847 need to inflate it; also inflate MONO_TYPE_(M)VAR.
10849 2004-04-01 Jackson Harper <jackson@ximian.com>
10851 * reflection.c: Set culture for assembly references.
10853 2004-04-01 Ben Maurer <bmaurer@users.sourceforge.net>
10855 * reflection.[ch], icall.[ch], Fix support for pinning variables.
10857 2004-04-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10860 (do_mono_assembly_open): the critical section also covers
10861 mono_image_open and mono_image_open_from_data. Fixes bug #56327.
10863 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10866 (mono_manage_threads): abort the background threads when finishing.
10869 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10871 * gc.c: only close the done_event handle if there was no timeout.
10874 2004-03-30 Martin Baulig <martin@ximian.com>
10876 * icall.c (icall_entries): It's called "System.Activator", not
10877 "System.Activation".
10879 2004-03-30 Martin Baulig <martin@ximian.com>
10881 * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
10882 (mono_class_create_from_typespec): Likewise.
10884 2004-03-30 Martin Baulig <martin@ximian.com>
10886 * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
10887 `has_ctor_constraint' and `initialized'.
10889 2004-03-30 Martin Baulig <martin@ximian.com>
10891 * reflection.c (encode_new_constraint): New static function to add
10892 the constructor constraint attribute to a type parameter.
10893 (encode_constraints): Call encode_new_constraint() if necessary.
10896 (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
10898 * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
10900 2004-03-29 Ben Maurer <bmaurer@users.sourceforge.net>
10902 * reflection.c, icall.c: add support for pinning variables.
10904 2004-03-29 Bernie Solomon <bernard@ugsolutions.com>
10906 * marshal.c (mono_marshal_get_managed_wrapper):
10907 init bool local with zero rather than null.
10909 2004-03-29 Martin Baulig <martin@ximian.com>
10911 * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
10912 the "official" behavior here.
10913 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
10915 2004-03-29 Martin Baulig <martin@ximian.com>
10917 * icall.c: Reflect latest API changes.
10919 2004-03-29 Martin Baulig <martin@ximian.com>
10921 * loader.c (mono_get_method_from_token): Also call
10922 mono_metadata_load_generic_params () for abstract and interface
10923 methods; replace the type arguments in the method signature with
10924 the ones which are loaded from the metadata.
10926 2004-03-29 Lluis Sanchez Gual <lluis@ximian.com>
10928 * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
10929 of the lock is not the current thread. MS.NET don't do it, in spite of
10930 what the documentation says. See bug #56157.
10932 2004-03-28 Martin Baulig <martin@ximian.com>
10934 * class.c (mono_class_init): Don't call init_properties() and
10935 init_events() for generic instances; set `prop->parent' when
10936 inflating properties.
10938 * reflection.c (mono_generic_inst_get_object): Call
10939 `mono_class_init (ginst->klass)'.
10940 (mono_type_get_object): Only create a MonoGenericInst if your
10941 generic type is a TypeBuilder.
10942 (do_mono_reflection_bind_generic_parameters): Only set
10943 `ginst->is_dynamic' if our generic type is a TypeBuilder.
10945 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
10947 * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
10950 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10952 * icall.c: added Kill_internal icall.
10953 * process.[ch]: added Kill_internal icall.
10955 2004-03-25 Martin Baulig <martin@ximian.com>
10957 * class.h (MonoStats): Added `generic_instance_count',
10958 `inflated_method_count', `inflated_type_count' and
10959 `generics_metadata_size'.
10961 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10963 * reflection.c: no warnings now.
10965 2004-03-25 Martin Baulig <martin@ximian.com>
10967 * class.c (mono_class_get_full): New public function; does a
10968 mono_class_get(), but also takes a `MonoGenericContext *'.
10970 * loader.c (mono_field_from_memberref): Renamed to
10971 `field_from_memberref', made static and added `MonoGenericContext *'
10973 (mono_field_from_token): Added `MonoGenericInst *' argument.
10974 (method_from_memberef): Likewise.
10975 (mono_get_method_from_token): Likewise.
10976 (mono_get_method_full): New public function; does a
10977 mono_get_method(), but also takes a `MonoGenericContext *'.
10979 * verify.c (mono_method_verify): Get the method's generic context
10980 and pass it to mono_field_from_token(), mono_get_method_full() and
10981 mono_class_get_full().
10983 2004-03-25 Martin Baulig <martin@ximian.com>
10985 * class.c (mono_class_inflate_generic_type): Take a
10986 `MonoGenericContext *' instead of a `MonoGenericInst *' and a
10987 `MonoGenericMethod *'.
10989 2004-03-25 Martin Baulig <martin@ximian.com>
10991 * loader.h (MonoMethodInflated): Store the MonoGenericContext
10992 instead of the MonoGenericMethod here.
10994 2004-03-25 Martin Baulig <martin@ximian.com>
10996 * class.h (MonoGenericInst): Added `MonoGenericContext *context';
10997 each time we create a new MonoGenericInst, we also create a new
10998 context which points back to us.
11000 * class.c (inflate_method): Use `ginst->context' instead of
11001 creating a new context.
11003 * loader.c (method_from_memberref): Use
11004 `klass->generic_inst->context' instead of creating a new context.
11006 2004-03-25 Martin Baulig <martin@ximian.com>
11008 * class.h (MonoGenericContext): New struct.
11009 (MonoGenericMethod): Removed `generic_inst'.
11011 * class.c (mono_class_inflate_generic_method): Take a
11012 `MonoGenericContext *' instead of a `MonoGenericMethod *'.
11014 2004-03-25 Martin Baulig <martin@ximian.com>
11016 * loader.h (MonoMethodInflated): New typedef.
11018 * metadata.h (MonoMethodSignature): Removed `gen_method', make
11019 `generic_param_count' consume just 30 bits, added `is_inflated'
11020 and `has_type_parameters' flags (one bit each).
11022 * class.c (mono_class_inflate_generic_method): Create a
11023 MonoMethodInflated instead of a MonoMethodNormal and set
11024 `is_inflated' in the method signature.
11026 * class.h (MonoGenericMethod): Removed `generic_method'.
11028 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
11030 * image.c: Make sure the name of a MonoImage is always an absolute path.
11031 This fixes bug #54415.
11033 2004-03-24 Martin Baulig <martin@ximian.com>
11035 * class.c (mono_class_setup_vtable): If we're a generic instance,
11036 use our generic type's vtable size.
11038 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
11040 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
11041 MONO_NO_UNLOAD env var as a temporary workaround for unloading
11044 2004-03-23 Martin Baulig <martin@ximian.com>
11046 * class.h (MonoDynamicGenericInst): Added `int count_events' and
11047 `MonoEvent *events'.
11049 * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
11050 (typebuilder_icalls): Added "get_event_info"; calls
11051 mono_reflection_event_builder_get_event_info().
11053 * reflection.c (mono_reflection_generic_inst_initialize): Added
11054 `MonoArray *events'.
11055 (mono_reflection_event_builder_get_event_info): New function.
11057 2004-03-23 Bernie Solomon <bernard@ugsolutions.com>
11059 * object.h: add mono_type_initialization_init
11061 * object.c (mono_runtime_class_init):
11062 implement class constructor synchronization rules
11063 to cope with threading issues.
11064 add mono_type_initialization_init
11066 * appdomain.c (mono_runtime_init): call
11067 mono_type_initialization_init
11069 * class.h: removing initializing field from MonoVTable
11071 2004-03-23 Martin Baulig <martin@ximian.com>
11073 * class.c (my_mono_class_from_generic_parameter): Use
11074 `param->name' if it's not NULL.
11076 2004-03-22 Ben Maurer <bmaurer@users.sourceforge.net>
11078 * class.c: do not insert non-virtual methods in the vtable.
11079 * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
11080 that means the method is non-virtual. This never would have
11083 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
11085 * profiler.c: Added lock for accessing coverage_hash.
11087 2004-03-22 Martin Baulig <martin@ximian.com>
11089 * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
11090 `method->method->signature->generic_param_count != 0' to make it
11091 work for interface methods.
11093 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11095 * process.c: quote the string passed to the shell using g_shell_quote.
11097 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11100 (mono_threads_manage): don't remove the finalizer thread and self
11101 from the threads hash table so that mono_thread_manage can be called
11104 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11106 * process.c: quote the arguments when UseShellExecute is true. Fixes
11109 2004-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11111 * threads.c: set mono_thread_detach as a cleanup routine for every
11112 thread. This way it's always executed upon thread termination, either
11113 aborted or finished normally. No more xsp hangs!
11115 2004-03-17 Martin Baulig <martin@ximian.com>
11117 * class.h (MonoGenericInst): Replaced the `GList *nested' with an
11118 `int count_nested' and a `MonoType **nested'.
11120 * reflection.c (mono_reflection_bind_generic_parameters): Moved
11121 most of the functionality into a new static
11122 do_mono_reflection_bind_generic_parameters() and don't take a
11123 `MonoType *nested_in' argument any more. Don't compute nested
11125 (mono_reflection_generic_inst_get_nested_types): New public method
11126 to get nested types.
11128 * class.c (mono_class_create_generic): Set `klass->nested_in' if
11129 we're a nested class.
11131 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
11132 mono_reflection_generic_inst_get_nested_types() to compute the
11135 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
11137 * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
11138 descriptive error message under windows.
11140 2004-03-17 Martin Baulig <martin@ximian.com>
11142 * class.c (dup_type): Added `const MonoType *original' argument;
11143 copy the attrs from the original type.
11145 2004-03-17 Martin Baulig <martin@ximian.com>
11147 * metadata.c (do_mono_metadata_parse_generic_inst): Use the
11148 `m->generic_inst_cache' here.
11150 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
11152 * exception.h exception.c: Add stack_overflow_exception.
11154 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11157 (overlapped_callback): call SetEvent *after* invoking the callback.
11158 No need to call CloseHandle.
11160 2004-03-16 Martin Baulig <martin@ximian.com>
11162 * reflection.c (mono_image_get_fieldref_token): Take a
11163 `MonoReflectionField *' instead of a `MonoClassField *' and a
11164 `MonoClass *'; store the `MonoReflectionField *' in the hash.
11166 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11168 * appdomain.c: don't add the culture to the filename we're looking for
11169 if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
11171 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11173 * locales.c: don't ignore symbols when doing case insensitive compares.
11174 Thanks Dick! Fixes bug #54046.
11176 * threads.c: surround 'threads' usage with enter/leave in
11177 mono_thread_manage.
11179 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
11181 * marshal.c (mono_marshal_get_native_wrapper): Char arrays are
11182 implicitly marshalled as [Out]. Fixes #55450.
11184 (mono_marshal_get_runtime_invoke): Zero out the result if there is
11187 2004-03-16 Martin Baulig <martin@ximian.com>
11189 * class.c (mono_class_from_generic_parameter): Use the actual
11192 2004-03-16 Martin Baulig <martin@ximian.com>
11194 * reflection.c (type_get_signature_size): New static function.
11195 Compues the size of the type in a method signature.
11196 (method_get_signature_size): New static function; calls
11197 type_get_signature_size() to compute the actual size of the
11198 method's signature.
11199 (method_encode_signature): Use method_get_signature_size() to get
11200 the signature's size rather than using `nparams * 10'.
11202 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11204 * file-io.h: define here WapiOverlapped on windows. I don't want the
11205 regular OVERLAPPED one.
11208 * threadpool.c: somehow, BindIoCompletionCallback is not found.
11209 Disabling AIO on windows.
11211 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11213 * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
11216 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11218 * appdomain.c: upgraded corlib version.
11220 * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
11221 and BeginWrite. Allow opening files for asynchrnous operations.
11223 * file-io.h: new struct that maps FileStreamAsyncResult.
11224 * icall.c: added new icalls.
11225 * process.[ch]: support setting child process environment variables
11226 and use the SHELL or COMSPEC when UseShellExecute is true.
11228 * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
11229 callback for async. IO is here and also BindHandle.
11231 * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
11234 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
11236 * reflection.c (create_custom_attr): Allow len == 0.
11238 * object.c (mono_class_compute_gc_descriptor): Fix descriptor
11239 computation on big-endian machines.
11241 2004-03-13 Martin Baulig <martin@ximian.com>
11243 * class.h (MonoGenericInst): Added `int count_ifaces'.
11245 * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
11246 `ginst->count_ifaces' instead `klass->interface_count' since we
11247 may get called before the vtable is created.
11249 * loader.c (mono_method_get_param_names): If we're a generic
11250 instance, return and don't initialize the class.
11252 * reflection.c (mono_reflection_setup_generic_class): Don't call
11253 ensure_runtime_vtable().
11254 (mono_reflection_bind_generic_parameters): Set
11255 `ginst->count_ifaces'.
11257 2004-03-11 Jackson Harper <jackson@ximian.com>
11261 * unicode.h: Remove unused System.Char icalls.
11263 2004-03-11 Miguel de Icaza <miguel@ximian.com>
11265 * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
11266 code when we P/Invoke the first library in Windows.Forms, instead
11267 of when we first open the assembly.
11269 * assembly.c: Drop the lookup from here.
11271 2004-03-10 Martin Baulig <martin@ximian.com>
11273 * reflection.c (mono_reflection_get_custom_attrs): Use the correct
11274 class for properties, fields and events. Finally fixes #54945.
11276 2004-03-10 Martin Baulig <martin@ximian.com>
11278 * metadata.c (mono_metadata_class_equal): New static function;
11279 checks whether two generic instances or two generic parameters are
11281 (mono_metadata_type_equal): Use mono_metadata_class_equal() to
11284 2004-03-10 Martin Baulig <martin@ximian.com>
11286 * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
11288 * reflection.c (inflate_mono_method): Added `MonoObject *obj'
11289 argument and write it into the `reflection_info' field.
11292 (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
11293 (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
11295 2004-03-09 Jackson Harper <jackson@ximian.com>
11297 * char-conversions.h: use 8 bits for numeric data its all we need
11298 * icall.c: numeric data is only 8 bits now.
11300 2004-03-09 Martin Baulig <martin@ximian.com>
11302 * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
11304 * class.c (init_properties, init_events): Initialize the new
11307 * reflection.c (typebuilder_setup_properties): Likewise.
11308 (typebuilder_setup_events): Likewise.
11310 * reflection.h (MonoEventInfo): Replaced `parent with
11311 `declaring_type' and `reflected_type'.
11313 * icall.c (ves_icall_get_property_info): Distinguish between
11314 declaring and reflected type.
11315 (ves_icall_get_event_info): Likewise.
11317 2004-03-09 Martin Baulig <martin@ximian.com>
11319 * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
11320 (ves_icall_Type_GetField): Correctly set field->klass.
11322 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
11324 * loader.h: Fix warning.
11326 2004-03-08 Miguel de Icaza <miguel@ximian.com>
11328 * loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
11329 library routine if present. Notice that it will still continue
11330 executing even if its missing, for those working on the Gtk#
11331 edition of Windows.Forms.
11333 * assembly.c (do_mono_assembly_open): If loading the
11334 System.Windows.Forms call mono_loader_wini_init.
11336 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
11338 * class.h: Added MonoRemoteClass struct.
11339 * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
11340 function for MonoStrings.
11341 * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
11342 Added internal call for getting the proxy type.
11343 * marshal.c: Get the type of transparent proxies from its remote_class.
11344 Added methods that generate the IL for type checks and casts:
11345 mono_marshal_get_isinst, mono_marshal_get_castclass,
11346 mono_marshal_get_proxy_cancast.
11347 * marshal.h: Declaration of the previous new methods.
11348 * object.c: Added new moethods for creating and updating MonoRemoteClass
11349 instances: mono_remote_class, mono_upgrade_remote_class,
11350 * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
11351 * verify.c: FIx transparent_proxy_fields layout.
11352 * appdomain.c: Bump corlib version.
11354 2004-03-04 Jackson Harper <jackson@ximian.com>
11356 * icall.c: Add icall to access char conversion tables.
11357 * char-conversions.h: Character conversion tables.
11358 * Makefile.am: Add char-conversions.h private header file.
11360 2004-03-04 Zoltan Varga <vargaz@freemail.hu>
11362 * appdomain.c (unload_thread_main): Increase unloading timeout to
11363 10 sec as a temporary workaround for Nant problems.
11365 2004-02-29 Zoltan Varga <vargaz@freemail.hu>
11367 * gc.c: Add checks for GC_enable and GC_disable.
11369 * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
11370 (jaak@zd.com.pl). Fix memory corruption in String.Replace
11373 2004-02-27 Martin Baulig <martin@ximian.com>
11375 * reflection.c (mono_reflection_bind_generic_parameters): Take a
11376 `MonoReflectionType *' instead of a `MonoType *'.
11378 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
11380 * gc.c (run_finalize): Avoid finalizing the object representing the
11382 (finalizer_thread): Fix warning.
11384 2004-02-25 Martin Baulig <martin@ximian.com>
11386 * class.c (_mono_class_get_instantiation_name): Added `int offset'
11387 argument for nested types.
11388 (mono_class_create_generic): Added support for nested generictypes.
11390 * class.h (MonoGenericInst): Added `MonoType *nested_in' and
11393 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
11395 * reflection.c (method_encode_signature): Increase the minimum
11396 value of `size' from 10 to 11.
11397 (mono_reflection_bind_generic_parameters): Take `int type_argc'
11398 and `MonoType **types' arguments instead of the `MonoArray
11399 *types'; added `MonoType *nested_in'. Recursively instantiate
11402 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
11404 * appdomain.h (MonoDomain): Add preallocated null_reference_ex and
11405 stack_overflow_ex members which are used by exception handling.
11407 * appdomain.c (mono_runtime_init): Initialize the new members.
11409 * gc.c (mono_gc_enable): New helper function.
11410 * gc.c (mono_gc_disable): New helper function.
11412 2004-02-23 Martin Baulig <martin@ximian.com>
11414 * icall.c: I must have been really stupid - make it actually work
11417 2004-02-23 Martin Baulig <martin@ximian.com>
11419 * loader.c (method_from_memberref): Only inflate the method if
11420 it's in another klass.
11422 2004-02-23 Martin Baulig <martin@ximian.com>
11424 * class.c (mono_class_inflate_generic_type): Fixed two bugs.
11425 (mono_class_init): If we're a generic instance and an interface,
11426 compute `class->interface_id'; also create `class->interfaces'
11427 here and inflate them.
11429 * metadata.c (do_mono_metadata_parse_generic_inst): Compute
11431 (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
11433 * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
11435 2004-02-15 Miguel de Icaza <miguel@ximian.com>
11437 * reflection.c (method_encode_code): Improved the error message
11438 generated by the exception.
11440 2004-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11442 * icall.c: Martin did not do what he said in the ChangeLog for
11443 2004-02-18, but put back the changes for properties and events.
11444 Commenting those changes out again and adding comment to bug #54518.
11446 * process.c: removed warning.
11448 2004-02-20 Zoltan Varga <vargaz@freemail.hu>
11450 * marshal.c (emit_struct_conv): Print an error message instead of
11451 asserting when a type does not have the StructLayout attribute.
11453 2004-02-20 Martin Baulig <martin@ximian.com>
11455 * reflection.c (mono_type_get_object): Also use the cache for
11457 (mono_reflection_bind_generic_parameters): Always compute
11460 2004-02-20 Martin Baulig <martin@ximian.com>
11462 * class.h (MonoGenericMethod): Removed `klass'.
11464 * class.c (mono_class_inflate_generic_method): Added `MonoClass
11467 2004-02-20 Martin Baulig <martin@ximian.com>
11469 * reflection.c (method_encode_methodspec): Actually use the
11470 uninflated signature for the memberref.
11472 2004-02-20 Martin Baulig <martin@ximian.com>
11474 * class.h (MonoGenericMethod): Removed `declaring'.
11476 * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
11477 is NULL, compute it here.
11479 2004-02-20 Martin Baulig <martin@ximian.com>
11481 * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
11483 * metadata.c (mono_metadata_generic_inst_hash): New method.
11484 (mono_metadata_generic_inst_equal): New method.
11486 * reflection.c (mono_reflection_bind_generic_parameters): Use the
11487 `klass->image->generic_inst_cache' cache to avoid creating
11488 duplicate MonoGenericInst's.
11490 * class.c (mono_class_inflate_generic_type): Use the cache.
11492 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
11494 * object.c: fixed gc descriptor calculation for embedded valuetypes.
11496 2004-02-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11498 * icall.c: added Socket.WSAIoctl icall.
11500 * socket-io.[ch]: implemented
11501 ves_icall_System_Net_Sockets_Socket_WSAIoctl.
11503 2004-02-19 Atsushi Enomoto <atsushi@ximian.com>
11505 * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
11507 2004-02-18 Urs C Muff <umuff@quark.com>
11509 * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
11510 this work on PPC and other big-endian architectures.
11512 * debug-mono-symfile.h: Prepended the names of all the `guint32'
11513 fields with an underscore to make sure they're only accessed by
11514 the read32() macro.
11516 2004-02-18 Martin Baulig <martin@ximian.com>
11518 * icall.c: Put the klass->refclass changes back for methods and
11519 fields, but not for properties and events. We're currently not
11520 distinguishing between DeclaringType and ReflectedType for
11521 properties and events, that's what caused the regressions.
11523 2004-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11526 (mono_async_result_new): the handle can be NULL.
11528 * threadpool.c: Use an event instead of a semaphore, don't initialize
11529 it until needed. This saves quite a few semaphores from being created
11530 when using the threadpool.
11532 2004-02-18 Zoltan Varga <vargaz@freemail.hu>
11534 * object.c (mono_string_is_interned_lookup): Fix interning of long
11535 strings. Fixes #54473.
11537 * domain.c (ldstr_equal): Optimize if the two strings are equal.
11539 * icall.c: Revert the klass->refclass changes since they introduce
11540 regressions (bug #54518).
11542 2004-02-18 Martin Baulig <martin@ximian.com>
11544 * class.c (mono_class_init): If we're a generic instance and don't
11545 come from a TypeBuilder, inflate our members here.
11546 (mono_class_from_generic): Removed; just use `ginst->klass' instead.
11547 (mono_class_create_generic): New public method.
11548 (mono_class_initialize_generic): Removed.
11549 (get_instantiation_name): Renamed to
11550 _mono_class_get_instantiation_name() and made it public.
11552 2004-02-18 Martin Baulig <martin@ximian.com>
11554 * class.c (mono_class_inflate_generic_type): Clear the new
11555 instance's `nginst->klass' when inflating a generic instance.
11556 (mono_class_is_subclass_of): Added (basic) support for generic
11559 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
11561 * appdomain.h, domain.c: use a MonoCodeManager instead of a
11562 MonoMempool to hold compiled native code.
11564 2004-02-17 Martin Baulig <martin@ximian.com>
11566 * class.h (MonoDynamicGenericInst): Added `count_properties' and
11569 * reflection.c (mono_reflection_generic_inst_initialize): Added
11570 `MonoArray *properties' argument.
11572 * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.
11574 2004-02-17 Martin Baulig <martin@ximian.com>
11576 * icall.c (ves_icall_Type_GetFields): Renamed to
11577 ves_icall_Type_GetFields_internal() and added a
11578 `MonoReflectionType *rtype' argument; pass it to
11579 mono_field_get_object() to set the field's "reflected" type.
11580 (ves_icall_Type_GetConstructors): Likewise.
11581 (ves_icall_Type_GetEvents): Likewise.
11582 (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
11583 argument; pass it to mono_method_get_object() to set the method's
11586 2004-02-17 Martin Baulig <martin@ximian.com>
11588 * class.h (MonoDynamicGenericInst): New type.
11589 (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
11591 * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
11592 (ves_icall_MonoGenericInst_GetConstructors): New interncall.
11593 (ves_icall_MonoGenericInst_GetFields): New interncall.
11595 * class.c (mono_class_from_generic): Don't call
11596 mono_class_initialize_generic() if this is a dynamic instance;
11597 ie. it's being created from a TypeBuilder.
11598 Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
11599 `class->byval_arg.type'.
11601 * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
11602 to `inflate_method' and made static.
11603 (mono_reflection_inflate_field): Removed.
11604 (mono_reflection_generic_inst_initialize): New public method.
11606 * reflection.h (MonoReflectionGenericInst): Removed `methods',
11607 `ctors' and `fields'; added `initialized'.
11609 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
11611 * debug-helpers.c (mono_method_full_name): Fix output for empty
11614 2004-02-12 Martin Baulig <martin@ximian.com>
11616 * class.h (MonoClassField): Added `MonoType *generic_type'.
11618 * reflection.c (mono_image_get_fieldref_token): Added support for
11619 instantiated generic types.
11620 (field_encode_inflated_field): Removed.
11621 (mono_image_get_inflated_field_token): Removed.
11622 (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
11624 * reflection.h (MonoReflectionInflatedField): Removed.
11626 2004-02-12 Martin Baulig <martin@ximian.com>
11628 * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
11629 `gen_method' field from MonoMethodHeader to MonoMethodSignature.
11631 * reflection.c (mono_image_get_methodspec_token): Take a
11632 `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
11633 (mono_image_create_token): Check whether we have a
11634 `method->signature->gen_method' and call
11635 mono_image_get_methodspec_token() if appropriate.
11636 (inflated_method_get_object): Removed.
11637 (mono_reflection_bind_generic_method_parameters): Return a
11638 `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
11639 (mono_reflection_inflate_method_or_ctor): Likewise.
11641 * reflection.h (MonoReflectionInflatedMethod): Removed.
11643 2004-02-12 Zoltan Varga <vargaz@freemail.hu>
11645 * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
11646 for custom valuetype marshalling.
11648 * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
11650 2004-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11652 * icall.c: fixed WSAGetLastError_internal name.
11654 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
11656 * threads.c (mono_thread_attach): Allow this to be called multiple
11657 times for a thread.
11659 * threads.c (build_wait_tids): Do not wait for ourselves.
11661 * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the
11662 appdomain list is empty.
11664 * marshal.c (mono_marshal_get_native_wrapper): Do not free the
11665 memory returned by mono_string_builder_to_utf16, since it points into
11666 managed memory. Thanks to Bernie Solomon for noticing this.
11668 * icall.c: Add AppDomainSetup icalls.
11670 * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
11672 * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
11675 * reflection.c (reflection_methodbuilder_to_mono_method): Save
11676 custom attributes to the method_aux struct. Also fix array indexes etc.
11678 * loader.c (mono_method_get_param_names): Make dynamic case work again.
11680 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
11682 * icall.c, loader.c: icall cleanup: we save quite a bit of memory
11683 (both static and runtime) and reduce startup time.
11685 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
11687 * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
11688 AsAny marshalling conversion instead of crashing.
11690 * marshal.c: Fix warnings.
11692 2004-02-09 Martin Baulig <martin@ximian.com>
11694 * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
11696 * reflection.h (MonoReflectionInflatedMethod): Removed the
11697 `declaring' field, it's now in the unmanaged MonoGenericMethod.
11699 * reflection.c (method_encode_methodspec): Removed the `method'
11700 argument; we get it from `gmethod->declaring'.
11701 (inflated_method_get_object): Removed the `declaring' argument.
11703 2004-02-09 Martin Baulig <martin@ximian.com>
11705 * class.h (MonoGenericMethod): New type.
11706 (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
11709 * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
11710 a `MonoGenericMethod *gen_method' one.
11712 * class.c (mono_class_inflate_generic_type): Take an additional
11713 `MonoGenericMethod * argument. This is only non-NULL if we're
11714 inflating types for a generic method.
11715 (mono_class_inflate_generic_signature): Renamed to
11716 inflate_generic_signature() and made static; take a
11717 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11718 (inflate_generic_header): Take a `MonoGenericMethod *' argument
11719 instead of a `MonoGenericInst *' one.
11720 (mono_class_inflate_generic_method): Likewise.
11722 * reflection.c (encode_generic_method_sig): Take a
11723 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
11724 (method_encode_methodspec): Likewise.
11725 (inflated_method_get_object): Likewise.
11727 * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
11728 field with a `MonoGenericMethod *gmethod' one.
11730 2004-02-08 Bernie Solomon <bernard@ugsolutions.com>
11732 * class.h (mono_class_has_parent): add parens to expansion
11735 2004-02-08 Martin Baulig <martin@ximian.com>
11737 * image.h (MonoImage): Removed `generics_cache'.
11739 * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
11740 instead of a `MonoType *' argument; removed the `inflate_methods'
11741 argument. Don't inflate methods here.
11743 * loader.c (find_method): If it's a generic instance, call
11744 mono_class_init() on the `sclass->generic_inst->generic_type'.
11746 * metadata.c (mono_type_size): Make this work on uninitialized
11747 generic instances; call it on the `ginst->generic_type's class.
11749 * reflection.c (mono_reflection_bind_generic_parameters): Call
11750 mono_class_from_generic() to create the `ginst->klass'.
11752 2004-02-08 Martin Baulig <martin@ximian.com>
11754 * class.h (MonoClass): Changed type of `generic_inst' from
11755 `MonoType *' to `MonoGenericInst *'.
11757 2004-02-08 Martin Baulig <martin@ximian.com>
11759 * icall.c (ves_icall_Type_BindGenericParameters): Just call
11760 mono_type_get_object(), this is now creating a `MonoGenericInst'
11761 for MONO_TYPE_GENERICINST.
11762 (ves_icall_MonoGenericInst_GetParentType): Likewise.
11763 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
11765 * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
11766 instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
11767 (inflated_method_get_object): Added `MonoClass *refclass' argument.
11768 (mono_reflection_inflate_method_or_ctor): Correctly set declaring
11769 and reflected type.
11771 * reflection.h (MonoReflectionInflatedMethod): Removed
11772 `declaring_type' and `reflected_type'.
11774 2004-02-08 Martin Baulig <martin@ximian.com>
11776 * class.h (MonoGenericInst): Added `MonoType *parent' and
11777 `MonoType **ifaces'.
11779 * reflection.h (MonoReflectionGenericInst): Removed `klass',
11780 `parent' and `interfaces'.
11782 * reflection.c (mono_reflection_bind_generic_parameters): Take a
11783 `MonoType *' argument and return a `MonoType *'.
11786 (ves_icall_MonoGenericInst_GetParentType): New interncall.
11787 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
11789 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
11791 * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
11792 valuetype marshalling.
11794 2004-02-06 Martin Baulig <martin@ximian.com>
11797 (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
11798 (my_mono_class_from_generic_parameter): Likewise.
11800 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
11802 * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
11803 contents of the symbol files lazily.
11805 * object.h (MonoThread): Add 'name' and 'name_len' fields.
11807 * threads.h threads.c icall.c: New icalls for getting and setting the
11810 2004-02-05 Zoltan Varga <vargaz@freemail.hu>
11812 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID):
11813 Raise an exception when the domain is not found.
11815 2004-02-03 Martin Baulig <martin@ximian.com>
11817 * reflection.c (mono_image_get_methodspec_token): Use the
11818 uninflated signature; fixes gen-33.
11820 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
11822 * gc.c threads.c: Make the finalizer thread a normal managed thread so
11823 the finalizer code can use thread functionality.
11825 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for
11826 the finalizer thread.
11828 * threads.c: Make some functions more robust.
11830 * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
11832 * metadata.h: Add new marshalling conventions.
11834 * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
11835 stringbuilder marshalling. Fixes #53700.
11837 * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
11839 * reflection.c (mono_image_get_type_info): Save declarative security
11842 * reflection.c (mono_image_get_field_info): Handle uninitialized
11843 unmanaged fields as well.
11845 * appdomain.c: Bump corlib version.
11847 2004-02-01 Martin Baulig <martin@ximian.com>
11849 * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
11850 method type arguments.
11852 2004-01-30 Duncan Mak <duncan@ximian.com>
11854 * marshal.h: Add prototype for
11855 "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
11857 "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
11860 2004-01-30 Zoltan Varga <vargaz@freemail.hu>
11862 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
11863 (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
11865 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
11867 * marshal.c (mono_marshal_get_native_wrapper): Add support for
11868 custom marshalling of valuetypes.
11870 * marshal.c: Fix some warnings.
11872 2004-01-29 Martin Baulig <martin@ximian.com>
11874 * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
11875 for generic method parameters.
11877 * reflection.c (method_encode_methodspec): Write the uninflated
11878 signature into the methodspec table.
11879 (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
11880 is always the uninflated method.
11881 (reflection_methodbuilder_to_mono_method): Copy the generic
11882 parameters from the MethodBuilder into `header->gen_params'.
11884 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
11886 * class.c (mono_class_from_generic_parameter): Fix warning.
11888 2004-01-27 Martin Baulig <martin@ximian.com>
11890 * class.c (mono_class_from_generic_parameter): Don't create
11891 `klass->methods' here.
11893 2004-01-26 Zoltan Varga <vargaz@freemail.hu>
11895 * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
11896 extension since it does not work with libraries named lib<FOO>.dll.so.
11898 2004-01-25 Martin Baulig <martin@ximian.com>
11900 * class.c (mono_class_inflate_generic_type): Added support for
11901 MONO_TYPE_GENERICINST.
11903 * reflection.c (mono_reflection_inflate_method_or_ctor): Also
11904 inflate methods on open constructed types.
11906 2004-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11908 * object.c: fire ProcessExit event in the root AppDomain after running
11909 Main. Fixes bug #53299.
11911 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
11913 * socket-io.c: include the new socket-wrappers.h header.
11914 Use the wrappers instead of the unix socket functions to make the code
11917 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
11919 * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
11921 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
11924 2004-01-22 Zoltan Varga <vargaz@freemail.hu>
11926 * reflection.c (mono_image_create_pefile): Handle the case when the
11927 entry point is not a MethodBuilder.
11929 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
11930 field to ReflectionMethod since it is not allways a builder.
11932 * reflection.c (type_get_fully_qualified_name): New helper function to
11933 return the fully qualified name of a type.
11935 * reflection.c (encode_marshal_blob): Always emit the fully qualified
11936 type name for custom marshallers.
11938 * reflection.c (mono_marshal_spec_from_builder): Ditto.
11940 * class.c (mono_class_setup_vtable): If a parent class already
11941 implements an interface, use the implementing methods from that class.
11944 2004-01-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11946 * threadpool.c: just return instead of ExitThread to allow for thread
11949 2004-01-21 Zoltan Varga <vargaz@freemail.hu>
11951 * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
11952 when closing resource modules.
11954 * reflection.c (mono_image_create_pefile): Handle the case when the
11955 entry point is not a MethodBuilder.
11957 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
11958 field to ReflectionMethod since it is not allways a builder.
11960 2004-01-20 Bernie Solomon <bernard@ugsolutions.com>
11962 * marshal.c (mono_marshal_get_managed_wrapper):
11963 mono_marshal_alloc takes native int so CONV_I
11964 the arg for 64bits.
11966 2004-01-20 Zoltan Varga <vargaz@freemail.hu>
11968 * reflection.c (fixup_cattrs): New function to fixup the methoddef
11969 tokens in the cattr table. Fixes #53108.
11971 2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11973 * loader.c: don't trim ".dll" before looking up in the config file.
11974 Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
11976 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
11978 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
11979 Return the module which contains the resource as well.
11980 (ves_icall_System_Reflection_Module_Close): New icall.
11982 * appdomain.c: Bump corlib version number.
11984 * image.c (mono_image_addref): New public function.
11986 * assembly.c: Call mono_image_addref.
11988 * reflection.c (mono_module_get_object): Increase reference count of
11991 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
11994 * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
11995 Applied patch from Bernie Solomon <bernard@ugsolutions.com>. Throw
11996 proper exceptions on DllImport problems.
11998 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
12000 * class.c, metadata.c: eliminate CSIZE macro.
12002 2004-01-19 Lluis Sanchez Gual <lluis@ximian.com>
12004 * icall.c: Added ves_icall_type_IsInstanceOf internal call.
12005 * object.h: Added async_callback field in MonoAsyncResult.
12006 * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
12007 * verify.c: Added async_callback in MonoAsyncResult layout.
12009 2004-01-17 Zoltan Varga <vargaz@freemail.hu>
12011 * reflection.c (mono_reflection_get_custom_attrs): Add support
12014 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
12016 * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder
12018 (mono_marshal_method_from_wrapper): Add null pointer check.
12020 2004-01-16 Martin Baulig <martin@ximian.com>
12022 * debug-mono-symfile.h: Set version number to 36 and reflect
12023 latest symbol writer changes.
12025 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
12027 * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
12028 multi-dimensional arrays.
12029 (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
12030 (mono_class_from_mono_type): Use bounded_array_class_get.
12032 * class.c (mono_bounded_array_class_get): New function which takes
12033 a 'bounded' bool argument to distinguish vectors from one dimensional
12036 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call
12037 bounded_array_class_get if the array has bounds.
12039 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
12040 Search modules loaded using AssemblyBuilder:AddModule as well.
12042 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12044 * appdomain.c: increased corlib version.
12045 * filewatcher.c: removed g_print.
12047 (get_property_info): only allocate what is actually requested.
12048 (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
12050 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12052 * Makefile.am: added filewatcher.[ch]
12053 * filewatcher.[ch]: FileSystemWatcher runtime support.
12054 * icall.c: added new FSW icalls.
12056 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
12058 * string-icalls.c: fix stringbuilder regression as suggested by
12059 Iain McCoy <iain@mccoy.id.au>.
12061 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
12063 * process.c (process_read_stringtable_block): Recognize '007f' as
12064 a language neutral stringtable block.
12066 2004-01-12 Patrik Torstensson
12068 * object.h (MonoStringBuilder) : Changed layout to support our
12069 new stringbuilder class.
12070 * marshal.c: Change marshalling to support the new layout of
12072 * appdomain.c: increased version number because new layout of
12075 2004-01-12 Zoltan Varga <vargaz@freemail.hu>
12077 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
12078 assembly name as an string instead of an AssemblyName, since it is
12079 easier to extract info from it.
12081 * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
12082 the culture subdirectories too. Fixes #52231.
12084 2004-01-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12086 * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
12087 It takes 2 new parameters with an optional name for the method to look
12088 for and case ignoring info.
12090 * threadpool.c: removed unused variable.
12092 2004-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12094 * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
12095 It takes 2 new parameters with an optional name for the property to look
12096 for and case ignoring info.
12099 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
12101 * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
12104 2004-01-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12107 * assembly.c: escape the uri before passing it to g_filename_from_uri.
12110 2004-01-07 Zoltan Varga <vargaz@freemail.hu>
12112 * reflection.c: Add support for more than one unmanaged resource.
12114 * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
12115 in field->def_value, as done in all other cases.
12117 * reflection.c (mono_reflection_get_custom_attrs): Add support for
12120 * reflection.c (mono_reflection_create_runtime_class): Remove
12121 errorneous assignment to klass->element_class, since it is already
12122 done in mono_reflection_setup_internal_class.
12124 2004-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12126 * gc.c: added missing LeaveCriticalSection.
12127 * icall.c: indented a couple of lines.
12128 * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
12129 if we call EndInvoke inside a callback. Fixes bug #52601.
12131 2004-01-07 Martin Baulig <martin@ximian.com>
12133 * mono-debug-debugger.h
12134 (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
12136 2004-01-06 Miguel de Icaza <miguel@ximian.com>
12138 * appdomain.c: Use messages in NotImplementedException.
12140 * exception.c (mono_get_exception_not_implemented): Now this takes
12141 a message argument.
12143 * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
12144 exception instead of g_asserting an aborting when something is not
12147 Add some inline docs.
12149 2004-01-05 Zoltan Varga <vargaz@freemail.hu>
12151 * reflection.h: Update after changes to object layout.
12153 * reflection.c: Implement saving of unmanaged aka win32 resources.
12155 * appdomain.c: Bump version number.
12157 * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID):
12158 Handle missing domains gracefully.
12160 2004-01-05 Atsushi Enomoto <atsushi@ximian.com>
12162 * file-io.c : On Windows, there are much more invalid_path_chars.
12164 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
12166 * class.h, object.c: prepare for GetType () speedup.
12168 2003-12-24 Atsushi Enomoto <atsushi@ximian.com>
12170 * profiler.c: workaround for --profile null reference exception on
12171 cygwin. Patch by Patrik Torstensson.
12173 2003-12-22 Bernie Solomon <bernard@ugsolutions.com>
12175 * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
12176 make work for unaligned access.
12178 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
12180 * class.c: small cleanup (class->fields [i] -> field).
12181 * image.c: check address of metadata is valid.
12183 2003-12-22 Zoltan Varga <vargaz@freemail.hu>
12185 * assembly.h assembly.c (mono_assembly_loaded): New public function to
12186 search the list of loaded assemblies.
12188 * reflection.c (mono_reflection_type_from_name): Use
12189 mono_assembly_loaded instead of mono_image_loaded.
12191 * reflection.c: Fix warnings.
12193 2003-12-20 Zoltan Varga <vargaz@freemail.hu>
12195 * image.h (MonoImage): Add a new 'dynamic' field to denote that the image
12196 is dynamic. This is needed since an assembly can contain both dynamic and
12197 non-dynamic images.
12199 * class.c loader.c metadata.c object.c: Use image->dynamic instead of
12202 * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
12204 * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
12205 to store modules loaded using AddModule.
12207 * reflection.c (mono_image_fill_file_table): Generalize this so it works
12210 * reflection.c (mono_image_fill_export_table_from_class): New helper function.
12212 * reflection.c (mono_image_fill_export_table_from_module): New function to
12213 fill out the EXPORTEDTYPES table from a module.
12215 * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
12216 into a separate function. Also handle loaded non-dynamic modules.
12218 * reflection.c (mono_image_basic_init): Fix memory allocation.
12220 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12222 * assembly.c (mono_assembly_load_references): Make this public.
12224 2003-12-19 Martin Baulig <martin@ximian.com>
12226 * class.c (mono_class_initialize_generic): Made this static, take
12227 a `MonoGenericInst *' instead of a `MonoClass *'.
12228 (mono_class_from_generic): Call mono_class_initialize_generic()
12229 unless we're already initialized or being called from
12230 do_mono_metadata_parse_generic_inst().
12232 * class.h (MonoGenericInst): Added `initialized' and
12233 `init_pending' flags.
12235 * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
12236 `mono_class_init (gklass)' or mono_class_initialize_generic()
12237 here; set `generic_inst->init_pending' while parsing the
12240 2003-12-19 Bernie Solomon <bernard@ugsolutions.com>
12242 * locales.c: include string.h for memxxx prototypes
12244 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
12246 * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
12247 constructor when accessing literal fields.
12249 2003-12-17 Zoltan Varga <vargaz@freemail.hu>
12251 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12253 * reflection.c (assembly_add_resource_manifest): New function to fill
12254 the MANIFESTRESOURCE table.
12256 * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
12258 * reflection.h: Update to changes in class layout.
12260 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted):
12261 Reenable call to mono_runtime_is_shutting_down ().
12263 * appdomain.c (mono_runtime_is_shutting_down): New helper function to
12264 determine if the runtime is shutting down.
12266 2003-12-16 Jackson Harper <jackson@ximian.com>
12268 * icall.c: comment out call to mono_runtime_is_shutting_down to
12271 2003-12-16 Zoltan Varga <vargaz@freemail.hu>
12273 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
12274 (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
12276 2003-12-15 Bernie Solomon <bernard@ugsolutions.com>
12278 * reflection.c: move definition of swap_with_size
12279 to before its first call
12281 2003-12-15 Zoltan Varga <vargaz@freemail.hu>
12283 * appdomain.c (mono_runtime_is_shutting_down): New public function.
12285 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
12288 * object.c: Fix warnings.
12290 * icall.c (ves_icall_Type_Get...): Only consider inherited static
12291 members if FlattenHierarchy is set.
12293 * reflection.c (mono_image_add_decl_security): New function to emit
12294 declarative security.
12296 * reflection.h reflection.c: Add support for declarative security.
12298 * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12300 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
12302 appdomain.c (MONO_CORLIB_VERSION): Bump version number.
12304 * appdomain.c verify.c: Moved corlib version checking into its own
12305 function in appdomain.c since it needs to create vtables etc.
12307 2003-12-13 Patrik Torstensson <p@rxc.se>
12309 * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this
12310 instead of unwrapped server.
12312 2003-12-12 Zoltan Varga <vargaz@freemail.hu>
12314 * verify.c (check_corlib): Fix field index.
12316 2003-12-10 Zoltan Varga <vargaz@freemail.hu>
12318 * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
12321 2003-12-10 Bernie Solomon <bernard@ugsolutions.com>
12323 * process.c: (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
12324 ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
12325 cope with sizeof(size_t) != sizeof(guint32).
12327 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12329 * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
12330 in case of failure.
12332 2003-12-10 Mark Crichton <crichton@gimp.org>
12334 * icall.c: removed the GetNonZeroBytes. We now handle this case
12337 * rand.c, rand.h: Same here. Also cleaned up the clode slightly.
12339 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
12341 * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
12344 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
12346 * verify.c (check_corlib): Handle the case when the version field is
12347 initialized by a static constructor.
12349 2003-12-08 Patrik Torstensson <p@rxc.se>
12351 * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
12353 2003-12-08 Martin Baulig <martin@ximian.com>
12355 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
12356 a MonoReflectionGenericParameter, also take the parameter index
12357 and name as arguments.
12358 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
12359 (ves_icall_MonoGenericParam_initialize): New interncall.
12360 (ves_icall_Type_make_byref_type): New interncall.
12362 * reflection.h (MonoReflectionGenericParam): Derive from
12363 MonoReflectionType, not just from MonoObject. Added `refobj' and
12366 * reflection.c (mono_reflection_define_generic_parameter): Create
12367 and return a new MonoReflectionGenericParam; don't initialize the
12369 (mono_reflection_initialize_generic_parameter): New public method;
12370 initializes the constraints and creates the `param->pklass'.
12372 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
12374 * reflection.h reflection.c: Use the new fields 'num_types',
12375 'num_fields' and 'num_methods' to track the number of types etc.
12377 * verify.c (check_corlib): Check corlib version number.
12379 2003-12-07 Zoltan Varga <vargaz@freemail.hu>
12381 * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
12382 function works on all methods.
12384 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
12386 * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
12387 * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
12388 the custom_type_info flag of the transparent proxy.
12389 * object.c: Added method mono_object_isinst_mbyref for casting mbyref
12390 objects that supports IRemotingTypeInfo.
12391 * object.h: Added custom_type_info field in transparent proxy.
12393 2003-12-06 Martin Baulig <martin@ximian.com>
12395 * class.c (mono_class_create_from_generic): Removed.
12396 (mono_class_from_generic): Check `ginst->klass' before doing
12397 anything else. This is important to fully support "recursive"
12400 * metadata.c (do_mono_metadata_parse_generic_inst): Create an
12401 empty `generic_inst->klass' before doing anything else.
12403 2003-12-06 Dick Porter <dick@ximian.com>
12408 * locales.c: Use C structs to access class fields. Don't do a
12409 conversion between MonoString and UChar because both are
12410 platform-endian UTF-16. Compare now takes startindex and count
12411 parameters. Add a char overload for IndexOf. Speed up the
12412 invariant string IndexOf.
12414 2003-12-05 Zoltan Varga <vargaz@freemail.hu>
12416 * Makefile.am (monosn_LDADD): Fix parallel build.
12418 2003-12-04 Martin Baulig <martin@ximian.com>
12421 (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
12422 (ves_icall_Type_make_array_type): New interncall.
12424 2003-12-04 Martin Baulig <martin@ximian.com>
12426 * locales.c: also change it in the !HAVE_ICU case.
12428 2003-12-04 Dick Porter <dick@ximian.com>
12431 * locales.c: construct_compareinfo is now in CompareInfo, not
12434 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
12436 * image.c (mono_image_load_file_for_image): Cache loaded images in the
12437 image->files array.
12439 * image.c (load_class_name): Load class names from the EXPORTEDTYPES
12442 * assembly.c (mono_assembly_load_references): Only load references
12445 * class.c (mono_class_from_name): Avoid linear search of the
12446 EXPORTEDTYPE table.
12448 * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
12450 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
12452 * image.h (MonoImage): Add 'field_cache' field.
12454 * loader.c (mono_field_from_token): Cache field lookups.
12456 * reflection.c (mono_module_get_object): Fix name property.
12458 * icall.c (ves_icall_get_enum_info): Update after changes to
12459 mono_metadata_get_constant_index ().
12461 * icall.c: Get rid of get_type_info icall, use a separate icall for
12462 each type property to avoid needless memory allocations. Fixes #51514.
12464 * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
12465 to avoid needless binary searches.
12467 * class.c (class_compute_field_layout): Move the initialization of
12468 field->def_value to mono_class_vtable ().
12470 * class.c (mono_class_layout_fields): Enable GC aware auto layout for
12473 * object.c (mono_object_allocate): Make it inline.
12475 * object.c (mono_object_allocate_spec): Make it inline.
12477 2003-12-02 Dick Porter <dick@ximian.com>
12479 * locales.c (create_NumberFormat): NumberFormatInfo construction.
12480 Patch by Mohammad DAMT (mdamt@cdl2000.com).
12482 2003-12-01 Dick Porter <dick@ximian.com>
12484 * threads.c: Fix signature and call in CreateMutex and
12487 2003-12-01 Dick Porter <dick@ximian.com>
12490 * locales.c: Implement string compares and searching
12492 * object.h: Add extra Thread field
12494 2003-11-30 Zoltan Varga <vargaz@freemail.hu>
12496 * reflection.c (fixup_method): Add support for MonoCMethod.
12498 2003-11-28 Zoltan Varga <vargaz@freemail.hu>
12500 * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
12502 * reflection.c (assembly_name_to_aname): Allow extra characters in
12503 assembly names. Fixes #51468.
12505 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
12507 * exception.c (mono_exception_from_name_domain): New helper function.
12509 * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
12510 exception object in the correct domain.
12512 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix
12513 formatting + make a copy a the input data.
12515 * loader.c (mono_get_method_from_token): Methods which contain
12516 native code do not have entries in the ImplMap.
12518 (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
12519 Thanks to Gonzalo for spotting this.
12521 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
12522 patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
12524 * assembly.h (mono_assembly_load_from): Split the second part of
12525 assembly loading into a new public function.
12527 * exception.h (mono_get_exception_bad_image_format): New function.
12529 2003-11-24 Zoltan Varga <vargaz@freemail.hu>
12531 icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
12532 Enumerate all modules inside a dynamic assembly. Fixes #51293.
12534 * icall.c: Add new icall for creating dynamic methods.
12536 * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
12538 * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
12540 * reflection.c (mono_reflection_create_dynamic_method): New icall to
12541 create a dynamic method.
12543 * reflection.c (resolve_object): New helper function.
12545 * reflection.c: Generalize ReflectionMethodBuilder and the functions
12546 which manipulate it so they can also work on dynamic methods.
12548 * reflection.c (reflection_method_builder_to_mono_method): Avoid
12549 creating the MonoReflectionMethodAux structure if it is not needed.
12551 * reflection.h verify.c: Update after changes to object layout.
12553 * reflection.c (method_builder_encode_signature): Fix compilation on
12556 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
12558 * appdomain.h: Added support for context static fields. Added static_data
12559 field to MonoAppContext and renamed thread_static_fields to a more
12560 generic special_static_fields in MonoAppDomain, since it can now contain
12561 context static fields.
12562 * domain.c: Updated hashtable name.
12563 * object.c: Replaced field_is_thread_static() for a more generic
12564 field_is_special_static() which also checks for context static attribute.
12565 In mono_class_vtable(), added support for static context fields.
12566 * threads.c: Changed methods that manage thread static fields to more
12567 generic methods so they can be reused both for thread and context static
12569 * threads.h: Declared some new methods.
12571 2003-11-21 Zoltan Varga <vargaz@freemail.hu>
12573 * reflection.h: Update after changes to the managed types.
12575 * reflection.c (encode_custom_modifiers): New helper function.
12577 * reflection.c (method_encode_signature): Emit custom modifiers.
12579 * reflection.c (field_encode_signature): Emit custom modifiers.
12581 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
12583 * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
12585 * icall.c (ves_icall_System_ValueType_Equals): New optimized
12588 * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New
12591 * object.c (mono_field_get_value_object): New function.
12593 * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
12596 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
12598 * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
12599 return a preallocated out-of-memory exception instance.
12601 * object.c (out_of_memory): Use the new function.
12603 * metadata.c (mono_metadata_parse_type): Handle the case when the byref
12604 flag is before the custom modifiers. Fixes #49802.
12606 2003-11-16 Martin Baulig <martin@ximian.com>
12608 * class.c (mono_class_is_open_constructed_type): Implemented the
12609 MONO_TYPE_GENERICINST case.
12611 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
12613 * assembly.c (mono_assembly_fill_assembly_name): New function to
12614 fill out the MonoAssemblyName structure.
12615 (mono_assembly_open): Use the new function.
12617 * icall.c (fill_reflection_assembly_name): New helper function.
12619 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
12622 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
12624 2003-11-15 Martin Baulig <martin@ximian.com>
12626 * class.c (mono_class_is_open_constructed_type): New public
12627 function; checks whether a type is an open constructed type,
12628 ie. whether it still contains type parameters.
12629 (mono_class_inflate_generic_type): If we're a type parameter and
12630 the inflated type is also a MONO_TYPE_(M)VAR, return the original
12633 * class.h (MonoGenericInst): Added `guint32 is_open'.
12635 * loader.c (method_from_methodspec): Check whether we're an open
12636 or closed constructed type and set `ginst->is_open'.
12638 * reflection.c (mono_reflection_bind_generic_parameters): Check
12639 whether we're an open or closed constructed type and set
12641 (mono_reflection_inflate_method_or_ctor): Don't inflate methods
12642 from open constructed types.
12644 2003-11-15 Martin Baulig <martin@ximian.com>
12646 * reflection.c (mono_reflection_bind_generic_parameters): If we're
12647 a generic instance (instead of a generic type declaration) with
12648 unbound generic parameters, bind them to our actual types.
12650 2003-11-14 Martin Baulig <martin@ximian.com>
12652 * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
12654 * reflection.c (mono_reflection_bind_generic_parameters): If we're
12655 an interface type, populate `res->interfaces' with instantiated
12656 versions of all the interfaces we inherit.
12658 2003-11-13 Aleksey Demakov <avd@openlinksw.com>
12660 * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
12661 when MONO_PATH is set but doesn't contain the install dir.
12663 2003-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12666 (ves_icall_Type_GetInterfaces): don't return an interface twice when
12667 it's also implemented in base classes. Fixes bug #50927.
12669 2003-11-13 Zoltan Varga <vargaz@freemail.hu>
12671 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
12672 if this method is called from a finalizer. Fixes #50913.
12674 2003-11-12 Miguel de Icaza <miguel@ximian.com>
12676 * threads.c: Implement VolatileRead/VolatileWrite
12678 * icall.c: Add new icalls for VolatileRead/VolatileWrite
12680 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
12682 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied
12683 patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
12686 * assembly.c (mono_assembly_open): Fix windows build. Applied patch
12687 from Peter Ross (pro@missioncriticalit.com).
12689 2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>
12691 * icall.c: Added internal call for System.Environment::GetMachineConfigPath
12693 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
12695 * assembly.c (mono_assembly_load_references): Disable check because it
12696 triggers on older corlibs which lots of people have.
12698 2003-11-12 Jackson Harper <jackson@ximian.com>
12700 * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
12701 load corlib.dll if mscorlib.dll is not found.
12702 * assembly.h: Remove corlib name define.
12705 * image.c: Change corlib name to mscorlib.
12707 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
12709 * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
12711 2003-11-11 Miguel de Icaza <miguel@ximian.com>
12713 * appdomain.h: Added loader_optimization here to sync with the C#
12714 code, and add disallow_binding_redirects field.
12716 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
12718 * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
12720 * reflection.c (mono_image_build_metadata): Fix crash on modules
12723 * reflection.h (MonoMethodInfo): Track changes to the managed structure.
12725 * icall.c (ves_icall_get_method_info): Return callingConvention as
12728 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add
12729 namespaces from the EXPORTEDTYPE table as well.
12731 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
12732 from all modules inside the assembly.
12734 2003-11-11 Martin Baulig <martin@ximian.com>
12736 * reflection.c (mono_reflection_bind_generic_parameters): Make
12737 this work for interfaces.
12739 2003-11-11 Martin Baulig <martin@ximian.com>
12741 * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
12743 2003-11-11 Martin Baulig <martin@ximian.com>
12745 * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
12746 "MonoInflatedMethod" and "MonoInflatedCtor".
12748 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
12750 * reflection.c (resolution_scope_from_image): Use the assembly table
12751 from the manifest module, since other modules don't have it.
12753 * debug-helpers.c (mono_type_full_name): New helper function.
12755 * image.h (MonoAssembly): Change 'dynamic' to a boolean.
12757 * image.c (mono_image_load_file_for_image): New public function which
12758 is a replacement for the load_file_for_image in class.c.
12760 * assembly.c (mono_assembly_load_module): A wrapper for the function
12761 above which does assembly association and reference loading too.
12763 * class.c (mono_class_from_name): Call mono_assembly_load_module.
12765 2003-11-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12767 * appdomain.c: not all of the attributes for the full assembly name
12768 are required and the order doesn't matter. Fixes bug #50787.
12770 2003-11-10 Dick Porter <dick@ximian.com>
12772 * locales.c: Use platform-endian UTF16
12774 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
12776 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12778 2003-11-10 Martin Baulig <martin@ximian.com>
12781 (mono_metadata_load_generic_params): Make this actually work.
12783 * reflection.c (mono_reflection_bind_generic_parameters): If our
12784 parent is a generic instance, pass all the `types' to it, no
12785 matter whether it has the same number of type parameters or not.
12787 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
12789 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
12791 * assembly.c (mono_assembly_load_references): Move the image<->assembly
12792 assignment code to this function so it gets called recursively for all
12795 * image.c (load_modules): Remove the assembly assignment since it is
12796 now done by mono_assembly_load_references.
12798 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
12799 Add 'module' argument.
12800 (mono_module_get_types): New helper function.
12801 (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
12803 2003-11-08 Martin Baulig <martin@ximian.com>
12805 * class.c (mono_class_inflate_generic_method): Interface method
12806 don't have a header.
12808 * reflection.c (mono_image_get_methodspec_token): Take an
12809 additional `MonoGenericInst *' argument instead of reading it from
12810 the header; this is necessary to support interfaces.
12811 (mono_image_create_token): Pass the `MonoGenericInst *' from the
12812 MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
12813 (inflated_method_get_object): Take an additional `MonoGenericInst *'
12816 * reflection.h (MonoReflectionInflatedMethod): Added
12817 `MonoGenericInst *ginst'.
12819 2003-11-07 Zoltan Varga <vargaz@freemail.hu>
12821 * gc.c (mono_domain_finalize): Fix compilation for no GC case.
12823 2003-11-06 Zoltan Varga <zovarga@ws-zovarga2>
12825 * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
12827 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
12830 (reflection_methodbuilder_from_method_builder):
12831 (reflection_methodbuilder_from_ctor_builder): New helper functions to
12832 initialize a ReflectionMethodBuilder structure.
12833 (mono_image_get_methodbuilder_token):
12834 (mono_image_get_ctorbuilder_token): New functions to emit memberref
12835 tokens which point to types in another module inside the same assembly.
12837 * reflection.c: Use the new helper functions.
12839 * reflection.c (mono_image_basic_init): Initialize basedir and culture.
12841 * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image
12842 instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
12844 * reflection.c (resolution_scope_from_image): Emit a moduleref if
12847 * reflection.c (mono_image_build_metadata): Emit metadata only for the
12848 current module. Emit the manifest only for the main module.
12850 * reflection.c (mono_image_create_token): Add assertion when a
12851 memberref needs to be created.
12853 * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
12855 * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a
12856 larger buffer for the custom attribute blob. Fixes #50637.
12858 2003-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12860 * threadpool.c: notify listener on async processing handles after
12861 invoking the async callback. Thanks to Zoltan.
12863 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
12865 * reflection.c (create_dynamic_mono_image): Call mono_image_init to
12866 avoid code duplication.
12868 * reflection.h (MonoDynamicImage): New type which is currently unused,
12869 but will be used through the ref.emit code in place of
12870 MonoDynamicAssembly.
12872 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
12875 * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
12876 a MonoDynamicImage instead of just a MonoImage.
12878 * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
12879 icalls to ModuleBuilder but keep their semantics, so they will work
12880 with moduleb->assemblyb. This will change later.
12882 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
12884 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
12887 * reflection.c (mono_image_build_metadata): Avoid creation of a default
12888 main module, since it is now done by the managed code.
12890 2003-11-03 Martin Baulig <martin@ximian.com>
12892 * reflection.c (mono_reflection_inflate_method_or_ctor): Set
12893 `ginst->klass' here.
12894 (method_encode_methodspec): Don't use the `ginst->generic_method's
12895 klass if it's a generic instance, use `ginst->klass' in this case.
12897 2003-11-03 Martin Baulig <martin@ximian.com>
12899 * reflection.c (mono_image_get_generic_method_param_info):
12900 Removed, use mono_image_get_generic_param_info() instead.
12901 (mono_image_get_type_info): Write the GenericParam table before
12902 the Method table. This is neccessary because in the GenericParam
12903 table, type parameters of the class (ie. '!0' etc.) must come
12904 before the ones from its generic methods (ie. '!!0' etc).
12906 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
12908 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
12910 2003-11-02 Martin Baulig <martin@ximian.com>
12912 * reflection.c (create_generic_typespec): Take a
12913 `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
12914 the generic parameters from it.
12916 2003-11-02 Martin Baulig <martin@ximian.com>
12918 * reflection.c (fieldref_encode_signature): Take a `MonoType *'
12919 instead of a `MonoClassField *' since we just need the type.
12920 (create_generic_typespec): New static function. Creates a
12921 TypeSpec token for a generic type declaration.
12922 (mono_image_get_generic_field_token): New static function.
12923 (mono_image_create_token): If we're a FieldBuilder in a generic
12924 type declaration, call mono_image_get_generic_field_token() to get
12927 2003-11-02 Martin Baulig <martin@ximian.com>
12930 (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
12931 `MonoReflectionGenericInst *declaring_type' and
12932 `MonoReflectionGenericInst *reflected_type' fields.
12934 * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
12935 `MonoReflectionGenericInst *declaring_type' and a
12936 `MonoReflectionGenericInst *reflected_type' argument instead of a
12937 single `MonoReflectionGenericInst *type' one. Set
12938 `res->declaring_type' and `res->reflected_type' from them.
12939 (mono_reflection_inflate_field): Likewise.
12941 2003-11-02 Martin Baulig <martin@ximian.com>
12943 * class.c (mono_class_setup_vtable): Don't store generic methods
12946 2003-11-02 Martin Baulig <martin@ximian.com>
12948 * reflection.h (MonoReflectionGenericInst): Added
12949 `MonoReflectionType *declaring_type'.
12951 * reflection.c (mono_reflection_bind_generic_parameters): Use
12952 `if (tb->parent)' instead of `klass->parent'.
12954 2003-11-01 Zoltan Varga <vargaz@freemail.hu>
12956 * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
12957 with an empty ASSEMBLY table.
12959 * reflection.c (mono_image_build_metadata): Avoid using the same loop
12960 variable in the inner and outer loops.
12962 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
12964 * metadata.h (mono_metadata_make_token): Put parentheses around macro
12967 * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
12969 * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain
12970 icalls. Instead, do everything in managed code. This is needed since
12971 it is hard to restore the original domain etc. in unmanaged code in the
12972 presence of undeniable exceptions.
12974 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef):
12975 New icalls to push and pop appdomain refs.
12977 2003-10-31 Martin Baulig <martin@ximian.com>
12979 * class.c (inflate_generic_type): Renamed to
12980 mono_class_inflate_generic_type() and made it public.
12982 * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
12985 * loader.c (mono_field_from_memberref): Also set the retklass for
12988 * fielder.c (mono_image_get_inflated_field_token): New static
12989 method; creates a metadata token for an inflated field.
12990 (mono_image_create_token, fixup_method): Added support for
12991 "MonoInflatedField".
12992 (fieldbuilder_to_mono_class_field): New static function.
12993 (mono_reflection_inflate_field): New public function.
12996 (MonoReflectionGenericInst): Added `MonoArray *fields'.
12997 (MonoReflectionInflatedField): New typedef.
12999 2003-10-30 Bernie Solomon <bernard@ugsolutions.com>
13001 * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
13002 for Solaris and other platforms without s6_addr16
13004 2003-10-30 Martin Baulig <martin@ximian.com>
13006 * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
13007 argument instead of two.
13008 (mono_class_inflate_generic_signature): Likewise.
13009 (inflate_generic_header): Likewise.
13010 (mono_class_inflate_generic_method): Likewise. In addition, if
13011 `ginst->klass' is set, it becomes the new `method->klass'.
13013 * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
13016 * reflection.c (encode_generic_method_sig): Write a 0xa as the
13017 first byte. [FIXME]
13018 (method_encode_methodspec): If we have generic parameters, create
13019 a MethodSpec instead of a MethodRef.
13020 (fixup_method): Added support for "MonoInflatedMethod" and
13021 "MonoInflatedCtor".
13022 (mono_image_create_token): Added support for "MonoInflatedMethod"
13023 and "MonoInflatedCtor".
13024 (inflated_method_get_object): New static function; returns a
13025 managed "System.Reflection.MonoInflatedMethod" object.
13026 (mono_reflection_bind_generic_method_parameters): Return a
13027 `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
13028 (mono_reflection_inflate_method_or_ctor): Likewise.
13029 (mono_image_get_generic_method_param_info): Initialize unused
13031 (mono_image_get_generic_param_info): Likewise.
13033 * reflection.h (MonoReflectionInflatedMethod): New public
13034 typedef. Corresponds to the managed "S.R.MonoInflatedMethod" and
13035 "S.R.MonoInflatedCtor" classes.
13037 * loader.c (method_from_memberref): If we're a TypeSpec and it
13038 resolves to a generic instance, inflate the method.
13040 2003-10-28 Dick Porter <dick@ximian.com>
13042 * object.c (mono_runtime_run_main): Convert command-line arguments
13043 into utf8, falling back to the user's locale encoding to do so.
13045 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
13047 * loader.c (mono_get_method_from_token): Avoid looking up the icalls
13050 * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
13052 * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
13053 up icalls at method definition time. Partially fixes #33569.
13055 2003-10-25 Zoltan Varga <vargaz@freemail.hu>
13057 * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
13058 marshalling of arrays. Fixes #50116.
13060 * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
13062 * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
13063 points to a vtable in the dying appdomain.
13065 * appdomain.c (mono_domain_unload): Move the notification of OnUnload
13066 listeners into unmanaged code inside the lock.
13068 * object.c (mono_class_vtable): Turn off typed allocation in non-root
13069 domains and add some comments.
13071 2003-10-25 Martin Baulig <martin@ximian.com>
13073 * class.h (MonoGenericInst): Added `MonoClass *klass' field.
13075 * image.h (MonoImage): Added `GHashTable *typespec_cache'.
13077 * metadata.c (mono_metadata_parse_generic_inst): Renamed to
13078 `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
13079 currently parsing. Create the generic class and store it in
13080 `generic_inst->klass' before parsing the type arguments. This is
13081 required to support "recursive" definitions; see mcs/tests/gen-23.cs
13083 (mono_type_create_from_typespec): Use a new `image->typespec_cache'
13084 to support recursive typespec entries.
13086 * class.c (mono_class_setup_parent): If our parent is a generic
13087 instance, we may get called before it has its name set.
13088 (mono_class_from_generic): Splitted into
13089 mono_class_create_from_generic() and mono_class_initialize_generic().
13091 2003-10-25 Martin Baulig <martin@ximian.com>
13093 * icall.c (ves_icall_Type_BindGenericParameters): Return a
13094 `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
13095 ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
13096 ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
13098 * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
13099 (create_typespec): Likewise.
13100 (mono_reflection_bind_generic_parameters): Return a
13101 `MonoReflectionGenericInst *' instead of a `MonoClass *'.
13102 (mono_reflection_inflate_method_or_ctor): New public function.
13104 * reflection.h (MonoReflectionGenericInst): New typedef.
13106 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
13108 * object.c (mono_class_proxy_vtable): Run the whole vtable construction
13109 inside the domain lock. Fixes #49993.
13111 * object.c (mono_class_vtable): When typed allocation is used,
13112 allocate vtables in the GC heap instead of in the mempool, since the
13113 vtables contain GC descriptors which are used by the collector even
13114 after the domain owning the mempool is unloaded.
13116 * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
13118 * domain.c (mono_domain_unload): Rename to mono_domain_free to better
13119 reflect what it does. Also invalidate mempools instead of freeing
13120 them if a define is set.
13122 * appdomain.h (MonoAppDomainState): New enumeration to hold the state
13125 * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
13126 hold the finalizable objects in this domain.
13128 * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
13131 * appdomain.c (mono_domain_set): New function to set the current
13132 appdomain, but only if it is not being unloaded.
13134 * appdomain.c threads.c threadpool.c object.c: Avoid entering an
13135 appdomain which is being unloaded.
13137 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
13138 unloading of the root appdomain.
13140 * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
13141 icall to execute a method in another appdomain. Intended as a
13142 replacement for InternalSetDomain, which can confuse the code
13143 generation in the JIT.
13145 * appdomain.c (mono_domain_is_unloading): New function to determine
13146 whenever an appdomain is unloading.
13148 * appdomain.c (mono_domain_unload): New function to correctly unload
13151 * assembly.c (mono_assembly_load_references): Check that an assembly
13152 does not references itself.
13154 * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
13155 domain manually, it asks the finalizer thread to do it, then waits for
13156 the result. Also added a timeout.
13158 * icall.c: Register the new icalls.
13160 * threads.h threads.c: Export the mono_gc_stop_world and
13161 mono_gc_start_world functions.
13163 * mempool.h mempool.c (mono_mempool_invalidate): New debugging
13164 function to fill out the mempool with 0x2a.
13166 2003-10-22 Zoltan Varga <vargaz@freemail.hu>
13168 * reflection.h (MonoReflectionMethodAux): New structure to store
13169 information which is rarely used, thus is not in the MonoMethod
13172 * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
13173 store the aux info.
13175 * reflection.c (mono_methodbuilder_to_mono_method): Store param names
13176 and marshalling info into the aux structure.
13178 * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
13179 from the aux structure.
13181 * loader.c (mono_method_get_param_names): Retrieve the param names from
13184 2003-10-21 Zoltan Varga <vargaz@freemail.hu>
13186 * exception.h exception.c: Add AppDomainUnloadedException && fix
13189 2003-10-21 Dick Porter <dick@ximian.com>
13192 (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
13193 patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
13195 2003-10-21 Martin Baulig <martin@ximian.com>
13197 * reflection.c (mono_reflection_bind_generic_parameters):
13198 `klass->parent' is NULL for interfaces.
13200 2003-10-21 Martin Baulig <martin@ximian.com>
13202 * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13204 2003-10-20 Zoltan Varga <vargaz@freemail.hu>
13206 * exception.c (mono_exception_from_name_msg): New helper function for
13207 creating exceptions and initializing their message field.
13209 * exception.c: Simplify functions using the new helper.
13211 * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
13214 * object.h object.c: Remove G_GNUC_NORETURN from the signature of
13215 mono_raise_exception, since otherwise gcc doesn't generate the function
13216 epilog for raise_exception, confusing the stack unwinding in the JIT.
13219 * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
13220 PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
13223 2003-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13225 * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
13228 2003-10-18 Lluis Sanchez Gual <lluis@ximian.com>
13230 * icall.c: Removed GetUninitializedObject method because
13231 AllocateUninitializedClassInstance does the same.
13233 2003-10-18 Martin Baulig <martin@ximian.com>
13235 * class.c (inflate_generic_signature): Renamed to
13236 mono_class_inflate_generic_signature() and made it public.
13237 (my_mono_class_from_generic_parameter): New static function; if we
13238 don't already have the generic parameter's MonoClass, create a
13239 very simple one which is just used internally in the runtime and
13240 not passed back to managed code.
13242 * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
13244 * metadata.h (MonoMethodSignature): Moved the
13245 `MonoGenericParam *gen_params' to the MonoMethodHeader.
13246 (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
13248 * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
13249 ves_icall_MonoMethod_GetGenericArguments(); this is now an
13250 interncall on the MonoMethod class, not on MethodInfo.
13251 (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
13252 calling mono_reflection_bind_generic_method_parameters() directly.
13254 * loader.c (mono_method_get_signature): If this is a MethodSpec;
13255 return the already computed `method->signature'.
13256 (method_from_methodspec): New static function to load a method
13257 from a MethodSpec entry.
13258 (mono_get_method_from_token): Call the new method_from_methodspec()
13259 for MethodSpec tokens.
13260 (mono_get_method_from_token): If we're a generic method, load the
13263 * reflection.c (mono_image_get_memberref_token): Allow
13264 MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
13266 (fixup_method): Added support for MONO_TABLE_METHODSPEC.
13267 (mono_image_create_token): First check whether it's a generic
13268 method (so we'd need to create a MethodSpec), then do the other
13270 (mono_reflection_bind_generic_method_parameters): Return a
13271 `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
13272 called directly from the interncall.
13274 2003-10-17 Zoltan Varga <vargaz@freemail.hu>
13276 * reflection.c (load_public_key): Move loading of the public key
13279 * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
13281 * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
13284 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
13285 culture, hash_alg and public_key. Fixes #49555.
13287 2003-10-17 Martin Baulig <martin@ximian.com>
13289 * class.h (MonoGenericInst): Moved this declaration here and added
13290 `MonoMethod *generic_method'.
13293 (ves_icall_MethodInfo_GetGenericArguments): New interncall.
13294 (ves_icall_MethodInfo_BindGenericParameters): New interncall.
13296 * metadata.c (mono_metadata_type_equal): Two types of
13297 MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
13298 index; ie. don't compare the address of the `MonoGenericParam'
13300 (mono_metadata_load_generic_params): Removed the `MonoMethod
13303 * metadata.h (MonoGenericInst): Moved declaration to class.h.
13304 (MonoMethodHeader): Added `MonoGenericInst *geninst'.
13306 * reflection.c (method_encode_signature): Encode the number of
13307 generic parameters.
13308 (encode_generic_method_sig): New static function.
13309 (method_encode_methodspec): New static function; creates an entry
13310 in the MethodSpec table for a generic method.
13311 (mono_image_get_methodspec_token): New static function.
13312 (mono_image_create_token): Call mono_image_get_methodspec_token()
13313 for generic methods.
13314 (mono_reflection_bind_generic_method_parameters): New public
13315 function. Instantiates a generic method.
13317 2003-10-16 Martin Baulig <martin@ximian.com>
13319 * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
13320 *gen_params' here from MonoMethodHeader.
13322 * metadata.c (mono_metadata_parse_method_signature): If we have
13323 generic parameters, initialize `method->gen_params' and then set
13324 the correct `type->data.generic_param' in all the parameters.
13326 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
13328 * threads.c (mono_threads_get_default_stacksize): New function to
13329 return the default stacksize.
13331 * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
13332 termination of the finalizer thread, since the previous method had
13333 race conditions. Fixes #49628.
13335 * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
13336 as for the other managed threads.
13338 2003-10-16 Martin Baulig <martin@ximian.com>
13340 * class.c (inflate_generic_signature): Copy `generic_param_count'
13343 * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
13346 * metadata.c (mono_metadata_parse_method_signature): Actually set
13347 the `method->generic_param_count' here.
13348 (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
13350 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
13352 * object.h: Add a new field to TypedRef to simplify the implementation
13353 of the REFANY opcodes in the JIT.
13355 * icall.c: Make use of the new field.
13357 * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
13360 2003-10-15 Martin Baulig <martin@ximian.com>
13362 * class.c (mono_class_from_gen_param): Renamed to
13363 mono_class_from_generic_parameter() and moved most of the
13364 functionality from mono_reflection_define_generic_parameter()
13365 here; ie. we create a "real" class here.
13366 (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
13367 MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
13368 previously been called.
13370 * class.h (MonoGenericParam): Moved the declaration of this struct
13371 here from metadata.h and added `MonoMethod *method'.
13373 * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
13376 * loader.c (mono_get_method_from_token): If we have any generic
13377 parameters, call mono_metadata_load_generic_params() to read them
13378 from the MONO_TABLE_GENERICPAR.
13380 * metadata.c (mono_metadata_load_generic_params): Added
13381 `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
13383 * metadata.h (MonoMethodSignature): Replaced
13384 `MonoGenericInst *geninst' with `guint16 generic_param_count'.
13385 (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
13387 * reflection.c (mono_reflection_define_generic_parameter): Moved
13388 most of the functionality into the new
13389 mono_class_from_generic_parameter(); set the `method' field if
13390 we're a method parameter.
13392 2003-10-13 Bernie Solomon <bernard@ugsolutions.com>
13394 * marshal.c (emit_struct_conv): if native size is 0
13397 2003-10-14 Martin Baulig <martin@ximian.com>
13399 * icall.c: The generics API has changed in the spec since it was
13400 added to System.Type; these modifications make it match the spec
13402 (ves_icall_Type_GetGenericParameters): Renamed to
13403 `ves_icall_Type_GetGenericArguments'.
13404 (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
13405 (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
13406 `ves_icall_MonoType_get_HasGenericArguments'.
13407 (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
13408 `ves_icall_MonoType_get_IsGenericParameter'.
13409 (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
13410 this is no interncall anymore.
13411 (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
13412 `ves_icall_TypeBuilder_get_IsGenericParameter'.
13414 2003-10-14 Martin Baulig <martin@ximian.com>
13416 * reflection.c (mono_reflection_bind_generic_parameters): Also
13417 inflate generic methods if we're reading the class from IL.
13419 2003-10-13 Martin Baulig <martin@ximian.com>
13421 * reflection.c (mono_reflection_define_generic_parameter): This
13422 method isn't called directly from the icall anymore; take a
13423 `MonoReflectionAssemblyBuilder *' so we can use this for type and
13424 method generic parameters.
13425 (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
13426 (method_builder_encode_signature): Encode generic parameters.
13427 (mono_image_get_method_info): Write generic params to the
13428 MONO_TABLE_GENERICPARAM table.
13430 * reflection.h (MonoReflectionMethodBuilder): Added
13431 `MonoArray *generic_params'.
13433 * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
13435 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
13436 wrapper for mono_reflection_define_generic_parameter().
13437 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13439 2003-10-13 Zoltan Varga <vargaz@freemail.hu>
13441 * marshal.h: Add missing function to fix build.
13443 * marshal.c (mono_marshal_get_native_wrapper): Add support for
13444 the SetLastError pinvoke attribute.
13446 * marshal.c (mono_marshal_set_last_error): New helper function called
13447 by the generated code.
13449 * marshal.c (mono_mb_emit_branch): New helper function.
13451 * marshal.c (mono_mb_emit_exception): Added exception name parameter.
13453 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
13454 classes as parameters and return values of delegates. Fixes #29256.
13456 2003-10-12 Bernie Solomon <bernard@ugsolutions.com>
13458 * locales.c: use gint32 in non HAVE_ICU case
13460 2003-10-11 Martin Baulig <martin@ximian.com>
13462 * mono-debug.c (mono_debug_add_method): Added a workaround for
13465 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
13467 * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
13468 delegates passed to native code must use the STDCALL calling
13469 convention. Fixes #35987.
13471 2003-10-10 Martin Baulig <martin@ximian.com>
13473 * class.c (inflate_generic_type): If we're inflating for a generic
13474 type instance (and not for a generic method), return
13475 MONO_TYPE_MVAR unchanged.
13477 2003-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13479 * string-icalls.c: Join ignores null strings in the source array.
13480 * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
13481 * threads.c: GetAvailableTheads is slightly more accurate.
13483 2003-10-09 Bernie Solomon <bernard@ugsolutions.com>
13485 * threads.h threads.c : add mono_threads_set_default_stacksize
13486 and pass default to CreateThread calls.
13488 2003-10-09 Dick Porter <dick@ximian.com>
13492 * locales.c: Internal calls for constructing CultureInfo and
13493 related objects from libicu (if its available.)
13495 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
13497 * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
13499 2003-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13501 * threadpool.c: added an argument to async_invoke_thread that is the
13502 item to process, pass the MonoAsyncResult to the thread start function
13503 when creating a new thread. This way we don't need to acquire any lock
13504 when we're creating a new thread. Readded a semaphore for faster
13505 response times (instead of that Sleep i added).
13507 2003-10-08 Bernie Solomon <bernard@ugsolutions.com>
13509 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
13510 get daylight change dates better on Windows, fix handling
13511 of platforms without tm_gmtoff.
13513 2003-10-06 Martin Baulig <martin@ximian.com>
13515 * class.c (inflate_generic_method): Renamed to
13516 mono_class_inflate_generic_method() and made public.
13517 (mono_class_init): Don't inflate the generic methods here.
13518 (mono_class_from_generic): Added `gboolean inflate_methods'
13519 argument. Inflate the methods here.
13521 * loader.c (mono_method_get_param_names): Ignore instances of
13522 generic types for the moment.
13524 * reflection.c (fixup_method): Added support for inflated methods.
13525 (mono_image_create_token): Use mono_image_get_methodref_token()
13526 for inflated methods.
13527 (mono_custom_attrs_from_param): Ignore instances of generic types
13529 (mono_reflection_bind_generic_parameters): New public function.
13530 Moved all the functionality from
13531 ves_icall_Type_BindGenericParameters() here and added support for
13533 (mono_reflection_define_generic_parameter): Initialize
13534 `klass->methods' here.
13536 * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
13537 functionality into mono_reflection_define_generic_parameter().
13538 (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
13539 TypeBuilder, return that TypeBuilder.
13541 2003-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13543 * appdomain.c: removed mono_delegate_semaphore.
13546 (mono_thread_pool_add): moved hash table creation inside and the thread
13547 creation outside of the critical region.
13548 (mono_thread_pool_finish): removed obsolete code.
13549 (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
13550 continue or exit the thread depending on the queue.
13552 2003-10-07 Bernie Solomon <bernard@ugsolutions.com>
13554 * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
13555 marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
13556 handle more bool marshalling options
13558 2003-10-07 Zoltan Varga <vargaz@freemail.hu>
13560 * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
13561 arrays of structs. Also add a more descriptive error message when
13562 a structure member is marshalled as LPArray.
13564 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
13566 * marshal.c (mono_marshal_get_native_wrapper): Add support for
13567 marshalling arrays of complex types. Fixes #29098. Also remove an
13568 usused and incomplete function.
13570 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
13572 * gc.c: report heap_size - free_bytes as total memory allocated
13575 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
13577 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally
13578 fix timezone handling problems on Windows.
13580 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
13581 asserts when the year is outside the range handled by ms the functions.
13583 * class.c (setup_interface_offsets): If the class is an interface,
13584 fill out its interface_offsets slot.
13586 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13588 * threadpool.c: mark threadpool threads as background.
13590 2003-10-03 Bernie Solomon <bernard@ugsolutions.com>
13592 * decimal.c - define DECINLINE to nothing if not using GCC
13594 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
13596 * assembly.c: More refcount fixes.
13598 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13600 * string-icalls.c: if we're not trimming, return the same string.
13601 When not splitting, don't create a new string.
13603 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13606 (mono_image_open): increment the ref_count inside the critical section.
13608 2003-10-02 Zoltan Varga <vargaz@freemail.hu>
13610 * image.c (mono_image_open): Fix reference counting bug.
13612 2003-09-30 Bernie Solomon <bernard@ugsolutions.com>
13614 * marshal.c (mono_marshal_type_size) struct alignment changed for
13615 64bit machines. (emit_ptr_to_str_conv) Fix bool conversions for
13616 64bits. Avoid leak in mono_marshal_get_native_wrapper when
13617 mono_lookup_pinvoke_call throws.
13619 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
13621 * reflection.c (mono_reflection_parse_type): Fix #49114.
13623 * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
13624 temporary workaround for cygwin header problem.
13626 * object.c (mono_object_isinst): Synchronize this with the code
13627 generated by the JIT for casts.
13629 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
13631 * reflection.c (encode_type): Fix #38332.
13633 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
13635 * marshal.c (mono_marshal_method_from_wrapper): New function to return
13636 the original method from the wrapper method.
13638 2003-09-25 Martin Baulig <martin@ximian.com>
13640 * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
13641 interncall since it was identical to `Type.GetGenericTypeDefinition()'.
13642 (ves_icall_Type_get_IsGenericInstance): New interncall.
13644 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
13646 * object.c: fix cast warning in big endian code.
13648 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
13650 * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
13652 2003-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13654 * assembly.c: don't call check_env from mono_assembly_load. It's
13655 already done once in mono_assemblies_init and may cause headaches when
13656 multiple threads are loading assemblies.
13658 2003-09-19 Martin Baulig <martin@ximian.com>
13660 * reflection.c (mono_reflection_define_generic_parameter): Don't
13661 allocate `klass->methods', set `klass->flags' to
13662 TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
13664 2003-09-18 Martin Baulig <martin@ximian.com>
13666 * class.c (mono_class_init): Don't create `class->methods' if it's
13667 already initialized.
13669 * metadata.c (mono_metadata_load_generic_params): Make this
13672 * reflection.c (mono_reflection_define_generic_parameter): Set
13673 parent class and interfaces from the constraints.
13675 * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
13676 to keep this struct in sync with the declaration in TypeBuilder.cs.
13678 2003-09-17 Martin Baulig <martin@ximian.com>
13680 * metadata.h (MonoType): Replaced the data's `int type_param'
13681 field with `MonoGenericParam *generic_param'.
13682 (MonoGenericParam): Added `MonoClass *klass'.
13684 * class.c (mono_class_from_gen_param): Removed the
13685 `MonoImage *image' and `int type_num' arguments.
13687 * metadata.c (mono_metadata_parse_generic_param): New static
13688 method; creates a MonoGenericParam which just contains the index.
13689 (do_mono_metadata_parse_type): Call
13690 mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
13693 * reflection.c (mono_image_typedef_or_ref): Generic type
13694 parameters may be in the same assembly, but never use a typedef
13696 (mono_reflection_define_generic_parameter): We're now creating a
13697 "real" class for the type parameter; it's now safe to call
13698 mono_class_from_mono_type() on the class'es type, it'll do the
13701 2003-09-16 Martin Baulig <martin@ximian.com>
13703 * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
13704 `symfile->range_entry_size' and `symfile->class_entry_size' here;
13705 the `symfile' data structure must be fully initialized before it
13706 gets added to the table.
13708 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
13710 * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
13712 * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
13713 class init trampolines.
13715 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
13717 * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
13718 to the built-in profiler to turn off time and allocation profiling
13721 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
13723 * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
13726 * debug-helpers.c (mono_method_full_name): Print the wrapper type
13727 in human readable form.
13729 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
13731 * reflection.c icall.c: Fixed warnings.
13733 * image.c (load_class_names): Use a temporary hash table to hold the
13734 namespaces in order to avoid doing many string comparisons.
13736 * image.h: Fix typo.
13738 * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
13739 Pass NULL instead of g_direct_equal to the GHashTable constructor
13740 since the NULL case is short-circuited inside g_hash_table_lookup,
13741 leading to better performance.
13743 * metadata.c (mono_metadata_custom_attrs_from_index): New function to
13744 obtain the first custom attribute for a given index. Depends on the
13745 CustomAttribute table being sorted by the parent field.
13747 * reflection.c (mono_custom_attrs_from_index): Use the new function
13748 for better performance.
13750 2003-09-07 Martin Baulig <martin@ximian.com>
13752 * class.c (mono_class_init): If we're a generic instance, inflate
13753 all our methods instead of loading them from the image.
13754 (mono_class_from_generic): Set `class->methods = gklass->methods'.
13756 2003-09-07 Martin Baulig <martin@ximian.com>
13758 * mono-debug-debugger.c: Added support for constructors.
13760 2003-09-06 Martin Baulig <martin@ximian.com>
13762 * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
13765 * reflection.c (mono_reflection_setup_generic_class): Call
13766 ensure_runtime_vtable() to create the vtable.
13768 2003-09-05 Martin Baulig <martin@ximian.com>
13770 * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
13773 2003-09-04 Martin Baulig <martin@ximian.com>
13775 * reflection.c (mono_reflection_define_generic_parameter): Generic
13776 parameters start with zero.
13778 2003-09-04 Martin Baulig <martin@ximian.com>
13780 * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13782 * reflection.h (MonoReflectionGenericParam): New typedef.
13783 (MonoReflectionTypeBuilder): Added `generic_params' fields to get
13784 the generic parameters from the managed TypeBuilder.
13786 * reflection.c (mono_reflection_define_generic_parameter): New function.
13787 (mono_reflection_create_runtime_class): Encode generic parameters.
13788 (mono_reflection_setup_generic_class): New function; this is
13789 called after adding adding all generic params to the TypeBuilder.
13790 (encode_type): Added MONO_TYPE_VAR.
13792 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
13794 * class.h class.c (mono_class_needs_cctor_run): Moved this method
13797 * assembly.h assembly.c: Moved the AOT loading code into an assembly
13800 2003-09-03 Zoltan Varga <vargaz@freemail.hu>
13802 * reflection.h reflection.c class.h class.c: Delete duplicate
13803 definition of mono_type_get_name () from reflection.c and export the
13806 * class.c: Class loading fixes from Bernie Solomon
13807 (bernard@ugsolutions.com).
13809 * reflection.c: Endianness fixes from Bernie Solomon
13810 (bernard@ugsolutions.com).
13812 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
13814 * assembly.h assembly.c: Define a file format version for AOT
13817 * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
13819 * appdomain.h (MonoJitInfo): New field to determine whenever the
13820 code is domain neutral.
13822 2003-08-31 Miguel de Icaza <miguel@ximian.com>
13824 * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
13826 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
13828 * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir):
13829 (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
13830 Avoid caching the result since strings must be domain specific. Fixes
13833 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
13835 * marshal.c (mono_marshal_init): Make this callable multiple times
13836 since it is hard to find a correct place to call it.
13838 * object.c (mono_runtime_class_init): Execute static constructors in
13839 the correct appdomain.
13841 * image.c (build_guid_table): Handle the case when multiple images have
13844 2003-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13846 * icall.c: added a couple of icalls for System.Web.
13848 2003-08-28 Martin Baulig <martin@ximian.com>
13850 * icall.c (ves_icall_Type_BindGenericParameters): Use
13851 `klass->generic_inst' instead of `&klass->byval_arg' in the
13852 mono_type_get_object() call. The returned type must be
13853 MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
13855 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
13859 * object.c (mono_class_proxy_vtable): Make it thread safe.
13861 * pedump.c: Fix warning.
13863 * object.c appdomain.h: Get rid of metadata_section.
13864 It is no longer needed and it was causing deadlocks with domain->lock.
13866 * appdomain.c (add_assemblies_to_domain): Make it thread safe.
13868 2003-08-26 Martin Baulig <martin@ximian.com>
13870 * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
13872 2003-08-26 Martin Baulig <martin@ximian.com>
13874 * pedump.c (main): Call mono_metadata_init(),
13875 mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
13876 and mono_loader_init().
13878 2003-08-26 Zoltan Varga <vargaz@freemail.hu>
13880 * loader.h: Add missing include to fix build.
13882 * image.h: mono_image_load_references is no more.
13884 * assembly.c: Reworked assembly loading to make it really thread safe.
13885 After these changes, the assembly returned by mono_assembly_open is
13886 fully initialized, i.e. all its references assemblies are loaded.
13888 * assembly.c (mono_image_load_references): Renamed to
13889 mono_assembly_load_references, and made private, since clients no
13890 longer need to call it.
13892 * class.c: Removed calls to mono_assembly_load_references, since it was
13893 a source of deadlocks.
13895 * loader.h loader.c class.h class.c: Protect data structures using a
13896 new lock, the loader lock.
13898 * class.c (mono_class_setup_vtable): Create temporary hash tables and
13899 GPtrArrays only when needed.
13901 * class.c (mono_class_layout_fields): Ignore the dummy field inserted
13902 into empty structures by mcs. Fixes pinvoke7.cs.
13904 * domain.c (mono_init): Call a new initialization function.
13906 * appdomain.c (mono_runtime_init): Call the new initializer function
13907 of the marshal module.
13909 * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
13910 inserted into empty structures by mcs. Fixes pinvoke7.cs.
13912 * marshal.h marshal.c: Added locks around the wrapper caches to make
13913 this module thread safe.
13915 * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
13916 this argument. Fixes pinvoke1.exe.
13918 2003-08-25 Lluis Sanchez <lluis@ximian.com>
13920 * object.h: Added call_type field to MonoMethodMessage and the corresponding
13921 enumeration of values. Removed fields to store remote call output values in
13922 MonoAsyncResult. Not needed any more.
13923 * object.c: Initialize call_type and async_result fields in mono_message_init.
13924 * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
13925 dispatching the message.
13926 mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
13927 async call to finish. To do it use a message with EndInvoke call type.
13929 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
13931 * loader.h loader.c (mono_method_hash_marhal_info): New function which
13932 determines whenever a method has marshalling info.
13934 2003-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13936 * assembly.c: fix the build on windows.
13938 2003-08-22 Lluis Sanchez <lluis@ximian.com>
13940 * object.cs: Fixed bug #47785.
13942 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
13944 * string-icalls.c (StringReplace): If their are no occurances of
13945 the old string found return a reference to the supplied
13946 string. This saves some memory and matches MS behavoir.
13948 2003-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13950 * socket-io.c: fixed compilation for systems that define AF_INET6
13951 and don't define SOL_IP/SOL_IPV6.
13953 2003-08-21 Zoltan Varga <vargaz@freemail.hu>
13955 * object.c (mono_object_isinst): Fix casts to TransparentProxy in
13956 the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
13958 * rawbuffer.c rawbuffer.h: Make this module thread safe.
13960 * domain.c: Make this module thread safe.
13962 * domain.c (mono_init): Call new initialization function.
13964 * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
13965 reference types too. Fixes #38812.
13967 * image.c (mono_image_init): Fixed warnings.
13969 * class.c (mono_class_from_typeref): Handle assembly load failure
13972 * appdomain.c (add_assemblies_to_domain): Handle the case when
13973 the references of an assembly are not yet loaded.
13975 * metadata.c image.c assembly.c: Moved initialization of global
13976 variables to a separate function called at startup since lazy
13977 initialization of these variables is not thread safe.
13979 * image.c assembly.c: Made this module thread safe by adding locks in
13980 the appropriate places.
13982 * domain.c (mono_init): Call the new initialization functions of the
13985 2003-08-20 Lluis Sanchez Gual <lluis@ximian.com>
13987 * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
13988 make a direct call. It is proxy's work to make the call asynchronous.
13989 mono_delegate_end_invoke(): If the targe is a proxy, just collect
13991 * object.cs: mono_method_call_message_new(): read AsyncResult and
13992 state object from parameters list, if this info is requested.
13993 * object.h: Added fields to store remote call output values in
13994 MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
13996 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
13998 * object.h: add needed fields to MonoThread.
13999 * threads.c, threads.h: allow registering a function to cleanup data
14000 allocated per thread by the JIT.
14002 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14004 * loader.h: portability fix by Bernie Solomon
14005 * <bernard@ugsolutions.com>.
14007 2003-08-16 Zoltan Varga <vargaz@freemail.hu>
14009 * reflection.h reflection.c (mono_param_get_objects): Changed this to
14010 return a MonoArray. This simplifies the code and also ensures that
14011 the cache allways contains an object reference as a value.
14013 * icall.c (ves_icall_get_parameter_info): Simplified using the new
14016 2003-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14018 * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
14019 fixes a problem with byte ordering when getting the address family for
14022 2003-08-15 Zoltan Varga <vargaz@freemail.hu>
14024 * .cvsignore: Added monosn.
14026 * reflection.h reflection.c loader.c: Added support for parameter
14027 marshalling to dynamically created types. Fixes #47295.
14029 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
14031 * rand.c: remove useless warnings.
14033 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14035 * class.c: implemented ldtoken for methods and fieldrefs.
14037 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14039 * threadpool.c: when mono_async_invoke was called, no one took care of
14040 monitoring the queue. So if the method invoked took some time and we
14041 got new async invoke requests after 500 ms (the thread created waited
14042 that long in WaitForSingleObject), the new async invoke was not called
14043 until the previous one finished.
14045 This is fixed now. Thanks to Totte for helping with it.
14047 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14049 * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
14051 2003-08-11 Martin Baulig <martin@ximian.com>
14053 * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
14055 2003-08-06 Martin Baulig <martin@ximian.com>
14057 * mono-debug-debugger.c: Added support for static fields,
14058 properties and methods.
14060 2003-08-06 Martin Baulig <martin@ximian.com>
14062 * mono-debug-debugger.c: Don't store the MonoString's vtable to
14063 make this work for applications with multiple application domains.
14065 2003-08-04 Martin Baulig <martin@ximian.com>
14067 * mono-debug-debugger.c: Completely reworked the type support; the
14068 most important thing is that we're now just using one single
14069 `MonoType' instance per type.
14071 Sat Aug 2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
14073 * mono-endian.h, mono-endian.c, icall.c: Added icall
14074 ves_icall_System_Double_AssertEndianity to assert double word endianity
14075 on ARM (FPA). The icall uses a macro defined in mono-endian.h.
14077 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14079 * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
14080 support, icalls and fixes.
14082 2003-07-31 Miguel de Icaza <miguel@ximian.com>
14084 * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
14085 classes that are a punctuation character in .NET is not the same a
14088 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14090 * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
14092 2003-07-29 Miguel de Icaza <miguel@ximian.com>
14094 * icall.c: Add new MemCopy internalcall.
14095 (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
14096 Simplified code; It is not necessary to handle all the cases here,
14097 as the C# code takes care of it. Only handle the case of the name
14098 resource embedded into the assembly.
14100 Changed signature to return the data pointer and the size of the
14103 2003-07-26 Miguel de Icaza <miguel@ximian.com>
14105 * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
14106 encoded. (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
14108 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
14110 * socket-io.c: ignore EINTR error in select.
14112 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14114 * class.h, class.c: removed unused subclasses field in MonoClass.
14116 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
14118 * icall.c: improve fix of get_base_definition(). If the parent class
14119 doesn't have the mehod, look at the parent of the parent.
14120 * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
14121 to check if a parameter is an in or out parameter
14122 (PARAM_ATTRIBUTE_IN is not set by default).
14123 mono_method_return_message_restore(): Use mono_class_value_size to
14124 get the size of a value type. mono_type_stack_size (parameterType)
14125 does not return the correct value if parameterType is byRef.
14126 mono_load_remote_field(), mono_load_remote_field_new(),
14127 mono_store_remote_field(), mono_store_remote_field_new():
14128 raise exception if the remote call returns an exception.
14130 2003-07-28 Martin Baulig <martin@ximian.com>
14132 * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
14133 method. This is a wrapper around mono_runtime_invoke() which
14134 boxes the instance object if neccessary.
14136 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14138 * class.c, class.h, image.c, image.h, loader.c, metadata.c,
14139 metadata.h, row-indexes.h, verify.c: first cut of generics support.
14141 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14143 * icall.c: disable mcs bug workaround.
14145 2003-07-21 Miguel de Icaza <miguel@ximian.com>
14147 * object.c (mono_runtime_class_init): Take the metadata_section
14148 mutex before obtaining the domain mutex.
14150 * appdomain.h: Added definition of metadata_section mutex here.
14152 * object.c: define metadata_mutex here.
14154 2003-07-24 Ravi Pratap <ravi@ximian.com>
14156 * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
14159 2003-07-24 Lluis Sanchez Gual <lluis@ximian.com>
14161 * reflection.c: Fix bug #46669
14163 2003-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14168 * object.h: fill in the type name for TypeLoadException.
14170 2003-07-23 Ravi Pratap <ravi@ximian.com>
14172 * class.c: Fixes from Paolo in response to bug #45415 (Subclass
14173 relationship between TypeBuilders while compiling corlib) and bug
14174 45993 (Array types returned from the runtime while compiling
14175 corlib were from the loaded corlib).
14177 2003-07-22 Martin Baulig <martin@ximian.com>
14179 * mono-debug-debugger.c: Reworked the type support a bit more;
14180 distinguish between types and classes.
14182 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
14184 * icall.c: add IsArrayImpl icall.
14186 2003-07-22 Zoltan Varga <vargaz@freemail.hu>
14188 * class.c (mono_class_layout_fields): Fix gc aware auto layout by
14189 initializing real_size only once. Also fix bug #46602.
14191 2003-07-21 Jerome Laban <jlaban@wanadoo.fr>
14193 * object.c: Renamed mono_metadata_section to metadata_section.
14195 2003-07-21 Lluis Sanchez Gual <lluis@ximian.com>
14197 * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
14198 empty array if the type is an array. Fixed.
14199 ves_icall_MonoMethod_get_base_definition: if the base method
14200 is abstract, get the MethodInfo from the list of methods of
14202 * reflection.c: ParameterInfo.PositionImpl should be zero-based
14203 and it was 1-based. Fixed in mono_param_get_objects.
14205 2003-07-20 Martin Baulig <martin@ximian.com>
14207 * mono-debug.h: Set version number to 31.
14208 (mono_debug_init): Added `MonoDomain *' argument.
14210 * mono-debug-debugger.c: Reworked the type support; explicitly
14211 tell the debugger about builtin types; pass the `klass' address to
14214 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
14216 * image.c: Allow new metadata tables to be loaded without a
14217 warning. Also update the warning message to give the new constant value.
14219 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
14221 * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
14222 metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c:
14223 array type representation changes.
14225 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14227 * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
14228 on Environment.Exit () call.
14230 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
14232 * icall.c, reflection.h, reflection.c, verify.c: cleanups,
14233 requires a matching corlib.
14235 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
14237 * Changelog: My editor decided to add a CR to each line. Sorry about that.
14238 Committed again without the CRs.
14240 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
14242 * socket-io.c: Get system_assembly using mono_image_loaded(), instead
14243 getting it from the "this" socket instance. Did not work
14244 if the socket is a subclass of Socket.
14245 Also fixed bug #35371.
14247 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14249 * metadata.c: fixed size for TypedByRef.
14250 * loader.c: when searching for a method, consider the vararg amrker.
14251 * unicode.c, decimal.c: constify some arrays.
14253 2003-07-15 Dick Porter <dick@ximian.com>
14255 * socket-io.c: Fixed compilation for gcc < 3.2.
14257 Fixed compilation for machines that don't have AF_INET6 (thanks to
14258 Bernie Solomon <bernard@ugsolutions.com> for that part.)
14260 Fixed compile warnings.
14262 Fixed formatting and line endings.
14264 2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
14267 * socket-io.c: Added IPv6 support.
14269 2003-07-13 Zoltan Varga <vargaz@freemail.hu>
14271 * class.c (mono_class_is_assignable_from): New function to implement
14272 the is_assignable_from logic. Used by mono_object_isinst,
14273 Type::IsAssignableFrom () and the interpreter.
14275 * class.c (mono_class_is_subclass_of): Make all classes a subclass of
14276 Object, even interfaces.
14278 * object.c (mono_object_isinst): Implement in terms of
14279 is_assignable_from.
14281 * icall.c (ves_icall_type_is_assignable_from): New icall.
14283 2003-07-11 Zoltan Varga <vargaz@freemail.hu>
14285 * domain.c (foreach_domain): fix compiler warning.
14287 2003-07-11 Dietmar Maurer <dietmar@ximian.com>
14289 * image.c (load_metadata_ptrs): use g_strndup because strndup is
14290 not available on all plattforms
14292 2003-07-10 Zoltan Varga <vargaz@freemail.hu>
14294 * image.h image.c: Store the metadata version string in MonoImage.
14295 * icall.c: New icall to retrieve the image version.
14296 * reflection.c (create_dynamic_image): Fill in the image version field
14297 * reflection.c (build_compressed_metadata): Use the image version
14298 from the image structure.
14300 2003-07-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14302 * appdomain.c: modified comment.
14303 * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
14304 That will be its last iteration when mono_gc_cleanup is called from
14305 mono_runtime_cleanup and before the domain is unloaded.
14309 2003-07-04 Dietmar Maurer <dietmar@ximian.com>
14311 * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
14314 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14316 * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
14317 rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
14318 Bernie Solomon <bernard@ugsolutions.com>.
14320 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14322 * object.c, object.h: provide mono_object_new_fast() for faster
14323 allocation in some special cases.
14325 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
14327 * object.h, reflection.h, verify.c: fixes for some 64bit issues,
14328 mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
14330 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
14332 * threadpool.c: fix leaks.
14334 2003-07-01 Dick Porter <dick@ximian.com>
14336 * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
14337 using MonoGHashTables. Fixes threadpool bug posted to list.
14339 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14341 * image.h, image.c: added support to load an assembly from a byte array.
14342 * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added
14343 assembly bundle support.
14345 2003-06-27 Dietmar Maurer <dietmar@ximian.com>
14347 * threadpool.c (mono_thread_pool_add): keep a reference to the
14348 AsyncResult to prevent GC
14350 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14352 * class.c: leak fix.
14354 2003-06-25 Dick Porter <dick@ximian.com>
14356 * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
14357 for the async object, the WaitHandle object will close the handle.
14360 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14362 * class.c: in mono_array_class_get (), lookup from the hash with the
14363 same type we insert: this works around a bug in
14364 mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
14365 lluis. The real fix will have to wait for after the release.
14367 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
14369 * icall.c: fix memory leak when getting type members.
14371 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14373 * reflection.c: added more pubtoken special cases.
14375 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
14377 * class.c: handle field offset correctly when class size
14378 is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
14380 2003-06-20 Martin Baulig <martin@ximian.com>
14382 * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
14385 2003-06-20 Martin Baulig <martin@ximian.com>
14387 * image.h, mono-debug-debugger.h: Fixed compiler warnings.
14389 2003-06-20 Martin Baulig <martin@ximian.com>
14391 * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed. We
14392 just distinguish between variables in registers and variables at
14393 an offset relative to a register.
14395 2003-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14397 * icall.c: #ifdef out latest changes until mcs is fixed.
14399 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14401 * icall.c: return members in metadata order.
14403 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
14405 * icall.c: avoid infinite loop in GetTimeZoneData.
14407 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
14409 * icall.c: added Marshal.Prelink/All icalls.
14411 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
14413 * object.c, object.h: fix warnings and do some overflow checking
14414 when creating arrays.
14416 2003-06-17 Dick Porter <dick@ximian.com>
14419 * file-io.c: File attributes need to be tweaked slightly when
14420 passed from the managed to the w32 world.
14422 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
14423 * profiler.h profiler-private.h profiler.c: Rework last patch
14424 based on suggestion by Paolo.
14426 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
14428 * profiler.h profiler-private.h profiler.c: Added infrastructure for
14429 instruction level coverage data collection.
14430 * profiler.h profiler.c (: Added new callback function which can be
14431 used by the profiler to limit which functions should have coverage
14433 * profiler.c (mono_profiler_load): Call g_module_build_path to
14434 generate the file name of the profiler library.
14436 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
14438 * profiler.c, profiler.h, profiler-private.h: added basic block
14439 coverage profiling API.
14441 2003-06-15 Zoltan Varga <vargaz@freemail.hu>
14443 * reflection.c (mono_reflection_create_runtime_class): Add support
14444 for events in dynamically generated code.
14446 * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
14449 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
14451 * icall.c: when getting timezone info, return reasonable values if we
14452 can't get the actual data.
14454 2003-06-14 Dick Porter <dick@ximian.com>
14456 * threads.c (start_wrapper): Remove the reference to the thread
14457 object in the TLS data, so the thread object can be finalized.
14458 This won't be reached if the thread threw an uncaught exception,
14459 so those thread handles will stay referenced :-( (This is due to
14460 missing support for scanning thread-specific data in the Boehm GC
14461 - the io-layer keeps a GC-visible hash of pointers to TLS data.)
14463 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
14465 * reflection.c: ensure streams and tables are first allocated with
14466 ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
14468 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
14470 * icall.c: fixed GetElementType for byrefs (bug# 44792).
14472 2003-06-13 Zoltan Varga <vargaz@freemail.hu>
14474 * reflection.c (mono_reflection_create_runtime_class): Add support for
14475 properties to dynamically created classes.
14476 * reflection.c: Fix a few places where non-MonoObjects were inserted
14477 into the tokens hashtable.
14479 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14481 * object.c: some support to handle out of memory exceptions.
14483 2003-06-12 Dietmar Maurer <dietmar@ximian.com>
14485 * marshal.c (mono_marshal_get_native_wrapper): support reference
14488 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14490 * object.h, object.c: more portability stuff from Bernie Solomon.
14491 Unexport mono_object_allocate(). Added mono_object_unbox ().
14492 Set exitcode when an unhandled exception is thrown.
14494 2003-06-11 Dietmar Maurer <dietmar@ximian.com>
14496 * marshal.c (mono_marshal_get_native_wrapper): use custom
14497 marshaler for return types.
14499 2003-06-10 Dick Porter <dick@ximian.com>
14501 * socket-io.c: Don't assume that one of struct ip_mreqn or struct
14502 ip_mreq is available
14504 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
14506 * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
14507 mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
14508 by Bernie Solomon <bernard@ugsolutions.com>.
14510 2003-06-10 Zoltan Varga <vargaz@freemail.hu>
14512 * gc.c (mono_gc_init): Avoid error message on shutdown when
14513 GC_DONT_GC=1 is used.
14515 * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal):
14516 New icall to return the GUID of a module.
14518 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
14520 * class.c: ensure instance size always includes the parent's size
14521 even whem class size is set explicitly (fixes bug#44294).
14523 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14525 * profiler.h, profiler.c: made the simple profiler thread-safe,
14526 get more accurate timing info. Allow the loading of an
14527 externally-developed profiler module.
14529 2003-06-05 Dietmar Maurer <dietmar@ximian.com>
14531 * marshal.c (mono_marshal_get_native_wrapper): improved
14532 class/byref arguments.
14533 (mono_marshal_get_native_wrapper): better string marshaling support.
14535 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
14537 * class.c: ensure .pack and .size are handled correctly and
14538 simplified layout of static fields.
14540 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
14543 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
14545 * loader.c (mono_lookup_pinvoke_call): look for modules in the
14546 current directory (fix bug 44008)
14548 2003-06-03 Dietmar Maurer <dietmar@ximian.com>
14550 * marshal.c (mono_marshal_get_native_wrapper): started support for
14552 (mono_delegate_to_ftnptr): consider marshalling specifications
14554 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
14556 * reflection.c, reflection.h: emit custom marshal info.
14558 2003-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14560 * object.c: free the GError.
14561 * icall.c: added CloseEvent_internal.
14563 (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
14566 2003-06-01 Zoltan Varga <vargaz@freemail.hu>
14568 * loader.c (mono_method_get_signature): Add support for dynamic
14571 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
14573 * reflection.c: fixed bug #43905.
14575 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
14577 * class.c, domain.c, icall.c, metadata.h, object.h: support for
14578 handling TypedReference and ArgIterator.
14579 * loader.c, loader.h: added function to get signature at call site.
14581 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14583 * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more
14584 data readonly. Buglets and warning fixes. Some MethodSpec support.
14586 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
14588 * class.h, class.c, object.c: remove relative numbering support.
14590 2003-05-26 Miguel de Icaza <miguel@ximian.com>
14592 * marshal.c (mono_marshal_get_native_wrapper): For now, do not
14593 free the string, until we get a chance to fix Gtk#
14595 2003-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14597 * marshal.c: revert last patch.
14599 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
14601 * icall.c: updates for new mono_class_vtable() not calling
14602 the type constructor anymore.
14604 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
14606 * object.h, object.c: separate vtable creation from type
14607 initialization. Make running the .cctor thread safe.
14609 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
14611 * marshal.c (mono_marshal_get_native_wrapper): free string return values.
14613 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
14615 * loader.c (mono_get_method): consider calling convention
14617 2003-05-21 Zoltan Varga <vargaz@freemail.hu>
14619 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
14620 to return the invisible global type for a module.
14622 * reflection.c (mono_image_build_metadata): Emit global fields too.
14624 2003-05-20 Peter Williams <peterw@ximian.com>
14626 * loader.c (mono_lookup_internal_call): Add a few newlines.
14628 2003-05-20 Zoltan Varga <vargaz@freemail.hu>
14630 * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
14633 * appdomain.c (set_domain_search_path): Recalculate search path when
14634 AppDomainSetup.PrivateBinPath changes.
14636 * object.c (mono_class_compute_gc_descriptor): It turns out some
14637 parts of the class libs (like System.Thread) holds pointers to
14638 GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
14639 to treat native int a pointer type here.
14641 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
14643 * appdomain.h, domain.c: add hashtable for jump target resolution.
14645 2003-05-19 Zoltan Varga <vargaz@freemail.hu>
14647 * reflection.h reflection.c icall.c: Added new icalls
14648 GetManifestResourceInfoInternal, GetModulesInternal and support
14651 2003-05-16 Dick Porter <dick@ximian.com>
14655 * file-io.c: Implement System.IO.MonoIO::GetTempPath
14657 2003-05-14 Lluis Sanchez Gual <lluis@ideary.com>
14659 * object.c: mono_store_remote_field: little fix to previous patch.
14661 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
14663 * class.c: add constructors to array classes.
14664 * icall.c: special case array construction for InternalInvoke (),
14666 2003-05-14 Zoltan Varga <vargaz@freemail.hu>
14668 * class.h class.c reflection.c object.c: Added support for field
14669 defaults in dynamically generated classes.
14671 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
14673 * reflection.c: properly encode charset for ddlimport.
14675 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
14677 * threads.c: allow compiling without GC.
14679 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
14681 * appdomain.h, object.c, object.h, threads.c, threads.h: added
14682 handling of thread static data.
14684 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
14686 * reflection.h, reflection.c: added mono_custom_attrs_free ().
14688 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
14690 * class.c (mono_array_class_get): always set the serializable flags
14691 (mono_array_class_get): always set the SEALED attribute for array types
14693 2003-05-12 Dietmar Maurer <dietmar@ximian.com>
14695 * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
14696 attributes (fix for bug 42021).
14698 2003-05-12 Dick Porter <dick@ximian.com>
14700 * gc.c: Don't run finalizers when the finalizer thread is
14701 finishing up, because the default domain has already been
14704 2003-05-11 Miguel de Icaza <miguel@ximian.com>
14706 * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
14707 value is null, we should throw an exception. This is slightly
14708 different than the other conventions used for the constructor.
14710 2003-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14712 * socket-io.c: fixed windows build.
14714 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14716 * socket-io.c: patch by Jerome Laban that fixes bug #42393.
14718 2003-05-10 Zoltan Varga <vargaz@freemail.hu>
14720 * object.c (mono_string_new_wrapper): Compatibility fix for MS
14723 2003-05-09 Zoltan Varga <vargaz@freemail.hu>
14725 * class.c (mono_class_layout_fields): Add experimental GC aware
14726 auto layout facility. Requires class library changes to work correctly.
14728 (mono_class_setup_vtable): Avoid overriding explicit interface
14729 method implementations. Fixes iface3.exe test.
14731 * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
14733 (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
14734 (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
14736 * metadata.h: Add new type classification macro which determines
14737 whenever the type holds an object reference.
14739 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
14741 * marshal.c (mono_marshal_get_native_wrapper): cleanups
14743 2003-05-07 Zoltan Varga <vargaz@freemail.hu>
14745 * gc.c (finalizer_thread): Work around a GC bug.
14747 2003-05-07 Dietmar Maurer <dietmar@ximian.com>
14749 * marshal.c (emit_struct_conv): allow unions
14751 * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
14753 2003-05-06 Dietmar Maurer <dietmar@ximian.com>
14755 * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
14757 2003-05-06 Martin Baulig <martin@ximian.com>
14759 * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
14761 2003-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14764 (Select_internal): allow NULLs, don't create arrays if not needed.
14765 Coupled with Socket.cs changes.
14768 (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
14769 register a finalizer for it that will close the semaphore handle. This
14770 fixes the leak and make Lupus' test run with > 4080 loops.
14772 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
14774 * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
14775 Jerome Laban (bug #42287)
14777 2003-05-02 Martin Baulig <martin@ximian.com>
14779 * debug-mono-symfile.h
14780 (MonoSymbolFile): Moved declaration into mono-debug.h.
14781 (MonoDebugMethodJitInfo): Likewise.
14782 (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
14784 (_mono_debug_address_from_il_offset): Take a
14785 MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
14788 (MonoDebugDomainData): New struct.
14789 (mono_debug_get_domain_data): New function.
14790 (mono_debug_add_method): Take an additional `MonoDomain *'
14792 (mono_debug_source_location_from_address): Likewise.
14793 (mono_debug_il_offset_from_address): Likewise.
14794 (mono_debug_address_from_il_offset): Likewise.
14796 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
14798 * reflection.c: one more check for null type in custom attrs.
14800 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14802 * reflection.c: avoid warning (comparison is always false due to limited
14803 range of data type).
14805 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14807 * icall.c: throw an exception in Type.GetField if the argument 'name'
14810 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
14812 * reflection.c: fixed handling of enums in named arguments to custom
14813 attributes (bug #42123).
14815 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
14817 * reflection.c: use the right array element type and handle
14818 a null for a Type argument, too.
14820 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
14822 * reflection.c: handle arrays as arguments to custom attributes.
14824 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
14826 * reflection.c: handle a string value in a custom attr
14827 ctor that takes an object.
14829 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
14831 * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
14834 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
14836 * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
14838 2003-04-27 Martin Baulig <martin@ximian.com>
14840 * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
14841 MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
14842 MONO_DEBUGGER_EVENT_BREAKPOINT.
14843 (mono_breakpoint_trampoline_code): Removed.
14844 (mono_debugger_event_handler): The last argument is now a
14846 (mono_debugger_insert_breakpoint_full): Removed the
14847 `use_trampoline' argument.
14848 (mono_debugger_method_has_breakpoint): Likewise.
14849 (mono_debugger_trampoline_breakpoint_callback): Renamed to
14850 mono_debugger_breakpoint_callback(); take the method and
14851 breakpoint number as arguments.
14853 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
14855 * metadata.c: fix off by one when loading parameters attributes.
14857 2003-04-24 Martin Baulig <martin@ximian.com>
14859 * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
14861 2003-04-24 Martin Baulig <martin@ximian.com>
14863 * mono-debug-debugger.c: Moved all code which interacts with the
14864 Mono Debugger here.
14866 * debug-mono-symfile.c: This code now just deals with the symbol
14867 file itself, the debugger code is now in mono-debug-debugger.c.
14869 2003-04-23 Martin Baulig <martin@ximian.com>
14871 * mono-debug.c (mono_debug_source_location_from_il_offset):
14872 New method; like mono_debug_source_location_from_address(), but
14873 takes an IL offset instead of a machine address.
14875 2003-04-23 Martin Baulig <martin@ximian.com>
14877 * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
14878 `line' field; this is now computed by the debugger.
14880 2003-04-23 Martin Baulig <martin@ximian.com>
14882 * mono-debug.[ch]: New files. This is the new debugging interface.
14884 * mono-debug-debugger.[ch]: New files. Moved all code which
14885 interacts with the Mono Debugger here.
14887 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
14889 * domain.c (mono_init): initialize mono_defaults.monitor_class
14891 2003-04-21 Miguel de Icaza <miguel@ximian.com>
14893 * reflection.c (method_encode_code): Add a spicy exception to help
14894 future compiler authors.
14896 2003-04-21 Martin Baulig <martin@ximian.com>
14899 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
14900 Make this work with relative pathnames; g_filename_to_uri() needs
14901 an absolute filename.
14903 2003-04-18 Zoltan Varga <vargaz@freemail.hu>
14905 * icall.c: Track name changes in Object and ValueType.
14907 2003-04-18 Dietmar Maurer <dietmar@ximian.com>
14909 * metadata.c (mono_type_stack_size): size should be a multiple of
14912 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14915 (internal_domain_finalize): moved into mono_domain_finalize. No need
14916 to create another thread because the finalizers will be run in the
14919 (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
14920 (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
14921 to be run (MS does this too).
14923 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
14925 * object.c (mono_class_compute_gc_descriptor): Update comment.
14927 * loader.h marshal.h marshal.c: Added synchronized method wrappers.
14929 * image.h: Add synchronized wrapper cache.
14931 * image.c (do_mono_image_open): Initialize cache.
14933 * reflection.c (create_dynamic_mono_image): Initialize cache.
14935 2003-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14937 * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
14938 ves_icall_System_Buffer_ByteLengthInternal.
14940 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
14942 * reflection.c: setup klass->nested_in earlier. Allow
14943 a dash in the assembly name.
14945 2003-04-15 Dietmar Maurer <dietmar@ximian.com>
14947 * metadata.c (mono_type_to_unmanaged): dont access
14948 type->data.klass for MONO_TYPE_OBJECT
14949 (mono_type_to_unmanaged): consider System.Delegate class
14951 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
14953 * class.c: just setup supertypes in the proper place instead of
14954 initializing the full element class for arrays.
14956 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
14958 * class.c: ensure the element class of arrays is initialized.
14959 Setup the supertype info for array classes, too.
14961 2003-04-14 Miguel de Icaza <miguel@ximian.com>
14963 * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
14965 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14967 * Makefile.am: re-added -m option when running cygpath. This way,
14968 MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
14970 * mono-config.c: same codepath for locating mono config file for WIN32
14972 * assembly.c: if mono_assembly_setrootdir is called, don't override
14975 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14977 * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
14978 MONO_ASSEMBLIES variable.
14980 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
14982 * icall.c: added Assembly::GetNamespaces() icall.
14984 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14986 * reflection.c: fix from Jaak <jaak@zd.com.pl>.
14988 2003-04-10 Lluis Sanchez Gual <lluis@ideary.com>
14990 * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
14991 * object.c: fixed bug in the construction of vtable for proxies
14993 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
14995 * object.c (mono_array_new): Mark mono_array_new as an icall.
14997 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14999 * class.c: fixed test for public method when overriding interfaces.
15002 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15004 * appdomain.h, domain.c: added mono_domain_foreach() to
15005 be able to access the currently loaded appdomains.
15006 * object.c: make string interning work across sppdomains.
15007 Mark some functions for use as icalls.
15009 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
15011 * class.c reflection.c: Fix memory leaks reported by ccmalloc.
15013 * reflection.h reflection.c: Allocate long living data using
15014 GC_MALLOC_ATOMIC so the collector does not need to scan it.
15016 * reflection.c: Double the allocation size in streams instead of
15017 increasing it, to prevent unneccesary copying on large assemblies.
15019 * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
15020 creation if the assembly does not have the Run flag set.
15022 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
15024 * class.h: avoid the C++ keywords in header files (Jerome Laban
15025 spotted and fixed this).
15027 2003-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15030 (mono_unhandled_exception): fill in the arguments for the
15031 UnhandledException event. Only trigger that event for the default
15032 domain (as MS does).
15034 2003-04-04 Zoltan Varga <vargaz@freemail.hu>
15036 * object.c: Improve typed allocation stuff based on suggestions from
15037 Paolo. Also turn it on if the GC library supports it.
15039 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
15041 * object.c object.h class.h: Added experimental typed allocation
15042 facility using the interfaces in gc_gcj.h.
15044 * os/gc_wrapper.h: Added new include files.
15046 2003-04-03 Martin Baulig <martin@ximian.com>
15048 All the following changes are conditional to `WITH_INCLUDED_LIBGC'
15049 which is not yet enabled by default.
15051 * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
15053 (mono_gc_lock, mono_gc_unlock): New static functions.
15055 * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
15056 functions; stop/start the world for the garbage collector. This
15057 is using the windows API; we need to complete the SuspendThread()/
15058 ResumeThread() implementation in the io-layer to make this work on Unix.
15059 (mono_gc_push_all_stacks): New public function; tells the garbage
15060 collector about the stack pointers from all managed threads.
15062 2003-04-03 Martin Baulig <martin@ximian.com>
15064 * object.h (MonoThread): Added `gpointer stack_ptr'.
15066 * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
15068 2003-04-03 Martin Baulig <martin@ximian.com>
15070 * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
15072 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
15074 * reflection.c (typebuilder_setup_fields): Initialize field.first and
15077 2003-04-02 Miguel de Icaza <miguel@ximian.com>
15079 * loader.c (mono_lookup_internal_call): Report the corlib that is
15082 2003-03-05 Aleksey Demakov <avd@openlinksw.com>
15084 * icall.c (ves_icall_type_GetTypeCode): fixed check for
15085 System.DBNull (it's class not valuetype).
15087 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15089 * reflection.c: set table_idx in MonoReflectionArrayMethod object even
15090 if the array method was already assigned a token (fixes bug#40646).
15092 2003-04-02 Zoltan Varga <vargaz@freemail.hu>
15094 * reflection.c (mono_reflection_get_type): Attempt type resolve even
15095 if no assembly is given.
15097 2003-04-01 Miguel de Icaza <miguel@ximian.com>
15099 * metadata.h: Added the new tables.
15101 * row-indexes.h: Added definitions for new tables.
15103 * metadata.c: Add schemas for new tables, and add support for
15104 computing the sizes of them.
15106 * class.c: Update for handling the new type cases.
15108 2003-04-01 Dietmar Maurer <dietmar@ximian.com>
15110 * metadata.h (MONO_TYPE_IS_VOID): new macro
15112 2003-03-31 Martin Baulig <martin@ximian.com>
15114 * threads.h (MonoThreadCallbacks): Added `thread_created'.
15116 * threads.c (mono_thread_new_init): Call `thread_created' in the
15117 mono_thread_callbacks.
15119 2003-03-31 Lluis Sanchez Gual <lluis@ideary.com>
15121 * loader.h: added marshalbyrefobject_class to mono_defaults
15122 * domain.c: added initialization of mono_defaults.marshalbyrefobject_class
15123 * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
15124 generation of output parameters.
15125 ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
15126 * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
15127 contextbound and the target object belongs to the context of the caller.
15128 * object.h: added context and unwrapped_server variables in MonoRealProxy.
15129 * object.c: Implemented support for interfaces and abstract classes
15130 in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
15131 proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
15133 2003-03-30 Zoltan Varga <vargaz@freemail.hu>
15135 * class.h class.c (mono_class_is_subclass_of): New function.
15137 * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
15138 routines for most common case (calls from ArrayList::ToArray).
15140 * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown
15141 routine so programs which call Environment::Exit() can be profiled.
15143 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15144 Added MONO_ARCH_SAVE_REGS.
15146 * icall.c (ves_icall_type_is_subtype_of): Use new function.
15148 2003-03-29 Miguel de Icaza <miguel@ximian.com>
15150 * blob.h: Add a couple of new MonoType types definitions.
15152 * tabledefs.h: Add a couple of new call convs.
15154 2003-03-27 Zoltan Varga <vargaz@freemail.h>
15156 * reflection.h (MonoReflectionDynamicAssembly): track changes in
15157 the layout of the class.
15159 * reflection.c (alloc_table): double the size on overflow to avoid
15160 unnecessary copying.
15162 * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
15163 avoid filling out metadata tables and blobs. Also set mb->ilgen to
15164 null so it can be garbage collected.
15166 2003-03-27 Zoltan Varga <vargaz@freemail.hu>
15168 * reflection.c (mono_reflection_get_type): Return the resolved type
15169 only if it is in the assembly we searched.
15171 * reflection.c (ensure_runtime_vtable): Initialize method slots.
15173 * class.c (mono_class_setup_vtable): Set the slot of the overriding
15176 2003-03-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15179 (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
15180 the right one is 'file:///blah', but MS allows it.
15182 (mono_assembly_open): allow 'file://blah'
15184 Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
15186 2003-03-26 Aleksey Demakov <avd@openlinksw.com>
15188 * socket-io.c: fixes bug #40310.
15190 2003-03-25 Zoltan Varga <vargaz@freemail.hu>
15192 * reflection.c (mono_reflection_parse_type): handle deeply nested
15195 * reflection.c (mono_image_create_token): Use unique token values
15196 since they will be put into a hash table.
15198 * class.c (mono_class_setup_vtable): If a method occurs in more than
15199 one place in the vtable, and it gets overriden, then change the
15200 other occurances too.
15202 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
15203 object as return type.
15205 2003-03-22 Pedro Mart?nez Juli? <yoros@wanadoo.es>
15207 * icall.c: Deleted "ToString" implementation for double and float
15208 because they are full implemented in managed code.
15210 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15212 * reflection.c, reflection.h: implemented and exported functions
15213 to retrieve info about custom attributes.
15215 2003-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15217 * appdomain.c: moved Uri handling to assembly.c
15218 * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
15219 work when using a file Uri in *nix and windows.
15221 * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
15222 GetReferencedAssemblies.
15224 2003-03-18 Dick Porter <dick@ximian.com>
15226 * icall.c: Rename a couple of internal calls
15228 * threads.c: Set the thread state to Stopped when a thread exits.
15231 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
15233 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
15236 * object.c (mono_class_vtable): fix warning.
15238 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
15240 * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
15242 * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
15244 (method_encode_clauses): Create exception info structures in the right
15246 (mono_reflection_setup_internal_class): Initialize supertypes field.
15248 * class.c object.c: Handle interfaces which implement other interfaces
15251 * class.h class.c: Move the supertypes array initialization code into
15252 a separate function so it can be used for dynamic types too. Also call
15253 it earlier, in mono_class_init(), since it can be used before the
15254 type is initialized.
15256 2003-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15260 * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
15265 * object.c: remove warnings.
15267 2003-03-13 Martin Baulig <martin@ximian.com>
15269 * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
15270 (MonoDebugLexicalBlockEntry): New types.
15272 * debug-mono-symfile.c
15273 (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
15275 2003-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15277 * process.c: ret can be any non-zero value accroding to MS doc.
15279 2003-03-07 Miguel de Icaza <miguel@ximian.com>
15281 * class.c (mono_marshal_load_type_info): Fix buglet: Noticed when
15282 fixing a warning for a miss-used prototype, would have cause
15283 random memory corruption.
15285 2003-03-07 Martin Baulig <martin@ximian.com>
15287 * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
15288 getting really annoying ....
15290 2003-03-07 Zoltan Varga <vargaz@freemail.hu>
15292 * reflection.c (fixup_method): added support for array methods.
15294 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
15296 * socket-io.c: handle case when AF_INET6 and AF_IPX are not defined
15297 (pointed out by Michael Adams).
15299 2003-03-04 Dick Porter <dick@ximian.com>
15301 * icall.c: Temporarily reverted the Double and Single ToString()
15302 change, because it broke nunit.
15304 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
15306 * object.h, threads.h: make include files compatible with C++
15307 (patch by Jerome Laban <jlaban@wanadoo.fr>).
15309 2003-03-04 Pedro Mart?nez Juli? <yoros@wanadoo.es>
15311 * icall.c: Erased ToString helper functions for Double and Single.
15312 Now, that implementations ar all in managed code (Double and Single
15315 2003-03-03 Lluis Sanchez Gual <lluis@ideary.com>
15317 * appdomain.c: Added method for initializing the default context of
15318 a domain. Added internal call for getting the default context.
15319 * appdomain.h: Added context variable in MonoDomain struct.
15320 * domain.c: mono_domain_set also sets the default context of the domain
15321 * icall.c: Mapped internal method InternalGetDefaultContext.
15322 * object.c: mono_object_get_virtual_method returns always a remoting
15323 wrapper if the object is a transparent proxy.
15324 mono_runtime_invoke_array: when creating an object by calling the
15325 constructor, if the created object is a proxy, then the constructor should
15326 be called using the a remoting wrapper.
15328 2003-03-03 Dick Porter <dick@ximian.com>
15330 * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
15331 variable so it compiles on solaris. Problem spotted by
15332 Christopher Taylor <ct@cs.clemson.edu>
15334 2003-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15337 (get_info_from_assembly_name): don't leak value.
15340 (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
15343 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
15345 * assembly.c: export mono_image_load_references ().
15346 * class.c: handle function pointers. mono_class_from_name() now
15347 supports nested type names directly.
15349 2003-02-28 Zoltan Varga <vargaz@freemail.hu>
15351 * reflection.h reflection.c: Encode already created dynamic methods
15352 and fields correctly as a DEF instead of a REF.
15354 * reflection.c: Get rid of the force_ref argument to
15355 mono_image_typedef_or_ref since it was wrong in the first place.
15357 * string-icalls.c: add error checking to string constructors according
15360 * reflection.c: Emit types in the order their TypeBuilders were
15361 created. Previously, a new table index was assigned to each type before
15362 the tables were emitted. This was wrong because the signature blob
15363 might already refer to a type by its original table index.
15365 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
15367 * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
15370 2003-02-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15372 * Makefile.am: make assemblies dir have \ instead of / on windows.
15374 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
15376 * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
15377 iterate over the NESTEDCLASS table using a linear search since the
15378 table is not guaranteed to be sorted by the secondary key.
15380 * class.c (mono_class_create_from_typedef): fixed up call to
15381 mono_metadata_nesting_typedef.
15383 2003-02-27 Dietmar Maurer <dietmar@ximian.com>
15385 * marshal.c (mono_string_to_byvalstr): clear the memory as
15386 suggested by Jerome Laban <jlaban@wanadoo.fr>
15388 2003-02-26 Dick Porter <dick@ximian.com>
15390 * process.c: Cope with padding in .rsrc blocks
15392 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
15394 * metadata.h: reverted the filter_len change, it breaks reflection
15396 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
15398 * metadata.h: added a new field to store the filter_len
15401 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
15403 * reflection.c: handle custom attributes for types and members
15404 created with Reflection.Emit (bug#38422).
15406 2003-02-22 Zoltan Varga <vargaz@freemail.hu>
15408 * reflection.c: define RTSpecialName automatically for constructors for
15409 compatibility with MS.NET.
15411 * reflection.c (mono_reflection_create_runtime_class): initialize
15412 nested_in field of dynamically created classes.
15414 2003-02-22 Martin Baulig <martin@ximian.com>
15416 * debug-mono-symfile.h: Incremented version number.
15418 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
15420 * object.h icall.c process.c: fix warnings.
15422 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
15424 * appdomain.h appdomain.c:
15425 (mono_domain_try_type_resolve): split the
15426 name_or_tb argument into a name and a tb argument.
15427 (mono_domain_has_type_resolve): new function to check whenever the
15428 application has registered a TypeResolve event handler.
15430 * icall.c reflection.h reflection.c: move the type resolve logic into
15431 mono_reflection_get_type () so it will be invoked when
15432 Assembly::GetType () is called.
15435 (mono_reflection_get_type): renamed to get_type_internal.
15436 (mono_reflection_get_type): fixed type name generation so it works
15437 for nested types too.
15438 (mono_reflection_get_type): call has_type_resolve () to avoid the
15439 costly type name generation if there is no resolve event handler.
15441 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15443 * class.c, image.c: load exported types from file references.
15445 2003-02-19 Lluis Sanchez Gual <lluis@ideary.com>
15447 * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
15448 used to cache the managed methods used to create proxies and make
15449 remote invocation of methods.
15450 * class.h: Added in MonoVTable a flag to indicate that a class needs
15451 to be remotely created.
15452 * object.c: Modified the method mono_class_vtable(). It now initializes
15453 the remote flag of the vtable. Modified mono_object_new_specific(),
15454 so now it checks the remote flag.
15455 * icall.c: Added a couple of internal methods, one for enabling instance
15456 creation interception for a type, and one for creating objects bypassing
15459 2003-02-18 Martin Baulig <martin@ximian.com>
15461 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
15462 New interncall to get a method's metadata token.
15464 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
15465 New interncall for the debugger.
15467 2003-02-18 Dietmar Maurer <dietmar@ximian.com>
15469 * class.c (mono_class_setup_vtable): allocate supertype array
15471 2003-02-18 Martin Baulig <martin@ximian.com>
15473 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
15475 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15478 (assembly_name_to_aname): jump over unknown properties (i've found
15479 something like: 'type, assembly, version=xxx, custom=null, public...',
15480 so now will ignore custom=null and still get the rest of the values).
15482 2003-02-17 Dick Porter <dick@ximian.com>
15484 * threads.c: Have Thread.Start() wait for a semaphore to signal
15485 that the thread has set up all its local data. This fixes bug
15486 34323, where Abort() raced the new thread's TLS data.
15488 Also removes the handle_store() call from start_wrapper, because
15489 threads are now always created suspended and there is no longer a
15490 race between the parent and child threads to store the info.
15492 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
15494 * image.c: explain the #- heap issue in a message, hopefully
15495 avoiding FAQs on mono-list.
15497 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15500 (GetEntryAssembly): if the domain has not invoked
15501 AppDomain.ExecuteAssembly yet, return the assembly of the default
15504 2003-02-16 Zoltan Varga <vargaz@freemail.hu>
15506 * class.c (mono_ldtoken): make it work in dynamic assemblies.
15508 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
15510 * metadata.c, reflection.c: simple speedup to type hash
15513 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
15515 * image.c, image.h, class.c, assembly.c: move module loading
15516 to MonoImage. When loading metadata, consider alignemnet from
15517 the start of metadata, not from the metadata address in memory.
15519 2003-02-13 Zoltan Varga <vargaz@freemail.hu>
15521 * reflection.c (mono_reflection_get_custom_attrs): Added support for
15522 AssemblyBuilder objects. Factored out custom attribute creation into
15523 a separate function.
15524 (create_custom_attr): new function to create custom attributes.
15526 2003-02-12 Miguel de Icaza <miguel@ximian.com>
15528 * Makefile.am: Got tired of typing the full pathname to pedump.
15529 Until there is another option, am installing this.
15531 2003-02-12 Dietmar Maurer <dietmar@ximian.com>
15533 * class.c (class_compute_field_layout): always set field->parent
15534 (mono_ldtoken): use mono_defaults.fieldhandle_class;
15536 2003-02-11 Dick Porter <dick@ximian.com>
15539 * monitor.c: Rewrote Monitor, making lock much faster and
15540 Pulse/Wait work as specified. Also uses much fewer handles, and only
15541 creates them as needed.
15543 * exception.c: Added SynchronizationLockException
15545 * threads.c: Deleted old Monitor implementation. The new one is
15548 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
15550 * class.c: handled TypedReference type code. Set the correct size for
15551 class data. Setup interface_offsets for interface classes, too.
15553 2003-02-09 Martin Baulig <martin@ximian.com>
15555 * debug-mono-symfile.h: Reflect latest symbol writer changes.
15557 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
15559 * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
15560 * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
15561 * object.c: fixed mono_object_get_virtual_method () for interfaces.
15562 * verify.c: check for code that runs after the end of the method.
15564 2003-02-08 Pedro Mart?nez Juli? <yoros@wanadoo.es>
15566 * icall.c: Added "System.Math::Floor", "System.Math::Round" and
15567 "System.Math::Round2".
15568 * sysmath.h: Added Floor, Round and Round2 definitions.
15569 * sysmath.c: Modified certain functions that were not 100% compliant
15570 with MS.NET (math precision) and added the implementation of Floor,
15573 2003-02-07 Martin Baulig <martin@ximian.com>
15575 * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
15577 2003-02-07 Martin Baulig <martin@ximian.com>
15579 * debug-mono-symfile.c: Reflected latest symwriter changes.
15580 (mono_debug_create_mono_symbol_file): Removed.
15581 (mono_debug_open_mono_symbol_file): Take an argument which
15582 specifies whether to create a dynamic symbol file.
15584 2003-02-07 Dietmar Maurer <dietmar@ximian.com>
15586 * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
15588 2003-02-05 Martin Baulig <martin@ximian.com>
15590 * reflection.c (mono_image_build_metadata): Make this public,
15591 protect it against being called multiple times, don't create
15592 resources and don't build the compressed metadata here.
15593 (mono_image_create_pefile): Do this here.
15596 ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
15598 2003-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15600 * socket-io.c: fixed bug #36322.
15602 2003-02-06 Piers Haken <piersh@friskit.com>
15606 * debug-mono-symfile.c:
15612 * socket-io.c: warning cleanups
15614 2003-02-06 Dietmar Maurer <dietmar@ximian.com>
15616 * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
15617 function. works like remoting invoke, but does a check for the Proxy first.
15619 2003-02-05 Miguel de Icaza <miguel@ximian.com>
15621 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
15623 2003-02-05 Dietmar Maurer <dietmar@ximian.com>
15625 * marshal.c (mono_marshal_get_native_wrapper): only allocate an
15627 (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
15628 (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
15630 * object.c (mono_store_remote_field_new): used by the new jit
15631 instead of mono_store_remote_field
15632 (mono_load_remote_field_new): used by the new jit
15633 instead of mono_load_remote_field
15635 2003-02-05 Patrik Torstensson
15637 * appdomain.c: changed unload to take the domain id instead
15640 * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
15643 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15645 * appdomain.c: don't look for assemblies in ApplicationBase if
15646 PrivateBinPathProbe is set.
15648 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15650 * object.c: make the first argument in main_args contain the absolute
15651 path to the assembly. Fixes bug #37511.
15653 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15655 * icall.c: get correct UTC offset for countries not using daylight
15656 time saving. Fixes bug #30030.
15658 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15660 * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
15661 and 1 are the family).
15663 2003-02-04 Dietmar Maurer <dietmar@ximian.com>
15665 * icall.c (ves_icall_InternalExecute): removed wrong assertion
15667 * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
15669 2003-02-04 Zoltan Varga <vargaz@freemail.hu>
15671 * reflection.c: added support for SignatureHelper tokens, which is
15672 needed by the Calli opcode.
15674 * reflection.h: track changes to SignatureHelper class.
15676 * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
15678 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15680 * appdomain.c: fixed loading assemblies from PrivateBinPath.
15682 2003-02-03 Patrik Torstensson
15683 * appdomain.[c|h], domain.c :
15684 - Added support for getting a domain via domain id
15685 - Support for setting and getting domain from System.AppDomain
15686 (used in cross appdomain channel)
15687 - Added support for get/set for a MonoAppContext on a thread
15688 (Context class in System.Runtime.Remoting.Contexts),
15689 - Removed hack in Get/SetData and ExecuteAssembly.
15691 * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
15692 the managed world to get control when a proxy is created.
15694 * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
15696 2003-02-03 Miguel de Icaza <miguel@ximian.com>
15699 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15700 Populate the codebase field as well.
15702 2003-02-02 Martin Baulig <martin@ximian.com>
15704 * debug-mono-symfile.c
15705 (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
15706 (mono_debug_symfile_add_method): Allow interncalls.
15708 2003-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15710 * icall.c: throw parse exception if strtod fails or the string is empty.
15712 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
15714 * marshal.c: handle object type separately from defined
15717 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
15719 * marshal.c: handle NATIVE_LPSTR for strings when it's
15720 explicitly specified.
15722 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
15724 * reflection.c, reflection.h, icall.c: setup the reflection
15725 handle cache for ModuleBuilders and AssemblyBuilders.
15727 2003-01-30 Dietmar Maurer <dietmar@ximian.com>
15729 * reflection.c (reflection_methodbuilder_to_mono_method): set
15732 2003-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15734 * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
15736 2003-01-29 Dick Porter <dick@ximian.com>
15738 * threads.c: No need for the fake_thread kludge now that Thread
15739 doesn't run a class constructor
15741 2003-01-29 Dick Porter <dick@ximian.com>
15743 * threads.c: Use g_direct_hash instead of the rather bogus
15746 2003-01-29 Dietmar Maurer <dietmar@ximian.com>
15748 * marshal.c (mono_marshal_get_native_wrapper): add check for null
15749 (fix pinvoke12.exe)
15750 (mono_marshal_get_struct_to_ptr): generate valid IL code
15751 (mono_marshal_get_ptr_to_struct): generate valid IL code
15752 (*): correctly set sig->pinvoke, we need to memdup the signature
15755 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
15757 * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
15758 to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
15760 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15762 * profiler.c: provide more callers information.
15764 2003-01-28 Dietmar Maurer <dietmar@ximian.com>
15766 * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
15768 * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
15770 * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
15772 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
15774 * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
15775 exception instead of going into an infinite loop on dates which it
15778 * string-icalls.c (ves_icall_System_String_get_Chars): raise
15779 out-of-range exception if needed.
15781 * class.c (mono_class_setup_vtable): allow a virtual method to provide
15782 an implementation for an interface method and to override an inherited
15783 method at the same time.
15784 Imagine a scenario when a virtual method is used to override a
15785 virtual abstract method in a parent class, and this same method
15786 provides an implementation for an method inherited from an interface.
15787 In this case, the interface resolution code will set im->slot, which
15788 means that the virtual method override pass will skip this method
15789 which means a pointer to the abstract method inherited from the parent
15790 will remain in the vtable of this non-abstract class.
15792 * class.c: (mono_class_setup_vtable): continue search for a real
15793 method if only an abstract method is found.
15795 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
15797 * reflection.c: add size to encoding for ByValStr and ByValArray
15798 marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
15800 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
15802 * class.c (mono_class_setup_vtable): pass the override info as an
15805 * class.c (mono_class_setup_vtable): set the slot of overriding methods
15808 * reflection.c (ensure_runtime_vtable); add support for method
15811 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
15813 * reflection.c (resolution_scope_from_image): Hack to work to work with
15814 dynamic assemblies.
15816 * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and
15817 added a 'force_ref' argument to force this function to allways return
15818 a TypeRef. This is needed by mono_image_get_memberref_token ().
15820 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
15822 * reflection.c (mono_image_get_type_info): interfaces really don't have
15825 * reflection.c (mono_image_basic_init): fill out missing fields of
15828 * reflection.c (mono_image_basic_init): Invoke assembly load hooks for
15829 dynamic assemblies. This is required so dynamic assemblies show up in
15830 AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
15831 Type::GetType() etc. This is consistent with MS behaviour.
15833 * image.c image.h reflection.c: add newly created classes to the name
15834 cache so mono_class_get () will find them.
15836 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
15838 First part of changes to get IKVM.NET running under mono.
15840 * appdomain.h, appdomain.c: added new function
15841 mono_domain_try_type_resolve() which will emit TypeResolve events.
15842 This function will call AppDomain::DoTypeResolve to do the actual work.
15844 * class.h, class.c, loader.c, object.c, reflection.h, reflection.c:
15845 moved existing code dealing with dynamic tokens to a new function
15846 called mono_reflection_lookup_dynamic_token (). This function will
15847 raise TypeResolve events when appropriate. Since reflection.c is not
15848 part of libmetadata, a new hook function called
15849 mono_lookup_dynamic_token() is added to class.c which will call this.
15851 * assembly.h assembly.c: make the invoke_load_hook function public,
15852 so it can be called for dynamic assemblies.
15854 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
15856 * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the
15859 * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a
15860 MonoGHashTable, since it contains pointers to objects which the GC
15863 * assembly.c (search_loaded): remove unused variable.
15865 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
15867 * object.c: fixed issue exposed by gcc-generated IL programs
15868 that use RVA data for pointers.
15870 2003-01-25 Martin Baulig <martin@ximian.com>
15872 * threads.c (start_wrapper): Moved the initialization of
15873 `start_func' above the mono_new_thread_init() call to which we
15874 pass it as argument.
15876 2003-01-24 Martin Baulig <martin@ximian.com>
15878 * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
15879 the MonoThread pointer.
15881 2003-01-21 Miguel de Icaza <miguel@ximian.com>
15883 * icall.c: Rename `PowImpl' to Pow.
15885 2003-01-23 Dick Porter <dick@ximian.com>
15887 * threads.c (start_wrapper): Create a Thread object if needed, so
15888 the Main() thread can do the class initialisation in a subthread
15889 that has been set up to allow managed code execution.
15891 Pass the thread ID instead of the MonoThread pointer to the thread
15892 start and attach callbacks. This change is required, because the
15893 jit thread start callback must be called _before_ the Thread
15894 object can be created.
15896 (mono_thread_init): Removed much object creation code that is no
15897 longer needed. No managed code is called from here now.
15899 * object.c (mono_runtime_exec_managed_code): Create a subthread
15900 for Main, and call back to the runtime to use it.
15901 Set the exit code when Main exits.
15903 * gc.c: Make sure domain finalisation happens in a subthread.
15904 Re-enable threaded GC, fixing bug 31333 (again).
15906 * environment.c: System.Environment internall calls (so far just
15907 ExitCode is here, the others are still in icall.c)
15909 * appdomain.c (mono_runtime_cleanup): All threads running managed
15910 code should have finished before mono_runtime_cleanup() is
15911 reached, so no need to clean up threads.
15913 2003-01-22 Martin Baulig <martin@ximian.com>
15915 * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
15916 `gpointer func' arguments.
15917 (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
15918 but added `MonoThread *thread' argument.
15919 (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
15921 * threads.c (mono_new_thread_init): Added `gpointer func' argument
15922 and pass it to the mono_thread_start_cb callback.
15923 (mono_install_thread_callbacks): New public function to install a
15924 set of callbacks which are set by the debugger.
15925 (mono_thread_init): The last argument is now a MonoThreadAttachCB.
15927 2003-01-22 Martin Baulig <martin@ximian.com>
15929 * Makefile.am: Install debug-mono-symfile.h.
15931 2003-01-21 Aleksey Demakov <avd@openlinksw.com>
15933 * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
15935 2003-01-21 Dietmar Maurer <dietmar@ximian.com>
15937 * added the following fix from Jackson Harper <jackson@latitudegeo.com>
15938 * class.c (mono_ptr_class_get): correctly set access levels of pointers
15939 (mono_array_class_get): correctly set access levels of arrays
15941 2003-01-20 Patrik Torstensson
15942 * image.h (MonoAssemblyName): changed major, minor, build, revision
15943 from signed to unsigned.
15945 2003-01-20 sean kasun <skasun@azstarnet.com>
15947 * reflection.c (load_cattr_value): Now this handles
15948 MONO_TYPE_SZARRAY. Fixes bug #35629
15950 2003-01-20 Miguel de Icaza <miguel@ximian.com>
15952 * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
15955 2003-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15957 * decimal.c: fixed bug #26056.
15959 2003-01-17 Martin Baulig <martin@ximian.com>
15961 * gc.c: Raise an ExecutionEngineException instead of using g_error().
15963 2003-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15966 (mono_get_exception_type_initialization): new function.
15968 * object.c: throw a TypeInitializationException when an exception is
15969 thrown invoking the class constructor.
15971 2003-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15973 * reflection.c: fixed attribute reading.
15975 2003-01-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15978 (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
15979 provided, look for the type in the calling assembly and then in
15980 mscorlib; if the assembly name is provided, only try that one.
15982 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
15984 * object.c: register the vtable before there is a chance it's
15985 queried again recursively.
15987 2003-01-13 Duncan Mak <duncan@ximian.com>
15989 * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
15992 2003-01-12 Patrik Torstensson <totte@race-x-change.com>
15994 * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
15996 2003-01-11 Martin Baulig <martin@ximian.com>
15998 * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
15999 this to 20 for the release.
16001 2003-01-10 Dietmar Maurer <dietmar@ximian.com>
16003 * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
16005 * loader.c (mono_method_get_marshal_info): bug fix
16007 * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
16008 structures with explicit layout
16010 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16012 * profiler.c: made the output more readable (and sorted).
16013 Added caller information for the allocation profiler.
16015 2003-01-09 Sebastien Pouliot <spouliot@videotron.ca>
16017 * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
16019 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16021 * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
16022 to get value types.
16024 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
16026 * object.c, profiler.h, profiler.c, profiler-private.h:
16027 Added object allocation profiler.
16029 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
16031 * reflection.h, reflection.c: handle global methods.
16032 Compress blob entries.
16034 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
16036 * marshal.c: fix compilation.
16038 2003-01-09 Dietmar Maurer <dietmar@ximian.com>
16040 * loader.c (mono_method_get_marshal_info): impl.
16042 * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
16044 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16046 * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
16047 for reference types.
16049 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
16051 * loader.c: fixed off by one error in loaded parameter names.
16053 2003-01-08 Dietmar Maurer <dietmar@ximian.com>
16055 * marshal.c (mono_marshal_get_icall_wrapper): like
16056 mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
16057 instead of a MonoMethod.
16059 2003-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16061 * decimal.c: fixed bug #36537.
16063 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
16065 * marshal.c: throw a missing method exception if a
16066 P/Invoke method is not found.
16068 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
16070 * icall.c: allow a null this for constructors.
16072 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
16074 * icall.c: raise the proper exceptions if the arguments to the
16075 internal Invoke are incorrect.
16077 2003-01-03 Dietmar Maurer <dietmar@ximian.com>
16079 * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
16081 2003-01-03 Martin Baulig <martin@ximian.com>
16083 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16085 2002-12-31 Martin Baulig <martin@ximian.com>
16087 * debug-mono-symfile.c: Completely rewrote the type section.
16088 Instead of using individual malloc()ed fields, we use one big
16089 continuous memory area and offsets into this area.
16090 See the comments in the source code for details.
16092 2002-12-30 Martin Baulig <martin@ximian.com>
16094 * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
16096 2002-12-30 Martin Baulig <martin@ximian.com>
16098 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
16099 line number table in this data blob instead of using an external
16102 2002-12-28 Martin Baulig <martin@ximian.com>
16104 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
16106 2002-12-22 Rachel Hestilow <hestilow@ximian.com>
16108 * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
16109 as a boxed return type.
16111 2002-12-21 Miguel de Icaza <miguel@ximian.com>
16114 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
16115 g_build_filename to properly get separators on the filename created.
16117 * object.h: Small change, introduce MonoMarshalByRefObject to
16118 track the layout of that structure in the C# universe as we make
16121 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
16123 * object.c: removed assert to allow static fields on interfaces.
16124 * loader.c: a TypeSpec may be used for any type, not just arrays.
16126 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
16128 * class.c, class.h: added mono_class_array_element_size ().
16129 Ignore static methods in interfaces.
16131 2002-12-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16133 * threads.c: fixed the build under cygwin.
16135 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
16137 * reflection.c: handle nullref constants. Allocate keys for
16138 reflection handles with the GC.
16140 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16142 * threads.c, threads.h: added mono_thread_get_abort_signal()
16143 to get a suitable signal for thread abort.
16145 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
16147 * metadata.c: fix handling of ExportedType table.
16149 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16151 * icall.c: added WriteWindowsDebugString internal call.
16153 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16155 * reflection.h: added fields to match C# implementation.
16157 2002-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16159 * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
16161 2002-12-12 Juli Mallett <jmallett@FreeBSD.org>
16163 * gc.h, gc-internal.h: Rename header for GC internal calls to
16164 gc-internal.h from gc.h as to not clash with Boehm GC having its
16165 header installed as <gc.h> in outside include paths.
16166 * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
16167 * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
16169 2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16171 * icall.c: assign minor, build and revision in FillName.
16173 2002-12-11 Zoltan Varga <vargaz@freemail.hu>
16175 * image.h reflection.h reflection.c class.h class.c loader.c object.c:
16176 Added support for running code generated by Reflection.Emit.
16178 2002-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16180 * appdomain.c: check for NULL argument in LoadFrom.
16182 2002-12-10 Dick Porter <dick@ximian.com>
16184 * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
16186 2002-12-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16188 * appdomain.c: fix buglet when building exe file name. Handle full
16189 assembly name (needed after latest changes to AssemblyName).
16191 (mono_image_close): free some hashtables.
16193 2002-12-05 Dietmar Maurer <dietmar@ximian.com>
16195 * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN
16196 instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation
16197 on some systems (redhat 7.3)
16199 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
16201 * threads.c: delete the critical section of a sync block,
16202 spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
16204 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
16206 * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
16208 2002-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16210 * appdomain.[ch]: handle the assembly preload event to try loading the
16211 assemblies using the paths we have in the current domain.
16213 * assembly.[ch]: created an assembly preload hook that is called to try
16214 loading the assembly by other means that the ones provided here.
16216 * domain.c: initialize the domain search path.
16218 From now on, assemblies (TODO: except corlib and System) are loaded
16219 according to these rules when using mono_assembly_load ():
16221 1. It tries to load the assembly from the ApplicationBase
16222 of the current domain appending .dll and .exe (TODO: have to
16223 try loading from name/name.dll and name/name.exe).
16225 2. It tries the search path specified in PrivateBinPath for the
16226 current domain (if any).
16228 3. Previous behavior.
16230 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
16232 * icall.c: implemented GetInterfaceMap() related icall.
16233 * domain.c, loader.h: load MethodInfo in mono_defaults.
16235 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
16237 * gc.c: disable the finalizer thread for now, untill all the issues
16238 with it are resolved.
16240 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
16242 * string-icalls.c: handle embedded nulls in string ctor when the
16243 length is specified.
16245 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
16247 * class.c: look for explicit interface implementation in parent
16250 2002-12-03 Dietmar Maurer <dietmar@ximian.com>
16252 * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3)
16254 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
16256 * gc.c: protect handles with a critical section.
16258 2002-12-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16261 (ves_icall_type_from_name): it now has throwOnError and ignoreCase
16262 parameters. If no assembly specified, try getting the type from all
16263 the assemblies in the current domain, else, load the assembly and get
16266 2002-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16268 * marshal.c: applied patch from Aleksey Demakov that fixes
16269 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
16271 2002-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16273 * icall.c: fixed get_location.
16275 2002-11-28 Dietmar Maurer <dietmar@ximian.com>
16277 * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
16278 declarations to make it work with older gcc.
16280 * loader.c (mono_get_method): set signature->pinvoke for native calls
16282 2002-11-20 Dick Porter <dick@ximian.com>
16284 * threads.c (mono_thread_init): Set the main thread's handle
16286 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
16288 * gc.c: allow compilation without GC support. Changed to match the
16291 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
16293 * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
16295 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
16297 * reflection.c: set a public key token on the core assemblies.
16299 2002-11-18 Dick Porter <dick@ximian.com>
16301 * threads.c: Split out some thread initialisation so that other
16302 files can set the start callback function.
16304 * gc.c: Run finalisers in a separate thread, to avoid stack
16305 overflow. Fixes bug 31333.
16307 * appdomain.c: Set up GC finalisation thread.
16311 * domain.c: Use gc.h macros for GC_malloc
16313 2002-11-15 Dick Porter <dick@ximian.com>
16317 * appdomain.c: Removed mono_runtime_init_with_attach(),
16318 mono_thread_create_arg(), and mono_thread_init_with_attach(), by
16319 merging the extra parameter with the existing function. Removed
16320 unneeded code in mono_thread_attach().
16322 2002-11-14 Dietmar Maurer <dietmar@ximian.com>
16324 * image.c (mono_image_loaded_by_guid): a method to get loaded
16326 (load_metadata_ptrs): we store the guid as string.
16328 2002-11-11 Dietmar Maurer <dietmar@ximian.com>
16330 * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
16332 * metadata.c (mono_guid_to_string): imported method form Zoltan
16333 Varga (slightly modified)
16335 * assembly.c (mono_assembly_open): load precompiled code
16337 * loader.h (MonoMethod): we store the method token for use in the
16340 2002-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16342 * appdomain.c: insert the loaded assemblies in the domain->assemblies in
16343 the hook function called when an assembly is loaded.
16345 * domain.c: Modified file.
16346 (mono_domain_assembly_load): removed hash table insertion of assemblies.
16350 2002-11-07 Miguel de Icaza <miguel@ximian.com>
16352 * reflection.c: Map PEFileKind to the value expected by the WinNT
16355 2002-11-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16357 * rand.c: use /dev/urandom. If it fails to open, use the previous one.
16358 Read until the buffer is filled completely.
16360 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16362 * icall.c: implemented MonoType.InternalGetEvent ().
16364 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16366 * appdomain.c: implemented InitAppDomainSetup. Delayed
16367 AppDomain.SetupInformation until mono_runtime_exec_main, where we get
16368 the entry_assembly.
16370 * assembly.c: base_dir is now an absolute path ending with
16373 * icall.c: modified get_location according to the above changes.
16375 * object.c: init AppDomain.SetupInformation for the default domain after
16376 we have the entry assembly.
16378 * domain.c: when unloading a domain, setup = NULL.
16380 2002-11-04 Dietmar Maurer <dietmar@ximian.com>
16382 * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
16384 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
16386 * object.h, object.c: introduced mono_object_get_virtual_method ()
16387 to lookup the method invoked on an object when a callvirt is done on
16389 * icall.c: make MethodInfo::Invoke() always do a virtual call.
16391 2002-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16393 * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
16394 current domain when loaded an assembly and failed to load it.
16396 * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
16398 2002-10-31 Dick Porter <dick@ximian.com>
16402 * file-io.c: Return the error status in a parameter, as the
16403 GetLastError() value has long since been blown away if we try and
16404 look it up in a subsequent internal call invocation. Delete the
16405 GetLastError() internal call, because it's useless.
16407 2002-10-31 Dietmar Maurer <dietmar@ximian.com>
16409 * class.[ch]: added cast_class to fix bug 29517
16411 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
16413 * marshal.c: create valid IL code in the filter clause:
16414 the new JIT is less forgiving:-)
16416 2002-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16418 * icall.c: removed get_property internal call.
16420 2002-10-25 Zoltan Varga <vargaz@freemail.hu>
16422 * appdomain.h domain.c: Added an ID to appdomains.
16424 * threads.c threads.h icall.c: Implement icall
16425 Thread:GetDomainID(), and remove unused icall
16426 CurrentThreadDomain_internal.
16428 2002-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16430 * icall.c: Don't recurse through the base types in GetConstructor.
16433 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
16435 * mempool.h, mempool.c: added mono_mempool_empty() and
16436 mono_mempool_stats().
16438 2002-10-23 Dick Porter <dick@ximian.com>
16442 * icall.c: Added MonoIO.GetFileType internal call
16444 2002-10-17 Dick Porter <dick@ximian.com>
16446 * appdomain.c (mono_runtime_cleanup): Don't signal the async
16447 delegate semaphore before waiting for all threads to finish,
16448 because new threads can also call async delegates. Fixes bug
16451 * threadpool.c (async_invoke_thread): Only wait for 500ms instead
16452 of 3 seconds, in case another async job is queued. (This part is
16453 needed because the bug fix reintroduced the 3s exit lag.) This
16454 makes the mono_runtime_shutdown flag superfluous.
16456 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
16458 * reflection.c: include ehader size in method section headers.
16459 Really check for suplicated modules entries.
16461 2002-10-17 Martin Baulig <martin@gnome.org>
16463 * debug-mono-symfile.c: Added back support for locals.
16465 2002-10-14 Martin Baulig <martin@gnome.org>
16467 * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
16470 2002-10-14 Martin Baulig <martin@gnome.org>
16472 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
16473 mono_class_get() instead of looking in the class cache.
16475 2002-10-13 Martin Baulig <martin@gnome.org>
16477 * debug-mono-symfile.c: Set version number to 28, include the
16478 signature in method names.
16480 2002-10-13 Martin Baulig <martin@gnome.org>
16482 * debug-mono-symfile.h: Set version number to 27.
16484 2002-10-11 Martin Baulig <martin@gnome.org>
16486 * gc.c: Don't register/unregister NULL pointers as disappearing links.
16488 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16490 * metadata.c, metadata.h: added helper function to allocate signatures.
16492 2002-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16494 * icall.c: added internal call to get the location of machine.config.
16496 2002-10-08 Martin Baulig <martin@gnome.org>
16498 * debug-mono-symfile.c: Ignore classes with a pending init for the
16501 2002-10-03 Dick Porter <dick@ximian.com>
16503 * threads.c: Freebsd pthread_t is a pointer
16505 2002-10-03 Dick Porter <dick@ximian.com>
16507 * socket-io.c: Implemented GetHostName_internal
16509 2002-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16512 (mono_config_parse_file): don't leak the text.
16514 2002-10-02 Martin Baulig <martin@gnome.org>
16516 * debug-mono-symfile.c: Added support for methods.
16518 2002-10-01 Martin Baulig <martin@gnome.org>
16520 * debug-mono-symfile.c: Don't emit methods and line numbers for
16521 the dynamic symbol file, just write the type table. We can easily
16522 have an external helper program which creates a symbol file for an
16525 2002-10-01 Dick Porter <dick@ximian.com>
16527 * threads.c (ves_icall_System_Threading_Thread_Start_internal):
16528 Only add the handle to the cleanup array when we're about to
16529 launch the thread. Bug 31425 deadlocked when the test was run on
16532 2002-10-01 Martin Baulig <martin@gnome.org>
16534 * debug-mono-symfile.c: Added support for properties.
16536 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16538 * reflection.c: unaligned store fix from Mark Crichton
16539 <crichton@gimp.org>.
16541 2002-09-27 Martin Baulig <martin@gnome.org>
16543 * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
16546 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
16548 * assembly.h, assembly.c: use a sane API to hook into the assembly
16549 loading process instead of a useless special-purpouse hack
16550 (ngen needs a hook, too, for example).
16552 2002-09-27 Dick Porter <dick@ximian.com>
16554 * threads.c (mono_thread_init): Call GetCurrentProcess() so
16555 io-layer can set up some process handle info. Not needed on w32,
16556 but doesn't hurt either.
16558 * process.c: Pass the program name in the second parameter to
16559 CreateProcess, so the path is searched. Include the working
16560 directory. Implemented process name, process enumeration, and some
16561 process detail internal calls.
16563 * icall.c: Added internal calls for process lookup, and some
16566 2002-09-26 Martin Baulig <martin@gnome.org>
16568 * assembly.c (mono_install_open_assembly_hook): New global
16569 function to install a function to be invoked each time a new
16570 assembly is loaded.
16571 (mono_assembly_open): Run this callback function if set.
16573 * debug-mono-symfile.c: Put back line numbers for the dynamic
16574 symbol file and also record the .il file as source file. This
16575 allows us to install the temporary symbol file as `file.dbg' just
16576 like a compiler-generated one.
16578 2002-09-26 Nick Zigarovich <nick@chemlab.org>
16580 * Corrected typo in gc.c (BOHEM vs BOEHM).
16582 2002-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16584 * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
16585 GetProperties. Also avoid calling g_slist_length in GetProperties and
16588 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
16590 * reflection.c: avoid unaligned stores (bug spotted by
16591 Mark Crichton <crichton@gimp.org>).
16593 2002-09-25 Martin Baulig <martin@gnome.org>
16595 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
16596 instead of guint64 for addresses and added prologue/epilogue info.
16598 2002-09-25 Martin Baulig <martin@gnome.org>
16600 * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
16601 store line number info. For the dynamic symbol file, we only need
16602 to provide the JIT generated dynamic line number info for the dynamic
16605 2002-09-25 Martin Baulig <martin@gnome.org>
16607 * debug-mono-symfile.h: Incremented version number.
16609 2002-09-24 Martin Baulig <martin@gnome.org>
16611 * class.c (mono_debugger_class_init_func): New global function
16613 (mono_class_init): If mono_debugger_class_init_func is non-NULL,
16616 * debug-mono-symfile.c (mono_debug_symfile_add_type): New
16617 function. This is called via the mono_debugger_class_init_func
16618 hook to add all types to the dynamic type table.
16619 (ves_icall_MonoDebugger_GetType): New interncall to get a class
16620 from its metadata token.
16622 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
16623 New interncall for the debugger.
16625 2002-09-24 Nick Drochak <ndrochak@gol.com>
16627 * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
16628 before using it in case it is null.
16630 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
16632 * metadata.c: allow custom modifiers in local var signatures
16633 (bug spotted by Zoltan Varga).
16635 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
16637 * class.c: deal with the <Module> class that may have a NULL vtable.
16638 Eliminate warnings.
16640 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16642 * image.c, image.h: more strong name helpers.
16643 * monosn.c: more work: convert pem keys to cryptoapi format.
16645 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
16647 * string-icalls.c: speedup IndexOf.
16649 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16651 * icall.c: updates from Zoltan.2.Varga@nokia.com.
16653 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
16655 * icall.c: cleanup: use mono_object_domain ().
16657 2002-09-23 Martin Baulig <martin@gnome.org>
16659 * debug-mono-symfile.c: Improved type support.
16661 2002-09-22 Martin Baulig <martin@gnome.org>
16663 * debug-mono-symfile.c: Added support for reference types and strings.
16665 2002-09-22 Martin Baulig <martin@gnome.org>
16667 * debug-mono-symfile.c: Started to work on the type table.
16669 2002-09-21 Martin Baulig <martin@gnome.org>
16671 * debug-mono-symfile.c: Largely reworked the symbol table format.
16672 The symbol table is now incrementally updated each time a new
16673 method is added. We're now also using our own magic and version
16674 so that you don't need to recompile all your classes if the
16675 dynamic table changes.
16676 (mono_debug_update_mono_symbol_file): Removed.
16677 (mono_debug_symfile_add_method): New function to add a method.
16679 2002-09-21 Martin Baulig <martin@gnome.org>
16682 ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
16685 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
16686 New interncall to get a method from its metadata token.
16688 2002-09-21 Martin Baulig <martin@gnome.org>
16690 * debug-mono-symfile.c: Create type table.
16692 2002-09-20 Martin Baulig <martin@gnome.org>
16694 * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
16696 2002-09-20 Martin Baulig <martin@gnome.org>
16698 * debug-mono-symfile.c: Provide information about params and locals.
16700 2002-09-20 Martin Baulig <martin@gnome.org>
16702 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
16705 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
16706 interncall to get a method from its metadata token.
16708 2002-09-20 Martin Baulig <martin@gnome.org>
16710 * debug-mono-symfile.c: Added a few checks for method->header
16711 being non-NULL. This should never happen, but for the moment
16712 let's use a g_warning() rather than a g_assert().
16714 2002-09-19 Mark Crichton <crichton@gimp.org>
16716 * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
16717 even if support for it isn't present. Added an #ifdef to fix this.
16719 * socket-io.c: Added checks back for Solaris support.
16721 2002-09-19 Martin Baulig <martin@gnome.org>
16723 * debug-mono-symfile.c (read_string, write_string): Reflect latest
16724 changes in the symbol file format.
16726 2002-09-18 Martin Baulig <martin@gnome.org>
16728 * debug-mono-symfile.c: Set version number to 21.
16730 2002-09-18 Dick Porter <dick@ximian.com>
16732 * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
16733 on netbsd. Fixes bug 30051.
16735 2002-09-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16738 (set_version_from_string): little fix.
16740 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16742 * monosn.c, Makefile.am: added strong name utility.
16743 * reflection.h, reflection.c: implemented delayed signing,
16744 locale, version and hash id assembly attributes.
16746 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
16748 * loader.c, metadata.c: load param attributes in signatures.
16750 2002-09-16 Martin Baulig <martin@gnome.org>
16752 * debug-mono-symfile.c: Added string table with all method names.
16754 2002-09-14 Martin Baulig <martin@gnome.org>
16756 * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
16757 fast method lookup.
16759 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16761 * reflection.c: record the public key token of referenced assemblies.
16763 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
16765 * image.c, image.h: added functions to get the strong name and the
16766 public key of an assembly.
16767 * pedump.c: use them.
16769 2002-09-12 Dietmar Maurer <dietmar@ximian.com>
16771 * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
16773 2002-09-12 Miguel de Icaza <miguel@ximian.com>
16775 * marshal.c (mono_marshal_get_managed_wrapper): Added
16778 2002-09-11 Martin Baulig <martin@gnome.org>
16780 * gc.c: Call GC_unregister_disappearing_link() on all links when
16781 finalizing them, this is necessary to aviod a crash in boehm's
16784 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
16786 * gc.c: handle GetTarget for finalized objects spotted and fixed by
16789 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
16791 * icall.c: implemented MonoType::Module.
16792 * reflection.c, reflection.h: mono_module_get_object () from
16793 Tomi Pakarinen <tomi.pakarinen@welho.com>.
16795 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
16797 * icall.c: ignore overridden methods in GetMethods ().
16798 Fix for FieldInfo::SetValue().
16799 * object.c: handle float/double in runtime invoke.
16801 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
16803 * object.c: allow a constructor to be called again on an object.
16805 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16807 * class.h, class.c: move field layout code to it's own function and
16808 export it. Get an interface id earlier. Move fields in MonoClass
16809 so they are more cache friendly and align the bitfields.
16810 * loader.c: temporary handle get_param_names() for a runtime method.
16811 * reflection.c, reflection.h: more code to handle runtime creation of
16814 2002-09-09 Martin Baulig <martin@gnome.org>
16816 * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
16817 signature with the pinvoke field being set for the actual call.
16819 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
16821 * icall.c: removed some unused icalls. Start of map of glib charsets
16822 to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
16824 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
16826 * debug-helpers.c: break infinite loop (found and fixed by
16827 Holger Arnold <harnold@gmx.de>).
16829 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
16831 * icall.c: target may be null in create_delegate.
16833 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
16835 * marshal.c: handle a boolean return type.
16837 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
16839 * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
16841 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
16843 * gc.c: fix weakreferences.
16845 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
16847 * icall.c: added icall to get default codepage.
16849 2002-09-03 Dick Porter <dick@ximian.com>
16852 * threads.c: Use MonoThread instead of MonoObject where
16855 Store running thread objects in a hash table, so that we have all
16856 the info to hand when waiting for them to finish
16857 (means we don't need OpenThread() any more, so mingw builds should
16858 be fully functional again.)
16861 * object.h: Added thread ID to MonoThread
16863 2002-09-03 Martin Baulig <martin@gnome.org>
16865 * icall.c (System.Reflection.Assembly::get_location): New interncall.
16867 2002-09-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16869 * icall.c: fixed leak in get_temp_path. Thanks lupus.
16871 2002-09-03 Martin Baulig <martin@gnome.org>
16873 * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
16874 argument to store the end address of the disassembled instruction.
16876 * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
16877 here from debug-symfile.h.
16878 (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
16879 JIT into this struct.
16880 (MonoSymbolFile): Added `char *image_file' field.
16881 (MonoDebugGetMethodFunc): Removed.
16882 (mono_debug_update_mono_symbol_file): Removed the hash table argument.
16883 (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
16884 (mono_debug_find_method): New method.
16886 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
16887 create a full symbol file.
16888 (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
16889 and static symbol files.
16890 (mono_debug_find_method): The symbol file keeps an internal method hash,
16891 call this to get a MonoDebugMethodInfo from a MonoMethod.
16893 * debug-symfile.[ch]: Removed.
16895 2002-08-29 Miguel de Icaza <miguel@ximian.com>
16897 * image.c (do_mono_image_open): Remove linker version check.
16899 2002-08-29 Dietmar Maurer <dietmar@ximian.com>
16901 * marshal.c (mono_marshal_get_managed_wrapper): don't cache
16902 wrappers for instance methods.
16904 2002-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16906 * icall.c: added ves_icall_System_IO_Path_get_temp_path.
16908 2002-08-28 Dick Porter <dick@ximian.com>
16910 * Makefile.am: Export HOST_CC for w32 builds
16912 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
16914 * file-io.c process.c: MonoString are null terminated, no
16915 need for mono_string_to_utf16() anymore.
16917 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
16919 * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
16921 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
16923 * icall.c, reflection.h: speedup System.MonoType.
16925 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
16927 * reflection.c: allow null as the value of a string argument in
16928 custom attributes constructors.
16930 2002-08-27 Martin Baulig <martin@gnome.org>
16932 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
16933 `trampoline_address' field.
16935 2002-08-27 Dietmar Maurer <dietmar@ximian.com>
16937 * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
16938 check (fixes bug #29486)
16940 2002-08-27 Martin Baulig <martin@gnome.org>
16942 * debug-mono-symfile.c: Changed the file format in a way that allows us
16943 open it read-only and to use a specially malloced area for all the
16944 dynamic data. We can now also generate a symbol file on-the-fly if we're
16945 debugging IL code and there is no MCS generated symbol file for it.
16947 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
16949 * object.c: added a define for a good string and array
16950 creation speedup (not enabled by default because we need to deal with
16953 2002-08-26 Martin Baulig <martin@gnome.org>
16955 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
16956 function to create a dynamic symbol file. This is used by the
16957 debugger to create a symbol file for IL code on-the-fly.
16959 2002-08-26 Martin Baulig <martin@gnome.org>
16961 * loader.c (mono_lookup_pinvoke_call): Include the error message
16962 from g_module_error() in the error message.
16964 2002-08-24 Martin Baulig <martin@gnome.org>
16966 * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
16967 function to update the symbol file. The symbol file is mmap()ed
16968 writable, but private. This allows us to install the symbol file
16969 together with the assembly.
16971 2002-08-24 Martin Baulig <martin@gnome.org>
16973 * debug-mono-symfile.[ch]: New files. Similar to debug-symfile.[ch]
16974 but they can read the new symbol file format which mcs is now creating.
16976 * debug-symfile.c (mono_debug_find_source_location): Moved to
16977 debug-mono-symfile.c; this is now operating on the new symbol file.
16979 2002-08-23 Martin Baulig <martin@gnome.org>
16981 * debug-helpers.c (mono_method_desc_from_method): New function to get
16982 a MonoMethodDesc from a MonoMethod.
16984 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
16986 * object.c: fixes assertion failure caused by multiple ExecuteAssembly
16987 calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
16989 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
16991 * string-icalls.[ch]: make helper methods static.
16993 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16995 * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
16996 types to it and to SetValueInternal.
16998 * object.c: Moved handle_enum label to its proper place. This was the
17001 This time i compiled mcs and gtk-sharp and they both work.
17003 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17005 * icall.c: reverted partially my previous patch until
17006 object.c:set_value handles enums correcly.
17008 2002-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17011 (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
17012 (ves_icall_System_Environment_get_MachineName): removed warning when
17013 compiling under cygwin.
17015 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17017 * object.c: fixed field_get_value() for reference types.
17019 2002-08-22 Dick Porter <dick@ximian.com>
17021 * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
17022 Don't free a buffer while it's still needed. Patch from Jonathan
17023 Liger <Jonathan.liger@wanadoo.fr>
17025 2002-08-21 Miguel de Icaza <miguel@ximian.com>
17027 * icall.c (ves_icall_System_Environment_get_Platform): Add new
17030 2002-08-21 Dietmar Maurer <dietmar@ximian.com>
17032 * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
17033 (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
17035 * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
17036 we call unmanaged code which throws exceptions.
17038 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17040 * appdomain.h: added per-domain entry_assembly.
17041 * appdomain.c: ensure mono_runtime_exec_main () gets non-null
17043 * icall.c: Assembly::GetEntryAssembly icall.
17044 * object.c: set domain->entry_assembly in mono_runtime_exec_main().
17045 Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
17047 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17049 * appdomain.h, gc.c: added mono_domain_finalize ().
17051 2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17054 (mono_print_unhandled_exception): changed g_warning by g_printerr
17055 because g_log has a 1024 characters limit (yeah, i got a big stack
17056 trace). Don't print exception name, that should be in ToString
17059 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17061 * icall.c: added ves_icall_FieldInfo_SetValueInternal.
17062 * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
17064 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17067 (mono_print_unhandled_exception): after previous commit, i realized
17068 that MS calls ToString on the exception. I changed this function to
17069 do that. This way we get stack_trace for free.
17071 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17074 (mono_print_unhandled_exception): invoke Message property instead of
17075 getting 'message' field from Exception. Don't allocate memory for
17076 'trace' and 'message' if not needed.
17078 2002-08-18 Dick Porter <dick@ximian.com>
17080 * unicode.c: Fix asserts to match Encoder.cs checks
17082 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17084 * marshal.c: fix unaligned store issue and a few wrong
17085 opcode argument types.
17087 2002-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17089 * icall.c: added GetUninitializedObjectInternal internal call.
17091 2002-08-16 Dietmar Maurer <dietmar@ximian.com>
17093 * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
17094 to the right domain.
17096 2002-08-14 Dietmar Maurer <dietmar@ximian.com>
17098 * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
17100 * class.c (class_compute_field_layout): set blittable to false for Strings
17102 * appdomain.c (mono_domain_transfer_object): added support for ISerializable
17104 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17106 * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
17107 first chunk of code to create types at runtime. Code to
17108 handle ReflectedType/DeclaringType. Make reflection handles
17111 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
17113 * class.c: set correct name in arrays.
17115 2002-08-13 Dietmar Maurer <dietmar@ximian.com>
17117 * appdomain.c (mono_domain_transfer_object): make it work with
17118 valuetypes. bug fixes.
17120 2002-08-12 Dick Porter <dick@ximian.com>
17122 * object.h: Rename some parameters to avoid c++ keywords (Patch
17123 from Joseph Wenninger <kde@jowenn.at>)
17125 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
17127 * icall.c: added icall to implement Assembly.GetFile*.
17129 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17131 * reflection.h, reflection.c: code to embed managed resources.
17133 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17135 * class.c: move all the type size stuff into
17136 class_compute_field_layout().
17138 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17140 * class.c: ensure enums have always the correct instance size.
17141 * unicode.c: remove wrong assert.
17143 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17145 * assembly.c: fix mem corruption issue.
17146 * image.h, image.c: added mono_image_get_resource () to access
17148 * icall.c: implemented Assembly.EntryPoint property and some
17149 Managed Resources related internalcalls.
17152 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17154 * image.c, image.h: impemented mono_image_get_entry_point ().
17155 * appdomain.c: use mono_image_get_entry_point.
17157 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17159 * reflection.c: support the object type argument when loading
17162 2002-08-05 Dietmar Maurer <dietmar@ximian.com>
17164 * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
17165 String as return type.
17167 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
17169 * reflection.c: fix encoding of named args for custom attrs to match
17170 the ms implementation. Read them back when instantiating custom
17173 2002-08-02 Radek Doulik <rodo@ximian.com>
17175 * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
17176 by Dietmar as quick fix
17177 (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
17178 16 as stack size, used on more places as quick fix before Dietmar
17179 will fix it properly
17181 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17183 * object.h, object.c: added accessors for fields and properties.
17185 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
17187 * class.c, class.h: made mono_class_get_field_from_name ()
17188 loop on parent types.
17189 Added mono_class_get_property_from_name ().
17191 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17193 * class.c, class.h: move the code to setup the type vtable in its own
17194 function so that it can be reused also for types created at runtime.
17195 Eliminate the "class" identifier from the header file.
17196 * reflection.c: setup the vtable for enums so that we can create
17197 objects for use in SetConstant ().
17199 2002-08-02 Dietmar Maurer <dietmar@ximian.com>
17201 * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
17202 instead of the delegate itself as this pointer (bug #28383)
17204 2002-08-01 Dietmar Maurer <dietmar@ximian.com>
17206 * marshal.c (mono_marshal_get_managed_wrapper): added return type
17209 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17211 * loader.c: don't set the pinvoke bit on icalls.
17213 2002-07-31 Dietmar Maurer <dietmar@ximian.com>
17215 * debug-helpers.c (mono_method_full_name): only print a number to
17216 indicate wrapper type (so that the output is more readable in traces).
17218 2002-07-30 Dietmar Maurer <dietmar@ximian.com>
17220 * class.c (mono_class_init): include method override patch from Paolo
17222 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
17224 * icall.c: fixed GetTypeCode().
17226 2002-07-29 Dietmar Maurer <dietmar@ximian.com>
17228 * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
17229 use real delegate invoke function to make it work with multicast
17230 delegates (fix bug# 28291).
17232 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17234 * object.c: load constant strings.
17236 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17238 * reflection.c: no magic numbers.
17239 * tabledefs.h: security action enum.
17241 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17243 * assembly.c: fix possible memory corruption.
17245 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17247 * reflection.h, reflection.c: added support for linking resources.
17248 * verify.c: check we have an updated corlib.
17250 2002-07-25 Dietmar Maurer <dietmar@ximian.com>
17252 * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
17254 (mono_marshal_string_array): null terminate unmanaged string arrays.
17255 (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
17257 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17259 * icall.c: Type.GetType () can now return also types from the
17262 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17264 * loader.h, loader.c: stack walking support.
17265 * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
17266 GetCallingAssembly.
17268 2002-07-24 Dietmar Maurer <dietmar@ximian.com>
17270 * marshal.c: added optimisations for blittable types
17272 * class.c (mono_array_class_get): do not set blittable attribute on arrays
17273 (mono_class_setup_mono_type): set blittable attribute for single
17276 * marshal.c (mono_string_utf8_to_builder): impl.
17277 (mono_string_builder_to_utf8): impl.
17278 (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
17280 2002-07-23 Dietmar Maurer <dietmar@ximian.com>
17282 * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
17283 (mono_marshal_get_managed_wrapper): impl. byref types
17285 2002-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17288 (search_method): don't display debug message.
17290 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
17292 * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
17294 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
17296 * appdomain.c: set the missing filename when throwing exception.
17298 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
17300 * metadata.c (mono_type_size): code cleanup
17301 (mono_type_stack_size): removed some test code
17303 2002-07-21 Miguel de Icaza <miguel@ximian.com>
17305 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
17306 mono_get_exception_file_not_found now.
17308 * exception.c (mono_exception_from_name_two_strings): New version
17309 that will call a constructor with two string arguments.
17310 (mono_get_exception_file_not_found): New helper routine, used to
17311 report file-not-found errors.
17313 2002-07-20 Dick Porter <dick@ximian.com>
17316 * process.c: Pass file handles to CreateProcess
17320 * file-io.c: Implemented CreatePipe
17322 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
17324 * metadata.c (mono_get_param_info): set alignment for value types
17326 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
17328 * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
17329 Constify mono_domain_assembly_open().
17330 * loader.c: handle null namespace in icalls.
17332 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
17334 * marshal.c (emit_ptr_to_str_conv): marshal object as structs
17335 (emit_str_to_ptr_conv): marshal object as structs
17337 * metadata.c (mono_type_to_unmanaged): marshal object as structs
17339 * marshal.c (mono_marshal_get_runtime_invoke): support value types
17341 2002-07-18 Dietmar Maurer <dietmar@ximian.com>
17343 * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
17344 (mono_marshal_get_native_wrapper): we an now return value types
17346 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17348 * verify.c: more checks implemented.
17350 2002-07-17 Dietmar Maurer <dietmar@ximian.com>
17352 * marshal.c (mono_delegate_to_ftnptr): invoke the right method
17354 (mono_marshal_get_native_wrapper): allow byref arguments
17355 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
17356 impl. PtrToStringXXX methods
17357 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
17358 (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
17359 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
17360 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
17361 (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
17363 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17365 * reflection.c: fix buglet in parsing an assembly name.
17367 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
17369 * marshal.c (emit_ptr_to_str_conv): first impl.
17371 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17373 * object.c, class.h: cache the vtable in the class as suggested by
17374 vargaz@freemail.hu (Zoltan Varga).
17376 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17378 * class.h, loader.c: added mono_field_from_token().
17379 * verify.c: first cut of type checking code.
17381 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
17383 * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
17385 2002-07-15 Dietmar Maurer <dietmar@ximian.com>
17387 * marshal.c (mono_marshal_get_native_wrapper): handle enum types
17389 (mono_marshal_get_remoting_invoke): impl.
17390 (mono_delegate_begin_invoke): impl.
17391 (mono_mb_emit_save_args): impl.
17392 (mono_delegate_end_invoke): impl.
17393 (mono_marshal_get_delegate_begin_invoke):
17394 (mono_marshal_get_delegate_end_invoke):
17395 (mono_marshal_get_delegate_invoke): generate a special name for
17396 those methods (including the signature) and associate them whith
17397 the delegate class.
17399 2002-07-13 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
17402 (mono_reflection_type_from_name): now it has a MonoImage parameter
17403 which is used as the default image to search the type in. If the image
17404 is NULL or getting the type from it fails, it defaults to corlib.
17406 * icall.c: changed 1 call to mono_reflection_type_from_name to match
17409 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17411 * reflection.c: update the parameter table index.
17413 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17415 * domain.c: don't include the mark byte in the string hash.
17417 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17419 * icall.cs: icall for Type.GetTypeCode ().
17420 * verify: a couple of fixes and disabled local initialization checks.
17422 2002-07-12 Dietmar Maurer <dietmar@ximian.com>
17424 * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
17426 * debug-helpers.c (mono_method_full_name): print the type of the
17429 * metadata.c (mono_signature_hash): a hash function for signatures
17430 (mono_signature_hash): better hash algorithm
17432 * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
17434 * debug-helpers.c (mono_method_full_name): this can now generate
17435 method names with signatures
17437 * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
17438 method dont have this pointers.
17440 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
17442 * reflection.c: fixup typebuilder tokens.
17443 * image.c: fix buglet.
17444 * marshal.h: remove whitespace.
17445 * metadata.h, metadata.c: reinstate code that was removed.
17446 * verify.c: handle catch directives and fix another couple of bugs.
17448 2002-07-11 Dietmar Maurer <dietmar@ximian.com>
17450 * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
17451 (mono_marshal_get_native_wrapper): make it comp. with the old code
17452 (mono_marshal_get_native_wrapper): support boolean
17453 (mono_marshal_get_managed_wrapper): support more types
17455 2002-06-25 Dietmar Maurer <dietmar@ximian.com>
17457 * class.c (class_compute_field_layout): compute class->blittable attribute.
17459 2002-07-09 Dick Porter <dick@ximian.com>
17461 * threads.c: Make the thread cleaning up cope with threads that
17464 2002-07-08 Radek Doulik <rodo@ximian.com>
17466 * reflection.c (method_encode_code): use non-translated values to
17467 compute finally_start, this fixes exception handling on ppc, yay!
17469 * decimal.h (struct signscale): fix endianess
17471 2002-07-07 Radek Doulik <rodo@ximian.com>
17473 * reflection.c: swap box_val and not val
17475 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17477 * reflection.c, reflection.h: handle full assembly info in type name.
17478 Handle Type arguments when loading custom attributes.
17479 * icall.c: updated to use new mono_reflection_type_from_name () method.
17481 2002-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17484 (method_from_memberref): also print assembly name when method not found.
17486 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17489 (ves_icall_TypeGetProperties): fixed bug #27473.
17491 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17493 * reflection.c: display image name and token when cannot find the
17494 .ctor for an attribute.
17496 2002-07-05 Martin Baulig <martin@gnome.org>
17498 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17500 2002-07-04 Dick Porter <dick@ximian.com>
17502 * threads.c (mono_thread_cleanup): Nasty kludge to get this to
17503 compile on mingw. This will cause mingw builds to not wait for
17504 subthreads to terminate after the main thread does. I've lodged a
17505 bug with the mingw developers for them to wrap OpenThread().
17507 2002-07-03 Dick Porter <dick@ximian.com>
17509 * threads.c: Store thread IDs instead of handles, because
17510 GetCurrentThread() returns a pseudohandle and therefore stores
17511 useless values. mono_thread_cleanup() continues checking the
17512 array of threads until it is empty, to cope with subthreads
17513 spawning new threads after the main thread has finished.
17517 * profiler-private.h: Pass the thread ID to thread profiler
17518 functions, instead of a handle
17520 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
17522 * verify.c: fixes to make it more usable.
17523 * pedump.c: added --verify code to verify IL code in an assembly.
17525 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17527 * reflection.c: turn errors into warnings to allow compiling corlib.
17529 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
17531 * reflection.c: add special cases to compile corlib.
17533 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17535 * reflection.c: handle properties with only a set method.
17537 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
17539 * opcodes.h: add enum with opcodes in opval order.
17541 2002-07-01 Dick Porter <dick@ximian.com>
17544 * object.c (mono_runtime_run_main): Removed unneeded argument
17546 2002-06-28 Martin Baulig <martin@gnome.org>
17548 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
17550 2002-06-27 Dick Porter <dick@ximian.com>
17552 * threads.c: Store the handle in both the parent thread and in the
17553 subthread, to minimise the time between starting a new thread and
17556 2002-06-26 Dick Porter <dick@ximian.com>
17558 * appdomain.c (mono_runtime_cleanup): Close the socket library
17559 after all the threads have finished, not before
17561 2002-06-26 Martin Baulig <martin@gnome.org>
17563 * debug-symfile.c (mono_debug_find_source_location): Added
17564 `guint32 *line_number' argument. If it's not NULL, store the line number
17565 there and return the file name without the line number.
17567 2002-06-25 Dick Porter <dick@ximian.com>
17571 * process.c: Process forking and other support functions
17573 2002-06-25 Dick Porter <dick@ximian.com>
17575 * image.c (do_mono_image_open): Set ref_count to 1, so that bad
17576 things dont happen when the image is closed.
17577 (mono_image_lookup_resource): Walk the resource section looking
17578 for a particular entry
17580 * cil-coff.h: PE resource section decoding
17582 2002-06-25 Dick Porter <dick@ximian.com>
17586 (mono_assembly_foreach): Accessor functions to walk the list of
17588 (mono_assembly_set_main):
17589 (mono_assembly_get_main): Process methods need to know which
17590 assembly is the "main" one
17592 * object.c (mono_runtime_run_main): Record the main assembly
17594 * debug-helpers.c: Fix typo
17596 2002-06-24 Dietmar Maurer <dietmar@ximian.com>
17598 * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
17599 (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
17601 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17603 * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
17605 2002-06-21 Miguel de Icaza <miguel@ximian.com>
17607 * image.c (do_mono_image_open): Initialize reference count,
17608 otherwise we leak the MonoImage.
17610 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17612 * reflection.c: small tweak to handle self-hosting.
17614 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17616 * reflection.c: fix type name parse code.
17618 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17620 * reflection.c: break out of the loop.
17621 * image.c: special case corlib.
17623 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17625 * reflection.c: add all the custom attrs at the end to ensure the
17626 ctors have been properly initialized when the attributes are defined
17627 in the current assembly.
17629 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17631 * reflection.c: handle correctly multiple-nested types.
17633 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17635 * row-indexes.h: fix typos.
17636 * reflection.c: adjust for typos and fix method_def_or_ref
17637 encoding in MethodImpl table.
17639 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17641 * reflection.c: fix entry point patching (thanks Serge!).
17643 2002-06-18 Dietmar Maurer <dietmar@ximian.com>
17645 * verify.c: add check for System.Exception
17647 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
17649 * image.c, class.c: minifix for code just c&p'ed.
17650 * reflection.c: warning fix.
17651 * object.h, loader.h, domain.c: load also StringBuilder.
17653 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
17655 * marshal.h, marshal.c: some support code to handle complex marshaling.
17657 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17659 * class.h, class.c, reflection.c: handle ignorecase in GetType ().
17660 Better signatures with vtable error dump.
17662 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
17664 * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
17666 2002-06-17 Dietmar Maurer <dietmar@ximian.com>
17668 * icall.c (ves_icall_Type_GetField): impl.
17670 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17672 * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
17673 to retrieve a marshal description blob for a field or param.
17675 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17677 * reflection.h, reflection.c: change order of nested type emission
17678 to avoid table corruption. The NestedTypes table is sorted.
17679 * icall.c: change order of GetConstructor results to workaround mcs bug.
17681 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17683 * reflection.h, reflection.c: handle field and param marshal
17686 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
17688 * icall.c, marshal.c marshal.h: more Marshal class implementation.
17690 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17692 * reflection.c: fix call convention.
17694 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17696 * reflection.h, reflection.c: mono_image_get_memberref_token()
17697 takes a type instead of a class, now. Added
17698 mono_image_get_array_token() to create tokens for the special
17699 multi-dim array methods.
17701 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17703 * assembly.c: handle modules (no assembly table). Split
17704 loading references in its own function.
17705 * class.c: handle moduleref resolution scope.
17706 * image.c, image.h: cache module name in image.
17708 2002-06-07 Martin Baulig <martin@gnome.org>
17710 * reflection.c (mono_image_get_type_info): Only add a class layout entry
17711 if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
17713 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17715 * icall.c: more signature fixes that used uint instead of int.
17717 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17719 * reflection.c: fixed signature of field refs.
17721 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17723 * class.c, reflection.c: handle typerefs of nested types
17724 (both on read and when writing files).
17726 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
17728 * icall.c: fix method signatures that tried to workaround the previous
17731 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
17733 * debug-helpers.c: fix typo.
17735 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
17737 * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
17738 rewrote the PE/COFF writing code (our programs are understood by the
17741 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
17743 * gc.c, gc.h, icall.c: weakreference support.
17745 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
17747 * Makefile.am, mono-config.c: use $(sysconfdir).
17749 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
17751 * icall.c: changed default precision of Double.ToString() to 15.
17752 Fixed memory leak. Unified with Single.ToString.
17754 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
17756 * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
17758 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
17760 * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
17761 gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
17762 warnings and compilation fixes from Dennis Haney (davh@davh.dk)
17765 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17767 * debug-symfile.c, sysmath.c: yet more compilation fixes.
17769 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17771 * reflection.c, socket-io.c: more compilation fixes.
17773 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17775 * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
17776 domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
17777 unicode.c: warning and compiler compatibility fixes.
17779 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17781 * class.h, metadata.c: fixed warnings/compilation errors.
17783 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
17785 * Makefile.am, mono-config.c, mono-config.h: configuration file
17787 * loader.c, loader.h: make Dll mapping configurable at runtime in the
17788 config file. Export methods to insert and lookup mappings.
17790 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17792 * reflection.c: handle types and boxed objects in custom attr
17795 2002-05-30 Martin Baulig <martin@gnome.org>
17798 (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
17800 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
17802 * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
17803 to lookup the implmap row for a P/Invoke method.
17804 * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
17805 P/Invoke method from the runtime on an as needed basis.
17807 2002-05-28 Dietmar Maurer <dietmar@ximian.com>
17809 * metadata.c (mono_metadata_parse_signature): impl.
17811 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
17813 * class.c: handle .pack directive.
17815 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17817 * object.c: initialize static fields with RVA data.
17819 2002-05-25 Martin Baulig <martin@gnome.org>
17822 (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
17824 2002-05-24 Martin Baulig <martin@gnome.org>
17827 (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
17828 (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
17829 `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
17831 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
17833 * object.c: special case string ctros in invoke.
17834 * gc.c: silly whitespace changes.
17836 2002-05-23 Dietmar Maurer <dietmar@ximian.com>
17838 * threadpool.[ch]: impl. a threadpool that can
17839 be used by mint and mono.
17841 2002-05-22 Martin Baulig <martin@gnome.org>
17843 * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
17844 The first argument is now a `MonoReflectionModuleBuilder *', the return
17845 value is a `MonoReflectionModuleBuilder *'. Use the AssemblyBuilder's
17846 `methods' field to get the method builder. The `token' argument is the
17849 * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
17850 invalid characters instead of g_assert_not_reached()ing. This seems
17851 to be the behaviour of mscorlib.
17853 2002-05-22 Dietmar Maurer <dietmar@ximian.com>
17855 * object.c (mono_runtime_invoke_array): applied patch from Rachel
17856 Hestilow to fix bug #25104
17858 2002-05-21 Martin Baulig <martin@gnome.org>
17860 * debug-symfile.c (mono_debug_find_source_location): New function.
17861 Looks up an IL offset in the line number table and returns the source
17862 location as a string.
17864 2002-05-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17867 (mono_double_ToStringImpl): changed %f by %g until we have something
17870 2002-05-21 Nick Drochak <ndrochak@gol.com>
17872 * icall.c : Use different name for Math.Pow's icall. Needed to check
17873 parameters first in C#.
17875 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
17877 * icall.c, reflection.h: added icall to get info about an event.
17879 2002-05-20 Radek Doulik <rodo@ximian.com>
17881 * object.c (mono_value_box): don't use memcpy for boxing on BIG
17883 (mono_value_box): don't use memcpy for small sizes on
17884 architectures with unaligned access
17886 2002-05-20 Martin Baulig <martin@gnome.org>
17888 * reflection.c (mono_reflection_setup_internal_class): Don't crash
17889 if `tb->parent == NULL'.
17890 (mono_reflection_create_internal_class): New function. This is
17891 called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
17894 * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
17897 2002-05-19 Martin Baulig <martin@gnome.org>
17899 * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
17900 argument to get the length, don't default to the array length.
17902 2002-05-18 Miguel de Icaza <miguel@ximian.com>
17904 * assembly.c (mono_assembly_setrootdir): New function used to
17905 override the MONO_ASSEMBLIES directory.
17907 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
17909 * icall.c: ValueType_GetHashCode() initialize local var.
17911 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
17913 * reflection.c: sort custom attributes table.
17915 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17917 * reflection.c: support named args in custom attributes (write support).
17919 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
17921 * reflection.c: fix finally position calculation.
17923 2002-05-15 Radek Doulik <rodo@ximian.com>
17925 * reflection.c: fixed endianess at many places
17927 * icall.c (ves_icall_InitializeArray): comment out debug msg
17929 2002-05-15 Dietmar Maurer <dietmar@ximian.com>
17931 * object.c (mono_unhandled_exception): new function to handle
17932 unhandled exceptions.
17933 (mono_unhandled_exception): call the UnhandledException event.
17934 (mono_runtime_delegate_invoke): impl.
17936 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
17938 * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
17939 returns the RVA, not the direct pointer to the data. Handle the case
17940 when the class size is fixed.
17942 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
17944 * reflection.c: fix some endianess issues.
17946 2002-05-14 Dietmar Maurer <dietmar@ximian.com>
17948 * object.c (mono_runtime_invoke): is now able to catch exceptions.
17950 * threads.c (mono_thread_init): added a callback which is invoked
17953 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
17955 * icall.c: make GetHashCode return non-negative values.
17957 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
17959 * object.c, icall.c, gc.c: revert to address-based hashcode.
17961 2002-05-13 Miguel de Icaza <miguel@ximian.com>
17963 * icall.c (mono_double_ParseImpl): Added ParseImpl method.
17965 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
17967 * icall.c, class.c: special case <Module>.
17969 2002-05-13 Dan Lewis <dihlewis@yahoo.co.uk>
17971 * icall.c: fix bug in GetNow().
17973 2002-05-11 Dietmar Maurer <dietmar@ximian.com>
17975 * object.c (mono_runtime_class_init): make sure that we call all
17976 static class constructors.
17978 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17980 * reflection.c: sort methodsemantics table.
17982 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
17984 * reflection.h, reflection.c: honour init locals setting.
17986 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
17988 * icall.c: copied Double ToStringImpl for Single ToStringImpl
17990 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
17992 * reflection.c: support ContructorBuilders in attribute blob creation.
17994 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
17996 * reflection.c: some changes to build a binary that can be run
17997 directly in windows.
17999 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18001 * loader.c: print a big message when an icall can't be found.
18003 2002-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18005 * string-icalls.c: fix bug 24248.
18007 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18009 * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
18010 icall.c, reflection.h: separate assembly loading by pathname and by
18011 assembly name. Use the MONO_PATH env var to search for assemblies.
18013 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18015 * assembly.c, image.h: add some support for assemblies
18016 with multiple modules.
18017 * class.c, class.h: export mono_class_from_typeref().
18018 * loader.c: remove duplicated code and use mono_class_from_typeref(),
18021 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18023 * unicode.c: Char.IsNumber doesn't include hex digits as the ms
18024 documentation says (the ECMA one is correct).
18026 2002-05-02 Dick Porter <dick@ximian.com>
18028 * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
18029 Don't name the synchronisation mutex.
18031 2002-04-30 Jeffrey Stedfast <fejj@ximian.com>
18034 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
18035 Make the prototypes match.
18036 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
18040 (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
18041 systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
18042 all systems have tm.tm_zone, so use strftime() with %Z to print
18043 the timezone abreviation into a temp string.
18045 * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
18046 rather than mono_array_addr() on a MonoString on Big Endian
18049 2002-04-30 Dietmar Maurer <dietmar@ximian.com>
18051 * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
18054 2002-04-30 Dick Porter <dick@ximian.com>
18056 * socket-io.c: Cope with SOCKET being an integer rather than a
18059 * threads.c: Added Thread_free_internal, to deal with thread
18060 handle cleanup. Moved calls to handle_store() and handle_remove()
18061 to start_wrapper(), so each can only be called once. Allocate
18062 synchronisation blocks with GC_malloc(), and use GC finalisation
18063 to close the handles.
18065 * icall.c: added System.Threading.Thread::Thread_free_internal
18067 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18069 * icall.c: support Environment.Exit, CommandLineArgs().
18071 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18073 * object.c, object.h: added mono_runtime_run_main () and
18074 mono_runtime_get_main_args () for use in System.Environment.
18076 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18078 * gc.c: fix thinko, enable actual finalization since the jit is now
18081 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18083 * gc.c, object.c: take into account that an object may be offset wrt the address
18084 returned by GC_malloc().
18086 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
18088 * image.c: handle files without entries in the assembly table (modules).
18090 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
18092 * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow
18093 mcs selfhosting again (build breaker) and did move the check to class instead. parent is
18094 allowed to be null when it's System.Object class setup.
18096 2002-04-27 Martin Baulig <martin@gnome.org>
18098 * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
18099 if `tb->parent == NULL' rather than crashing.
18101 2002-04-28 Nick Drochak <ndrochak@gol.com>
18103 * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error. Was
18104 calling acos() where asin() should have been called.
18106 2002-04-26 Martin Baulig <martin@gnome.org>
18108 * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
18109 instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
18110 there's a subdirectory called `System', but we don't want to read that
18111 subdirectory as an assembly.
18113 2002-04-25 Martin Baulig <martin@gnome.org>
18115 * debug-symfile.c: Reflect latest MonoString changes.
18117 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18119 * rand.c, rand.h: instance method icalls need to have an explicit
18120 this pointer as first argument in the C implementation.
18122 2002-04-25 Nick Drochak <ndrochak@gol.com>
18124 * icall.c: Fix typo in map for GetNonZeroBytes
18126 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
18128 * string-icalls.c : String does now passes unit tests without any
18129 errors, the following changes has been made:
18131 Implemented replace methods.
18132 Renaming of methods to (try) follow the standard.
18133 Fixed compare ordinal
18134 Made all memory allocated directly to function instead of via icall function.
18135 Small performance fix in is_in_array function
18137 (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
18139 c (mono_string_Internal_ctor_charp_int_int):
18140 (mono_string_Internal_ctor_sbytep_int_int): Removed check for
18141 sindex < 0, throw ArgumentOutOfRangeException instead of
18142 ArgumentNullException.
18144 Added new check for length == 0, however
18145 I need to make it return String.Empty from the C code.
18147 (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
18148 that calculate the length for us here.
18150 (mono_string_Internal_ctor_sbytep_int_int): Replaced
18151 mono_string_new_utf16 with mono_string_new, since value is utf8.
18153 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18155 * object.c: register the object for finalization if needed.
18156 Allocate one more char in the string for the terminating 0 char.
18158 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18160 * class.c, class.h, image.c: check if a type implemenst a destructor.
18161 Use the proper key for array class lookups.
18162 * icall.c: register the icalls in the System.GC class.
18163 * gc.c, gc.h: GC-related functions and icalls.
18165 2002-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18169 * unicode.c: free some strings gotten from mono_string_to_utf8 and
18170 changed a couple of free () by g_free ().
18172 * decimal.c: one-liner in the comments for decimal2string ().
18174 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
18176 * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
18178 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
18180 * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
18181 * object.c (mono_runtime_invoke_array) : handle null in params
18183 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
18185 * string-icalls.c: fixed bug in split (one off bug)
18187 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
18189 * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
18190 * icalls.c: added String::Equals as internal method
18192 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
18194 * threads.c: fixed bug in the double interlocked functions
18196 2002-04-22 Patrik Torstensson <patrik.torstensson@labs2.com>
18198 * threads.c: implemented all of the new interlocked icalls.
18199 * string-icalls.c: fix a bug in insert.
18200 * icalls.c: added the icalls for interlocked, removed old string functions.
18202 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18204 * loader.c: fix off-by-one error when reading argument names.
18206 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18208 * profiler.c: win32 counter implementation (untested).
18209 * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
18210 (the latter needs testing and more complete impl. from win32 folks).
18212 2002-04-21 Dan Lewis <dihlewis@yahoo.co.uk>
18214 * object.c: mono_array_new_full workaround mono_array_class_get
18217 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
18219 * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
18220 * object.h (mono_string_chars): Changed casting type.
18222 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
18224 * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
18225 method signatures to use gunichar2 instead of gint16.
18227 2002-04-20 Dan Lewis <dihlewis@yahoo.co.uk>
18229 * object.h, object.c: domain-specific versions of mono_object_new and
18232 2002-04-20 Dietmar Maurer <dietmar@ximian.com>
18234 * object.c: changed String layout
18236 * string-icalls.c (mono_string_Internal_ctor_chara): added
18237 internal string constructors.
18239 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
18241 * threads.c: pass 'this' to the thread start routine.
18243 2002-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18245 * string-icalls.c: fix IndexOf and LastIndexOf. Now
18246 InternalCompareStr don't call twice mono_string_cmp_char for the last
18247 character. Improved performance in mono_string_cmp_char.
18249 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18251 * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
18252 code into its own library: libmonoruntime.
18254 2002-04-19 Dan Lewis <dihlewis@yahoo.co.uk>
18256 * object.h, object.c: changed array format so that szarrays do not
18257 require a bounds structure.
18258 * icall.c, appdomain.c: support for new szarray format.
18260 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
18262 * metadata.c: compare also the retuns type when comparing signatures:
18263 we didn't do this as an optimization since really overloaded methods
18264 must differ also in the arguments, but this doesn't work with
18265 low-level IL code (or when using explicit conversion operators: see
18266 bug#23498 for an example).
18268 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18270 * loader.c: SZARRAY types can be saved as TYPESPEC, too.
18272 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18274 * icall.c: make MonoType::GetElementType its own icall.
18276 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18278 * icall.c: remove MonoMethod_get_Name().
18279 * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
18282 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
18284 * string-icalls.c: optimized a few methods.
18286 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
18288 * icall.c: added all new string internal calls
18289 * string-icalls.c: added, new string internal call implementation.
18290 * object.c: added mono_string_new_size for allocating a string a size
18292 2002-04-17 Dietmar Maurer <dietmar@ximian.com>
18294 * object.c (mono_object_isinst): use the same code as in the
18295 optimized x86 version.
18297 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18299 * profiler.c: TSC-based timer code (faster and more accurate).
18300 Not hooked up in configure, yet (set USE_X86TSC to 1).
18302 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
18304 * profiler.c, profiler.h: track time spent compiling methods.
18305 * threads.c: track thread creation/destruction.
18307 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
18309 * profiler.c, profiler.h, profiler-private.h: profiling interface
18310 and sample implementation. Moved here so that it can be used also by
18313 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
18315 * reflection.c, reflection.h: keep types and other handles separate in
18316 the hash tables for referred tokens. Add guid for modules.
18318 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18320 * assembly.c: fix bugs found with valgrind.
18321 * metadata.h, metadata.c: added mono_metadata_guid_heap().
18323 2002-04-14 Patrik Torstensson <patrik.torstensson@labs2.com>
18325 * threads: added icall support for getting current domain for
18328 2002-04-13 Martin Baulig <martin@gnome.org>
18330 * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
18331 (MonoDebugVarInfo): Added `index' field for register based addresses.
18332 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
18333 (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
18334 `MonoDebugVarInfo *params' and `guint32 this_offset' with
18335 `MonoDebugVarInfo *this_var'.
18337 * debug-symfile.c (relocate_variable): New static function to write
18338 a location description for a local variable or method parameter.
18340 2002-04-12 Martin Baulig <martin@gnome.org>
18342 * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
18343 stack offset and begin/end scope address of a local variable.
18344 (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
18345 'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
18346 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
18348 * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
18349 Added new relocation types for start/end scope of a local variable.
18351 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18353 * object.h: add mono_object_domain() macro.
18354 * reflection.c: handle typespecs.
18355 * icall.c: MonoMethod::get_Name() implementation.
18357 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18359 * icall.c: String::GetHashCode() icall implementation.
18361 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18363 * icall.c: String::IndexOfAny icall.
18364 * object.c, object.h: make array->max_length more useful.
18365 Intrduced mono_object_class() and mono_string_length() macros.
18367 2002-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18369 * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
18370 instead of g_unichar_isdigit.
18372 2002-04-11 Nick Drochak <ndrochak@gol.com>
18374 * icall.c: Implement a simple Double.ToString().
18376 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
18378 * appdomain.h: only io-layer.h is supposed to be included.
18379 * icall.c: explicitly import environ. Fix warning.
18381 2002-04-10 Nick Drochak <ndrochak@gol.com>
18383 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
18384 return true even if it's not Daylight Savings time.
18385 Only return false for the case where the function isn't
18386 implemented for a plaform (read Windows).
18388 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18390 * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
18393 2002-04-09 Dietmar Maurer <dietmar@ximian.com>
18395 * mempool.c (mono_mempool_alloc): only use g_malloc when
18396 absolutely necessary.
18398 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
18400 * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
18402 * class.c (mono_class_vtable): use domain mempool to allocate vtable
18403 (mono_class_proxy_vtable): use domain mempool
18405 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18407 * appdomain.h, appdomain.c: split initialization that requires the
18408 execution engine support into mono_runtime_init().
18410 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
18412 * class.c (mono_class_init): don't include vtable inside MonoClass
18413 to save some memory, gather some statistics.
18414 (mono_class_vtable): use g_malloc instead of GC_malloc when possible
18416 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18418 * icall.c: internalcall implementation for ValueType.Equals().
18420 2002-04-06 Dietmar Maurer <dietmar@ximian.com>
18422 * object.c (mono_message_init): moved
18423 (mono_runtime_exec_main): new arch. independent impl.
18424 (mono_runtime_invoke_array): new method - like
18425 mono_runtime_invoke, but you can pass an array of objects.
18426 (mono_remoting_invoke): new arch. independent impl.
18427 (mono_message_invoke): new arch. independent impl.
18428 (mono_runtime_class_init): new arch. independent impl.
18429 (mono_runtime_object_init): new arch. independent impl.
18431 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18433 * metadata.c, object.c, reflection.c: documented the exported
18436 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
18438 * icall.c: simpler code to pass the assembly builder data to corlib.
18439 Implement GetNestedTypes() internalcall.
18441 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18443 * class.c: warn if a type can't be loaded.
18445 2002-04-04 Dietmar Maurer <dietmar@ximian.com>
18447 * image.h: typedef MonoImageOpenStatus
18448 * types.h: removed unused file
18450 2002-04-04 Dan Lewis <dihlewis@yahoo.co.uk>
18452 * icall.c: Enum_ToObject accepts enum value arguments.
18454 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18456 * class.c: move initialization of properties, events and nested
18457 classes, so that they happen for interfaces, too.
18459 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18461 * icall.c: cleanup some ugly casts in Array_SetValue*.
18463 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18465 * icall.c: the values array fro enums is of the correct type, now.
18466 Implement (correctly) getFullName instead of assQualifiedName for
18468 * reflection.h, reflection.c: added mono_type_get_name ().
18470 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18472 * assembly.c, image.h: for each MonoImage, record from wich assembly
18474 * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
18475 Make Type.Assembly work.
18477 2002-04-03 Dietmar Maurer <dietmar@ximian.com>
18479 * debug-symfile.h: use char* instead of gpointer to avoid
18482 * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
18484 * icall.c (ves_icall_InternalExecute): impl. FielSetter
18485 (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
18487 2002-03-30 Dietmar Maurer <dietmar@ximian.com>
18489 * icall.c (mono_message_init): impl. (code cleanup)
18490 (ves_icall_InternalExecute): impl. FieldGetter
18492 * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
18493 defined we call all (non-static)methods through the vtable.
18495 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
18497 * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
18498 finalizer even though the memory is still referenced (and the chunk of
18499 memory is not freed).
18501 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
18503 * assembly.c: fix brokeness.
18505 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
18507 * class.c: kill some warnings. Check explicit interface method
18508 implementation also without considering the namespace.
18509 Load also literal strings in static class data.
18511 2002-03-29 Miguel de Icaza <miguel@ximian.com>
18513 * assembly.c (default_assembly_name_resolver): Kill memory leak.
18514 (default_assembly_name_resolver): Make the resolver take the
18515 "base" directory where the assembly was originally defined, so we
18516 can load DLLs that are in the same directory as the assembly that
18517 is being referenced.
18519 2002-03-28 Dick Porter <dick@ximian.com>
18525 * unicode.c: Warning cleanups
18527 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
18529 * object.h, reflection.h: use the correct type instead of MonoObject.
18531 2002-03-28 Martin Baulig <martin@gnome.org>
18533 * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
18534 (mono_debug_update_symbol_file): Initialize classes if necessary.
18536 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18538 * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
18539 rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
18541 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
18543 * assembly.h: fix function prototype.
18544 * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
18545 * mono-endian.h: use const cast.
18547 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
18549 * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
18551 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18553 * loader.c: don't assert when a typeref can't be loaded, give
18554 a chance to the runtime to trow an exception instead.
18555 * loader.h: fix warning.
18557 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
18559 * class.c (mono_class_proxy_vtable): added proxy support
18561 2002-03-27 Dan Lewis <dihlewis@yahoo.co.uk>
18563 * icall.c: removed last of PAL calls, added System.Environment
18564 * file-io.h, file-io.c: MonoIO implementation
18565 * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
18567 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18569 * appdomain.c: do not use the byte marker in ldstr table lookup.
18570 * debug-helpers.c: allow two ':' to separate class and method name.
18571 * object.c: allocate arrays bounds with the GC, too.
18572 * verify: add a few more checks.
18574 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
18576 * reflection.c: output also literal strings. Allocate parameter data
18577 with GC_malloc() (thanks, Martin, for catching this!).
18579 2002-03-26 Martin Baulig <martin@gnome.org>
18581 * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
18582 include the `this' offset in the `param_offsets'.
18584 2002-03-25 Martin Baulig <martin@gnome.org>
18586 * debug-symfile.c (mono_debug_update_symbol_file): Use a new
18587 mono_debug_get_class() function to get the classes. Added new
18588 relocation types for arrays and strings.
18589 (mono_debug_get_class): New static function to search in all
18590 referenced assemblies for a metadata token.
18592 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
18594 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
18596 * reflection.h, reflection.c: use a gc-safe hash for hash tables that
18597 hold gc-allocated objects. Make the string heap a stream like the
18598 others. Removed duplicated code when writing stream info.
18599 Added asserts to catch possible buffer overflows. Set the sorted map
18600 for tables that need sorting. Added some documentation.
18602 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
18604 * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table
18605 for interned strings and vtables.
18607 2002-03-24 Martin Baulig <martin@gnome.org>
18609 * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
18610 it in the array since it was created with g_slist_prepend().
18612 2002-03-24 Martin Baulig <martin@gnome.org>
18614 * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
18615 to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
18616 (mono_debug_method_from_token): Renamed to
18617 ves_icall_Debugger_MonoSymbolWriter_method_from_token().
18618 (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
18620 * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
18623 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
18625 2002-03-24 Martin Baulig <martin@gnome.org>
18627 * debug-symfile.c (mono_debug_local_type_from_signature): New func.
18628 (mono_debug_method_from_token): New func.
18630 * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
18631 New interncall, calls mono_debug_local_type_from_signature().
18632 (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
18633 calls mono_debug_method_from_token().
18635 2002-03-23 Martin Baulig <martin@gnome.org>
18637 * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
18638 specifies the number of bytes to be converted, not the array size.
18639 Return the number of chars, not the number of bytes.
18640 (ves_icall_iconv_get_chars): The `byteCount' argument
18641 specifies the number of bytes to be converted, not the array size.
18643 2002-03-23 Martin Baulig <martin@gnome.org>
18645 * reflection.h (MonoReflectionSigHelper): New type.
18647 * reflection.c (mono_reflection_sighelper_get_signature_local),
18648 (mono_reflection_sighelper_get_signature_local): New functions.
18650 * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
18651 (System.Reflection.Emit.SignatureHelper::get_signature_field): New
18654 2002-03-23 Martin Baulig <martin@gnome.org>
18656 * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
18657 is_writeable is set.
18658 (mono_raw_buffer_update): New function to write the modified map
18661 * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
18663 * debug-symfile.c (mono_debug_update_symbol_file): Call
18664 mono_raw_buffer_update() when done writing.
18666 2002-03-23 Martin Baulig <martin@gnome.org>
18668 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
18670 * debug-symfile.c: Added support for arguments and local variables.
18672 2002-03-23 Dick Porter <dick@ximian.com>
18674 * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
18675 protected by ifdefs, hence breaking the w32 build.
18677 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18679 * object.c: implement is_interned() the right way.
18681 2002-03-21 Martin Baulig <martin@gnome.org>
18683 * debug-symfile.[ch]: New files to handle debugging information
18684 files. There's also support to dynamically update these symbol
18685 files to include machine dependent information.
18687 2002-03-20 Dietmar Maurer <dietmar@ximian.com>
18689 * threads.c (mono_thread_create): new function to create thread
18692 2002-03-20 Martin Baulig <martin@gnome.org>
18694 * icall.c (ves_icall_InternalInvoke): Create a new object if the
18695 method is a constructor.
18696 (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
18697 points to ves_icall_InternalInvoke().
18699 2002-03-20 Dan Lewis <dihlewis@yahoo.co.uk>
18701 * file-io.c: Flush shouldn't throw exceptions.
18703 2002-03-19 Dan Lewis <dihlewis@yahoo.co.uk>
18705 * file-io.c: FileStream flush support; FileSetLength now
18706 restores file pointer.
18708 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
18710 * class.c: set image for pointer classes.
18712 2002/03/19 Nick Drochak <ndrochak@gol.com>
18714 * sysmath.c: Forgot one.
18716 2002-03-18 Miguel de Icaza <miguel@ximian.com>
18718 * sysmath.c: Avoid redefining existing names.
18720 2002-03-18 Dan Lewis <dihlewis@yahoo.co.uk>
18722 * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
18723 handled by runtime as icall rather than dllimport from libm.so
18724 * file-io.c, file-io.h: fixed handle argument type.
18726 2002-03-18 Dick Porter <dick@ximian.com>
18728 * reflection.c (mono_image_get_type_info): rename interface to
18729 iface, because of "#define interface struct" on windows.
18731 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
18733 * class.c, class.h: rename and export mono_ptr_class_get().
18734 * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
18735 * reflection.c, reflection.h, icall.c: better/saner type name
18736 parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
18739 2002-03-14 Dietmar Maurer <dietmar@ximian.com>
18741 * class.c (mono_class_init): removed hardcoded GHC_SLOT
18743 * icall.c (ves_icall_InternalInvoke): impl.
18745 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
18747 * reflection.c: output the interface map table, too.
18749 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
18751 * class.c (class_compute_field_layout): separate computation of
18752 static field layout
18754 2002-03-12 Dan Lewis <dihlewis@yahoo.co.uk>
18756 * icall.c: added System.Buffer support.
18757 * file-io.c: moved file icalls from PAL to FileStream.
18759 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
18761 * icall.c (ves_icall_System_Object_GetHashCode): impl.
18763 2002-03-11 Dietmar Maurer <dietmar@ximian.com>
18765 * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
18767 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
18769 * verify.c, verify.h: moved here the corlib/runtime consistency checks.
18771 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
18773 * debug-helpers.{c,h}: moved here from monograph some useful functions
18774 to locate a method by name/signature in a class or image. Included
18775 also a small and flexible IL disassembler.
18777 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
18779 * reflection.c: fixup tokens in methods with small header size, too.
18781 2002-03-08 Dietmar Maurer <dietmar@ximian.com>
18783 * object.c (mono_string_to_utf8): remove assert(!error), instead
18786 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
18788 * icall.c: update to the new mono_Array_class_get interface.
18790 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
18792 * appdomain.c, object.c: Boehm-GC enable.
18793 * icall.c: make get_data_chunk() support split data requests.
18794 Ensure a class is initialized in more cases. Return only the first
18795 property found in GetProperties() or the compiler gets confused.
18796 Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
18797 * reflection.h, reflection.c: add fixup mechanism for field and method
18798 tokens. Initialize assembly->typeref in a single place. Output
18799 properties after events. Support custom attributes for events, too.
18800 Typo fix for paramter custom attrs.
18802 2002-03-07 Martin Baulig <martin@gnome.org>
18804 * icall.c (ves_icall_System_Array_FastCopy): Small fix.
18806 2002-03-07 Dietmar Maurer <dietmar@ximian.com>
18808 * class.c (mono_array_class_get): fix. for multi. dim. arrays
18810 2002-03-06 Martin Baulig <martin@gnome.org>
18812 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
18813 non-zero lower bounds. See testcases #F10-#F13.
18815 2002-03-05 Martin Baulig <martin@gnome.org>
18817 * exception.c (mono_get_exception_argument_out_of_range): New exception.
18819 * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
18820 ves_icall_System_Array_GetValue(), only calculate the absolute array position
18822 (ves_icall_System_Array_SetValue): Likewise.
18823 (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
18824 as argument and does the actual work. This function is used when copying a
18825 multi-dimensional array.
18826 (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
18827 now do all the widening conversions of value types.
18828 (ves_icall_System_Array_CreateInstanceImpl): Implemented.
18830 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
18832 * class.c: remove some magic numbers and use the smbolic names,
18833 instead. Added init_events() to load event info at class init time.
18834 * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
18835 and mono_metadata_methods_from_event().
18836 * reflection.h, reflection.c: added support for writing out the evnets
18837 related information.
18839 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
18841 * reflection.h, icall.c: use a different method (GetInterfaces)
18842 to gather interface info and add isbyref, isprimitive and
18843 ispointer to the ves_icall_get_type_info() return value.
18845 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
18847 * class.h: stared adding support for events.
18848 * icall.c: split find_members implementation. Added debug icall to get
18849 the address of an object.
18850 * reflection.c: handle TypeBuilders in mono_type_get_object().
18852 2002-03-01 Martin Baulig <martin@gnome.org>
18854 * icall.c (ves_icall_System_Array_GetLength): This must throw an
18855 ArgumentOutOfRangeException(), not an ArgumentException().
18856 (ves_icall_System_Array_GetLowerBound): Likewise.
18857 (ves_icall_System_Array_GetValue): Improved argument checking.
18858 (ves_icall_System_Array_SetValue): Improved argument checking.
18860 2002-03-01 Martin Baulig <martin@gnome.org>
18862 * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
18863 called with invalid arguments rather than just dying with g_assert().
18864 (ves_icall_System_Array_SetValue): Likewise.
18865 (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
18866 raise a NotImplementedException instead.
18867 (ves_icall_System_Array_GetLength): Added argument checking.
18868 (ves_icall_System_Array_GetLowerBound): Added argument checking.
18870 2002-03-01 Dietmar Maurer <dietmar@ximian.com>
18872 * object.h (mono_assert): new macros mono_assert and
18873 mono_assert_not_reached
18875 2002-02-28 Martin Baulig <martin@gnome.org>
18877 * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
18878 and "System::String::IsInterned" to "System::String::_IsInterned".
18880 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
18882 * icall.c: remove hacks for typebuilder. Added icall to create a
18883 modified type from a tybebuilder.
18884 * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
18885 in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
18886 to create a backing MonoClass for a TypeBuilder.
18888 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18890 * class.c, class.h: more refactoring of class init.
18891 Export mono_class_setup_mono_type() and mono_class_setup_parent().
18893 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
18895 * marshal.c, marshal.h: start of marshaling interface.
18897 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
18899 * icall.c: fix order in assembly qualified name icall.
18901 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
18903 * class.c: do not free str, since we store it in the hash table.
18904 * reflection.h: add label field to MonoILExceptionInfo.
18905 * reflection.c: handle references to more than one assembly. Handle
18906 case when there isn't a module created in the assembly.
18908 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
18910 * class.c: Fix typo. Start refactoring of class init code.
18912 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
18914 * appdomain.c: exit with 1 on error.
18915 * class.c: we already have the name in MonoClassField.
18916 * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
18917 MonoStreamHeader instead of an offset of image->raw_metadata.
18919 2002-02-26 Miguel de Icaza <miguel@ximian.com>
18921 * appdomain.c (mono_init): Be even more descriptive about the error.
18923 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
18925 * appdomain.c: give the user an informative message when corlib can't
18928 2002-02-26 Martin Baulig <martin@gnome.org>
18930 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
18931 New icall to get the time zone data.
18933 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
18935 * reflection.c: set virtual and raw size of section correctly.
18936 * threads.c: transfer domain information to newly created threads.
18938 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
18940 * class.c: when instancing a class in a domain, load the default
18941 vaules for static fields from the constant table. Fix System.Enum to
18943 * icall.c: implement Object::GetType() internalcall. Implemented
18944 MonoField::GetValue() internalcall. Avoid SEGV in search_method().
18945 Fixed checking of binding flags in find_members().
18946 * metadata.c, metadata.h: introduce mono_metadata_type_hash().
18947 * reflection.c: handle enumerations when writing to the constant
18948 table. Use a different object cache for types.
18951 2002-02-22 Dietmar Maurer <dietmar@ximian.com>
18953 * object.c (mono_object_isinst): fix for arrays
18955 * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
18957 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
18959 * object.c: don't use mprotect () and fix intern pool hash table
18960 lookup for big endian systems.
18962 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
18964 * icall.c: change type_is_subtype_of () signature.
18966 2002-02-21 Mark Crichton <crichton@gimp.org>
18968 * rand.c, rand.h: Added random number generator for
18969 System.Security.Cryptography classes.
18971 * exception.c, exception.h: Added mono_get_exception_not_implemeted.
18973 * icall.c: Added System.Security.Cryptography calls.
18975 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
18977 * class.c, icall.c, metadata.c: better support for pointer types.
18978 Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
18979 * reflection.c: Add support for getting custom attrs for properties
18980 and simplify some code.
18982 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
18984 * icall.c: change getToken () and add custom attribute GetBlob()helper
18986 * reflection.h: add custom attrs array to the reflection builder structures.
18987 * reflection.c: encode and emit custom attributes for all the relevant
18988 reflection objects. Cache fieldref and methodref tokens. Change
18989 mono_image_create_token() interface to take a MonoDynamicAssembly.
18990 More complete custom attributes decoder. Load custom attributes for
18991 Assembly, Field, Method and Constructor objects, too. Make the
18992 returned array an Attribute[] one, not object[]. Added
18993 mono_reflection_get_custom_attrs_blob() to encode the arguments of a
18994 custom attribute constructor.
18996 2002-02-20 Dick Porter <dick@ximian.com>
19000 * socket-io.c: Windows portability fixes (sometimes just ifdeffing
19001 problem code out for now).
19003 2002-02-19 Radek Doulik <rodo@ximian.com>
19005 * object.c (mono_ldstr): use hash table to avoid multiple swapping
19007 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
19009 * icall.c: register the GetCustomAttributes method.
19010 * object.c, object.h: add mono_string_new_len ().
19011 * reflection.h, reflection.c: added mono_runtime_invoke(),
19012 mono_install_runtime_invoke(). Added
19013 mono_reflection_get_custom_attrs () to load custom attributes and
19014 create the attribute objects.
19016 2002-02-19 Dick Porter <dick@ximian.com>
19017 * threads-dummy-types.c:
19018 * threads-dummy-types.h:
19021 * threads-pthread-types.c:
19022 * threads-pthread-types.h:
19023 * threads-pthread.c:
19024 * threads-pthread.h: Deleted obsolete files
19026 2002-02-19 Dietmar Maurer <dietmar@ximian.com>
19028 * class.c (mono_class_vtable): runtime init the class when we
19029 allocate static class data.
19031 * icall.c (ves_icall_System_Array_SetValue): check for null values.
19033 * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
19034 and String - but we will need generic marshalling support in the
19036 (mono_init): set the domain name in a ms compatible way
19038 * object.c (mono_string_new_utf16): bug fix: use char[] instead of
19041 2002-02-18 Dietmar Maurer <dietmar@ximian.com>
19043 * object.c (mono_array_clone): use alloca() instead of g_malloc
19046 * appdomain.c (mono_domain_unload): impl.
19048 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19050 * appdomain.c, object.c: fix intern pool implementation.
19051 * class.c: fix alignment code.
19053 2002-02-16 Radek Doulik <rodo@ximian.com>
19055 * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
19056 and s2 > s1, just copy lower bytes to be compatible with little
19057 endian (i.e. 64bit value & 0xffffffff --> 32bit value)
19058 (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
19060 * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
19061 force big_endian to be 1 for big endian machines
19062 (ves_icall_iconv_new_decoder): ditto
19064 2002-02-16 Jeffrey Stedfast <fejj@ximian.com>
19066 * socket-io.c (convert_sockopt_level_and_name): If the system
19067 doesn't define SOL_IP or SOL_TCP, get them by hand using
19068 getprotobyname() and caching the values (because this could be a
19070 (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
19071 Use the appropriate struct when the system does support it. Ie,
19072 not all systems have struct ip_mreqn so use struct ip_mreq when
19075 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
19077 * reflection.c: handle finally clauses.
19079 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
19081 * socket-io.c: use g_snprintf() instead of snprintf.
19083 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
19085 * reflection.c (mono_param_get_objects): Cast second argument to
19086 mono_method_get_param_names to a const char** to silence the
19089 * appdomain.c (mono_domain_assembly_open): Put parens around the
19090 truth statement in the for-loop.
19092 * unicode.c (iconv_convert): Got rid of a compiler warning about
19093 int i being unused when the system has a new iconv.
19094 (iconv_get_length): Same.
19096 * image.c (load_class_names): Cast the second argument to
19097 g_hash_table_insert() to char* to hush compiler warnings about the
19099 (mono_image_open): Same here.
19101 * socket-io.c: Don't conditionally include sys/filio.h or
19102 sys/sockio.h here anymore since we now get them from
19103 io-layer/io-layer.h
19104 (inet_pton): If the system doesn't support inet_aton, implement
19105 using inet_addr and also #define INADDR_NONE if it isn't defined
19108 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
19110 * metadata.c, metadata.h: added function to get packing and size info
19112 * reflection.h, reflection.c: handle field RVA data. Save info about
19113 the table layout if needed. Assign typedef indexes to all the types
19114 before dumping the info about them to avoid forward reference problems.
19116 2002-02-14 Dietmar Maurer <dietmar@ximian.com>
19118 * socket-io.c (convert_sockopt_level_and_name): ifdef
19119 SO_ACCEPTCONN because it is not defined on my system (old debian)
19121 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
19123 * opcode.c: use stddef.h to get NULL.
19125 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
19127 * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
19128 for FIONBIO, FIONREAD and SIOCATMARK.
19129 (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
19130 define INADDR_NONE and besides, inet_addr() is deprecated and
19131 should not be used. Use inet_pton() instead - it also has the
19132 added bonus that it can easily handle IPv6 addresses as well.
19133 (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
19135 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19137 * decimal.c: remove _MSC_VER conditional.
19139 2002-02-13 Dick Porter <dick@ximian.com>
19142 * icall.c: Internal calls for Blocking, Select, Shutdown,
19143 GetSocketOption and SetSocketOption
19145 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19147 * assembly.cs: better resolver: use it instead of some kludgy
19150 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
19152 * reflection.c: the best way to speed-up the compiler is to avoid
19155 2002-02-13 Dietmar Maurer <dietmar@ximian.com>
19157 * class.c (mono_class_vtable): changed the object layout
19158 (obj->vtable->class).
19159 (mono_class_create_from_typespec): consider MONO_TYPE_PTR
19161 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19163 * assembly.c: look for assemblies in the assembly dir, too.
19165 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19167 * class.c: fix thinko in mono_class_from_type().
19169 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
19171 * exception.h, exception.c: added TypeLoadException.
19172 * object.h, object.c: added mono_array_clone ().
19173 * icall.c: handle throwOnError in AssemblyGetType().
19174 Added Array.Clone().
19175 * opcode.h, opcode.c: use a single value for the opcode val.
19176 Compile fix for non-gcc compilers.
19178 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
19180 * opcodes.c, opcodes.h: export interesting info about opcodes.
19182 2002-02-05 Dietmar Maurer <dietmar@ximian.com>
19184 * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
19187 * class.c (class_compute_field_layout): set element_class for enums
19188 (mono_class_create_from_typedef): set element_class for normal classes
19190 * icall.c (ves_icall_System_Enum_get_value): impl.
19192 * class.c (mono_class_create_from_typedef): do not set valuetype
19193 flag for System.ValueType and System.Enum
19195 2002-02-04 Dietmar Maurer <dietmar@ximian.com>
19197 * unicode.c (iconv_convert): fix big endian problem.
19199 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
19201 * class.c: add asserts if we are ever going to scribble over memory.
19202 * socket-io.c: not all systems have AF_IRDA defined.
19204 2002-01-31 Dietmar Maurer <dietmar@ximian.com>
19206 * class.c (class_compute_field_layout): do not consider static
19207 fields to compute alignment
19209 2002-01-25 Dietmar Maurer <dietmar@ximian.com>
19211 * appdomain.c (mono_appdomain_get): impl.
19212 (ves_icall_System_AppDomain_ExecuteAssembly): impl.
19214 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
19216 * icall.c: ignore "file://" prefix when loading an assembly.
19218 2002-01-23 Dick Porter <dick@ximian.com>
19222 * Makefile.am: Added socket support
19224 2002-01-23 Miguel de Icaza <miguel@ximian.com>
19226 * icall.c (ves_icall_appdomain_get_default_assemblies): put this
19227 code back. This should return the assemblies that are loaded by
19228 the runtime on behalf of an application domain.
19230 The current implementation is still broken, it just returns every
19231 assembly loaded, but until we get real applications domain this
19234 2002-01-23 Dietmar Maurer <dietmar@ximian.com>
19236 * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
19239 2002-01-23 Miguel de Icaza <miguel@ximian.com>
19241 * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
19242 the mono_class_from_name lookup.
19243 (ves_icall_get_parameter_info): ditto.
19244 (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
19246 (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
19248 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
19250 * class.c: load also nested classes on class init.
19251 System.ValueType instance methods gets passed boxed
19252 values, unless methods in derived classed that get a pointer to the
19254 * icall.c: use better name parsing code in GetType().
19255 * image.c, image.h: add mono_image_loaded ().
19256 * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
19257 * reflection.c, reflection.h: added mono_reflection_parse_type().
19259 2002-01-22 Veronica De Santis <veron78@interfree.it>
19261 * icall.c : Added mapping of internal calls for Manual and Auto reset events
19262 * threads.c : Added the implementation of internal calls for events
19263 * threads.h : Added prototypes of internal calls for events
19265 2002-01-21 Radek Doulik <rodo@ximian.com>
19267 * icall.c (ves_icall_InitializeArray): swap bytes on big endians
19269 2002-01-21 Dietmar Maurer <dietmar@ximian.com>
19271 * class.c (mono_class_init): set min_align to 1 (instead of 0)
19272 (mono_class_value_size): use min_align
19274 2002-01-20 Dick Porter <dick@ximian.com>
19277 * threads.c: Replaced all instances of WapiHandle * with HANDLE,
19278 so it compiles on w32.
19280 2002-01-17 Dietmar Maurer <dietmar@ximian.com>
19282 * metadata.c (mono_type_stack_size): impl.
19284 * class.c (mono_class_get_field): impl. memberref token
19286 2002-01-16 Veronica De Santis <veron78@@interfree.it>
19288 * icall.h : Added the internal calls mapping for CreateMutex_internal
19289 and ReleaseMutex_internal.
19290 * threads.h : Added the prototype of mutexes internal calls.
19291 * threads.c : Added the implementations of mutexes internal calls.
19293 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
19295 * metaparse.h: removed unused file.
19296 * reflection.c, reflection.h: added stream_data_align () function
19297 to align data in streams and keep stream aligned. Add support for
19298 exception support in method headers.
19300 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
19302 * unicode.c: make iconv_convert () return the number of bytess written
19303 in the output buffer.
19305 2002-01-15 Dick Porter <dick@ximian.com>
19306 * threads.c: Make the runtime's idea of infinite timeouts coincide
19307 with the class library's
19309 Fix a particularly egregious bug in mono_thread_cleanup(). That
19310 code was so utterly bogus it must have been written on a Monday.
19312 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
19314 * reflection.h: add subtypes field to TypeBuilder.
19315 * reflection.c: encode constants for literal fields.
19316 Handle subtypes. Fix user string token (and add a zero byte)
19319 2002-01-14 Dietmar Maurer <dietmar@ximian.com>
19321 * class.c (mono_class_init): bug fix: assign slot numbers for
19324 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
19326 * reflection.c: don't try to output a code RVA for abstract methods.
19327 Small fixes for method header format. Output parameter info to the
19328 ParamDef table. Save method overriding info to MethodImpl table.
19329 Fix property support. Allow typedef.extends to be a type in the
19331 * verify.c: fix off-by-one error.
19333 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
19335 * class.c: fix mono_class_from_mono_type () for szarray types.
19336 Remove unused cache check in mono_class_from_type_spec().
19337 * icall.c: *type_from_name () functions handle simple arrays and byref.
19338 * reflection.c: handle byref and szarray types. Handle methods without
19339 body (gets P/Invoke compilation working). Handle types and fields in
19341 * reflection.h: add rank to MonoTypeInfo.
19343 2002-01-10 Dick Porter <dick@ximian.com>
19345 * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
19348 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
19350 * icall.c: initialize class in type_from_handle ().
19351 Loop also in parent classes for get_method ().
19352 * reflection.c: properly encode class and valuetype types.
19353 Start on encoding TypeBuilder types. Handle fieldrefs.
19354 Use correct length when registering a user string.
19355 Handle ConstructorBuilder and MonoMethod in get_token ().
19356 Make mono_type_get_object () aware of cached types.
19357 * object.c: back out change to mono_string_new ().
19359 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
19360 * object.c: mono_string_new should return a NULL when the string
19361 passed in is NULL -- not try to deference it.
19363 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19365 * icall.c: hack to make IsSubType work for TypeBuilders.
19366 * reflection.c: emit constructors before methods.
19367 Retrieve param names in mono_param_get_objects().
19369 2002/01/05 Nick Drochak <ndrochak@gol.com>
19371 * Makefile.am: fix list of headers and sources so automake 1.5
19372 doesn't complain. Removed \# at end of list.
19374 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
19376 * reflection.c: get token for a method ref. Set return type of
19377 constructor to void.
19378 * loader.c: debug message.
19379 * class.c: typo fix.
19381 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
19383 * icall.c: fix array init with rank > 1. FindMembers
19384 loops in parent class as well.
19385 * image.c: do not insert nested types in name cache.
19386 * reflection.c: warning fix.
19387 * reflection.h: add override method (for interface impl).
19389 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
19391 * metadata.c: fix customattr decoding.
19393 2001-12-21 Miguel de Icaza <miguel@ximian.com>
19395 * rawbuffer.cs: Added native Win32 implementation, avoids using
19396 mmap on Cygwin. This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
19398 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
19400 * class.c: make the low-level routines handle the cache.
19402 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
19404 * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
19406 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
19408 * class.c: fix mono_array_element_size() for objects.
19409 * class.h, class.c: add properties to MonoClass and load them
19411 * icall.c: check with isinst() when assigning a value to an array
19412 instead of requiring the classes to match exactly.
19413 Implemented icall for System.Type::GetType().
19414 Implemented icalls to get ParameterInfo, ProprtyInfo and info about
19415 enums. Handle bindingflags when looking for methods and fields.
19416 * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
19417 and mono_metadata_methods_from_property().
19418 * reflection.h, reflection.c: added structures for propreties,
19419 parameters and enums. Implemented mono_property_get_object() and
19420 mono_param_get_objects().
19422 2001-12-18 Dick Porter <dick@ximian.com>
19424 * file-io.c: Use mono_string_to_utf16() instead of
19425 mono_string_chars()
19427 * object.c: Added mono_string_to_utf16(), which copies the non
19428 NULL-terminated MonoString into a new double-null-terminated
19431 2001-12-17 Dietmar Maurer <dietmar@ximian.com>
19433 * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
19435 2001-12-16 Dietmar Maurer <dietmar@ximian.com>
19437 * file-io.c: raise exceptions if handle is invalid.
19439 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
19441 * assembly.c: yet another check for mscorlib.
19442 * class.c, class.h: load nesting info for classes.
19443 * icall.c: many new functions to support the Reflection classes.
19444 * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
19445 * reflection.h, reflection.c: mono_image_create_token(),
19446 mono_assembly_get_object(), mono_type_get_object(),
19447 mono_method_get_object(), mono_field_get_object(): methods to return
19448 objects that parallel the C representation of assemblies, types,
19451 2001-12-11 Dick Porter <dick@ximian.com>
19454 * file-io.c: Internal calls for file IO.
19456 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
19458 * tabledefs.h: missing FileAttributes.
19459 * verify.h, verify.c: use is_valid_string () to simplify and check for
19460 valid strings more correctly. Fix warnings and speeling.
19461 Check more tables: Filed, File, ModuleRef, StandAloneSig.
19462 Check code: branches, maxstack, method calls.
19464 2001-12-04 Dietmar Maurer <dietmar@ximian.com>
19466 * object.c (mono_object_allocate): removed static, so that the jit
19467 can allocate value types.
19469 * icall.c (ves_icall_System_DateTime_GetNow): impl.
19471 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19473 * class.c: init enum types right away and register the
19474 token->MonoClass map in mono_class_create_from_typedef ().
19475 * verify.h, verify.c: first cut of the verifier.
19476 * pedump.c: add --verify switch to verify metadata tables.
19477 * tabledefs.h: add some missing enums.
19479 2001-11-30 Dietmar Maurer <dietmar@ximian.com>
19481 * class.c (mono_install_runtime_class_init): impl.
19482 (mono_class_init): renamed mono_class_metadata_init to
19483 mono_class_init, also removed the metadata_inited flag
19485 * object.c (mono_object_isinst): use faster algorithm
19487 2001-11-30 Radek Doulik <rodo@ximian.com>
19489 * mono-endian.h: reverted last change
19490 added function prototypes
19492 * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
19493 add mono-endian.c back
19495 * mono-endian.c: returned back, as Paolo pointed out, it's needed
19496 for unaligned access, I've mistaked it with endianess. I am
19498 (mono_read16): fix reverted endianess
19499 (mono_read64): ditto
19500 (mono_read32): ditto
19502 2001-11-30 Dick Porter <dick@ximian.com>
19504 * exception.c: Implement mono_exception_from_name()
19506 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19508 * metadata.h, metadata.c: remove params_size and locals_size and their
19509 calculation from the metadata code: they are only usefult to the
19512 2001-11-29 Radek Doulik <rodo@ximian.com>
19514 * object.c (mono_ldstr): swap bytes here, it's probably not the
19515 best place, but works for me now, I'll redo it once I know mono
19516 better, also note that I add PROT_WRITE and don't reset back, also
19517 note that it's only affects big endians, so x86 should be OK
19519 * mono-endian.h (read16): use just glib macros for both endians
19521 * mono-endian.c: removed as glib macros are used in in
19522 mono-endian.h so we don't need to care about endianess for read
19523 macros as glib does that for us already
19525 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
19527 * class.h, class.h: take minimum alignment into consideration so
19528 that the fields of a class remain aligned also when in an array.
19530 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19532 * loader.h, loader.c: add mono_method_get_param_names().
19533 * class.c: 0-init class fields.
19535 2001-11-26 Dick Porter <dick@ximian.com>
19539 * threads.c: New file that handles System.Threading on all platforms
19542 * object.h: Remove the synchronisation struct from MonoObject,
19543 replace it with a pointer that gets initialised on demand
19545 * Makefile.am: Replace all the system-specific threading code with
19546 a single file that uses the new wrapper library
19548 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
19550 * class.c, class.h: add mono_install_trampoline() so that the runtime
19551 can register a function to create a trampoline: removes the ugly
19552 requirement that a runtime needed to export arch_create_jit_trampoline.
19553 * object.h, object.c: added mono_install_handler() so that the runtime
19554 can install an handler for exceptions generated in C code (with
19555 mono_raise_exception()). Added C struct for System.Delegate.
19556 * pedump.c: removed arch_create_jit_trampoline.
19557 * reflection.c: some cleanups to allow registering user strings and
19558 later getting a token for methodrefs and fieldrefs before the assembly
19560 * row-indexes.h: updates and fixes from the new ECMA specs.
19562 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
19564 * class.h, class.c: add enum_basetype field to MonoClass.
19565 * metadata.h, metadata.c: add mono_metadata_get_constant_index()
19566 to get index in the constant table reated to a field, param or
19568 * reflection.h, reflection.c: handle constructors. Set public-key and
19569 version number of the built assembly to 0.
19570 * row-indexes.h: update from new ECMA spec.
19572 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19574 * class.h, class.c: add a max_interface_id to MonoClass.
19575 * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
19576 since it's used to do that. Added mono_type_type_from_obj().
19577 Make GetType() return NULL instead of segfaulting if the type was not
19578 found. Handle simple arrays in assQualifiedName.
19579 * object.h: add a struct to represent an Exception.
19580 * reflection.c: output call convention in method signature.
19581 Add code to support P/Invoke methods and fixed offsets for fields.
19583 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
19585 * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
19587 * icall.c: use mono_array_addr instead of array->vector: fixes the
19588 reflection image writing.
19589 * reflection.c: init call convention byte to 0 in method signature.
19590 Encode the property signature. Don't output property-related methods
19591 twice. Really process the properties for a type (don't cast a field to
19592 a property, my mom always told me that).
19593 Fix 64 bit issues in pointer alignment in a different and more
19596 2001-11-10 Sean MacIsaac <macisaac@ximian.com>
19598 * loader.h: Removed type class from MonoDefaults, added monotype
19600 * loader.c: Loaded MonoType, removed loading of Type
19602 * icall.c (my_mono_new_object): Now returns a System.MonoType,
19603 and fills in System.Type._impl with a RuntimeTypeHandle rather
19604 than the actual MonoClass *
19606 (ves_icall_type_from_handle): change from type_class to
19609 (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
19612 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
19615 (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
19617 (ves_icall_System_Reflection_Assembly_GetType): implemented
19619 (ves_icall_System_MonoType_assQualifiedName): implemented
19621 (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
19623 2001-11-09 Miguel de Icaza <miguel@ximian.com>
19625 * assembly.c (mono_assembly_open): Implement a cache for the
19628 (mono_assembly_close): only destroy the assembly when the last
19631 2001-11-09 Dick Porter <dick@ximian.com>
19633 * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
19635 2001-11-09 Dietmar Maurer <dietmar@ximian.com>
19637 * class.c (mono_class_metadata_init): bug fix: compute the right slot
19639 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
19641 * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
19642 from Martin Weindel.
19643 * object.h: add mono_string_chars ().
19645 2001-11-07 Miguel de Icaza <miguel@ximian.com>
19647 * reflection.c (build_compressed_metadata): Eliminates warnings
19648 and uses 64-bit clean code.
19650 * metadata.c (mono_type_hash): Change signature to eliminate warnings.
19651 (mono_type_equal): Change signature to eliminate warnings.
19653 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
19655 * icall.c, loader.c: remove the internalcall array constructors.
19656 Changes to match the new MonoArray structure.
19657 * object.h, object.c: an array object doesn't allocate an extra
19658 vector. Add mono_array_new_full () to create jagged arrays easily.
19660 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
19662 * metadata.h, metadata.c: add mono_metadata_field_info () to
19663 retreive all the info about a field from vairous tables.
19664 * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
19665 * class.h, class.c: augment MonoClassField with more info.
19666 Implemented mono_ldtoken for fields. Implemented ExplicitLayout
19667 policy and load a field's RVA if needed.
19669 2001-11-05 Dietmar Maurer <dietmar@ximian.com>
19671 * class.c (mono_class_metadata_init): create a trampoline for all
19672 virtual functions instead of actually compiling them.
19674 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
19676 * class.h, class.c: include name in MonoClassField.
19677 * class.c: fix fundamental type of System.Object and System.String.
19678 Set the right fundamental type for SZARRAY, too. Handle TypeSpec
19680 * icall.c: remove internalcalls for the Reflection stuff that is now
19682 * loader.c: mono_field_from_memberref () implementation.
19683 * mono-endian.c: thinko (s/struct/union/g).
19684 * object.c, object.h: make the mono_string_* prototypes actually use
19685 MonoString instead of MonoObject.
19686 * reflection.c, reflection.h: updates for changes in the reflection
19687 code in corlib: we use C structures that map to the actual C# classes.
19688 Handle SZARRAYs when encoding types. Handle locals in methods. Use a
19689 fat method header if needed and use the info from the ILGenerator for
19690 methods. Handle fields in types. Misc fixes.
19692 2001-10-17 Dietmar Maurer <dietmar@ximian.com>
19694 * class.c (mono_class_metadata_init): bug fix: always allocate
19695 space for static class data
19697 2001-10-25 Dietmar Maurer <dietmar@ximian.com>
19699 * class.c (mono_compute_relative_numbering): use relative
19700 numbering to support fast runtime type checks.
19702 2001-10-17 Sean MacIsaac <macisaac@ximian.com>
19704 * class.c (mono_class_create_from_typeref): added debugging output
19705 to print class name when MonoDummy is returned instead of real class
19707 2001-10-15 Dietmar Maurer <dietmar@ximian.com>
19709 * class.c (mono_class_metadata_init): interface offset table now
19710 contains pointers into the vtable - this is more efficient for the jit
19712 2001-10-12 Dietmar Maurer <dietmar@ximian.com>
19714 * class.c (mono_class_metadata_init): use a temporary vtable (the
19715 old algorithm only worked for the interpreter, but not for the jit)
19717 2001-10-11 Dietmar Maurer <dietmar@ximian.com>
19719 * loader.c (method_from_memberref): use mono_class_get to get the
19720 class of an array instead of using System.Array directly.
19721 (mono_get_method): also add MEMBERREF methods to the method cache
19722 which usefull for arrays.
19724 2001-10-10 Dietmar Maurer <dietmar@ximian.com>
19726 * pedump.c (arch_compile_method): added to compute vtable entry
19728 * metadata.c (mono_metadata_interfaces_from_typedef): also return the
19729 number of interfaces.
19731 * class.h: merged MonoArrayClass into MonoClass
19733 * class.c (mono_class_create_from_typedef): compute the vtable size and
19734 allocate space to include the vtable inside MonoClass
19735 (mono_class_metadata_init): initialize the vtable
19737 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
19739 * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
19740 Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
19741 * image.c: endian fixes by Laurent Rioux.
19742 * object.h, object.c: rename MonoStringObject to MonoString and
19743 MonoArrayObject to MonoArray. Change some function names to conform to
19744 the style mono_<object>_<action>. mono_string_new_utf16 () takes a
19745 guint16* as first argument, so don't use char*.
19746 Provide macros to do the interesting things on arrays in a portable way.
19747 * threads-pthread.c: updates for the API changes and #include <sched.h>
19748 (required for sched_yield()).
19749 * icall.c: updates for the API changes above.
19750 * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
19751 platforms that need them.
19753 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
19755 * class.c: set the correct type for all the fundamental
19756 type when loading the class.
19758 2001-10-05 Dick Porter <dick@ximian.com>
19760 * threads-pthread.c (pthread_mutex_timedlock): Simple
19761 compatibility version for C libraries that lack this call.
19763 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
19765 * class.c: MonoTypes stored in MonoClass are stored as
19766 fundamental MonoTypes when the class represents a
19767 fundamental type (System.Int32, ...).
19768 The TypeHandle return by ldtoken is a MonoType*.
19769 * icall.c: ves_icall_get_data_chunk () write out all the
19770 PE/COFF stuff. Implement ves_icall_define_method (),
19771 ves_icall_set_method_body (), ves_icall_type_from_handle ().
19772 * image.c: properly skip unknown streams.
19773 * loader.h, loader.c: add type_class to mono_defaults.
19774 * metadata.c, metadata.h: export compute_size () as
19775 mono_metadata_compute_size () with a better interface.
19776 Typo and C&P fixes.
19777 * pedump.c: don't try to print the entry point RVA if there is no entry point.
19778 * reflection.c, reflection.h: many cleanups, fixes, output method
19779 signatures and headers, typedef and typeref info, compress the metadata
19780 tables, output all the heap streams, cli header etc.
19781 * row-indexes.h: typo fixes.
19783 2001-10-04 Dick Porter <dick@ximian.com>
19785 * object.h: Add a synchronisation mutex struct to MonoObject
19787 * object.c (mono_new_object): Initialise the object
19788 synchronisation mutexes
19790 * icall.c: System.Threading.Monitor internal calls
19792 * threads-pthread.h:
19793 * threads-pthread.c: System.Threading.Monitor internal calls
19795 * threads-types.h: New file, includes the system-specific thread
19798 * threads-pthread-types.h:
19799 * threads-pthread-types.c: New files, handle pthread-specific
19800 synchronisation types
19802 * threads-dummy-types.h:
19803 * threads-dummy-types.c: New files of dummy support for
19804 thread-specific types
19808 * pedump.c: include mono-endian.h not endian.h
19810 * Makefile.am: More threads files.
19811 Name mono-endian.h not endian.h
19813 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
19815 * Makefile.am, reflection.h, reflection.c: move here the reflection related
19816 stuff and implement a few more bits.
19817 * icall.c: a field needs to be dereferenced twice. Do not use the same
19818 name for two variables in the same scope.
19819 * image.c, image.h: cleanups.
19821 2001-10-02 Dietmar Maurer <dietmar@ximian.com>
19823 * class.c (mono_class_metadata_init): bug fix: compute the right size
19825 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
19827 * icall.c: implemented some of the Reflection internalcalls.
19828 * image.c, image.h: start writing out the PE/COFF image.
19829 * metadata.h, metadata.c: implement mono_metadata_encode_value ()
19830 that does the reverse than decode_blob_size ().
19831 * object.c: use mono_metadata_encode_value (). Move here
19832 temporary implementation of mono_string_to_utf8 ().
19833 * rawbuffer.c: make malloc_map static.
19835 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
19837 * metadata.c: fix type comparison for arrays.
19838 * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
19839 Added a couple of new classes to monodefaults.
19840 * icall.c: added a couple of Reflection-related internalcalls.
19841 * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
19842 Added a byval_arg MonoType to MonoClass.
19844 2001-09-28 Dick Porter <dick@ximian.com>
19847 * threads-pthread.h:
19848 * threads-pthread.c: Implemented internal calls for
19849 LocalDataStoreSlot operations. Applied mutexes around all shared
19850 data. Reworked the thread creation and Start() operations to
19851 avoid a race condition.
19854 * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
19856 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
19858 * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
19860 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
19862 * class.c, loader.c: warn and return NULL instead of erroring out.
19863 * icall.c: added System.AppDomain::getCurDomain().
19864 * loader.c: we don't need to lookup the typedef again for p/invoke calls.
19866 2001-09-25 Dick Porter <dick@ximian.com>
19868 * threads-pthread.h:
19869 * threads-pthread.c: Implemented timed thread joining and added
19870 System.Threading.Thread::Join_internal internal call
19872 * icall.c: Added System.Threading.Thread::Join_internal internal call
19875 * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
19877 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
19879 * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
19880 mono_string_intern () to implement the semantics of the ldstr opcode
19881 and the interning of System.Strings.
19882 * icall.c: provide hooks to make String::IsIntern and String::Intern
19885 2001-09-23 Dick Porter <dick@ximian.com>
19888 * threads-dummy.h: New files of dummy threading routines
19890 * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
19891 support code based on system specifics
19893 Rename PTHREAD_LIBS to THREAD_LIBS
19895 2001-09-23 Dick Porter <dick@ximian.com>
19897 * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
19898 Schedule (called when asked to Sleep for 0 ms) and CurrentThread
19900 (mono_thread_init): Set up a Thread object instance to return when
19901 the main thread calls Thread.CurrentThread
19902 (mono_thread_cleanup): Wait for all subthreads to exit
19904 * icall.c: New internal calls for System.Threading.Thread::Sleep
19905 (including Schedule) and CurrentThread
19907 * threads.h: New file, to insulate thread-specific stuff from the
19910 2001-09-21 Dick Porter <dick@ximian.com>
19912 * threads-pthread.h:
19913 * threads-pthread.c: New file, for handling pthreads-style
19914 threading support. Start() now starts a new thread and executes
19915 the ThreadStart delegate instance.
19917 * icall.c: Added the internalcall for
19918 System.Threading.Thread::Start_internal
19920 * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
19922 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
19924 * loader.c: work around the different signatures for delegates
19925 constructors csc generates in compiled code vs the ones compiled in mscorlib.
19927 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
19929 * class.h, class.c: add mono_class_get_field_from_name ().
19930 * *: Fix C comments and other ANSI C issues.
19932 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
19934 * endian.h, assembly.c: fix some endianness issues.
19936 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
19938 * loader.h, load.c: add delegate_class to mono_defaults.
19939 Handle runtime provided methods in mono_get_method ().
19941 2001-08-29 Dietmar Maurer <dietmar@ximian.com>
19943 * loader.c (mono_get_method): use pinvoke for internal call
19945 * icall.c: use pinvoke for internal call
19947 * loader.c (method_from_memberref): set the method name
19949 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
19951 * metadata.c: help the compiler generate better code for
19952 mono_class_from_mono_type ().
19954 2001-08-28 Dietmar Maurer <dietmar@ximian.com>
19956 * class.c (mono_class_metadata_init): delayed computing of the
19957 class size to mono_class_metadata_init ()
19959 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
19961 * class.c, class.h: add an interfaces member to MonoClass.
19962 * image.c, image.h: add assembly_name field to MonoImage
19963 from the assembly table.
19964 * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
19966 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
19968 * class.c: Handle Array in mono_class_from_mono_type ().
19969 * metadata.c, pedump.c: some endian fixes.
19971 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
19973 * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
19974 * metadata.c: fix small problem introduced with the latest commit.
19976 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
19978 * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
19979 We don't need a MonoMetadata pointer anymore to compare signatures in
19980 mono_metadata_signature_equal (), update callers.
19981 Reduced memory usage an number of allocations for MonoMethodHeader and
19982 MonoMethodSignature.
19984 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
19986 * metadata.c: added compare for szarray.
19988 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
19990 * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
19991 and add a couple more types to it and mono_defaults. Give an hint on
19992 classes that need implementing in our corlib and are referenced
19995 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
19997 * class.h, class.c: keep track if a class is also an Enum.
19998 * loader.c: Implement a couple more types for use in libffi
19999 marshalling. Gives better diagnostics when failing to dlopen
20000 a library. Set method->klass for P/Invoke methods, too.
20002 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
20004 * class.c, class.h: add a MonoType this_arg to MonoClass that
20005 represents a pointer to an object of the class' type that
20006 can be used by the interpreter and later the type cache.
20007 Add best guess alignment info for valuetype objects.
20009 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
20011 * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
20012 into MonoType: one less level of indirection and allocation and
20013 simplifies quite a bit of code. Added cache for MonoTypes that are
20014 used frequently, so that we don't need to allocate them all the time.
20016 2001-08-24 Dietmar Maurer <dietmar@ximian.com>
20018 * class.c (mono_class_create_from_typedef): System.Enum is also a
20019 value type, although it does not derive from System.ValueType
20020 (maybe a bug in the ms compiler?)
20022 * metadata.c (mono_type_size): return the right size for value types
20024 * loader.c (mono_get_method): only initialize method header if not abstract
20026 * class.c (mono_class_from_mono_type): use mono_default values.
20028 2001-08-23 Dietmar Maurer <dietmar@ximian.com>
20030 * *: use MonoClass pointers instead of <type_tokens>
20032 * class.h: new flag: metadata_inited.
20034 * class.c (mono_class_metadata_init): impl.
20035 (mono_class_instance_size): impl.
20036 (mono_class_data_size): impl.
20038 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
20040 * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
20041 MonoClass now has the name and name_space fields.
20042 MonoMethod has a pointer to its MonoClass, instead of MonoImage.
20043 mono_get_method () takes and optional MonoClass as argument.
20044 Removed mono_typedef_from_name() and added mono_class_token_from_name()
20045 instead that takes advantage of a map from class names to typedef
20046 tokens in MonoImage.
20048 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
20050 * metadata.c: zero is not a valid alignment boundary.
20051 Merge MONO_TYPE_VOID in default decoding code.
20053 2001-08-21 Dietmar Maurer <dietmar@ximian.com>
20055 * image.h: merged MonoMetadata into MonoImage
20057 * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
20058 identify the type of elements.
20060 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
20062 * blob.h: fix MONO_TYPE_TYPEDBYREF value.
20063 * cil-coff.h: split MonoMSDOSHeader and add size info.
20064 * image.c: add some consistency checks.
20065 * metadata.c: fix row size computation: one programmer
20066 error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
20067 add explanation for the locator routine.
20068 Fix decoding of size in method header.
20070 2001-08-20 Miguel de Icaza <miguel@ximian.com>
20072 * assembly.c (g_concat_dir_and_file): Use _S for string concat.
20073 (g_concat_dir_and_file): Bring g_concat_dir_and_file
20074 function from gnome-libs. This uses the right path separator
20075 based on the OS, and also works around a bug in some systems where
20076 a double slash is not allowed.
20077 (default_assembly_name_resolver): Use g_concat_dir_and_file
20078 (mono_assembly_open): ditto.
20080 2001-08-20 Dietmar Maurer <dietmar@ximian.com>
20082 * metadata.c (mono_metadata_signature_equal): impl.
20084 * *: void is now a realy MonoType (instead of using NULL)
20086 * metadata.c (do_mono_metadata_parse_type): use
20087 mono_metadata_parse_type to parse void value.
20089 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
20091 * metadata.c, metadata.h: in the signature and method header store
20092 only the space required for holding the loca vars and incoming arguments.
20094 2001-08-15 Dietmar Maurer <dietmar@ximian.com>
20096 * metadata.c (do_mono_metadata_parse_type): treat void like any
20097 other type (instead of assigning NULL);
20099 2001-08-14 Dietmar Maurer <dietmar@ximian.com>
20101 * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
20103 2001-08-09 Dietmar Maurer <dietmar@ximian.com>
20105 * image.c (do_mono_image_open): added a cache for arrays.
20107 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20109 * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
20110 decode a single column from a row in a metadata table and changes
20111 to take advantage of it in the typedef locator (gives a nice speed up).
20112 Store offset info for function params.
20114 2001-08-02 Dietmar Maurer <dietmar@ximian.com>
20116 * image.h (MONO_IMAGE_IS_CORLIB): removed
20118 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
20120 * assembly.c: how could mono_assembly_close () had ever worked?
20121 * metadata.c, metadata.h: provide offset info for local vars.
20122 Implement mono_type_size () to take care of alignment as well
20123 as size (it was mono_field_type_size in cli/class.c before).
20125 2001-08-01 Dietmar Maurer <dietmar@ximian.com>
20127 * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
20129 * assembly.h (CORLIB_NAME): set to corlib.dll
20131 * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
20133 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
20135 * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
20136 cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
20137 tokentype.h: massive namespace cleanup.
20139 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
20141 * metadata.h, metadata.c: decode exception clauses when parsing method header.
20143 2001-07-27 Dietmar Maurer <dietmar@ximian.com>
20145 * metadata.c (mono_metadata_free_type): added check for type !=
20146 NULL (void) before calling mono_metadata_free_type()
20148 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
20150 * metadata.h, row_indexes.h: added header with enumerations to use
20151 to index in the columns from tables in metadata and to decode coded
20152 tokens: we should start using this instead of embedding magic numbers
20155 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
20157 * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
20158 Move metadata_t info from cli_image_info_t to MonoImage, where
20159 it's easily accessible. Changed all the uses accordingly.
20160 Added the method and class caches to MonoImage.
20161 * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
20162 and mono_metadata_decode_value () signature to be more consistent
20163 with the other parse functions (and simplify code). Taken advantage
20164 of zero-length array allocation with GCC. Removed reduntant (and
20165 wrong) MonoFieldType struct and use MonoParam instead. Changed
20166 mono_metadata_parse_field_type () to use common code for parsing.
20167 Added mono_metadata_typedef_from_field () and
20168 mono_metadata_typedef_from_method () to lookup a typedef index from a
20169 field or method token.
20170 Pack the MonoRetType structure more tightly (fits in 8 bytes now).
20172 2001-07-23 Miguel de Icaza <miguel@ximian.com>
20174 * metadata.c (mono_metadata_parse_field_type): Implement.
20175 (do_mono_metadata_parse_type): Split engine from
20176 mono_metadata_parse_type, so that we can create smaller structures
20177 for things that just have one pointer to the MonoType (look at
20180 2001-07-20 Miguel de Icaza <miguel@ximian.com>
20182 * metadata.c (mono_metadata_parse_mh): Correct the implementation,
20183 as Jan Gray found out, it is incorrect.
20185 2001-07-18 Miguel de Icaza <miguel@ximian.com>
20187 * assembly.c: Implement asssembly loading. This loads an image
20188 and loads all the referenced assemblies. Come to think of it, we
20189 could always do lazy loading of the assemblies.
20191 * image.c (mono_image_open): Keep loaded images in a hashtable.
20193 * image.h (MonoImage): Add reference count.
20195 2001-07-17 Miguel de Icaza <miguel@ximian.com>
20197 * assembly.c (mono_assembly_open): Keep track of the file name in
20198 case the assembly has no ASSEMBLY table.
20200 * metadata.h: Fixed Paolo's quick hack. Put the documnentation
20203 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
20205 * metadata.c, metadata.h: decode local vars in method header
20206 parse function. Change callers accordingly.
20208 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
20210 * metadata.h, cil-coff.h: protect against multiple inclusion.
20211 Added some new structures to hold information decoded from metadata:
20212 MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
20213 and relevant decoding/free functions.
20214 * metadata.c: implement decoding functions. Add warning for out of bounds
20215 index in mono_metadata_locate(). Implement mono_get_method () to retreive
20216 all the info about a method signature and invocation. Remove check on
20217 uninitialized local var in parse_mh() and fix memory leak.
20219 2001-07-12 Miguel de Icaza <miguel@ximian.com>
20221 * metadata.h: More macros.
20223 * tokentype.h: New file.
20225 Fri Jul 6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
20227 * assembly.c: added a consistency check and initialize
20228 some structures with g_new0().
20229 * metadata.c: fixed a couple more bugs in table size computation
20230 and add other checks for out-of bound access to metadata.
20232 Thu Jul 5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
20234 * metatada.c: fix bugs computing table sizes. Spew a
20235 warning when index in string heap is out of bounds.
20237 2001-07-04 Miguel de Icaza <miguel@ximian.com>
20239 * metadata.h: Add a couple of macros to manipulate tokens.
20241 Tue Jul 3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
20243 * assembly.c: g_free(ii->cli_sections) (and avoid double free of
20244 cli_section_tables).
20246 2001-07-01 Miguel de Icaza <miguel@ximian.com>
20248 * metadata.c (mono_metadata_user_string): New function, provides
20249 access to the UserString heap.
20251 2001-06-27 Miguel de Icaza <miguel@ximian.com>
20253 * metadata.c: Add inline documentation.
20255 2001-06-26 Miguel de Icaza <miguel@ximian.com>
20257 * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
20260 2001-06-22 Miguel de Icaza <miguel@ximian.com>
20262 * typeattr.h: New file, TypeAttribute flags.
20264 2001-06-21 Miguel de Icaza <miguel@ximian.com>
20266 * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
20267 mono_assembly_ensure_section): Section loading code.
20268 (load_section_tables): Load the sections.
20270 * mono/metadata/metadata.c (mono_metadata_locate_token,
20271 mono_metadata_locate): Functions to locate the information
20272 definition given a token or a table and an index.
20273 (mono_metadata_compute_table_bases): New.
20274 (compute_size): New function to compute the sizes of the various
20277 * mono/metadata/metadata.h: Finish listing the different index
20280 * mono/metadata/pedump.c: Improve to dump new information.
20282 2001-06-19 Miguel de Icaza <miguel@ximian.com>
20284 * mono/metadata/metadata.c: Entered all the tables matching
20287 * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2