59886e9bef8c809e8c9fa4b1309e79de5fe23fcd
[mono.git] / mono / metadata / ChangeLog
1 2005-06-08  Martin Baulig  <martin@ximian.com>
2
3         Fix #75136.
4
5         * loader.c
6         (mono_method_signature_full): New public method; takes a
7         `MonoGenericContext *'.
8         (find_method): Use mono_method_signature_full() and pass the
9         klass'es context to it.
10
11         * class.c (mono_class_is_inflated_method): Use
12         mono_method_signature_full() and pass the context to it.
13
14 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
15
16         * object.c: add proper locking in mono_remote_class_vtable(),
17         fixes possible memory corruption.
18
19 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
20
21         * marshal.c (mono_remoting_marshal_init): set
22         initialized after initialization.
23
24 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
25
26         * locales.c : hush.
27
28 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
29
30         * object.c (extend_interface_array): fix really silly
31         memory corrupting / comparison bug.
32
33 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
34
35         * reflection.c: Functions added to support the creation
36         of CustomAttributeData, which includes Attribute data
37         used by ReflectionOnly methods.
38
39         * reflection.h:  mono_reflection_get_custom_attrs_data and
40          mono_custom_attrs_data_construct added (functions exposed).
41
42          * icall.c: Added mono_reflection_get_custom_attrs_data
43          as icall.
44         
45 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
46
47         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
48         lupus's request.
49
50 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
51
52         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
53
54         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
55         dynamic DllImportAttribute.
56
57         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
58         dynamic DllImportAttribute.
59
60         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
61         Fixes #75162.
62
63 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
64
65         * threads.c: avoid segfault when an unstarted thread is aborted.
66
67 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
68
69         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
70         Returns the name and version of the runtime for reporting.
71
72 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
73
74         * appdomain.c: bump corlib version.
75         * object-internals.h: new field in MonoReflectionAssembly.
76
77 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
78
79         * object-internals.h: Carlos forgot to add this field.
80
81 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
82
83         * icall.c: Added create_version to create instances
84         of Version of MonoReflectionAssemblyName. This change helps
85         the AssemblyName tests to keep running fine.
86         
87 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
88   
89         * object.c (mono_method_return_message_restore): A somehow less
90         intrusive fix for #75138.
91
92 2005-06-03  Raja R Harinath  <rharinath@novell.com>
93
94         * object.c (mono_method_return_message_restore): Fix computation
95         of expected number of out args.
96
97 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
98
99         * reflection.c (mono_image_get_method_info): Fix the case when the
100         charset is empty.
101
102 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
103
104         * object.c: Added missing null check in
105           mono_method_return_message_restore.
106
107 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
108
109         * reflection.c (mono_image_get_method_info): Handle the case when
110         dllentry is empty.
111
112 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
113
114         * object.c: When creating the vtable for a proxy, take into account
115         all inherited interfaces, not only the ones registered in
116         iclass->interfaces. This fixs bug #74996.
117         Also, in mono_method_return_message_restore, verify that the array
118         of out args has the expected lengh.
119
120 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
121
122         * socket-io.c: update the timeout in Poll when the call is interrupte.
123
124 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
125
126         * socket-io.c: support abort/suspend in Select_internal after last
127         change.
128
129 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
130
131         * threadpool.c: remove warning.
132
133 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
134
135         * icall.c:
136         * socket-io.[ch]: Select_internal uses poll() now when available, thus
137         removing the 1024 limit from select(). Runtime part of the fix for
138         bug #71203.
139
140 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
141
142         * socket-io.c: when resolving the addresses for the same
143         host returned by gethostname(), get the local IPs from the interface
144         list. Loopback addresses are discarded if the are interfaces up with
145         non-loopback ones. Fixes bug #63265.
146
147 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
148
149         * appdomain.c, verify.c, object-internals.h, reflection.c:
150         bumped corlib number to 36, and added new extra_flags field
151         to ReflectionMethodBuilder and friends.  Fixes #75060.
152
153 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
154
155         * gc.c: register a new weak link only if the object is non-null
156         (fixes bug#75047).
157
158 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
159
160         * culture-info.h : short time pattern too.
161
162 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
163
164         * culture-info.h : expand long time pattern string length.
165
166 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
167
168         * culture-info-table.h : update (more French date format; #72788).
169
170 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
171
172         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
173         the method is static. Fixes #75029.
174
175 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
176
177         * reflection.c: Update the table_idx field of method builders after
178         saving the module, since it can change. This is a workaround for
179         bug #74914. 
180
181 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
182
183         * culture-info-table.h : update (additional French date format).
184
185 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
186
187         * icall.c (ves_icall_type_Equals): Revert last change.
188         
189         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
190
191         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
192
193 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
194
195         * class-internals.h: Added executioncontext_class field to 
196         MonoDefaults structure.
197         * domain.c: Cache System.Threading.ExecutionContext class in 
198         mono_defaults.
199         * object.c: Capture the ExecutionContext for asynchroneous calls in
200          mono_async_result_new.
201         * object-internals.h: Added execution_context and original_context 
202         fields to MonoAsyncResult. Added execution_context to MonoThread.
203         * security-manager.c|.h: Added mono_get_context_capture_method to 
204         return the capture method (if required by the security manager or by
205         the framework version used).
206         * threadpool.c: Apply capture (if present) ExecutionContext in 
207         mono_async_invoke and revert to original context after it completes.
208
209 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
210
211         * culture-info-table.h : updated (real hacky solution for zh-CHT).
212
213 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
214
215         * culture-info-table.h : zh-CHT related workaround.
216
217 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
218
219         * marshal.c (emit_marshal_custom): Add some error checking and call the
220         methods in the ICustomMarshaler interface. Fixes #74875.
221         
222         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
223         native->managed wrappers.
224
225 2005-05-12  Martin Baulig  <martin@ximian.com>
226
227         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
228         here and use the loader lock.
229
230         * mono-debug.c: Properly lock when the debugger is not attached.
231         (mono_debug_init): Release the initial lock if we're not running
232         in the debugger.
233
234 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
235
236         * marshal.c (emit_marshal_custom): Pass through NULL values without
237         calling the custom marshalling routines.
238
239         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
240         conversion in structures. Fixes #74882.
241
242 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
243
244         * culture-info-table.h : zh-* cultures were missing.
245
246 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
247
248         * threads.c: Added a new event background_change_event which is signaled
249         when a thread changes its background mode.
250         Moved here several checks previously done in managed code. The checks
251         require the thread lock, and using the thread lock in managed code
252         can result in deadlocks.
253         Merged Start_internal and Thread_internal into a single method. Now 
254         Thread_internal does all work of creating and starting a thread.
255         Added icalls for setting and getting the state of the object. Moved from
256         managed code to avoid locking there.
257         Added wait_for_tids_or_state_change() which is called instad of
258         wait_for_tids when waiting for non-backround threads to end. This method
259         will return if one of the threads ends or the background_change_event
260         is signaled.
261         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
262         the background mode. This method signals the background_change_event
263         event.
264         * icall.c:
265         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
266         removed Start_internal.
267         
268 2005-05-11  Martin Baulig  <martin@ximian.com>
269
270         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
271         to order of some fields to get proper alignment on 64-bit machines.
272
273 2005-05-11  Martin Baulig  <martin@ximian.com>
274
275         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
276         changes as they're broken and completely fuck up the debugger.
277
278         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
279
280 2005-05-10  Martin Baulig  <martin@ximian.com>
281
282         * reflection.c (mono_reflection_generic_class_initialize): Don't
283         call mono_class_setup_parent() here.
284
285 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
286
287         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
288         send/receive timeout use an integer in milliseconds. We were using a
289         struct timeval.
290
291 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
292
293         * locales.c:
294         (internal_get_cultures): reserve the first slot of the array for the
295         InvariantCulture, which will be filled in managed code.
296
297 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
298
299         * reflection.c (mono_image_fill_module_table): Initialize the
300         GENERATION field as well.
301
302 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
303
304         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
305         Monitor.Enter on the object.
306
307 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
308
309         * threads.c: Enable the wait for running threads when exiting.
310         * icall.c: Suspend all threads before exiting.
311
312 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
313
314         * assembly.c (mono_assembly_load_reference): Fix warning.
315
316 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
317
318         * threadpool.c: changed the default number of threads per cpu. From now
319         on, the default will be 20 + (5 * number of cpus) instead of 50.
320
321 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
322
323         * loader.c (mono_method_get_signature_full): Add locking here.
324
325 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
326
327         * appdomain.c: Moved methods for parsing and freeing assembly
328         names to assembly.c.
329         * assembly.c, domain-internals.h: Created public methods for parsing
330         assembly names. Fixed mono_assembly_load_with_partial_name:
331         it now finds the best match, taking into account the version,
332         token and culture specified in the partial name. Also return
333         the latest version if no version information is specified.
334
335 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
336
337         * threadpool.c: replace check for SocketAsyncCall class.
338
339 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
340
341         * threadpool-internals.h:
342         * Makefile.am: added threadpool-internals.h
343
344         * threadpool.c: call mono_unhandled_exception on exceptions not handled
345         that happen in threadpool threads (tested on MS).
346         (mono_thread_pool_remove_socket): new function that dispatch any pending
347         AIO call on a socket that is closing. By now only epoll really needs it,
348         as select/poll wake up when the socket closes.
349
350
351         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
352
353 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
354
355         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
356
357 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
358
359         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
360
361 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
362
363         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
364         has an abort request, convert it into a suspend request.
365
366 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
367
368         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
369         warning for the usage of `UnmanagedFunctionPointerAttribute' which
370         is not supported yet.
371
372 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
373
374         * image.c: register assemblies loaded from data (bundles) in the loaded
375         assemblies hash. Fixes bug #74772.
376
377 2005-04-29  Martin Baulig  <martin@ximian.com>
378
379         * class.c (mono_type_get_name_recurse): Update to the new naming
380         schema from the latest .NET 2.x beta2.
381         (mono_class_setup_vtable_general): If we're a generic instance,
382         copy the vtable from our generic type definition and inflate all
383         the methods in it.
384
385         * loader.c (find_method): Update to the new naming schema from the
386         latest .NET 2.x beta2.
387
388 2005-04-29  Raja R Harinath  <harinath@gmail.com>
389
390         * class.c (mono_class_init): Add a mono_loader_unlock to the
391         #74734 fix.
392
393 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
394
395         * icall.c (ves_icall_System_Environment_Exit): Remove the 
396         suspend_all_other_threads () call for the time being, since it can hang.
397
398         * threads.c (mono_thread_manage): Similarly, disable the waiting for
399         the background threads to exit, since it can also hang.
400
401         * class.c (mono_class_init): Applied patch from Ankit Jain 
402         (radical@gmail.com). Avoid pending init errors when a field refers
403         to a nested class using a typeref. Fixes #74734.
404
405         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
406         this for dynamic modules.
407
408 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
409
410         * threads.c: don't wait for threads that are in the process of aborting
411         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
412         and waiting for background threads to finish. This makes xsp and
413         mod-mono-server exit without random length delays and/or hangs.
414
415 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
416
417         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
418
419 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
420
421         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
422         dynamic types to prevent infinite loops. Fixes #74727.
423
424         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
425         ..._is_assignable_to.
426
427 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
428
429         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
430
431 2005-04-25  Martin Baulig  <martin@ximian.com>
432
433         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
434
435         * domain.c
436         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
437
438         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
439
440         * reflection.c (build_compressed_metadata): Set metadata header
441         version to 2.0.
442
443 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
444
445         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
446         number into an integral and a decimal part. Fixes #70473.
447
448         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
449
450 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
451
452         * culture-info-table.h : reflected the latest locale-builder output.
453
454 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
455
456         * threadpool.c: check for SuspendRequested too when deciding if
457         mono_thread_interruption_checkpoint should be called.
458
459 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
460
461         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
462         * threads.c: remove interruption_mutex and use Interlocked instead. When
463         suspending all the threads, wait for all the suspended events at once.
464         If we're shutting down and get an APC that is going to be queued,
465         call mono_thread_execute_interruption immediately, as the thread might
466         be sleeping on a pthread condition or mutex.
467
468         * icall.c: call mono_runtime_set_shutting_down before suspending the
469         threads.
470
471         Fixes bug #74693. And now xsp is happier when exiting.
472
473 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
474
475         * loader.c (mono_stack_walk): Fix #74690.
476
477 2005-04-22  Martin Baulig  <martin@ximian.com>
478
479         * mono-debug.h (MonoDebugMethodJitInfo): Added
480         `MonoDebugMethodJitInfo *jit'.
481
482         * mono-debug.c (mono_debug_read_method): Cache the
483         MonoDebugMethodJitInfo in `address->jit'.
484         (mono_debug_free_method_jit_info): New public method.
485
486 2005-04-22  Martin Baulig  <martin@ximian.com>
487
488         * class.c (mono_class_is_assignable_from): Disallow
489         type parameter -> interface.
490
491 2005-04-21  Dick Porter  <dick@ximian.com>
492
493         * threads.c (mono_thread_create): Turn an assertion into an error.
494
495 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
496
497         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
498         
499         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
500         Fix some gcc 4.0 warnings.
501
502 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
503
504         * file-io.c: fix alt dir separator char on unix systems
505         and cleanup (fixes bug #71214).
506
507 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
508
509         * marshal.c: Use CALLVIRT instead of CALL when dispatching
510         a call to a remote domain, since the method may be an
511         interface method in the client domain. This fixes bug #74192.
512
513 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
514
515         * threadpool.c: recv/send are now performed before going back to managed
516         code to save one transition.
517
518 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
519
520         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
521
522         * metadata/threadpool.c: removed hack to workaround the bug above.
523
524         Fixes bug #74618.
525
526 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
527
528         * reflection.c reflection.h: Fix handling of parameter defaults in
529         dynamic methods. Also fixes handling of parameter attributes.
530         Fixes #74609.
531
532         * mono-debug.c (mono_debug_close_image): Fix warning.
533
534 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
535
536         * socket-io.h: replaced old unused field with new 'blocking'.
537         * threadpool.c: restore socket blocking state on windows(tm).
538
539 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
540
541         * icall.c: don't return the codebase in the AssemblyName[] returned by
542         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
543         * object-internals.h: Removed FIXME (fields were presents) and fixed
544         versioncompat declaration.
545
546 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
547
548         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
549         not closed, so don't cleanup when it happens.
550
551 2005-04-13  Chris Toshok  <toshok@ximian.com>
552
553         * mono-debug-debugger.h: change prototype for
554         mono_debugger_lookup_type.
555
556         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
557         this function, although it should probably be named
558         mono_debugger_init_type.
559
560 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
561
562         * threadpool.c: fix non-AIO case.
563
564 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
565
566         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
567         the built-in profiler to measure just JIT compilation times.
568
569 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
570
571         * threadpool.c: the epollfd might be closed by another thread at
572         any time, so ignore EBADF at treat it as a "we're closing" sign.
573
574 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
575
576         * threadpool.c: release the semaphores with a count equals to the number
577         of working threads in both IO and regular pools. Fixed typo that messed
578         up the count of IO pool threads. Don't initialize the pipe handles if
579         we're using epoll.
580
581 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
582
583         * threadpool.c: some systems don't like a NULL when deleting the socket
584         from epoll.
585
586 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
587
588         * threadpool.c: fix semaphore allocation.
589
590 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
591
592         * threadpool.c: added epoll() based implementation for asynchronous IO
593         that is used instead of the default poll() when available.
594         It can be disabled by setting MONO_DISABLE_AIO.
595
596 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
597
598         * threadpool.c: windows needs 'closesocket' and instead of returning
599         0 when the stream is closed while in select, it returns -1. Fixes bug
600         #74573.
601
602 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
603
604         * class.c (class_compute_field_layout): Fix the regression caused by
605         the previous try.
606
607 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
608
609         * threadpool.c: separate pool for socket async. IO.
610         * threadpool.h: mono_max_worker_threads is not a global any more.
611
612 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
613
614         * class.c (class_compute_field_layout): Fix #74549.
615
616 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
617
618         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
619         use 2 connected sockets instead.
620
621 2005-04-08  Miguel de Icaza  <miguel@novell.com>
622
623         * mono-config.c: Add new entry point for mkbundle
624         mono_config_parse_memory. 
625
626 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
627
628         * threadpool.c: removed another unused function.
629
630 2005-04-08  Ankit Jain  <radical@corewars.org>
631
632         * reflection.c (get_default_param_value_blobs): Add 'types'
633         parameter to get the types encoded in the constant table.
634         (mono_param_get_objects): Use the type from the constant table,
635         not the type of the parameter, when creating default values.
636         Handle null default values correctly.
637
638 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
639
640         * file-io.c:
641         * file-io.h:
642         * threadpool.c:
643         * threadpool.h:
644         * icall.c:
645         * socket-io.c: removed dead code for async IO.
646
647 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
648
649         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
650
651         * threadpool.c: intercept socket async. calls and pass them to a thread
652         that is polling and dispatching the job items to the threadpool as
653         socket become ready. Fixes bugs #71217, #71933.
654
655         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
656         between char and short/ushort arrays.
657
658         * socket-io.c: remove dead code.
659
660 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
661
662         * locales.c,
663           icall.c : removed InternalToUpper_Comp() and
664           InternalToLower_Comp().
665
666 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
667
668         * char-conversions.h : The tables were incorrectly generated. Should
669           be generated against invariant culture.
670
671 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
672
673         * object.c (mono_runtime_invoke_array): Fix return value when 
674         passing pre-created valuetype objects to ctors.
675
676         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
677         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
678         Fixes #74338.
679
680 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
681
682         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
683         only used with --security and hides the wrong corlib version error.
684
685 2005-03-30  Joshua Tauberer  <tauberer@for.net>
686
687         * class.c: Changed mono_class_name_from_token so that types
688         outside of a namespace don't have an initial period.  Improved
689         the g_warning message used in _mono_class_get when loading
690         fails.
691         * assembly.c: In mono_assembly_load_reference, when an assembly
692         can't be found, "No such file or directory" is misleading and
693         unhelpful because a few paths were checked for the presence of
694         the assembly.  When that happens (ENOENT), display a nicer
695         message indicating the directories that were searched.  In all
696         cases, the warning is made easier to read for non-hackers.
697
698 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
699
700         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
701         project/solution.
702         * appdomain.h|domain.c: Removed inline from functions.
703         * appdomain.c: Reduced warnings when compiling on windows.
704         * icall.c: Fixed output_debug declaration to gunichar2*.
705         * mono-config.c: Reduced warnings when compiling on windows.
706         * rand.c: Added missing "windows.h". Added missing return value.
707         * rawbuffer.c: Added missing winsock2.h for windows.
708         * sysmath.h: Added mono-compiler.h header to allow/ease 
709         compilation with non-GCC compilers.
710         * threads.c: Fixed declarations to compile with VS.NET C compiler.
711         Removed cast warnings.
712
713         Adapted from the work of J Lothian (for VC6).
714
715 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
716
717         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
718         from default_path.
719
720 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
721
722         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
723         the 2.0 profile.
724
725 2005-03-27  Raja R Harinath  <harinath@gmail.com>
726
727         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
728         has to be in $(exec_prefix).  $(prefix) is for arch-independent
729         stuff, and it would probably use $(prefix)/share rather than
730         $(prefix)/lib.
731
732 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
733
734         * console-io.c: added 2 includes that might be missing.
735
736 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
737
738         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
739         profile.
740
741         * reflection.c (create_custom_attr): Allocate the params array using
742         alloca so it gets GC tracking.
743
744 2005-03-23  Chris Toshok  <toshok@ximian.com>
745
746         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
747         out some spew.
748
749 2005-03-24  Raja R Harinath  <rharinath@novell.com>
750
751         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
752         changes to pick up any changes in prefix, etc.
753
754 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
755
756         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
757         
758         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
759         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
760
761 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
762
763         * class-internals.h object-internals.h class.c reflection.c: Extend the
764         mono_lookup_dynamic_token () function to return the class of the
765         token as well. 
766
767         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
768         well. Fixes #73848.
769
770 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
771
772         * security-manager.c: Skip inheritance checks for intra-corlib
773         class inheritance and method overrides. This skips a lot of checks
774         and (anyway) permissions cannot work until corlib is loaded.
775
776 2005-03-23  Martin Baulig  <martin@ximian.com>
777
778         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
779         MONO_TYPE_GENERICINST.  
780
781 2005-03-23  Martin Baulig  <martin@ximian.com>
782
783         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
784
785 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
786
787         * class.c: added locking comments to some functions.
788         Cache the interface offsets arrays (saves about 20 KB
789         of runtime memory in a typical app).
790         Reduce the time overhead in mono_class_setup_supertypes ().
791
792 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
793
794         * icall.c: speedup and fix leaks in GetMethodsByName and
795         GetPropertiesByName.
796
797 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
798
799         * reflection.c: some locking fixes.
800
801 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
802
803         * metadata.c: added missing break in case statement.
804
805 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
806
807         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
808         typedbyref return values. Fixes #73941.
809
810 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
811
812         * security-manager.c|h: Added demandunmanaged method and 
813         suppressunmanagedcodesecurity class to MonoSecurityManager.
814         Renamed aptc class to allowpartiallytrustedcallers.
815
816 2005-03-17  Martin Baulig  <martin@ximian.com>
817
818         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
819
820 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
821
822         * file-io.c: disabled file async. IO using aio_*. It uses the
823         threadpool now. Workaround for bug #73718.
824
825 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
826
827         * assembly.h, mono-config.c: added code to deal with bundled configs
828         for bundled assemblies.
829
830 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
831
832         * *.c, private.h: cleanup, removing old private.h header file.
833
834 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
835
836         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
837         and throw_on_unmappable_char attributes.
838
839 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
840
841         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
842         _ProcessName_internal.
843
844 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
845
846         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
847         #73631.
848
849         * icall.c threads.c threads-types.h: Remove slothash icalls as they
850         are no longer used.
851
852 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
853
854         * object.c (compute_class_bitmap): Add support for generics. Fixes
855         #73527.
856
857 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
858
859         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
860
861 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
862
863         * filewatcher.c: commented out the code for windows watcher, as we don't
864         use it (we use the managed implementation instead).
865
866 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
867
868         * object-internals.h (MonoThread): Remove 'unused1' field.
869
870         * appdomain.c: Bump corlib version.
871
872         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
873
874         * reflection.c (mono_reflection_create_runtime_class): Remove the
875         AssemblyBuilder.Save optimization since it causes too many problems.
876
877 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
878
879         * exception.c|h: Added mono_get_exception_reflection_type_load to
880         create a ReflectionTypeLoadException object.
881         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
882         to return NULL is a InheritanceDemand fails during reflection. Updated
883         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
884         ReflectionTypeLoadException if an InheritanceDemand fails during 
885         reflection. Added icall mapping for GetLinkDemandSecurity.
886         * security-manager.c|h: Added ves_icall_System_Security_
887         SecurityManager_GetLinkDemandSecurity internal call to return the
888         class and methods permissions set for a LinkDemand. Removed unused
889         fields in MonoSecurityManager.
890
891 2005-03-10  Martin Baulig  <martin@ximian.com>
892
893         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
894         it's a generic instance.
895
896 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
897
898         * reflection.c (mono_get_object_from_blob): Applied patch from
899         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
900
901         * class.c (mono_class_is_assignable_from): Another try at fixing 
902         #73469 without breaking anything.
903
904 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
905
906         * class.c: (mono_class_is_assignable_from): Revert the last changes
907         since they don't work with generics.
908         
909         * class.c (mono_class_is_assignable_from): Fix build bustage.
910
911         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
912         the managed IsAssignableFrom method. Fixes #73469.
913
914         * reflection.c (mono_reflection_call_is_assignable_from): New helper
915         function.
916
917 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
918
919         * object.c (mono_load_remote_field_new): Fix returning uninitialized
920         memory when the remoting callback does not sets the out arguments.
921         Fixes #73007.
922
923         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
924         by mistake.
925
926         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
927
928         * object-internals.h (MonoStackFrame): Sync with managed object layout.
929
930         * appdomain.c: Bump corlib version.
931
932 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
933
934         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
935         function.
936
937         * threads.c (mono_thread_attach): Detect threads which are not started
938         by the GC pthread wrappers.
939
940 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
941
942         * icall.c: Added new icall for RNG.
943         * rand.c|h: Added new icall to open the RNG. This allows to share a 
944         single handle on Linux to access /dev/urandom and fix #73183.
945
946 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
947
948         * object.c: setting the new vtable in a transparent proxy object must
949         not change the GC descriptor.
950
951 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
952
953         * object.c: fixed compilation without GCJ support.
954         * reflection.c: for runtime-created types ensure klass->has_references
955         is correct (bug #73215).
956
957 2005-03-02  Martin Baulig  <martin@ximian.com>
958
959         * class.c (mono_class_is_assignable_from): Make this work if
960         `oklass' is a generic instance; fixes #72831.
961
962 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
963
964         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
965         with hasthis set.
966         
967         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
968
969         * marshal.c: Reorganize native->managed marshalling code to also use
970         the emit_marshal_... functions.
971
972 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
973
974         * object.c: typed allocs have issues with bitmap sizes > 30,
975         so check for max_set >= 30.
976
977 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
978
979         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
980         managed code. Fixes #73012.
981
982         * metadata.h (MonoMarshalSpec): Add elem_mult field.
983
984         * metadata.c reflection.c: Load/Emit elem_mult as well.
985         
986         * metadata.h (MonoMarshalSpec): Add comment.
987
988         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
989
990         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
991         num_elem to -1 if not given.
992
993         * object-internals.h (MonoReflectionMarshal): Add has_size field.
994
995         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
996         given values.
997
998 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
999
1000         * null-gc.c (mono_gc_free_fixed): Was not compilable.
1001
1002 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
1003
1004         * reflection.c (encode_marshal_blob): Encode param_num field as well.
1005
1006         * object-internals.h (MonoReflectionMarshal): Add param_num field.
1007
1008 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
1009
1010         * object.c: generalized the reference bitmap creation
1011         and added hooks for the new GC.
1012         * class-internals.c: removed the gc_bitmap field from MonoClass.
1013
1014 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1015
1016         * domain.c: help the compiler to produce better code
1017         in mono_jit_info_table_find ().
1018
1019 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
1020
1021         * object.c: make all allocations look typed.
1022
1023 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1024
1025         * socket-io.c: load Mono.Posix if it's not loaded already
1026         (fixes bug#73033).
1027
1028 2005-02-24  Martin Baulig  <martin@ximian.com>
1029
1030         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
1031         * reflection.c (dup_type): Likewise.
1032
1033 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
1034
1035         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
1036         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
1037
1038 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1039
1040         * domain.c, threads.c, object-internals.h: make the critical thread
1041         local vars use the fast access mode (even when we're compiled in
1042         a lib). Provide accessors to be used by the jit during codegen.
1043
1044 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1045
1046         * appdomain.c: Changed hook functios behavior to include
1047         support for the reflection only assemblies. Some icalls were changed
1048         to support the mentioned assemblies too. Signatures of static methods
1049         try_assembly_resolve and real_load now have an additional parameter:
1050         refonly.
1051
1052         * assembly.c: General changes to mono_assembly_ methods to support
1053         reflection only api. Functions mono_assembly_open, mono_assembly_load,
1054         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
1055         suffix, to support an additional gbool parameter to specify whether
1056         the assembli is reflection only or not. Created some new hook functions 
1057         to add support for reflection only assemblies. Signatures of static 
1058         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
1059         have now an additional parameter: refonly.
1060
1061         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
1062         indicating whether the assembly is reflection only or not.
1063
1064         * exception.c: Add mono_get_exception_invalid_operation.
1065
1066         * icall.c: Throw an InvalidOperationException when trying to invoke
1067         a property/method/event, or trying to set/get the value of a field.
1068         Also add an icall to retrieve the ref_only flag to the
1069         MonoReflectionAssembly.
1070
1071 2005-02-23  Chris Toshok  <toshok@ximian.com>
1072
1073         Part of fix for #72827.
1074         * mono-debug.c (mono_debug_add_method): add lexical block data to
1075         the info we write.  Kind of a hack at the moment - we copy the
1076         lexical block info from the MonoDebugMethodInfo to the
1077         MonoDebugMethodJitInfo here, before writing it.
1078         (mono_debug_read_method): read the lexical block info.
1079
1080         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
1081
1082         * debug-mono-symfile.h: add lexical block support.
1083
1084         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
1085         support.
1086
1087 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
1088
1089         * loader.c (mono_lookup_pinvoke_call): Fix warning.
1090
1091         * object.c (mono_runtime_free_method): Call mono_free_method () and
1092         put the TODOs there.
1093
1094         * loader.c (mono_free_method): Free up most memory allocated for 
1095         dynamic methods.
1096
1097 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
1098
1099         * reflection.c: properly flag a Type argument to a
1100         named custom attr value (bug #72248).
1101
1102 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1103
1104         * reflection.c: reduce code duplication in named custom
1105         attribute encoding.
1106
1107 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
1108
1109         * reflection.c: properly encode custom attrs of type object
1110         (bug #72649).
1111
1112 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
1113
1114         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
1115
1116 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
1117
1118         * socket-io.c: load System.dll if it's not loaded already
1119         (bug #72850 and #70477).
1120
1121 2005-02-21  Martin Baulig  <martin@ximian.com>
1122
1123         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
1124         generic instances.
1125
1126 2005-02-21  Martin Baulig  <martin@ximian.com>
1127
1128         * reflection.c (mono_image_build_metadata): We also need to
1129         "fixup" the MethodImpl table after we computed the final method
1130         indices.  Call fixup_methodimpl() to do that.
1131         (fixup_methodimpl): New private method.
1132
1133 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
1134
1135         * assembly.c: special case mscorlib.dll (bug#72536),
1136         patch from Carlos Alberto Cortez.
1137
1138 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
1139
1140         * threads-types.h threads.c: Fix build bustage.
1141
1142         * threads.c: Use a union for long<->double conversions.
1143
1144         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
1145         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
1146
1147         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
1148         containing the checkpoint call with NOT_TAKEN.
1149         
1150         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
1151         checkpoint before pushing the arguments, so they won't have to be
1152         spilled to stack.
1153
1154 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1155
1156         * domain.c, assembly.c, domain-internals.h: make some data
1157         const and relocation-free.
1158
1159 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
1160
1161         * object.c, appdomain.c, class-internals.h: introduce the
1162         MonoClassRuntimeInfo structure to hold the info needed to
1163         use a class at runtime. Made mono_class_vtable() lock-free
1164         for all the appdomains.
1165
1166 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
1167
1168         * metadata-internals.h, image.c: introduce a per-image mempool to
1169         be used for memory that has the same lifetime as the image.
1170
1171 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
1172
1173         * domain.c: In mono_init_internal(), instead of selecting the first
1174         runtime version supported by an executable, get a list of all
1175         supported versions and select the one for which an mscorlib exists
1176         (since even if the runtime supports a given version, it doesn't mean
1177         that the framework for that version is installed).
1178         Modified get_runtimes_from_exe to support this behavior.
1179         In supported_runtimes, added information about additional system
1180         assembly versions.
1181         
1182         * assembly.c: Added support for more than one system assembly version
1183         per runtime version. Updated the assembly list.
1184         In mono_assembly_remap_version, removed the initial version check,
1185         since we don't know to which version we need to compare until we
1186         get the version set on which the assembly is based.
1187         Moved the code for loading corlib into the new method
1188         mono_assembly_load_corlib(), so it can be used by the initialization
1189         code.
1190         
1191         * domain-internals.h: Updated data structures and added declaration
1192         for mono_assembly_load_corlib.
1193
1194 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
1195
1196         * reflection.c (resolve_object): Fix the creation of the signature in 
1197         the SignatureHelper case.
1198
1199         * assembly.c (mono_assembly_remap_version): Fix binary search.
1200         
1201 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
1202  
1203         * class.c: Added inheritance check when a method is overloaded (from a
1204         virtual method or when implementing an interface) and when a class is
1205         inherited. Added functions to set a failure for a class and to 
1206         retreive the exception from a failure.
1207         * class-internals.h: Added fields to MonoClass to keep the exception
1208         information status for inheritance (or other exceptions) to be thrown
1209         later (i.e. not at load time).
1210         * object.c: Throw the inheritance SecurityException when a type is to 
1211         be created with either class or method inheritance violations.
1212         * reflection.c|h: Fix when getting declsec from a class. Removed 
1213         unrequired code for class. Improved sanity in parameter naming.
1214         * security-manager.c|h: Added functions to check for class and method
1215         inheritance.
1216
1217 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
1218
1219         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
1220         and has_finalize in dynamic types as well.
1221
1222 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
1223
1224         * culture-info-table.h : fixed currency format for en-GB (and so on).
1225
1226 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
1227
1228         * gc.c: ensure the GC handles never have 0 as a value.
1229
1230 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
1231
1232         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
1233         a pointer to a struct to unmanaged code. Fixes #72625.
1234
1235 2005-02-16  Martin Baulig  <martin@ximian.com>
1236
1237         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
1238
1239 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
1240
1241         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
1242
1243 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
1244
1245         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
1246
1247         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
1248         UnmanagedFunctionPointerAttribute, use it for determining calling convention
1249         etc. Fixes #71471.
1250
1251         * reflection.c (mono_custom_attrs_get_attr): New helper function.
1252
1253         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
1254
1255 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
1256
1257         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
1258         changes to make the current context a field in MonoThread.
1259
1260 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
1261
1262         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
1263         the last change.
1264         
1265         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
1266         extracted from mono_marshal_get_native_wrapper.
1267
1268         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
1269         to create wrappers around native functions.
1270
1271         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
1272         delegates for arbitrary function pointers. Fixes #71472.
1273
1274 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
1275
1276         * threads.c: cleaned up the code a little.
1277
1278 2005-02-15  Martin Baulig  <martin@ximian.com>
1279
1280         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
1281         the data table.
1282
1283         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
1284         allocate larger chunks if needed.
1285
1286 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
1287
1288         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
1289         in by mistake.
1290
1291 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
1292
1293         * domain.c: keep the domains in an array and ensure the domain ids
1294         are kept small, so they can be used as indexes to domain-specific data
1295         with a small memory overhead.
1296
1297 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
1298
1299         * icall.c: Handle byref types in Type icalls. Fixes #72544.
1300
1301 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
1302
1303         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
1304
1305 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
1306
1307         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
1308
1309         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
1310         values.
1311
1312         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
1313         
1314 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
1315
1316         * domain-internals.h: add the hashtable here.
1317
1318         * class-internals.h: Remove `info' from MonoMethod
1319
1320         * domain.c: Add a new hashtable, jit_trampoline_hash
1321
1322 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
1323
1324         * object.c: don't set the value of static fields
1325         (fixes bug#72494).
1326
1327 2005-02-11  Martin Baulig  <martin@ximian.com>
1328
1329         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
1330         (mono_debug_add_method): Silently ignore the method if it's too big.
1331         (mono_debug_add_type): Likewise.
1332
1333 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
1334
1335         * threads.c, appdomain.c: remove #ifdefs from the code.
1336
1337 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
1338
1339         * metadata-internals.h: Added flags to MonoAssembly to cache the most
1340         common security informations. This allows us to stay in unmanaged code
1341         when doing LinkDemand and it's special cases (except for the first 
1342         time for initialization). The flags a very much used with --security.
1343         * reflection.c|h: Added code to get declarative security attributes 
1344         for LinkDemand and InheritanceDemand. This required to refactor the
1345         existing code for Demand.
1346         * security-manager.c|h: Added new method fields for the special cases
1347         of LinkDemand.
1348
1349 2005-02-10  Martin Baulig  <martin@ximian.com>
1350
1351         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
1352         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
1353
1354 2005-02-10  Martin Baulig  <martin@ximian.com>
1355
1356         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
1357         debugging code; this is almost a complete rewrite.
1358
1359         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
1360
1361 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1362
1363         * domain.c, object.h: expose mono_string_equal () and 
1364         mono_string_hash ().
1365         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
1366         it's implemented in managed code.
1367
1368 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1369
1370         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
1371         lo leak objects between appdomains.
1372
1373 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1374
1375         * assembly.c: old compilers compilation fix from 
1376         robertj@gmx.net (Robert Jordan).
1377
1378 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
1379
1380         * class-internals.h: Little reminder for the future.
1381
1382         * debug-helpers.c: Fix up wrapper_type_names
1383
1384 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1385
1386         * image.c, metadata-internals.h: when loading an image from a file,
1387         mmap all of it and use the same codepaths as when using a
1388         in-memory image: the code is simpler and we use less memory
1389         (both writable and readonly).
1390
1391 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
1392
1393         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
1394         API to alloc runtime data structures that need to be tracked by the
1395         GC and contain pointers.
1396         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
1397         make the code more readable and eventually use a different GC.
1398
1399 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
1400
1401         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
1402         for out arguments.
1403         
1404 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
1405
1406         * object.c: In release_type_locks(), don't release the cctor lock
1407         if it has already been released. This fixes a crash in the
1408         thread5 test.
1409
1410 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
1411
1412         * gc.c, marshal.c, icall.c: register a delegate for finalization
1413         only when the native function pointer has been allocated for it.
1414
1415 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
1416
1417         * object.c: cleaned up some code, allocate objects that are
1418         pointer free with the atomic malloc variant. Allocate memory
1419         for static data from the mempool if it's pointer-free.
1420         Allocate the bounds array at the end of the array data, when needed.
1421         * object-internals.h, object.h: move a private function in a private
1422         header.
1423         * class.c: handle missing case in tracking references in fields.
1424
1425 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
1426
1427         * class.c, class-internals.h: keep track if a type has
1428         reference fields in either the instance or static fields.
1429
1430 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
1431
1432         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
1433         and renamed to MonoRuntimeInfo. Added fields to store the expected
1434         framework assembly version. Changed mono_get_framework_version and
1435         mono_get_runtime_version for a single mono_get_runtime_info method.
1436         
1437         * assembly.c: Added method to remap system assembly versions to the
1438         current executing runtime version. Removed old mapping code.
1439         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
1440         
1441         * icall.c, reflection.c: Track api changes.
1442
1443 2005-02-06  Miguel de Icaza  <miguel@novell.com>
1444
1445         * loader.c (method_from_memberref): Improve error reporting,
1446         produce the class name instead of the typeref/typedef index. 
1447
1448 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
1449
1450         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
1451
1452 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1453
1454         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
1455         stdcall and charset name mangling.  Reorganize the code and add
1456         some tracing stuff.
1457
1458 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
1459
1460         * monodiet.c: More iters!
1461
1462         * marshal.c: Iter usage.
1463
1464         * icall.c: Iter usage.
1465
1466         * object.c: Use iters.
1467
1468         * debug-helpers.c: More iters
1469
1470 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1471
1472         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
1473         under win32.
1474
1475 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
1476
1477         * mono-debug-debugger.c: use iters
1478
1479         * class.c, class-internals.h: mono_class_setup_events is static
1480         now
1481
1482         * All callers: use iters
1483
1484 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
1485
1486         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
1487         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
1488
1489 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
1490
1491         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
1492
1493         * marshal.h: Add prototypes for ldfld/stfld_remote.
1494
1495         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
1496         this is called during startup.
1497         
1498 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
1499
1500         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
1501         MonoThreadsSync struct private in monitor.c. Changed the way
1502         MonoThreadsSync is allocated so it's faster and there is no
1503         need to keep track of it with a finalizer and it uses less memory.
1504         This also finally allows us to allocate mono objects as ptrfree when
1505         there are no reference fields.
1506
1507 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
1508
1509         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
1510         disappearing link to the GC interface and use them to simplify
1511         the gchandles code.
1512
1513 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
1514
1515         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
1516         stfld_remote which call mono_load/store_field_new. This allows methods
1517         calling ldfld/stfld wrappers to be AOTed.
1518
1519         * console-io.c: Include sys/filio.h under solaris.
1520         
1521         * console-io.c: Include curses.h if needed correctly.
1522
1523 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
1524         
1525         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
1526         method->klass as well.
1527
1528         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
1529
1530         * class.c (mono_class_init): Switch on lazy initialization of 
1531         methods.
1532
1533         * class.c (mono_class_get_finalizer): Handle the case when the 
1534         finalizer is inherited.
1535
1536 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1537
1538         * console-io.c: <curses.h> is needed by term.h on solaris.
1539
1540 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
1541
1542         * icall.c, class-internals.h, monodiet.c, class.c: Remove
1543         mono_class_setup_properties where possible. Remove this ftn from
1544         the header file, and make it static.
1545
1546 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
1547
1548         * loader.c: Add missing setup_... call.
1549
1550         * class.c: Add missing setup_... calls.
1551
1552         * class.c (mono_class_init): Switch on lazy initialization of 
1553         the generic vtable.
1554         
1555         * class.c (mono_class_init): Fix generics broken by the recent changes.
1556
1557         * monodiet.c (handle_type): Add missing setup_... calls.
1558
1559         * class.c: Back out garbage in previous patch.
1560         
1561         * class.c: Add missing setup_... calls.
1562
1563         * class.c (mono_class_get_method_from_name_flags): Avoid calling
1564         mono_class_setup_methods () if possible.
1565
1566         * class-internals.h (MonoClass): Add 'has_cctor' flag.
1567
1568         * class-internals.h (MonoCachedClassInfo): New structure.
1569
1570         * class.c: Initialize properties and events fields of MonoClass lazily.
1571
1572         * class.c: Add infrastructure for lazily initializing the methods and
1573         vtable fields of MonoClass. Not yet used.
1574
1575         * class.c (mono_class_get_finalizer): New helper function.
1576
1577         * class.c: Add infrastructure for loading some class related data from
1578         an AOT file.
1579
1580         * object.c: Add infrastructure for initializing the vtable from data
1581         in the AOT file.
1582
1583         * gc.c (run_finalize): Use mono_class_get_finalizer ().
1584
1585         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
1586         appropriate initialization function before accessing parts of the
1587         MonoClass structure.
1588
1589         * marshal.c: Fix warnings.
1590         
1591         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
1592
1593         * mono-debug-debugger.c (get_exception_message): Use 
1594         mono_class_get_method_from_name_flags ().
1595
1596 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
1597
1598         * reflection.c, appdomain.c: Replace a few manual searches that
1599         Zoltan missed. (Paolo approved this part of my initial patch).
1600
1601 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
1602
1603         * profiler.c: disable recording statistical events at report time.
1604
1605 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1606
1607         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
1608         to byteswap arrays of enum values, too (bug #72080).
1609
1610 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
1611
1612         * appdomain.c (set_domain_search_path): Allow this to be called if
1613         domain->setup is not yet set.
1614
1615         * loader.c (mono_method_get_index): New helper function.
1616
1617         * loader.c reflection.c: Use mono_method_get_index ().
1618
1619         * class.c (mono_class_get_method_from_name_flags): New helper method.
1620
1621         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
1622         this.
1623
1624         * class.c (mono_class_get_cctor): New helper method.
1625
1626         * string-icalls.c object.c class.c marshal.c reflection.c: Use
1627         mono_class_get_method () to look up methods.
1628
1629 2005-02-01  Miguel de Icaza  <miguel@novell.com>
1630
1631         * console-io.c: Fix the build, this should work on Windows.
1632
1633 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
1634
1635         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
1636         be set to null to keep things valid
1637
1638 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1639
1640         * icall.c: added Console 2.0 icalls.
1641         * Makefile.am: added console-io.[ch]
1642         * console-io.[ch]: internal calls for Console 2.0 API.
1643
1644 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1645
1646         * class.c: make sure we consider all the interfaces
1647         when calculating max_interface_id (bug found by
1648         Jeroen Frijters running ikvm).
1649
1650 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
1651
1652         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
1653         valuetype fields to null.
1654
1655         * object.c (set_value): Ditto. Fixes #71669.    
1656
1657 2005-01-31  Martin Baulig  <martin@ximian.com>
1658
1659         * metadata.c (mono_metadata_has_generic_params): New public
1660         function; checks whether something is a generic method.
1661
1662 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
1663
1664         * appdomain.c: fix infinite recursion when adding assemblies.
1665
1666 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
1667
1668         * object.c: Fix small typo to return all items for Environment.
1669         GetCommandLineArgs.
1670
1671 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
1672
1673         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
1674         reflection.c: more domain and assembly-unload related fixes
1675         and memory leaks plugs.
1676
1677 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
1678
1679         * 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.
1680
1681 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
1682
1683         * loader.c (mono_method_signature): Make this method lazy
1684         (mono_get_method_from_token): Don't computate the signature here.
1685
1686         Doing this saves quite a bit of memory. I got 90 kb on starting up
1687         monodoc. It should also save some disk reads on startup.
1688
1689         * *: MonoMethod->signature might be NULL now. You *MUST* use
1690         mono_method_signature.
1691
1692 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
1693
1694         * object.c (mono_runtime_get_main_args): Return an array from the
1695         current domain here. Fixes #71938.
1696
1697 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
1698
1699         * monitor.c: formatting changes to comply with the
1700         mono coding style and remove #ifdefs from the code.
1701
1702 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1703
1704         * metadata.c, private.h: remove some unneeded data
1705         and use a more compact representation for table schemas.
1706
1707 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
1708
1709         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
1710         to get a better distribution in hash tables.
1711         * *.c: use mono_aligned_addr_hash() where appropriate.
1712         * assembly.c: make var static.
1713
1714 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
1715
1716         * domain-internals.h: Put MonoJitInfo on a diet.
1717
1718         * domain.c: Fix a warning.
1719
1720 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1721
1722         * gc.c: rework the gc handles code to reuse handles
1723         when freed.
1724
1725 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
1726
1727         * domain.c: fixed long standing bug in mono_string_equal() which
1728         was brought to light with the ldstr changes.
1729
1730 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
1731
1732         * reflection.c: Remove warning by adding missing include for marshal.h
1733
1734 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
1735
1736         * domain.c, object.c: change the ldstr_table to hold
1737         MonoString* as keys: makes the runtime isinterned lookup
1738         faster and simplifies memory management.
1739
1740 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
1741  
1742         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
1743         possible to add imperative security checks before calling the icall.
1744         * reflection.c: Return security attributes on the original MonoMethod
1745         (and not the wrapped one). This fix permissions on icalls.
1746
1747 2005-01-25  Dick Porter  <dick@ximian.com>
1748
1749         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
1750         the check for mktime() support actually test the mktime() return
1751         value.  "Fixes" bug 71682, though the output is still different to
1752         MS.
1753
1754 2005-01-25  Martin Baulig  <martin@ximian.com>
1755
1756         * class.c (mono_class_is_assignable_from): Make this work for
1757         generic instances.
1758
1759 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
1760
1761         * marshal.c (mono_string_utf8_to_builder)
1762         (mono_string_builder_to_utf16): We might not have ownership of the
1763         string. In thise case, we need to create a new buffer.
1764
1765         * object-internals.h (mono_stringbuilder_capacity): sb->str might
1766         be null, in which case, use the default capacity.
1767
1768 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1769
1770         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
1771         GC events to the profiler.
1772
1773 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
1774
1775         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
1776         if you don't want the GC to run.
1777
1778 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
1779
1780         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
1781         start providing a GC API and keeping different implementations in
1782         their own file.
1783         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
1784
1785 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
1786
1787         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
1788         mmap rather than allocating a huge buffer.
1789         (mono_debug_close_mono_symbol_file): Free the buffer allocated
1790         above.
1791
1792 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
1793
1794         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
1795         and CheckExecutionRights.
1796         * reflection.c|h: Keep the index of the declarative security to be 
1797         used, instead of the pointer, when AOT compiler is used. Also add 
1798         class initialization when requesting demands.
1799         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
1800         CheckExecutionRights. Both properties are now FALSE by default, and
1801         unmodifiable, unless the --security option is used.
1802
1803 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
1804
1805         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
1806         reflection.c: properly refcount images and assemblies, many leaks fixed.
1807
1808 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1809
1810         * threadpool.c: increase the timeout for threads in the thread pool to
1811         10s.  Fixes bug #67159.
1812
1813 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
1814
1815         * class-internals.h: Sun's compiler insists on explicit
1816         signed on bit fields to handle then correctly.
1817
1818 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
1819
1820         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
1821         Make the size of the array fit only the number of invalid path
1822         chars that we have.
1823
1824         * class.c (_mono_class_get): Improve the error reporting when a
1825         class referenced is not found, to assist debugging. 
1826
1827 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
1828
1829         * threads.c: fix off-by-one error.
1830         * domain.c: free data allocated in the domain.
1831
1832 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
1833
1834         * reflection.c (mono_method_body_get_object): Fill out exception info
1835         as well.
1836
1837         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
1838         structure.
1839         
1840 2005-01-19  Martin Baulig  <martin@ximian.com>
1841
1842         * loader.c (mono_get_method_constrained): Make this work again.
1843
1844 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
1845
1846         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
1847         guint16 to match the managed side.
1848
1849         * reflection.c (mono_reflection_body_get_object): Fill out local
1850         variables array.
1851
1852         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
1853         as well.
1854
1855         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
1856         'local_var_sig_token'.
1857
1858 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
1859
1860         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
1861         System.Drawing.
1862
1863         * reflection.c (mono_method_body_get_object): Handle abstract and
1864         runtime methods.
1865
1866 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
1867
1868         * marshal.c, loader.c, class-internals.h, reflection.c:
1869         store the emthod data for a wrapper in an array instead of a list.
1870
1871 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
1872
1873         * marshal.c: change the code to allocate memory more
1874         conservatively for method wrappers.
1875
1876 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
1877
1878         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
1879         fields from MonoClass to the marshal info structure where they belong.
1880
1881 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
1882
1883         * class.c, object.c, class-internals.h, marshal.c: rearrange
1884         some fields and tweak some types to lower memory usage.
1885
1886 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
1887
1888         * threads.c (signal_thread_state_change): Handle the case when the
1889         target thread is the current thread.
1890
1891         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
1892
1893         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
1894         emit_ptr_to_object_conv. 
1895
1896         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
1897         marshalling. Fixes #71352.
1898
1899 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
1900
1901         * metadata.h, blob.h: move table enum to blob.h so it can be included
1902         in any header.
1903         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
1904         cut the size of MonoImage/MonoDynamicImage.
1905
1906 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
1907
1908         * profiler.c (mono_profiler_install_simple): Fix default arguments.
1909
1910 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
1911
1912         * reflection.c, reflection.h, icall.c: add a function to check
1913         if an attribute type is defined for a metadata object.
1914
1915 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
1916
1917         * object-internals.h: Added some needed fields from StringBuilder class.
1918         * marshal.c: Set the maxCapacity when creating a StringBuilder.
1919
1920 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
1921
1922         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
1923         threads before shutting down the runtime.
1924
1925         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
1926
1927 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
1928
1929         * object-internal.h, threads.c: implement stacksize and 
1930         parameterized thread start functionality (requires
1931         matching corlib). Marked broken code for later removal.
1932
1933 2005-01-12  Martin Baulig  <martin@ximian.com>
1934
1935         * class-internals.h (MonoGenericClass): Moved the `initialized'
1936         flag to MonoDynamicGenericClass, removed `init_pending'.
1937         (MonoGenericInst): Added `is_reference' flag.
1938
1939 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
1940
1941         * reflection.c (mono_image_create_pefile): Only set the pe_offset
1942         inside the MSDOS header. Fixes #71201.
1943
1944         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
1945         gc thread.
1946         (mono_domain_finalize): Ditto.
1947
1948 2005-01-12  Martin Baulig  <martin@ximian.com>
1949
1950         * class.c (mono_get_shared_generic_class): Use the cache for
1951         non-dynamic generic classes.
1952
1953         * class-internals.h (mono_class_create_generic_2): Removed
1954         function prototype, this function is now static inside class.c.
1955
1956         * class.c (mono_class_create_generic_2): Made this static, only
1957         call it from mono_class_init() and mono_class_setup_parent().
1958         (collect_implemented_interfaces_aux): Call mono_class_init() on
1959         the interfaces we collect.
1960         (mono_class_setup_vtable): Call mono_class_init (class->parent).
1961
1962 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
1963
1964         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
1965         it a real thread handle.
1966
1967         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
1968         MonoJitExceptionInfo, since each catch clause needs its own variable.
1969         
1970 2005-01-11  Dick Porter  <dick@ximian.com>
1971
1972         * image.c (mono_pe_file_open): New variant on mono_image_open()
1973         that does not set up the CLI metadata; used for FileVersionInfo so
1974         it can get the data for windows binaries too.
1975         
1976         * process.c (process_read_string_block): Don't read off the end of
1977         the StringTable block.
1978
1979         These both fix bug 70766.
1980
1981 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
1982
1983         * gc.c: set some fields to NULL at GC cleanup time.
1984         * threads.c: if we quit the main thread, call exit ().
1985
1986 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
1987
1988         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
1989
1990 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
1991
1992         * threads.h, threads.c, object.c: added accessor and settor for
1993         main_thread. Handle it specially when exiting from it: wait
1994         for other foreground threads to exit.
1995
1996 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
1997
1998         * process.c, verify.c: remove some bloat.
1999
2000 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
2001
2002         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
2003         the calling convention to cdecl under win32.
2004
2005 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
2006
2007         * object.c (mono_object_get_size): New function to get the size of
2008         an object instance.
2009
2010         * profiler.c (simple_allocation): Use above.
2011
2012 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
2013
2014         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
2015         ves_icall_System_AppDomain_getRootDomain (as it's not required to
2016         get an appdomain by it's id and we can't assume the root's id is 0).
2017         * domain-internals.h: Change the function prototype to match.
2018         * icall.c: Change the icall table for AppDomain.
2019
2020 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
2021
2022         * locales.c (string_invariant_compare_char): Only compute
2023         GUnicodeTypes in the case where we need them.  Test for ordinality
2024         first and return if so.
2025
2026         From the commit:
2027
2028                 /*
2029                  * FIXME: here we must use the information from c1type and c2type
2030                  * to find out the proper collation, even on the InvariantCulture, the
2031                  * sorting is not done by computing the unicode values, but their
2032                  * actual sort order.
2033                  */
2034
2035 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
2036
2037         * loader.c: for P/Invoke methods, allow the "Internal" shared
2038         library name to refer to the calling process symbol namespace.
2039
2040 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
2041
2042         * Makefile.am: Add the security manager to the build.
2043         * security-manager.c|h: New. Initialization of the security manager.
2044
2045 2005-01-07  Dick Porter  <dick@ximian.com>
2046
2047         * threads.c: 
2048         * monitor.c: Update thread state during Monitor and WaitHandle
2049         waits.  Fixes bug 71031.
2050
2051 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
2052
2053         * reflection.c (property_encode_signature): Correctly handle when the
2054         property has no methods.
2055
2056 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
2057
2058         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
2059         
2060         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
2061         fields from mb, not rmb. Fixes #71017.
2062
2063         * marshal.c (emit_ptr_to_str_conv): Add support for 
2064         ByValTStr -> string conversion. Fixes #71015.
2065
2066         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
2067
2068         * mempool.c (mono_mempool_contains_addr): New helper function.
2069
2070 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
2071
2072         * metadata.c (mono_metadata_compute_size): Fix size calculation of
2073         HasSematics encoded fields.
2074         
2075         * metadata.c (mono_type_to_unmanaged): Improve error message for 
2076         invalid string marshalling.
2077
2078         * metadata.c: Fix warnings.
2079         
2080 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
2081
2082         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
2083         profiler support.
2084
2085 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
2086
2087         * domain.c object.c domain-internals.h: Revert part of r38077 since the
2088         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
2089         tests.
2090
2091 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
2092
2093         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
2094         so methods containing these can be AOTed.
2095
2096 2005-01-03  Martin Baulig  <martin@ximian.com>
2097
2098         * loader.c (find_method): Removed the hack for generic instances.
2099         (method_from_memberref): If our parent is a generic instance, pass
2100         its generic type definition to find_method() and then inflate the
2101         method.
2102         (mono_get_method_constrained): Pass the generic type definition to
2103         find_method() and inflate the method later.
2104
2105         * class-internals.h (MonoStats): Added `generic_class_count'.
2106
2107         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
2108         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
2109
2110         * reflection.c (mono_custom_attrs_from_params): Don't ignore
2111         generic type definitions.
2112
2113 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
2114
2115         * loader.c icall.c: Fix warnings.
2116
2117 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
2118
2119         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
2120         blittable types. Fixes #70864.
2121
2122 2004-12-29  Martin Baulig  <martin@ximian.com>
2123
2124         * icall.c
2125         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
2126
2127         * reflection.c (mono_method_get_object): Create a
2128         "System.Reflection.MonoGenericMethod" for inflated methods; don't
2129         call mono_get_inflated_method().
2130
2131         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
2132
2133 2004-12-27  Martin Baulig  <martin@ximian.com>
2134
2135         * class-internals.h (MonoMethod): Added `is_inflated' flag.
2136         (MonoMethodInflated): Added `inflated' field.
2137
2138         * class.c (mono_class_inflate_generic_method): Don't really
2139         inflate the method here; just set the `is_inflated' flag in the
2140         MonoMethod.
2141         (mono_class_get_inflated_method): Actually inflate the method here
2142         if it's not already inflated; we use the MonoMethodInflated's new
2143         `inflated' field as a cache.
2144
2145 2004-12-26  Martin Baulig  <martin@ximian.com>
2146
2147         * class.c
2148         (inflate_generic_class): Moved some code out of inflate_generic_type().
2149         (mono_class_inflate_generic_method): If we're already inflated,
2150         inflate the context and use the declaring method; ie. make sure
2151         the declaring method of an inflated method is always the generic
2152         method definition.
2153         (mono_class_create_from_typedef): Create
2154         `class->generic_container->context->gclass'.
2155
2156 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
2157
2158         * metadata-internals.h, marshal.c, reflection.c: More
2159         MonoGHashTable->GHashTable.
2160
2161         * domain-internals.h, class.c: Change MonoGHashTable's into
2162         GHashTables for some cases where no gc stuff is used
2163
2164         All users: update apis
2165
2166 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
2167
2168         * metadata.c (builtin_types): Make this `const'. Makes this get
2169         put into the shareable section.
2170         (mono_metadata_init): Casts to make gcc happy.
2171
2172 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
2173
2174         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
2175
2176 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
2177
2178         * icall.c: Added an internal call to retrieve the position and length
2179         of assembly-level declarative security attributes (RequestMinimum, 
2180         RequestOptional and RequestRefuse). This is used by the Assembly class
2181         to re-create the corresponding permission sets.
2182
2183 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
2184
2185         * marshal.c: fix the stelemref wrapper to be type correct
2186         (and faster).
2187
2188 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
2189
2190         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
2191         to do key & 0x7fffffff. Hashtable already does this. It just
2192         results in longer code.
2193
2194 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
2195
2196         * appdomain.c: Bump corlib version.
2197         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
2198         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
2199         * reflection.c|h: Add functions to get declarative security infos
2200         (blob position and length) for assemblies, classes and methods.
2201
2202 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
2203
2204         * reflection.c: sort the constant table (bug #70693).
2205
2206 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
2207
2208         * object-internals.h, threads.c, domain.c: add accessors for
2209         the MonoThread and MonoDomain tls keys.
2210
2211 2004-12-18  Martin Baulig  <martin@ximian.com>
2212
2213         * class.c (inflate_generic_type): If we're inflating a generic
2214         instance, set `ngclass->context->container = context->container';
2215         ie. the container we inflated into.
2216
2217         * metadata.c (mono_metadata_parse_generic_param): Reflect above
2218         inflate_generic_type() changes.
2219
2220 2004-12-17  Martin Baulig  <martin@ximian.com>
2221
2222         * class-internals.h
2223         (MonoGenericClass): Replaced `MonoType *generic_type' with
2224         `MonoClass *generic_class'.  Removed `dynamic_info'; if
2225         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
2226         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
2227
2228 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
2229
2230         * exception.c (mono_exception_from_token): New helper function.
2231
2232 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
2233
2234         * assembly.c (mono_assembly_load_with_partial_name): Call 
2235         mono_assembly_loaded before invoking the preload hooks. Fixes
2236         #70564.
2237
2238         * object-internals.h (MonoThread): Change culture_info and 
2239         ui_culture_info into an array.
2240
2241         * threads.c: Cache culture info objects from more than one appdomain.
2242
2243         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
2244         current UI culture.
2245
2246 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
2247
2248         * threads.h threads.c appdomain.c: Clear the culture_info field of
2249         all threads during unloading if they point to an object in the dying
2250         appdomain.
2251
2252 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
2253
2254         * culture-info.h (TextInfoEntry): New struct
2255         * object-internals.h: sync with managed
2256         * locales.c: fill the `text_info_data' field
2257         * culture-info-tables.h: update
2258
2259 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
2260
2261         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
2262         collector.
2263
2264 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
2265
2266         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
2267         (ves_icall_ModuleBuilder_getMethodToken): Ditto
2268
2269 2004-12-12  Martin Baulig  <martin@ximian.com>
2270
2271         * mono-debug-debugger.c (write_type): If we're an enum and the
2272         builtin types have already been initialized, call mono_class_init().
2273
2274 2004-12-11  Martin Baulig  <martin@ximian.com>
2275
2276         * metadata.c (mono_metadata_load_generic_params): Added
2277         `MonoGenericContainer *parent_container' argument; automatically
2278         compute `container->is_method'; pass the correct owner to
2279         get_constraints().      
2280
2281         * reflection.c (compare_genericparam): Sort the GenericParam table
2282         according to increasing owners. 
2283
2284 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
2285
2286         * profiler.c: allow disabling the default profiler.
2287
2288 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
2289
2290         * decimal.c, icall.c: allow disabling System.Decimal support.
2291
2292 2004-12-09  Marek Safar <marek.safar@seznam.cz>
2293
2294         * reflection.c: Add support for null attribute arguments.
2295
2296 2004-12-09  Martin Baulig  <martin@ximian.com>
2297
2298         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
2299         names to get rid of compiler warnings.
2300
2301 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
2302
2303         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
2304         mono_marshal_load_type_info (). Fixes #69625.
2305         (mono_marshal_get_ptr_to_struct): Likewise.
2306
2307 2004-12-08  Martin Baulig  <martin@ximian.com>
2308
2309         * mono-debug.h: Bumped version number to 47.
2310
2311         * mono-debug-debugger.c
2312         (mono_debugger_event_handler, mono_debugger_event): Take two
2313         guint64 arguments insteed of a gpointer and a guint32.  
2314
2315 2004-12-08  Martin Baulig  <martin@ximian.com>
2316
2317         * debug-mono-symfile.h
2318         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
2319         `address' to `native_offset'.
2320
2321 2004-12-08  Martin Baulig  <martin@ximian.com>
2322
2323         * class.c (mono_class_create_from_typespec): Only inflate if we
2324         either have `context->gclass' or `context->gmethod'.
2325
2326 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
2327
2328         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
2329
2330         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
2331
2332         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
2333
2334         * reflection.c (mono_assembly_get_object): Remove the workaround put
2335         in for the release.
2336         
2337         * appdomain.c: Use the corlib_internal field from MonoAssembly.
2338
2339         * appdomain.c: Bump corlib version.
2340
2341         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
2342         be visible in other appdomains.
2343
2344 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
2345
2346         * threads.c: Interlocked inc and dec for longs were messed up,
2347         use a KISS based impl for this. Fixes 70234
2348
2349 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
2350
2351         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
2352
2353 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
2354
2355         * icall.c: fix to follow policy not to allow struct
2356         arguments in icalls.
2357
2358 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2359
2360         * process.c: make the patch that handles spaces in file paths work
2361         on mono/windows too.
2362
2363 2004-12-06  Martin Baulig  <martin@ximian.com>
2364
2365         * class.c (mono_class_create_generic): Call
2366         mono_class_setup_supertypes() if we're dynamic.
2367         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
2368
2369 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
2370
2371         * object-internals.h: Add new fields to MonoThread.
2372
2373         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2374
2375         * icall.c threads-types.h threads.c: Add new icalls.
2376
2377         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
2378
2379         * object-internals.h (MonoReflectionAssembly): Sync object layout with
2380         managed side.
2381
2382         * appdomain.c: Bump corlib version.
2383
2384         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
2385         internal assemblies. Fixes #69181.
2386
2387 2004-12-05  Martin Baulig  <martin@ximian.com>
2388
2389         * class.c (mono_class_inflate_generic_signature): Make this a
2390         no-op if `context' is NULL or we don't have any type parameters;
2391         also copy `sentinelpos'.        
2392
2393 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
2394
2395         * image.c: Add unbox_wrapper_cache.
2396
2397         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
2398
2399         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
2400         function generator.
2401         
2402         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
2403         Fixes #70173.
2404
2405         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
2406         
2407 2004-12-04  Martin Baulig  <martin@ximian.com>
2408
2409         * loader.c (mono_method_get_signature_full): New public function;
2410         like mono_method_get_signature(), but with an additional
2411         `MonoGenericContext *' argument.
2412
2413         * class.c (mono_class_inflate_generic_signature): Formerly known
2414         as inflate_generic_signature(); make this public.
2415
2416 2004-12-04  Martin Baulig  <martin@ximian.com>
2417
2418         * metadata.c
2419         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
2420         instead of a `MonoGenericContainer *'.  
2421         (mono_metadata_parse_array_full): Likewise.
2422         (mono_metadata_parse_signature_full): Likewise.
2423         (mono_metadata_parse_method_signature_full): Likewise.
2424         (mono_metadata_parse_generic_inst): Likewise.
2425         (mono_metadata_parse_generic_param): Likewise.
2426         (mono_metadata_parse_mh_full): Likewise.
2427         (mono_type_create_from_typespec_full): Likewise.
2428
2429 2004-12-03  Martin Baulig  <martin@ximian.com>
2430
2431         * class-internals.h (MonoGenericContainer): Replaced the
2432         `MonoGenericContext * pointer with a `MonoGenericContext'
2433         structure and made it the first element.
2434
2435 2004-12-03  Martin Baulig  <martin@ximian.com>
2436
2437         * class.c
2438         (inflate_generic_type): Set the `context->container' when creating
2439         a new MonoGenericContext.
2440         (mono_class_inflate_generic_method): Likewise.
2441         (mono_class_create_from_typespec): Just use `context->container'
2442         to get the container.
2443
2444         * loader.c (method_from_methodspec): Set `context->parent' from
2445         `context->container' - and if that's a method container, use its
2446         parent.  Also set the `context->container' when creating a new
2447         MonoGenericContext.
2448         (mono_get_method_from_token): Use just `context->container' to get
2449         the container.
2450
2451         * metadata.c (do_mono_metadata_parse_generic_class): Also set
2452         `gclass->context->container'.
2453
2454         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
2455         the `context->container' when creating a new MonoGenericContext.
2456
2457 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
2458
2459         * reflection.c (compare_genericparam): Sort params with identical
2460         owner by their number. Fixes gen-111 on sparc.
2461
2462 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
2463
2464         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
2465         around the domain changes.
2466
2467         * appdomain.c (mono_domain_unload): Handle the case when the thread
2468         calling Unload is itself being aborted during unloading. Fixes #70022.
2469
2470         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
2471
2472         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
2473         checkpoint_func as an icall so it gets a wrapper.
2474         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
2475         in the cross-appdomain wrappers too.
2476
2477         * threads.c (mono_thread_has_appdomain_ref): Make this public.
2478
2479         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
2480
2481         * reflection.c: Fix some memory leaks.
2482         
2483 2004-12-02  Martin Baulig  <martin@ximian.com>
2484
2485         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
2486
2487         * metadata.c (generic_class_cache): New static hashtable.
2488         (mono_metadata_lookup_generic_class): New public method.
2489
2490 2004-12-02  Martin Baulig  <martin@ximian.com>
2491
2492         * class.c (mono_class_create_from_typedef): Call
2493         mono_class_setup_parent() and mono_class_create_mono_type() before
2494         parsing the interfaces.
2495
2496 2004-12-02  Martin Baulig  <martin@ximian.com>
2497
2498         * metadata.c (generic_inst_cache): New static hashtable.
2499         (mono_metadata_lookup_generic_inst): New public function.
2500         (mono_metadata_inflate_generic_inst): New public function.
2501         (mono_metadata_parse_generic_inst): New public function.
2502         (do_mono_metadata_parse_generic_class): Use the new
2503         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
2504         since this'll also use the cache.
2505
2506         * reflection.c (mono_reflection_bind_generic_method_parameters):
2507         Use mono_metadata_lookup_generic_inst() to use the new cache.
2508
2509         * class.c (inflate_mono_type): Use
2510         mono_metadata_inflate_generic_inst() to inflate a generic
2511         instance; this'll also use the new cache.
2512
2513         * loader.c (method_from_methodspec): Use
2514         mono_metadata_parse_generic_inst() and
2515         mono_metadata_inflate_generic_inst() rather than parsing it
2516         manually, so we can use the new cache.
2517
2518 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
2519
2520         * threads.c (wait_for_tids): Do not incorrectly free threads when 
2521         the wait times out.
2522
2523 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
2524
2525         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
2526         iter->args based on whether parameters are passed in registers (i.e.
2527         MONO_ARCH_REGPARMS is defined)
2528
2529 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
2530
2531         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
2532         the exception message. Fixes #70070.
2533         (method_from_methodspec): Fix warnings.
2534
2535 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2536
2537         * process.c: (complete_path) return the path quoted
2538
2539 2004-12-01  Martin Baulig  <martin@ximian.com>
2540
2541         * class-internals.h (MonoGenericInst): New structure.
2542         (MonoGenericClass): Replaced `type_argc', `type_argv' and
2543         `is_open' with `MonoGenericInst *inst'.
2544         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
2545         `is_open' with `MonoGenericInst *inst'.
2546
2547 2004-11-30  Martin Baulig  <martin@ximian.com>
2548
2549         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
2550
2551         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
2552         to `generic_class_cache'.
2553
2554         * metadata.c
2555         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
2556         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
2557         (mono_generic_inst_is_valuetype): Renamed to
2558         mono_generic_class_is_valuetype().
2559
2560         * class-internals.h
2561         (MonoGenericInst): Renamed to MonoGenericClass.
2562         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
2563         (MonoClass): Renamed `generic_inst' to `generic_class'.
2564         (MonoGenericContext): Renamed `ginst' to `gclass'.
2565
2566         * object-internals.h
2567         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
2568
2569         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
2570         mono_reflection_generic_class_initialize().
2571
2572         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
2573         now known as "System.Reflection.MonoGenericClass".
2574         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
2575
2576 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
2577
2578         * class-internals.h: Added a flag field to MonoClass to cache the
2579         declarative security attributes actions associated with the class.
2580         * domain-internals.h: Added booleans to MonoJitInfo to cache the
2581         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
2582         applicable to the JITted method.
2583         * reflection.c|h: Added functions to extract (as flags) which security
2584         actions are available (declaratively) for a method, class or assembly.
2585         * metadata.c|h: Added functions to search the declarative security
2586         table in the metadata.
2587         
2588 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
2589
2590         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
2591         EXPORTEDTYPES are already in the class name cache, so there is no
2592         need to add extra code here to look at them. Just removes a bit of
2593         cruft.
2594
2595         (ves_icall_System_Environment_get_TickCount): No need for #if
2596         WINDOWS. We already have the code in io-layer.
2597
2598 2004-11-28  Martin Baulig  <martin@ximian.com>
2599
2600         * loader.c
2601         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
2602         Fixes gen-112.cs.
2603
2604 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
2605
2606         * assembly.c (do_mono_assembly_open): Instead of having a
2607         conditional WITH_BUNDLE, incorporate support for bundles here, by
2608         having a global `bundles' variable holding a pointer to the actual
2609         bundles. 
2610
2611         (mono_register_bundled_assemblies): New API call used by the
2612         bundle code. 
2613
2614         See mkbundle.1 for details.
2615         
2616 2004-11-27  Martin Baulig  <martin@ximian.com>
2617
2618         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
2619         the vtable for generic methods.
2620
2621 2004-11-26  Martin Baulig  <martin@ximian.com>
2622
2623         * metadata.c
2624         (mono_metadata_generic_method_hash): New public function.
2625         (mono_metadata_generic_method_equal): Likewise.
2626
2627         * class-internals.h
2628         (MonoGenericContainer): Added `GHashTable *method_hash'.
2629
2630         * reflection.c (ReflectionMethodBuilder): Added
2631         `MonoGenericContainer *generic_container'.
2632         (reflection_methodbuilder_to_mono_method): Don't create a new
2633         MonoGenericContainer each time we're called.
2634         (mono_reflection_bind_generic_method_parameters): Use
2635         `container->method_hash' to cache the results so we don't create a
2636         different method if we're called several times with the same
2637         arguments.
2638
2639         * loader.c (method_from_methodspec): Use the new
2640         `container->method_hash' here, too.
2641
2642 2004-11-26  Martin Baulig  <martin@ximian.com>
2643
2644         * class.c (inflate_generic_signature): Correctly compute
2645         `res->has_type_parameters'.
2646         (mono_class_vtable): Use the `has_type_parameters' flag to
2647         determine whether we're a generic method.
2648
2649         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
2650
2651 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
2652
2653         * object.c (mono_runtime_run_main): Fix a small memory leak.
2654
2655 2004-11-25  Martin Baulig  <martin@ximian.com>
2656
2657         * class.c (set_generic_param_owner): Fixed the loop.
2658
2659 2004-11-25  Martin Baulig  <martin@ximian.com>
2660
2661         * object.c (mono_class_vtable): Don't create any JIT wrappers for
2662         generic methods.
2663
2664 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
2665
2666         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
2667         names. Fixes #69787.
2668
2669 2004-11-24  Martin Baulig  <martin@ximian.com>
2670
2671         * class.c (mono_class_create_generic_2): If we don't have a
2672         `ginst->parent', inflate `gklass->parent' to get our parent.
2673
2674 2004-11-24  Martin Baulig  <martin@ximian.com>
2675
2676         * reflection.c (compare_genericparam): Correctly sort the
2677         GenericParam table; fixes #69779.
2678
2679 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
2680
2681         * reflection.c: When writing a PE file, don't create a huge
2682         buffer in memory. Just write the arrays we have to the file.
2683         This reduces memory usage.
2684
2685         * metadata-internals.h: MonoDynamicStream pefile is no longer used
2686         globally.
2687
2688 2004-11-17  Martin Baulig  <martin@ximian.com>
2689
2690         * class.c (mono_class_init): Don't setup `class->parent' for
2691         dynamic instances; moved this to mono_class_generic_2().
2692         (mono_class_create_generic): Also set `klass->inited' for dynamic
2693         generic instances.
2694         (mono_class_create_generic_2): Don't do anything for dynamic
2695         generic instances.  Set `klass->parent' here and also call
2696         mono_class_setup_parent() here. 
2697
2698         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
2699         `MonoType *parent' argument; set `ginst->parent' before calling
2700         mono_class_create_generic_2(), so we set the correct parent.
2701
2702 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
2703
2704         * reflection.c: allow getting attributes from ModuleBuilder
2705         (used by ikvm).
2706
2707 2004-11-17  Martin Baulig  <martin@ximian.com>
2708
2709         * class.c (mono_class_create_from_typedef): If a type parameter is
2710         inherited from an outer class, set its owner to that class.
2711
2712 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
2713
2714         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
2715           for (int*) written size. This fixes bug #69592.
2716
2717 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
2718
2719         * icall.c: Added IsAuthenticodePresnet internal call.
2720         * image.c|h: New function that check a MonoImage for an Authenticode
2721         signature in the certificate PE data directory.
2722         * security.c|h: New internal call to ask the runtime if an 
2723         Authenticode signature seems referenced in the PE header.
2724
2725 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
2726
2727         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
2728
2729         * reflection.c (mono_image_create_pefile): Free the assembly streams
2730         after writing out the assembly file.
2731
2732         * object.c (mono_runtime_run_main): Fix small memory leak.
2733
2734         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
2735         property access modifiers. Fixes #69389.
2736
2737 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
2738
2739         * domain.c, object.c, object-internals.h, domain-internals.h,
2740         object.h, marshal.c: keep dynamic code info per domain.
2741
2742 2004-11-15  Martin Baulig  <martin@ximian.com>
2743
2744         * class.c (mono_type_get_name_recurse): Put type arguments in
2745         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
2746         see bug #68387.
2747
2748 2004-11-15  Martin Baulig  <martin@ximian.com>
2749
2750         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
2751         (mono_class_setup_vtable): When computing `the_cname' for a
2752         generic instance, don't include the namespace since we'd otherwise
2753         add it twice.
2754
2755 2004-11-15  Martin Baulig  <martin@ximian.com>
2756
2757         * class.c (mono_class_create_generic): Changed return type to void.
2758         (mono_class_create_generic_2): New public function; setup
2759         `class->method', `class->field' and `class->interfaces' here
2760         instead of in mono_class_init().
2761
2762         * class.h (mono_class_create_generic): Moved to class-internals.h.
2763
2764 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
2765
2766         * reflection.c (mono_image_create_pefile): take a file HANDLE.
2767         rather than writing to memory, write to this file. Right now,
2768         we are just writting into a buffer, and copying that. However
2769         we can avoid the buffer later.
2770
2771         (mono_dynamic_stream_reset): new function
2772
2773         * icall.c, object-internals.h: update for the above.
2774
2775 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
2776
2777         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
2778         have been using gc'd memory. First it is slower, unlikely
2779         the comment in the source code said, secondly, it increases
2780         our footprint to do it in the gc.
2781
2782         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
2783         the method so that it does not have to copy to managed code.
2784
2785 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
2786
2787         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
2788
2789 2004-11-12  Martin Baulig  <martin@localhost>
2790
2791         * reflection.c (mono_image_create_token): Allow generic method
2792         definitions here, since they may appear in an `.override'; see
2793         gen-98/gen-99 for an example.
2794
2795 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
2796
2797         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
2798         #69365.
2799
2800         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
2801         descriptive.
2802
2803 2004-11-11  Martin Baulig  <martin@ximian.com>
2804
2805         * class.c (mono_class_setup_vtable): In an explicit interface
2806         implementation, the method name now includes the arity.
2807
2808 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
2809
2810         * object.c (mono_array_full_copy): Fix warning.
2811
2812 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
2813
2814         * appdomain.c: Removed look_for_method_by_name(). Use the new method
2815         mono_class_get_method_from_name() instead.
2816         
2817         * class-internals.h: Added two new types of wrappers. 
2818         Added MonoRemotingTarget enum. Added new trampoline function type, which
2819         takes an additional MonoRemotingTarget value as parameter, so it is
2820         possible to request a trampoline for a specific target.
2821         
2822         * class.c: Added new mono_class_get_method_from_name() method.
2823         
2824         * class.h: In MonoRemoteClass, we can have now to vtables, one for
2825         general remoting sinks and one specific for cross domain calls.
2826         
2827         * debug-helpers.c: Added new wrapper names.
2828         
2829         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
2830         of a remote class.
2831         
2832         * image.c: Porperly delete value objects form the remoting invoke hashtable.
2833         
2834         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
2835         with several other methods (mono_marshal_get_xappdomain_dispatch,
2836         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
2837         and others) can generate a fast remoting wrapper for cross domain calls.
2838         More information can be found in docs/remoting.
2839         Other changes: Removed mono_find_method_by_name, and used
2840         mono_class_get_method_from_name instead.
2841         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
2842         is stored in the remoting invoke hashtable.
2843         
2844         * marshal.h: published the new method for getting the xdomain wrapper,
2845         and also added a method for getting the adequate wrapper for a given
2846         method and target.
2847         
2848         * object-internals.h, object.c: Added a couple of methods for capying and
2849         cloning arrays.
2850         Modified mono_install_remoting_trampoline, which takes the new remoting
2851         trampoline that has a remoting target as parameter.
2852         mono_class_proxy_vtable now also takes a remoting target as parameter, and
2853         will return the most suitable vtable for the target.
2854         Added mono_remote_class_vtable, which returns the vtable of a remote class
2855         (which can be the normal remoting vtable or the xdomain vtable).
2856         
2857         * threads.c: the xdomain invoke and dispatch wrappers must also be
2858         protected against interruptions.
2859
2860 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2861
2862         * icall.c: use memmove in BlockCopyInternal when the source and
2863         destination arrays are the same.
2864
2865 2004-11-09  Martin Baulig  <martin@ximian.com>
2866
2867         * class-internals.h (MonoGenericContainer): Removed `method' and
2868         `signature', replaced them with `is_method' and `is_signature'
2869         flags.  Added `context'.
2870
2871         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
2872         instead of a `MonoGenericContainer *'.
2873
2874         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
2875         for dynamic type parameters.
2876         (mono_metadata_load_generic_params): Setup `container->context'.
2877
2878         * reflection.c (mono_reflection_setup_generic_class): Setup
2879         `tb->generic_container->context'.
2880         (do_mono_reflection_bind_generic_parameters): Use
2881         mono_class_inflate_generic_type() to correctly inflate types,
2882         rather than using our own hack just for MONO_TYPE_VAR.
2883
2884 2004-11-09  Martin Baulig  <martin@ximian.com>
2885
2886         * class.c (mono_class_inflate_generic_method): Small fix; don't
2887         crash here.
2888
2889         * icall.c
2890         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
2891         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
2892         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
2893         (ves_icall_Type_BindGenericParameters): Likewise.
2894         (ves_icall_Type_get_IsGenericInstance): Likewise.
2895         (ves_icall_Type_GetGenericParameterPosition): Likewise.
2896         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
2897         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2898         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
2899
2900 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
2901
2902         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
2903         assembly versions and public key tokens. Fixes #69113.
2904
2905 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
2906
2907         * metadata.c: fix bug introduced with the type cache changes
2908         on 2004-11-06.
2909
2910 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
2911
2912         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
2913         the MonoClass pointer instead of the token in exception clauses.
2914         * reflection.c: updates for the above and make the code not depend
2915         on the structure of MonoExceptionClause.
2916
2917 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
2918
2919         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
2920         Add support for dynamic assemblies. Fixes #69114.
2921
2922         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
2923
2924 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
2925
2926         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
2927         since most only those methods use it. the code member of
2928         MonoMethodPInvoke was dead, so that can be removed too. Also,
2929         remove inline_count (again, not used), and move slot so that it
2930         can share bits with some other flags. This saves 8 bytes in the
2931         structure and gives us about 50 kb back for mcs helloworld.cs
2932
2933         * *.[ch]: Do naming changes for the above.
2934
2935         * loader.c (mono_method_get_header): Lazily init the header
2936         on first access.
2937         (mono_get_method_from_token): don't init the header here
2938         (mono_free_method): the header may never be allocated
2939
2940         Overall, this saves 150 kb of unmanaged allocations
2941         for mcs helloworld.cs. That accounts for 10% of the unmanaged
2942         memory at runtime.
2943         
2944         * loader.c, loader.h (mono_method_get_header): new accessor.
2945
2946         * *.[ch]: use the above method. Prepares us to lazily load
2947         the header.
2948
2949         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
2950         three warnings, which are actual bugs (see 69206).
2951
2952         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
2953         unused. Saves a cool 4 bytes / method.
2954
2955 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
2956
2957         * metadata.c (builtin_types): Add types for System.Object here.
2958         (mono_metadata_parse_type_full): Cache MonoType*'s that are
2959         for a class or valuetype from klass->this_arg or klass->byval_arg.
2960
2961         On mcs for a hello world, this gets us down from 21836 MonoType's
2962         to 14560.
2963
2964         (mono_metadata_free_type): Account for the above change.
2965
2966 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
2967
2968         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
2969         exception instead of asserting if name is null.
2970         (ves_icall_System_AppDomain_GetData): Ditto.
2971
2972 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
2973
2974         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
2975         EnumBuilder.
2976
2977         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
2978         Return NULL when the domain does not have entry_assembly set.
2979
2980         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
2981         Add a 'resource_modules' argument.
2982         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
2983
2984         * reflection.c (mono_reflection_create_runtime_class): Move setting
2985         of wastypebuilder here, so mono_get_type_object () returns a MonoType
2986         for enums too.
2987
2988         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
2989         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
2990         Throw an ArgumentNullException if 'ptr' is null.
2991
2992         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
2993         assemblies here. Fixes #69020.
2994
2995 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
2996
2997         * reflection.c (build_compressed_metadata): Fix the previous patch for
2998         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
2999         the stack.
3000
3001 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
3002
3003         * assembly.c (mono_assembly_names_equal): Allow a match if one of
3004         the cultures is false. Fixes #69090.
3005
3006         * reflection.c (build_compressed_metadata): Fix invalid memory read 
3007         detected by valgrind.
3008         
3009         * reflection.c (mono_reflection_get_type): Avoid triggering a 
3010         TypeResolve multiple times for the same type. Fixes #65577.
3011
3012 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
3013
3014         * marshal.c: Avoid using ldftn to call managed functions. It is
3015         much slower than just a call.
3016
3017         * reflection.c (mono_module_get_object): free the basename we
3018         allocate here from glib.
3019         
3020         * reflection.c (ensure_runtime_vtable): make sure to free
3021         overrides.  Also, we were allocating an array of MonoMethod not an
3022         array of MonoMethod*.
3023
3024         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
3025
3026         * image.c (mono_image_close): free image->guid here.
3027
3028 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
3029
3030         * reflection.c: Fix some spec conformance issues with the PE file
3031         structures so mcs compiled apps run on the Net 2.0 beta.
3032
3033 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
3034
3035         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
3036         Implement this. Fixes #67264.
3037
3038         * debug-helpers.h debug-helpers.c marshal.c: Move 
3039         mono_find_method_by_name to debug-helpers.c.
3040
3041 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
3042
3043         * object.c (mono_release_type_locks): type_initialization_hash is
3044         a GHashTable.
3045
3046         * reflection.c object.c object-internals.h: Fix warnings.
3047
3048         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
3049         without accessors. Fixes #61561.
3050
3051         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
3052         application base from the root domain if not set. Fixes #65641.
3053         (mono_runtime_init): Fix warning.
3054
3055 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3056
3057         * appdomain.c: call mono_thread_pool_init.
3058         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
3059         of worker threads based on the number of CPUs and the environment
3060         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
3061         for non-windows (windows) systems.
3062
3063 2004-10-27  Chris Toshok  <toshok@ximian.com>
3064
3065         * mono-debug-debugger.c (write_class): don't call mono_class_init
3066         here, as even with the check for (!klass->init_pending), we get
3067         into a situation where we're hitting cycles in class
3068         initialization.  Fixes #68816.
3069
3070 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
3071
3072         * image.c: Avoid overwriting values in the loaded_images_hash when an
3073         assembly is loaded multiple times. Fixes #61152.
3074
3075         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
3076         so multiple satellite assemblies for the same name can be loaded.
3077         Fixes #68259.
3078
3079         * mono_domain_assembly_preload: Actually return the loaded assembly, 
3080         not NULL.
3081
3082         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
3083         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
3084
3085         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
3086         pending finalizers are not invoked after the appdomain has been 
3087         unloaded. Fixes #67862.
3088
3089 2004-10-22  Martin Baulig  <martin@ximian.com>
3090
3091         * mono-debug-debugger.c
3092         (mono_debugger_runtime_invoke): Don't box valuetypes.
3093
3094 2004-10-22  Chris Toshok  <toshok@ximian.com>
3095
3096         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
3097         don't hide private methods.
3098
3099 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
3100
3101         * icall.c: Allows the runtime to "share" (when known) the public key
3102         token of an assembly. This avoid the need to recalculate the token 
3103         (from the public key) in managed code.
3104
3105 2004-10-21  Chris Toshok  <toshok@ximian.com>
3106
3107         * debug-helpers.c (append_class_name): argh, revert last patch.
3108         
3109 2004-10-21  Chris Toshok  <toshok@ximian.com>
3110
3111         * debug-helpers.c (append_class_name): use '+' as the delimiter,
3112         not '/', so that it matches what the debugger uses to look up
3113         methods.
3114
3115 2004-10-21  Martin Baulig  <martin@ximian.com>
3116
3117         * mono-debug-debugger.c (mono_debugger_throw_exception): New
3118         public method; this is called each time an exception is thrown and
3119         allows the debugger to use exception catch points.
3120
3121 2004-10-21  Martin Baulig  <martin@ximian.com>
3122
3123         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
3124         the stack pointer and the exception object in some struct and pass
3125         that to the debugger.
3126
3127 2004-10-21  Chris Toshok  <toshok@ximian.com>
3128
3129         * mono-debug-debugger.c (do_write_class): add instance/static
3130         event support.  We don't expose "raise" or "other" yet.
3131         (event_is_static): new method.
3132
3133 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
3134
3135         * mono-debug-debugger.c
3136         (mono_debugger_handle_exception): Remove
3137         bogus return value for fussy compilers.
3138
3139 2004-10-20  Martin Baulig  <martin@ximian.com>
3140
3141         * mono-debug-debugger.c
3142         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
3143         (mono_debugger_handled_exception): Likewise.
3144
3145 2004-10-20  Martin Baulig  <martin@ximian.com>
3146
3147         * mono-debug-debugger.h (MonoDebuggerEvent): Added
3148         MONO_DEBUGGER_EVENT_EXCEPTION.
3149
3150         * mono-debug-debugger.c (mono_debugger_handle_exception): New
3151         public function to send the debugger a notification for an
3152         exception and inform it about a catch/finally clause.
3153
3154 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
3155
3156         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
3157         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
3158         fix 2.95 build. 
3159
3160         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
3161
3162 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
3163
3164         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
3165         marshalled as [In,Out]. Fixes #58325.
3166
3167 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
3168
3169         * reflection.c (mono_method_body_get_object): Implement some fields.
3170
3171 2004-10-12  Martin Baulig  <martin@ximian.com>
3172
3173         * reflection.c (mono_reflection_bind_generic_parameters): Small
3174         fix, correctly retrieve our parent from a generic instance.
3175
3176 2004-10-12  Martin Baulig  <martin@ximian.com>
3177
3178         * metadata.c (mono_metadata_generic_param_equal): We always have
3179         an owner.
3180
3181         * class.c
3182         (mono_class_from_generic_parameter): We need to have an owner.
3183         (my_mono_class_from_generic_parameter): Likewise.
3184
3185         * reflection.c (mono_reflection_setup_generic_class): Renamed to
3186         mono_reflection_create_generic_class() and added a new
3187         mono_reflection_setup_generic_class().  
3188         (mono_reflection_initialize_generic_param): If we're a nested
3189         generic type and inherited from the containing class, set our
3190         owner to the outer class.
3191
3192 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
3193
3194         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
3195
3196         * reflection.c (mono_method_body_get_object): New function to create
3197         a MethodBody object.
3198
3199         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
3200
3201 2004-10-11  Martin Baulig  <martin@ximian.com>
3202
3203         * metadata.c (_mono_metadata_type_equal): Renamed to
3204         do_mono_metadata_type_equal() and made static.
3205
3206 2004-10-11  Martin Baulig  <martin@ximian.com>
3207
3208         * appdomain.c: Bump corlib version number to 28.
3209
3210 2004-10-10  Martin Baulig  <martin@ximian.com>
3211
3212         * class-internals.h
3213         (MonoGenericInst): Added `MonoGenericContainer *container'.
3214         (MonoGenericMethod): Likewise.
3215         (MonoGenericContext): Likewise.
3216         (MonoGenericParam): Added `MonoGenericContainer *owner'.
3217
3218         * metadata.c
3219         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
3220         (do_mono_metadata_parse_generic_inst): Likewise.
3221         (mono_metadata_parse_type_full): New public method.  This is the actual
3222         mono_metadata_parse_type() implementation - with an additional
3223         `MonoGenericContainer *' argument.
3224         (mono_metadata_parse_array_full): Likewise.
3225         (mono_metadata_parse_signature_full): Likewise.
3226         (mono_metadata_parse_method_signature_full): Likewise.
3227         (mono_metadata_parse_mh_full): Likewise.
3228         (mono_type_create_from_typespec): Likewise.
3229         (mono_metadata_interfaces_from_typedef_full): New public method;
3230         this is similar to the other _full() methods, but we take a
3231         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
3232         (mono_metadata_parse_generic_param): Take an additional
3233         `MonoGenericContainer *' argument and lookup the MonoGenericParam
3234         from that container.
3235         (mono_metadata_generic_param_equal): New static method to compare
3236         two type parameters.
3237         (_mono_metadata_type_equal): New static method; takes an
3238         additional `gboolean signature_only' argument - if true, we don't
3239         compare the owners of generic parameters.
3240         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
3241         with a TRUE argument - do a signature-only comparision.
3242
3243         * loader.c: Use the new _full() methods and pass the
3244         MonoGenericContainer to them.
3245
3246         * object-internals.h (MonoReflectionTypeBuilder): Added
3247         `MonoGenericContainer *generic_container' field.
3248         (MonoReflectionMethodBuilder): Likewise.
3249
3250 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
3251
3252         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
3253         case initial images of dynamic assemblies.
3254
3255         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
3256
3257         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
3258
3259         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
3260         length of event->other array.
3261         (typebuilder_setup_events): Ditto.
3262
3263         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
3264         'assembly_by_name' and add an 'assemblies' list.
3265
3266         * assembly.h assembly.c: Add a new search hook for determining whenever
3267         an assembly is already loaded. Use this instead of searching in the
3268         loaded_assemblies list.
3269
3270         * domain.c appdomain.c: Implement the new search hook so loaded 
3271         assemblies are now scoped by appdomain. Fixes #67727.
3272
3273 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
3274
3275         * threads.c (mono_thread_attach): Initialize synch_lock field so
3276         mono_thread_detach works again.
3277
3278         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
3279         'lib' too. Fixes #63130.
3280
3281 2004-10-06  Jackson Harper  <jackson@ximian.com>
3282
3283         * culture-info-tables.h: regenerated.
3284
3285 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
3286
3287         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
3288         implemented by other interfaces in the result. Fixes #65764.
3289         
3290         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3291         Handle unloadable modules without crashing.
3292
3293         * image.c (load_modules): Revert the previous patch since modules must
3294         have a fixed index inside the array.
3295         
3296         * image.c (load_modules): Don't include native modules in the modules
3297         array.
3298
3299 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
3300
3301         * reflection.h: Add param_defaults field.
3302
3303         * reflection.c: Add support for parameter defaults in dynamic methods.
3304         Fixes #64595.
3305
3306         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
3307         an empty string when a type has no namespace. Fixes #64230.
3308
3309 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
3310
3311         * tabledefs.h: Added "internal" security actions to support non-CAS
3312         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
3313         Note: they do not seems to be used anymore in 2.0 (new metadata format)
3314
3315 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
3316
3317         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
3318         constructor of abstract class. Fixes #61689.
3319
3320 2004-10-04  Martin Baulig  <martin@ximian.com>
3321
3322         * class-internals.h (MonoGenericContainer): New type.
3323         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
3324         `MonoGenericContainer *generic_container'.
3325         (MonoClass): Replaced `gen_params' and `num_gen_params' with
3326         `MonoGenericContainer *generic_container'.
3327
3328         * metadata.c (mono_metadata_load_generic_params): Return a
3329         `MonoGenericContainer *' instead of a `MonoGenericParam *';
3330         removed the `num' argument.
3331
3332 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
3333
3334         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
3335         for dynamic images.
3336
3337         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
3338         machine fields.
3339
3340         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
3341
3342         * reflection.c: Save pe_kind and machine values into the generated
3343         image file.
3344
3345         * appdomain.c: Bump corlib version number.
3346
3347         * object-internals.h: Reorganize layout of LocalBuilder.
3348
3349         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
3350         New helper function.
3351
3352         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
3353         created MonoType for dynamic types. Fixes #66180.
3354
3355 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
3356
3357         * threadpool.c: the ares hashtable needs a critical section around it.
3358         this prevents some nasty segfaults
3359
3360 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
3361
3362         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
3363         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
3364         bug 67324).
3365         
3366 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
3367
3368         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
3369         
3370 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
3371
3372         * image.c: Always canonicalize image file names, to avoid loading
3373         the same assembly twice when referenced using a relative path.
3374
3375 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
3376
3377         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
3378
3379         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
3380
3381         * marshal.c: Fix warnings.
3382
3383 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
3384
3385         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
3386         attempting to marshal the delegate_trampoline as the method_addr.
3387         This patch has a static hashtable of marshalled delegates so that 
3388         we can map delegate_trampoline addresses back to delegates.  This
3389         allows a delegate passed to managed code to be passed back into native
3390         code.  Fixes #67039
3391
3392 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
3393
3394         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
3395
3396         * reflection.c (method_encode_code): Align method headers properly.
3397         Fixes #66025.
3398
3399 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
3400
3401         * marshal.c: In the runtime invoke wrapper, reset the abort
3402         exception if it is cached. This avoids the automatic rethrowal of 
3403         the exception after the catch of the wrapper. Also check for pending
3404         interruptions before calling the managed method. This is done using
3405         the new method emit_thread_force_interrupt_checkpoint, since the
3406         normal checkpoint method is ignored when running the invoke wrapper.
3407         * object.c: If the abort exception is rethrown, set the abort_exc
3408         field of the thread, so it will be rethrown aftere every catch.
3409         * threadpool.c: Only run an interruption checkpoint if what has been
3410         requested is a stop of the thread (aborts will be ignored).
3411         * threads.c: By default, a thread will now never be interrumped while
3412         running the runtime invoke wrapper (this ensures that runtime_invoke
3413         will always return to the caller if an exception pointer is provided).
3414         There is a new special method mono_thread_force_interruption_checkpoint()
3415         to force an interruption checkpoint even if running a protected
3416         wrapper, which is used by the same runtime invoke wrapper to do a check
3417         at a safe point.
3418
3419 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
3420
3421         * object.c, object-internals.h: Implemented mono_release_type_locks,
3422         which releases the cctor locks held by a thread.
3423         * threads.c, threads.h: In thread_cleanup, release cctor locks held
3424         by a thread. Added mono_thread_exit() method to be used to safely stop
3425         a thread.
3426
3427 2004-09-28  Raja R Harinath  <rharinath@novell.com>
3428
3429         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
3430         Move null check before dereference.  Avoid indexing beyond the end
3431         of the 'modules' array.
3432
3433 2004-09-28  Raja R Harinath  <rharinath@novell.com>
3434
3435         * metadata-internals.h (MonoImage): Add module_count field.
3436         * image.c (load_modules): Set image->module_count.
3437         (mono_image_load_file_for_image): Use image->module_count.
3438         * reflection.c (mono_image_load_module): Append to image->modules array 
3439         of dynamic assembly.
3440         (mono_module_get_object): Fix loop to actually increment index.
3441         Use image->module_count.
3442         * assembly.c (mono_assembly_load_references): Use image->module_count.
3443         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
3444         Likewise.
3445
3446 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
3447
3448         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
3449         Avoid assert on generic types.
3450
3451 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
3452
3453         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
3454
3455         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
3456
3457         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
3458         function to convert a MarshalSpec structure to its managed counterpart.
3459
3460         * reflection.c: Fix warnings.
3461         
3462         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
3463         field.
3464
3465         * icall.c (mono_create_icall_signature): Fix build.
3466
3467 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
3468
3469         * icall.c: Add MakePointType icall.
3470
3471         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
3472         warnings.
3473
3474 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3475
3476         * threadpool.c: reuse allocated slots in the queue.
3477
3478 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
3479
3480         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
3481
3482         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
3483
3484         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
3485         previous change.
3486
3487         * tabledefs.h: Add constants for pinvoke attributes BestFit and
3488         ThrowOnUnmappableChar.
3489
3490         * icall.c (ves_icall_Type_GetPacking): New icall.
3491
3492 2004-09-24  Martin Baulig  <martin@ximian.com>
3493
3494         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
3495
3496 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3497
3498         * appdomain.c:
3499         (mono_domain_set): allow setting a domain that is being unloaded.
3500         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
3501         being unloaded.
3502
3503 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
3504
3505         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
3506         the GetCustomAttributes icall.
3507
3508 2004-09-23  Martin Baulig  <martin@ximian.com>
3509
3510         * object-internals.h (MonoReflectionGenericParam): Replaced
3511         'has_ctor_constraint', `has_reference_type' and `has_value_type'
3512         with `guint32 attrs'.
3513
3514 2004-09-23  Martin Baulig  <martin@ximian.com>
3515
3516         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
3517
3518 2004-09-23  Martin Baulig  <martin@ximian.com>
3519
3520         * object-internals.h (GenericParameterAttributes): New enum.
3521
3522 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
3523
3524         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
3525         
3526         * class.c (init_events): Fill out event->other field.
3527
3528         * class.c: Fix warnings.
3529
3530         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
3531
3532 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
3533
3534         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
3535         walk which doesn't supply the IL offset.
3536
3537 2004-09-22  Martin Baulig  <martin@ximian.com>
3538
3539         * reflection.c (mono_reflection_setup_internal_class): If we're
3540         System.ValueType, System.Object or System.Enum, set
3541         `klass->instance_size' and create the vtable.
3542         (mono_reflection_create_internal_class): If we're an enum type,
3543         get the base class from our current corlib.
3544
3545 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
3546
3547         * reflection.h (MonoResolveTokenError): New type.
3548
3549         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
3550         icall.
3551
3552         * icall.c: Add an 'error' argument to the ResolveToken icalls.
3553
3554 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
3555
3556         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
3557         Support also calling constructors, but only for already allocated objects.
3558
3559 2004-09-17  Geoff Norton <gnorton@customerdna.com>
3560
3561         * reflection.c (type_get_qualified_name): If the klass is null
3562         return the typename to avoid a NullRefEx.
3563         (encode_cattr_value): Get the qualified name of the boxed type,
3564         not the underlying enumtype.  Fixes #62984.
3565
3566 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
3567
3568         * marshal.c: Fix problems with previous checkin.
3569
3570 2004-09-21    <vargaz@freemail.hu>
3571
3572         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
3573         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
3574
3575         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
3576
3577 2004-09-21  Geoff Norton <gnorton@customerdna.com>
3578
3579         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
3580         should only return a type for pointers, arrays, and passbyref types.
3581         Fixes bug #63841.
3582
3583 2004-09-21  Martin Baulig  <martin@ximian.com>
3584
3585         * domain.c (mono_debugger_check_runtime_version): New public
3586         function.
3587
3588         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
3589
3590 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
3591
3592         * reflection.c: Added missing sort to the declarative security 
3593         attributes table. MS implementation stops seeing the attributes if the
3594         token number regress in the table (as shown by ildasm and permview).
3595
3596 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
3597
3598         * object-internals.h (MonoReflectionModule): Add 'token' field.
3599         
3600         * reflection.c (mono_reflection_get_token): Add support for Module
3601         and Assembly.
3602         (mono_module_get_object): Set 'token' field.
3603         (mono_module_file_get_object): Set 'token' field.
3604
3605         * icall.c: Add new Assembly and Module icalls.
3606
3607         * appdomain.c: Bump corlib version.
3608
3609 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
3610
3611         * loader.h loader.c class.h class.c: Add helper functions for obtaining
3612         tokens of metadata objects.
3613
3614         * reflection.h reflection.c (mono_reflection_get_token): New function
3615         to obtain the token of a metadata object.
3616
3617         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
3618
3619 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
3620
3621         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
3622         
3623         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
3624
3625 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
3626
3627         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
3628         * object-internals.h: Added 3 MonoArray* members to MonoReflection
3629         AssemblyBuilder to access the permissions set in the class lib.
3630         * reflection.c: Added security attributes encoding step in 
3631         mono_image_build_metadata.
3632         * tabledefs.h: Added new security actions defined in 2.0:
3633         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
3634
3635 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
3636
3637         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
3638         macro parameter.
3639
3640 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
3641  
3642         * locales.c: nullify the ICU_collator member of CompareInfo when it is
3643           finalized. There where random SIGSEVs at program termination, when
3644           an object being finalized was trying to do a string comparison and
3645           the current culture was already finalized.
3646  
3647 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3648
3649         * threads.c: call thread_cleanup before finishing the thread if we get
3650         there.
3651
3652 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
3653
3654         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
3655         assemblies from the parent. Fixes #65665.
3656
3657 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
3658
3659         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
3660         modifiers.
3661
3662 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
3663
3664         * reflection.h: add prototype for mono_get_dbnull_object
3665         * reflection.c: add prototypes for get_default_param_value_blobs 
3666         and mono_get_object_from_blob for fussier compilers
3667
3668 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
3669  
3670         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
3671         false deadlock checks in class initialization.
3672  
3673 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
3674
3675         * image.c (mono_image_addref): Fix comment.
3676
3677         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
3678         possible.
3679
3680 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
3681
3682         * reflection.c (mono_param_get_objects): Modified to return
3683         ParameterInfo.DefaultValue object.
3684
3685         (get_default_param_value_blobs):
3686         (mono_get_object_from_blob):
3687         (mono_get_dbnull_object): New helper routines. 
3688
3689         * object.c (mono_get_constant_value_from_blob): New helper routine
3690         carved out from get_default_field_value ()
3691
3692         * object-internals.h (mono_get_constant_value_from_blob): Added
3693         function declaration.
3694
3695 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
3696
3697         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
3698         referenced assemblies. Fixes #62135.
3699
3700         * exception.h exception.c (mono_get_exception_file_not_found2): New
3701         helper function.
3702
3703 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
3704
3705         * class.h class.c: Add mono_type_get_underlying_type ().
3706
3707 2004-09-09  Geoff Norton <gnorton@customerndna.com>
3708
3709         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
3710         Fix GetTypes() to support dynamically created assemblies.
3711
3712 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
3713
3714         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
3715         
3716         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
3717         previous patch.
3718
3719         * reflection.h reflection.c loader.c: Allow dynamic construction of
3720         pinvoke methods. Fixes #65571.
3721         
3722         * reflection.c (mono_reflection_get_type): Revert previous change since
3723         it causes regressions.
3724
3725 2004-09-08  Martin Baulig  <martin@ximian.com>
3726
3727         * class.c (class_compute_field_layout): Don't call
3728         mono_class_layout_fields() for open generic instances.
3729
3730 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
3731         * threads.c appdomain.c: fix typo in GC macro
3732
3733 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3734
3735         * threads.c: don't call mono_thread_detach() in start_wrapper(),
3736         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
3737
3738 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
3739
3740         * image.c (mono_image_close): Applied patch from 
3741         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
3742         assembly is loaded multiple times from data.
3743         
3744         * image.c (mono_image_open): Fix warning.
3745
3746 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3747
3748         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
3749         once. Fixes #58334.
3750         
3751         * reflection.c (mono_reflection_create_runtime_class): Initialize
3752         klass->nested_classes. Fixes #61224.
3753
3754 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
3755
3756         * threads.c: sched_yield() on exit, to allow threads to quit.
3757
3758 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3759
3760         * object.c (mono_unhandled_exception): Remove leftover debug code.
3761
3762 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
3763
3764         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
3765
3766 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
3767
3768         * marshal.c (emit_marshal_array): Really null terminate string arrays.
3769         
3770         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
3771
3772 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3773
3774         * marshal.c (emit_marshal_array): Null terminate string arrays.
3775         
3776         * marshal.c (raise_auto_layout_exception): Fix warning.
3777
3778         * reflection.c (mono_param_get_objects): Initialize the default value
3779         with DBNull.Value, not null. Fixes #62123.
3780
3781 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
3782
3783         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
3784         throw an exception with a cute explanation.
3785
3786 2004-09-06  Dick Porter  <dick@ximian.com>
3787
3788         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
3789         Close the new process's thread handle, as we don't use it.  The
3790         handle stays around forever otherwise.
3791
3792 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3793
3794         * object.c (arith_overflow): Fix warning.
3795
3796         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
3797         calling conventions in method refs. Fixes #65352.
3798
3799         * reflection.c: Fix warnings.
3800
3801 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3802
3803         * icall.c: Add a new icall for Array.Clear
3804
3805 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
3806
3807         * object.c: When allocating an array, we have to throw
3808         an overflow exception if any of the lengths are < 0.
3809
3810 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
3811
3812         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
3813         properly. Also move implementation of string array marshalling to 
3814         managed code. Fixes #42316.
3815
3816 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3817
3818         * assembly.c: provide more information when loading an assembly fails.
3819
3820 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3821
3822         * filewatcher.c: don't expect the development fam package to be
3823         installed.
3824
3825 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
3826
3827         * marshal.c: Make a copy of the signature cookie since it will be
3828         freed by the caller.
3829         
3830         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
3831
3832         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
3833
3834         * metadata.c (mono_metadata_free_marshal_spec): New function to free
3835         marshal specs.
3836
3837         * marshal.c: More refactoring.
3838         
3839         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
3840         smaller functions.
3841
3842 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
3843
3844         * object.c: In mono_message_invoke, fill the output parameter array after
3845           calling the managed method (it was done before the call). This fixes
3846           bug #59299.
3847
3848 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
3849
3850         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
3851         as well.
3852
3853 2004-09-02  Martin Baulig  <martin@ximian.com>
3854
3855         * class.c (mono_class_instance_size): Don't allow generic type
3856         definitions or open generic instances.
3857         (mono_class_array_element_size): If we're a value type, call
3858         mono_class_instance_size() on the original class.
3859
3860         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
3861         handle generic instances.
3862
3863         * mono-debug-debugger.c (write_type): Handle generic instances
3864         like classes.
3865
3866 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
3867
3868         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
3869         the allocation request fails. Fixes #65089.
3870
3871         * object.c (mono_runtime_free_method): Do not call mono_free_method.
3872         
3873         * object.c (mono_runtime_free_method): New function to free a dynamic
3874         method.
3875
3876         * marshal.c (mono_delegate_free_ftnptr): New function to free the
3877         delegate trampoline.
3878
3879         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
3880         with hasthis as dynamic,
3881
3882         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
3883
3884         * domain.c (mono_jit_info_table_remove): New function to remove an
3885         entry from the jit info table.
3886
3887         * class-internals.h (MonoMethod): Add 'dynamic' field.
3888
3889         * loader.c: Fix warnings.
3890
3891 2004-09-01  Martin Baulig  <martin@ximian.com>
3892
3893         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
3894         instead of mono_debugger_lock() because the latter one is a no-op
3895         unless running in the debugger.
3896
3897 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
3898
3899         * class.c (class_compute_field_layout): Classes with auto-layout or
3900         reference fields are not blittable.
3901         
3902 2004-09-01  Dick Porter  <dick@ximian.com>
3903
3904         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
3905         mono_image_get_filename() to get the assembly location.
3906
3907         * icall.c:
3908         * metadata.h: Fix compile warnings
3909
3910 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
3911
3912         * class.c (class_compute_field_layout): System.Object is blittable.
3913
3914         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
3915         as in/out. Fixes #59909.
3916
3917 2004-09-01  Martin Baulig  <martin@ximian.com>
3918
3919         * metadata.h (MONO_TYPE_ISREFERENCE): Call
3920         mono_metadata_generic_inst_is_valuetype() if we're a generic
3921         instance to check whether our underlying type is a reference type.
3922
3923 2004-09-01  Martin Baulig  <martin@ximian.com>
3924
3925         * metadata.c (mono_type_size): If we're a generic instance, call
3926         mono_class_value_size() for value types.
3927
3928 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
3929
3930         * marshal.c: Implement more custom marshalling functionality. Fixes
3931         #64915.
3932
3933 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
3934
3935         * mono-debug.c, debug-mono-symfile.c: add some locking love.
3936
3937 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
3938
3939         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
3940
3941         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
3942
3943         * icall.c: Fix some warnings.
3944
3945         * threads.c (abort_appdomain_thread): Fix unref errors.
3946         (mono_thread_current): Fix THREAD_DEBUG define.
3947
3948 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
3949
3950         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
3951
3952         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
3953
3954 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
3955
3956         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
3957         string arrays.
3958
3959 2004-08-28  Martin Baulig  <martin@ximian.com>
3960
3961         * metadata.c
3962         (mono_metadata_generic_inst_is_valuetype): New public function.
3963
3964         * metadata.h (MONO_TYPE_ISSTRUCT): Call
3965         mono_metadata_generic_inst_is_valuetype() if we're a generic
3966         instance to check whether our underlying type is a valuetype.
3967
3968 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
3969
3970         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
3971         #63768.
3972
3973 2004-08-25  Martin Baulig  <martin@ximian.com>
3974
3975         * loader.c (mono_get_method_from_token): Abstract methods can also
3976         be generic and thus have type parameters.
3977
3978         * metadata-internals.h
3979         (MonoDynamicImage): Added `GPtrArray *gen_params'.
3980
3981         * reflection.c (mono_image_get_generic_param_info): Don't create a
3982         metadata row, just add an entry to the `gen_params' array.
3983         (build_compressed_metadata): Sort the `gen_params' array and then
3984         actually create the metadata.
3985
3986 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3987
3988         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
3989
3990 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
3991
3992         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
3993
3994 2004-08-24  Martin Baulig  <martin@ximian.com>
3995
3996         * class.cs (mono_class_is_subclass_of): Like an interface, a
3997         generic instance also derives from System.Object.
3998
3999 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
4000
4001         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
4002         custom modifiers to be in any order. Fixes #61990.
4003
4004 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
4005
4006         * object.c: Register mono_object_new_fast icall.
4007         
4008         * object.c (mono_class_get_allocation_ftn): Return to calling
4009         mono_object_new_fast, since it seems faster to compute the object 
4010         size in unmanaged code than passing it as a parameter.
4011
4012         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
4013
4014         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
4015         this function with Boehm as the oom handler, so we don't have to check
4016         the result of GC_malloc.
4017
4018         * object.c: Remove checks for oom.
4019
4020         * object.h object.c (mono_class_get_allocation_ftn): New function to
4021         return the icall which can be used to allocate an instance of a given
4022         class. 
4023
4024         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
4025
4026         * class-internals.h: Add 'enabled' field.
4027
4028 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
4029
4030         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
4031
4032 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
4033         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
4034         value 0x0010.
4035
4036 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
4037
4038         * appdomain.c: use the Tls function for appdomain too,
4039         at Zoltan's request. Actually return in mono_context_get
4040
4041         * appdomain.c, profiler.c, threads.c: use __thread
4042
4043 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
4044
4045         * appdomain.c threads.c: Call GC_CreateThread on windows.
4046
4047         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
4048         multiple libraries since this don't work on windows.
4049
4050 2004-08-18  Martin Baulig  <martin@ximian.com>
4051
4052         * class-internals.h
4053         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
4054         MonoMethodHeader.
4055
4056         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
4057         MonoMethodNormal since we also need it for abstract and interface
4058         methods.
4059
4060         * reflection.c
4061         (build_compressed_metadata): Sort the GenericParam table.
4062         (mono_image_create_token): Added `gboolean create_methodspec'
4063         argument; this is false when generating a MethodImpl token.
4064         (reflection_methodbuilder_to_mono_method): Abstract and interface
4065         methods may also have generic parameters.
4066
4067 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
4068
4069         * appdomain.c: thread local alloc
4070
4071 2004-08-17  Martin Baulig  <martin@ximian.com>
4072
4073         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
4074
4075         * icall.c
4076         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
4077         argument.
4078
4079         * class.c (mono_type_get_full_name): New public function.
4080         (mono_type_get_name): Don't include the type arguments.
4081
4082 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
4083
4084         * Makefile.am: Build static versions of libmetadata and libmonoruntime
4085         for inclusion into the mono executable.
4086
4087 2004-08-16  Martin Baulig  <martin@ximian.com>
4088
4089         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
4090         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
4091
4092 2004-08-14  Martin Baulig  <martin@ximian.com>
4093
4094         * class.c (dup_type): Also copy the `byref' field.
4095
4096 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
4097
4098         * reflection.c (create_dynamic_mono_image): Revert the last change 
4099         since it breaks bootstrap.
4100
4101 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
4102
4103         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
4104
4105         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
4106         not free them with g_free.
4107
4108 2004-08-11  Martin Baulig  <martin@ximian.com>
4109
4110         * reflection.c (mono_reflection_setup_internal_class): Also call
4111         mono_class_setup_mono_type() if we already have a `tb->type.type'.
4112
4113 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
4114
4115         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
4116         called during default (first) AppDomain creation. Keep track of
4117         Evidence when loading assemblies.
4118
4119 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
4120
4121         * opcodes.c, opcodes.h: reduce runtime relocations.
4122
4123 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
4124
4125         * culture-info.h, locales.c: fixes and chages to sue the new
4126         optimized format of the locale data.
4127         * culture-info-tables.h: regenerated.
4128
4129 2004-08-06  Geoff Norton <gnorton@customerdna.com>
4130         
4131         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
4132
4133 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
4134
4135         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
4136         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
4137         * domain-internals.h: icall declaration.
4138         * icall.c: icall registration.
4139         * object-internals.h: New fields in MonoAssembly for CAS.
4140
4141 2004-08-05  Duncan Mak  <duncan@ximian.com>
4142
4143         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
4144         CEE_LDELEM_ANY.
4145
4146 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
4147
4148         * reflection.c: fix to deal with object[] arrays in custom ctors
4149         (bug #62550).
4150
4151 2004-08-05  Martin Baulig  <martin@ximian.com>
4152
4153         * class.c (mono_class_array_element_size): Added support for
4154         generic instances and correctly handle "recursive" types.
4155
4156 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
4157
4158         * assembly.c: Fix warnings.
4159
4160 2004-08-04  Martin Baulig  <martin@ximian.com>
4161
4162         * class.c
4163         (mono_type_get_name_recurse): Added `gboolean include_arity'
4164         argument specifying whether or not we should include the generic
4165         arity in the type name.
4166         (_mono_type_get_name): New static function.
4167         (mono_class_setup_vtable): If we're a generic instance, don't
4168         include the generic arity in the names of explicit method
4169         implementations.        
4170
4171 2004-08-03  Martin Baulig  <martin@ximian.com>
4172
4173         * class.c (mono_type_get_name_recurse): Enclose the generic type
4174         arguments in `<', '>'.
4175
4176 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
4177
4178         * gc.c: make GC warning messages use the trace API, they are just
4179         noise to most of the users.
4180
4181 2004-08-03  Martin Baulig  <martin@ximian.com>
4182
4183         * debug-mono-symfile.c (read_string): Correctly read the string.
4184
4185 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
4186
4187         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
4188         
4189         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
4190         icalls.
4191         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
4192
4193 2004-07-30  Martin Baulig  <martin@ximian.com>
4194
4195         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
4196         Reflect latest symbol writer changes.   
4197
4198 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
4199
4200         * object.c: always create an object if null is passed
4201         to Invoke() where a valuetype is expected.
4202
4203 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
4204
4205         * marshal.c (mono_marshal_init): make managed
4206         signatures match native ones better for 64bits.
4207
4208 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4209
4210         * appdomain.c: hack to build correctly the private bin path on windows.
4211         Fixes bug #61991.
4212
4213 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
4214
4215         * assembly.c: Load mscorlib from the correct framework directory
4216           (mono/<version>/mscorlib.dll).
4217         * appdomain.h: Added prototypes for new functions.
4218         * internals.h: Added some prototypes.
4219         * domain.c: When initializing the runtime, get from the executable and
4220           the configuration files the runtime version that the app supports.
4221           Added support methods for reading app.exe.config. Added list of versions
4222           supported by the JIT. Added two new methods: mono_init_from_assembly,
4223           which initializes the runtime and determines the required version from
4224           the provided exe file, and mono_init_version, which initializes
4225           the runtime using the provided version.
4226         * icall.c: Get machine.config from version-specific directory.
4227         * reflection.c: When generating an image, embed the version number
4228           of the current runtime.
4229
4230 2004-07-28  Dick Porter  <dick@ximian.com>
4231
4232         * socket-io.c
4233         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
4234         returned sockaddr size before creating the remote address object.
4235         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
4236         61608.
4237
4238 2004-07-28  Dick Porter  <dick@ximian.com>
4239
4240         * locales.c (string_invariant_compare_char): Fix invariant char
4241         compares between upper and lower cases.  Fixes bug 61458.
4242
4243 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
4244         
4245         * marshal.c: actually cache stelem.ref wrappers.
4246         
4247 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
4248
4249         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
4250         sections and remove the mono_cli_rva_map () function.
4251
4252 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
4253
4254         * debug-mono-symfile.c: fix one more endianess issue, from a patch
4255         by Geoff Norton (<gnorton@customerdna.com>).
4256
4257 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
4258
4259         * class.c: fix class loads for pointer types (typeof(int) !=
4260         typeof(int*)).
4261
4262 2004-07-27  Martin Baulig  <martin@ximian.com>
4263
4264         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
4265         reading the debugging information from an external ".mdb" file.
4266
4267 2004-07-24  Martin Baulig  <martin@ximian.com>
4268
4269         * reflection.c (mono_image_get_type_info): Only write a class
4270         layout entry if we actually have a size or a packing size.
4271
4272 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
4273
4274         * reflection.c (type_get_fully_qualified_name): 
4275         insert cast to get type checking of ?: with non-gcc compilers
4276
4277 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
4278
4279         * rand.c: use g_getenv for both lookups of
4280         MONO_EGD_SOCKET
4281
4282 2004-07-17  Martin Baulig  <martin@ximian.com>
4283
4284         * reflection.c (mono_reflection_bind_generic_method_parameters):
4285         Set `gmethod->reflection_info'.
4286
4287 2004-07-17  Martin Baulig  <martin@ximian.com>
4288
4289         * class.c (mono_class_create_from_typedef): Insert the newly
4290         created class into the hash table before computing the interfaces
4291         since we could be called recursively.
4292
4293 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
4294
4295         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
4296         function to implement stelem.ref in managed code
4297         * class-internals.h, debug-helpers.c: a new wrapper type
4298         for the above.
4299
4300 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
4301
4302         * gc.c: allow GC handles to work even when no GC is compiled in.
4303         Fix part of bug #61134 (GetAddrOfPinnedObject).
4304
4305 2004-07-13  Peter Williams  <peter@newton.cx>
4306  
4307         * process.c (complete_path): Make sure we don't attempt to execute
4308         directories.
4309  
4310 2004-07-12  Geoff Norton <gnorton@customerdna.com>
4311
4312         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
4313           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
4314           and will add/subtract the hour if needed
4315
4316 2004-07-12  Martin Baulig  <martin@ximian.com>
4317
4318         * reflection.c (mono_field_get_object): If we have
4319         `field->generic_info', take the attributes from
4320         `field->generic_info->generic_type'.    
4321
4322 2004-07-12  Martin Baulig  <martin@ximian.com>
4323
4324         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
4325         This function must be called before initializing the runtime.
4326         (mono_debug_init_1): New function; call this after initializing
4327         the runtime, but before loading the assembly.  It tells the
4328         debugger to load corlib and the builtin types.
4329
4330         * mono-debug-debugger.c: Did some larger changes in the debugging
4331         code; support recursive class declarations, make sure we actually
4332         add all classes.
4333
4334 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4335
4336         * debug-helpers.c: undo my previous patch and fixed the real issue in
4337         ../mini/exceptions-x86.c
4338
4339 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4340
4341         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
4342         when no HOME env. variable was set and a NullRef was thrown in a .cctor
4343         called from other .cctors.
4344
4345 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
4346
4347         * loader.c: Removed the mono_loader_wine_init hack now that we are
4348         doing a managed version of Windows.Forms.
4349
4350 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
4351
4352         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
4353         threadpool.c, threads.c: remove static data from rootset.
4354
4355 2004-07-09  Dick Porter  <dick@ximian.com>
4356
4357         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
4358         Don't do any more processing if the matched length was 0.  It was
4359         increasing the size of the string before.  Fixes bug 61167.
4360
4361 2004-07-09  Dick Porter  <dick@ximian.com>
4362
4363         * socket-io.h:
4364         * socket-io.c
4365         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4366         Add support for SO_PEERCRED if its available.
4367
4368 2004-07-09  Peter Bartok <pbartok@novell.com>
4369         * loader.c: winelib.exe.so error message is now only displayed if
4370         MONO_DEBUG is set. To help us avoid questions when people are trying
4371         out the new Managed.Windows.Forms.
4372
4373 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
4374
4375         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
4376         for isinst and castclass wrappers.
4377
4378         * class-internals.h icall.c: Move registration and lookup of JIT icalls
4379         to libmetadata from the JIT, so they could be used by the marshalling
4380         code and the interpreter.
4381
4382         * marshal.c: Register marshalling related JIT icalls here instead of
4383         in mini.c. Use CEE_MONO_ICALL instead of the family of 
4384         CEE_MONO_PROC<x> opcodes to call marshalling functions.
4385
4386         * metadata.h: Remove unneeded marshalling conversions.
4387
4388         * opcodes.c: Update for new opcodes.
4389         
4390 2004-07-08  Martin Baulig  <martin@ximian.com>
4391
4392         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
4393         (mono_debug_get_domain_data): Make this function static.
4394
4395 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
4396
4397         * gc.c, object.h: add nice GC handle API for embedders.
4398
4399 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
4400
4401         * reflection.c: more changes for the new api
4402
4403         * object.c: When we reflect on a field w/ a constant value, it
4404         will not have a memory location, so we must access metadata. Also,
4405         allow easier reading of strings so that we can read them from
4406         the constant data.
4407
4408         * class.c (mono_class_layout_fields): no need for literal fields here.
4409
4410         * class-internals.h: api changes for const fields
4411
4412         * icall.c (ves_icall_get_enum_info): use new apis for const fields
4413
4414 2004-07-06  Martin Baulig  <martin@ximian.com>
4415
4416         * mono-debug.h: Increment version number to 44.
4417
4418         * mono-debug.c (mono_debug_add_wrapper): The second argument is
4419         now a gpointer, rewrote this whole method.
4420
4421         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
4422         function.  Add information about the wrapper in a new "misc table".
4423
4424         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
4425         for the new misc table.
4426
4427 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
4428
4429         * metadata-internals.h image.c: Add a cache for helper signatures.
4430
4431         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
4432
4433 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
4434
4435         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
4436         delegates from a delegate. Fixes #61033.
4437         
4438         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
4439         marshalling of stringbuilder arrays. Fixes #59900.
4440
4441 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
4442
4443         * icall.c: Add EnumBuilder:setup_enum_type icall.
4444
4445 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
4446
4447         * icall.c: Added a new icall for the property version of
4448         OffsetOfStringData.
4449
4450 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
4451
4452         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
4453         it has a constant size across platforms.
4454
4455         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
4456         stack trace.
4457
4458 2004-06-29  Martin Baulig  <martin@ximian.com>
4459
4460         * mono-debug.c (mono_debug_add_method): Protect the whole function
4461         in mono_debugger_lock(), not just parts of it.
4462
4463 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
4464
4465         * reflection.c: make sure padding bytes in heaps are zeroed.
4466
4467 2004-06-24  David Waite  <mass@akuma.org>
4468
4469         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
4470         image.c, loader.c, locales.c, marshal.c, metadata.c,
4471         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
4472         string-icalls.c, threads.c: change to C90-style comments from C99 /
4473         C++ -style
4474
4475 2004-06-24  Dick Porter  <dick@ximian.com>
4476
4477         * threads.c
4478         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
4479         return createdNew.  Fixes bug 60412.
4480
4481         * threads-types.h: 
4482         * icall.c: Add createdNew parameter to CreateMutex icall
4483
4484 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
4485
4486         * reflection.c, object-internals.h: save default value in params.
4487
4488 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4489
4490         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
4491         no need to build a new path combining that with the application base.
4492         Fixes bug #60442.
4493
4494 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
4495
4496         * reflection.c: fixed minor standard compliance issues.
4497
4498 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
4499
4500         * reflection.c: fixed issue with encoding some custom attributes
4501         (arrays in properties and fields, bug #60411).
4502
4503 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4504
4505         * reflection.c: fix start address when copying the public key token.
4506
4507 2004-06-23  Martin Baulig  <martin@ximian.com>
4508
4509         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
4510         the `exc' object in a static object to put it into the GC's root set.
4511
4512 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
4513
4514         * reflection.c: make mono_reflection_setup_internal_class ()
4515         callable a second time to setup a new parent class.
4516
4517 2004-06-23  Dick Porter  <dick@ximian.com>
4518
4519         * threads.c: Check for WAIT_IO_COMPLETION return values.
4520
4521 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
4522
4523         * appdomain.c: Removed the g_free on the public key token. Now copy 
4524         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
4525         * assembly.c: Added public key token string value when loading 
4526         assemblies. Fix bug #60439.
4527         * icall.c: Added missing informations (like public key) in 
4528         GetReferencedAssemblies. Fix #60519.
4529         * image.h: Changed definition for public key token from const char*
4530         public_tok_value to guchar public_key_token [17];
4531         * reflection.c: Updated for changes to public key token.
4532
4533 2004-06-22  Lluis Sanchez Gual
4534
4535         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
4536         for the field in base classes.
4537
4538 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
4539
4540         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
4541         mark headers as not supported, they are installed only for use by the
4542         debugger.
4543
4544 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
4545
4546         * *.c, *.h: avoid namespace pollution in public headers.
4547
4548 2004-06-21  Martin Baulig  <martin@ximian.com>
4549
4550         * exception.c (mono_get_exception_security): It's in
4551         "System.Security", not in "System".
4552
4553         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
4554         the exception classes.
4555
4556 2004-06-21  Martin Baulig  <martin@ximian.com>
4557
4558         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
4559         Protect the exception object from being finalized.
4560
4561 2004-06-21  Martin Baulig  <martin@ximian.com>
4562
4563         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
4564         public function.
4565
4566 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
4567
4568         * reflection.c: Load the assembly in mono_reflection_type_from_name,
4569         if it was not loaded before. Fix parts of #60439.
4570
4571 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
4572
4573         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
4574         code that was broken since Ben's change: wrappers are now
4575         dependent on the method signature only again.
4576
4577 2004-06-21  Martin Baulig  <martin@ximian.com>
4578
4579         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
4580         added interface support.
4581
4582 2004-06-21  Martin Baulig  <martin@ximian.com>
4583
4584         * class.c (mono_vtable_get_static_field_data): New public method.
4585
4586 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
4587
4588         * filewatcher.c : Windows build fix to be compliant with API changes.
4589
4590 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
4591
4592         * class.h, class.c: more accessors.
4593         * metadata.h, metadata.c: prepare for hiding MonoType and
4594         MonoMethodSignature: people should use the accessors from now on
4595         outside of the tree.
4596
4597 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
4598
4599         * *.c, *.h: more API cleanups.
4600
4601 2004-06-18  Jackson Harper  <jackson@ximian.com>
4602
4603         * assembly.c: Trace loading assemblies.
4604         * loader.c: Trace loading native libraries.
4605         * mono-config.c: Trace loading config files.
4606         
4607 2004-06-18  Dick Porter  <dick@ximian.com>
4608
4609         * locales.c: Tell ICU the lengths of strings, it can cope with
4610         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
4611
4612 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
4613
4614         * image.c: swapped name/filename;
4615
4616 2004-06-18  Martin Baulig  <martin@ximian.com>
4617
4618         * mono-debug-debugger.c (write_class): Write the parent class at
4619         the end of the header.
4620
4621 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
4622
4623         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
4624
4625 2004-06-17  Raja R Harinath  <rharinath@novell.com>
4626
4627         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
4628         (bundle_obj): New conditional define.
4629         (BUILT_SOURCES): Remove.
4630         ($(bundle_srcs)): Make parallel-make safe.
4631         (libmonoruntime_la_LIBADD): Make unconditional.
4632         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
4633         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
4634
4635 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
4636
4637         * culture-info-tables.h: It was inconsistent with the latest
4638           supp info files.
4639
4640 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
4641
4642         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
4643         be loaded.
4644
4645         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
4646         with gcc 2.95.
4647
4648 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
4649
4650         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
4651         cleaned up public header threads.h.
4652
4653 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
4654
4655         * Makefile.am, *.c, *.h: more API cleanups.
4656
4657 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
4658
4659         * Makefile.am: removed monosn from compilation.
4660         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
4661         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
4662         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
4663         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
4664         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
4665         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
4666
4667 2004-06-15  Jackson Harper  <jackson@ximian.com>
4668
4669         * assembly.c: Make locales lower case when searching the GAC for
4670         assemblies. gacutil will always make locales lowercase when
4671         installing so this effectively makes them case insensitive.
4672         
4673 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
4674
4675         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
4676         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
4677           parameter which allows to choose whether the wait can be interrupted or 
4678           not. Also added the method mono_monitor_enter(), which locks the monitor
4679           using an infinite wait and without allowing interruption.
4680           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
4681           interrupted.
4682         * object.h: Added new fields in MonoThread. suspend_event holds the event
4683           used to susped/resume the thread. synch_lock is the lock object to use for
4684           modifying the thread state.
4685         * threads.c: Use the new synch_lock object for locking, instead of "this",
4686           which can generate deadlocks.
4687           Moved thread state change in Thread.Sleep and Thread.Join from managed
4688           to unmanaged code. This avoids a deadlock when the thread was suspended
4689           just after acquiring the thread lock.
4690           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
4691           Implemented Thread.Suspend using an event instead of ThreadSuspend,
4692           which is not fully implemented in the io-layer.
4693         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
4694
4695 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
4696
4697         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
4698         threads-types.h: more API cleanups.
4699
4700 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
4701
4702         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
4703         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
4704         threadpool.c, threads.c: first pass at the exported API cleanup.
4705
4706 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
4707
4708         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
4709
4710 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4711
4712         * icall.c: added internalGetHome.
4713
4714 2004-06-14  Dick Porter  <dick@ximian.com>
4715
4716         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
4717         possible to return successfully when '.' or '..' were the only
4718         entries in a directory, but were skipped.  The MonoIOStat was not
4719         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
4720         Fixes bug 59574.
4721
4722 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
4723
4724         * reflection.c: make binaries run on .Net 1.1 by default.
4725
4726 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
4727
4728         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
4729
4730 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
4731
4732         * marshal.c: keep track of struct size with explicit layout
4733         (bug #59979).
4734
4735 2004-06-12  Martin Baulig  <martin@ximian.com>
4736
4737         * mono-debug-debugger.c: Comment out a debugging g_message().
4738
4739 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
4740
4741         * reflection.c, reflection.h: do not free custom attrs that are cached.
4742         * icall.c: use braces to make code clearer.
4743
4744 2004-06-11  Martin Baulig  <martin@ximian.com>
4745
4746         * class.h (MonoInflatedField): New type.
4747         (MonoClassField): Replaced `MonoType *generic_type' with
4748         `MonoInflatedField *generic_info'.
4749
4750         * icall.c
4751         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
4752
4753 2004-06-11  Martin Baulig  <martin@ximian.com>
4754
4755         * reflection.c (mono_image_create_method_token): Correctly encode
4756         varargs methods.
4757
4758 2004-06-11  Martin Baulig  <martin@ximian.com>
4759
4760         * metadata.c (mono_metadata_parse_method_signature): When parsing
4761         a MethodDef which has VarArgs, also set sentinelpos if we don't
4762         have any parameters.
4763
4764 2004-06-11  Martin Baulig  <martin@ximian.com>
4765
4766         * verify.c (mono_method_verify): In CEE_CALL, use
4767         mono_method_get_signature() to get the method's signature, unless
4768         we're a PInvoke method.
4769
4770 2004-06-10  Jackson Harper  <jackson@ximian.com>
4771
4772         * assembly.c: Use <path>/lib/mono/gac for the extra paths
4773         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
4774         logical name as the supplied path is just a prefix to the gac not
4775         the direct path to it.
4776         
4777 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
4778
4779         * reflection.c: make the token for a created method match
4780         the token of the MethodBuilder it was created from
4781         (IKVM requires this behaviour now).
4782
4783 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
4784
4785         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
4786         reflection.c, socket-io.c: leak fixes.
4787
4788 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
4789
4790         * icall.c: handle sentinel pos in vararg methods in position different
4791         from 0.
4792
4793 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4794
4795         * culture-info-tables.h: freshly generated.
4796
4797 2004-06-09  Martin Baulig  <martin@ximian.com>
4798
4799         * loader.c (mono_get_method_constrained): Call `mono_class_init
4800         (constrained_class)'.   
4801
4802 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
4803
4804         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
4805         any methods. Fixes #59629.
4806
4807 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4808
4809         * culture-info-tables.h: reflecting locale-builder updates.
4810
4811 2004-06-08  Dick Porter  <dick@ximian.com>
4812
4813         * object.h:
4814         * locales.c: Fixed compile warnings, including a real bug in
4815         CompareInfo_internal_compare.
4816         
4817 2004-06-08  Dick Porter  <dick@ximian.com>
4818
4819         * locales.c
4820         (ves_icall_System_Globalization_CompareInfo_internal_index):
4821         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
4822         Double-check the resuls of usearches, because ICU currently
4823         ignores most of the collator settings here.  Fixes bug 59720.
4824         
4825 2004-06-08  Dick Porter  <dick@ximian.com>
4826
4827         * locales.c
4828         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
4829         Fix memory leak and segfault-causing typo.  No idea how this one
4830         lasted so long without being noticed.
4831
4832 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
4833
4834         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
4835         any methods. Fixes #59629.
4836
4837 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4838
4839         * assembly.c:
4840         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
4841         own the critical section before). Removed dead code (that's done
4842         in the preload hook).
4843
4844         (mono_assembly_load_with_partial_name): call the preload hook.
4845
4846 2004-06-08  Martin Baulig  <martin@ximian.com>
4847
4848         * metadata.c (mono_metadata_signature_alloc): Default
4849         `sentinelpos' to -1.
4850
4851         * reflection.c (mono_image_get_array_token): Likewise.
4852
4853 2004-06-08  Martin Baulig  <martin@ximian.com>
4854
4855         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
4856
4857         * metadata.c (mono_metadata_parse_method_signature): When parsing
4858         a MethodDef which has VarArgs, set sentinelpos.
4859
4860         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
4861         `gint16' since we're using -1 for non-varargs methods.
4862
4863         * reflection.c
4864         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
4865         (method_encode_signature): Added varargs support.
4866         (method_builder_encode_signature): Likewise.
4867         (mono_image_get_varargs_method_token): New static method.
4868         (mono_image_create_method_token): New public method; this is
4869         called via an icall instead of mono_image_create_token() when
4870         calling a varargs method.       
4871
4872 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
4873
4874         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
4875
4876 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4877
4878         * culture-info-tables.h : Reflecting the latest locale-builder that
4879           fixed empty array representation ({} to {0}).
4880
4881 2004-06-07  Jackson Harper  <jackson@ximian.com>
4882
4883         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
4884         looking up extra gac paths. This allows MONO_GAC_PATH to act
4885         exactly like a prefix.
4886         
4887 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
4888
4889         * reflection.c (mono_reflection_type_from_name): Make a copy of the
4890         type name before modifying it. Fixes #59405.
4891
4892 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
4893
4894         * culture-info.h: added fields for "all datetime patterns".
4895         * locales.c: (  ves_icall_System_Globalization_CultureInfo
4896           _construct_datetime_format ()): fill xxx_patterns fields.
4897         * object.h: added fields for "all datetime patterns" to
4898           MonoDateTimeFormatInfo.
4899         * culture-info-tables.h: reflecting locale-builder updates.
4900
4901 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
4902
4903         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
4904         the event has no add and remove methods. Fixes #59629.
4905
4906 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
4907
4908         * object.c: Fixed possible integer overflow when allocating large
4909         strings.
4910
4911 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
4912
4913         * culture-info-tables.h: reflecting locale-builder updates.
4914
4915 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
4916
4917         * culture-info-tables.h: reflecting locale-builder updates.
4918
4919 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
4920
4921         * culture-info-tables.h: reflecting locale-builder updates.
4922
4923 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
4924
4925         * threads.c: Made Thread.Sleep abortable.
4926
4927 2004-06-02  Martin Baulig  <martin@ximian.com>
4928
4929         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
4930
4931         * debug-mono-symfile.h: Bumped symbol file version number to 37.
4932
4933 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
4934
4935         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
4936
4937 2004-05-30  Jackson Harper  <jackson@ximian.com>
4938
4939         * reflection.c: Do not hardcode assembly versions or public key
4940         tokens anymore. All of this except the corlib section was dead
4941         code anyways.
4942         
4943 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
4944
4945         * object.c (mono_runtime_invoke_array): Automatically create boxed
4946         objects for byref valuetypes if needed. Fixes #59300.
4947         
4948         * object.c (mono_method_return_message_restore): Handle 
4949         MONO_TYPE_OBJECT as well.
4950
4951 2004-05-28  Jackson Harper  <jackson@ximian.com>
4952
4953         * reflection.c: The modified type encoding was causing build
4954         problems. Reverted for now.
4955         
4956 2004-05-28  Jackson Harper  <jackson@ximian.com>
4957
4958         * reflection.c/h: Take an assembly ref so that we dont create
4959         fully qualified names when encoding types in the same assembly as
4960         the custom attribute being emitted.
4961         * appdomain.c: Increment version number.
4962         
4963 2004-05-26  Duncan Mak  <duncan@ximian.com>
4964
4965         * icall.c
4966         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
4967         Set the full version number (major, minor, build, revision).
4968
4969 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
4970
4971         * marshal.c (emit_struct_conv): increment src/dst after blit
4972         (mono_marshal_get_managed_wrapper,
4973         mono_marshal_get_native_wrapper): make sure we have marshalling
4974         info before marshalling params (info computation affects
4975         blittable)
4976
4977         * class.c (class_compute_field_layout): correctly deal with
4978         blittable
4979         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
4980         value types (as per what windows dows by default)
4981         (mono_class_setup_mono_type): System.ValueType is blittable
4982         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
4983         blittable
4984
4985         * marshal.c (mono_marshal_load_type_info): flag types  as
4986         non-blittable if the native layout doesn't match the managed
4987         layout
4988
4989 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
4990
4991         * appdomain.c: don't add stuff in the private search path that is
4992         above the application base. If application base is not set, there's
4993         no private search path.
4994
4995 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
4996
4997         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
4998         byref struct arguments in native->managed marshalling.
4999
5000 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
5001
5002         * marshal.c (mono_marshal_get_runtime_invoke): correctly
5003         cache methods using signature (special case for methods
5004         that are value type or string class)
5005         
5006         * image.c (mono_image_close): clean up allocated GSList's
5007         in runtime_invoke_cache.
5008
5009 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5010
5011         * mono-config.c: set the correct path for mono_cfg_dir on windows when
5012         there's no MONO_CFG_DIR environment variable defined.
5013
5014 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5015
5016         * threads.c: windows version must be >= 0x0500 to include OpenThread.
5017
5018 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
5019
5020         * threadpool.c: Really wait for 500ms after the async call, even if the wait
5021           is interrumped.
5022         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
5023           before waiting for it, and call CloseHandle after the wait to unref it.
5024           This will make sure that handles are not disposed too early.
5025
5026 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5027
5028         * appdomain.c:
5029         * appdomain.h:
5030         * icall.c: removed
5031         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
5032         needed now.
5033
5034         * object.c: se the application_base only for the domain that runs
5035         Main. Fixes bug #59216,
5036
5037 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5038
5039         * appdomain.c:
5040         * object.c: only the domain in which Main is run have
5041         SetupInformation.ConfigurationFile set, so moved a few lines from
5042         appdomain.c to object.c.
5043
5044 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5045
5046         * appdomain.c: we tried to load [name].(dll|exe), but according
5047         to bug #57710, we must also try [culture]/[name].(dll|exe) and
5048         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
5049         There's a test case attached to bug #58922.
5050
5051 2004-05-27  Dick Porter  <dick@ximian.com>
5052
5053         * icall.c:
5054         * file-io.c: Implemented icalls for locking and unlocking regions
5055         in a file.
5056         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
5057         FALSE on error (fixes both compiler warning and real bug.)
5058
5059 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
5060
5061         * culture-info-tables.h: reflecting locale-builder updates.
5062
5063           (Added missing ChangeLog entry for 05/26)
5064
5065 2004-05-27  Jackson Harper  <jackson@ximian.com>
5066
5067         * locales.c: Fix some cut and paste errors.
5068         
5069 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5070
5071         * mono-config.c: set the correct path for config. directory on windows.
5072
5073 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5074
5075         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
5076           on win32.
5077
5078 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5079
5080         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
5081         from pinvoke functions.
5082         
5083         * marshal.c (mono_ftnptr_to_delegate): Implement this.
5084
5085 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
5086
5087         * culture-info-tables.h: reflecting locale-builder updates.
5088
5089 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
5090
5091         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
5092         #59086.
5093
5094 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
5095
5096         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
5097         * icall.c: Modified icalls for RNG.
5098         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
5099         Windows (CryptoAPI).
5100
5101 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5102
5103         * locales.c: Fix build.
5104
5105 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5106
5107         * culture-info-tables.h: reflecting locale-builder updates.
5108
5109 2004-05-25  Jackson Harper  <jackson@ximian.com>
5110
5111         * locales.c: When creating the current culture use the $LANGs
5112         specific culture. So DateTimeFormat and NumberFormat entries are created.
5113         
5114 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
5115
5116         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
5117         a char array as parameter.
5118
5119 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
5120
5121         * image.c: In mono_image_open(), always use an absolute path name to
5122           look for already loaded images.
5123
5124 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
5125
5126         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
5127         missing in the windows build (like older cygwin include files).
5128
5129 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
5130
5131         * icall.c: Fixed check for possible integer overflow in Buffer_
5132         BlockCopy icall. Replaced comments style // by /* */.
5133
5134 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
5135
5136         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
5137         
5138         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
5139         check after MONO_VTADDR. Fixes pinvoke2.exe.
5140
5141         * marshal.h marshal.c metadata.h: Add beginnings of support for
5142         ftnptr -> delegate marshalling.
5143
5144 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
5145
5146         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
5147         * threads.c: Fix warnings.
5148
5149 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
5150
5151         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
5152         * icall.c: Registered icalls for Suspend and Resume.
5153         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
5154           Thread.Abort.
5155         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
5156         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
5157         * process.c: Use WaitForSingleObjectEx.
5158         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
5159           checkpoints.
5160         * threads.c, threads.h: Make use of new Ex wait methods. Improved
5161           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
5162           for Suspend and Resume. Added new mono_thread_stop, used for stoping
5163           background threads. Added basic support for Abort in Windows.
5164           Start new threads using a managed delegate invoke wrapper. This wrapper
5165           has an interruption checkpoint that is needed since an interruption
5166           can be requested before the thread leaves the unmanaged code that starts 
5167           the thread.
5168         * marshal.c: Added interruption checkpoint after every native call, and
5169           also before managed calls for wrappers called from unmanaged code to
5170           go into managed code.
5171         * object.h: Added new field in MonoThread to keep track of interruption
5172           requests.
5173
5174 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
5175
5176         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
5177         calls.
5178
5179 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5180
5181         * appdomain.c:
5182         * assembly.c:
5183         * gc.c:
5184         * locales.c:
5185         * mono-config.c:
5186         * rand.c: getenv -> g_getenv (windows!)
5187
5188         * process.c: complete_path is also used on non-windows platforms.
5189
5190 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5191
5192         * icall.c: new signature for Process_Start.
5193
5194         * process.[ch]: new signature for Process_Start. If we're on windows
5195         and UseShellExecute is false, we have to search for the program by
5196         ourselves if we don't get a full path.
5197
5198 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
5199
5200         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
5201         marshalling and call CleanUpNativeData if needed. Fixes #58646.
5202
5203 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5204
5205         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
5206         Fixes bug #58373.
5207
5208 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5209
5210         * process.c: use double quotes to quote program name and arguments on
5211         windows. Fixes bug #58575.
5212
5213 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5214
5215         * file-io.c: don't return "." and ".." when using windows Find*File.
5216
5217 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
5218
5219         * marshal.c: Don't pass wrappers to message init because method 
5220         addressed used to lookup metadata. part of remoting[2|3] fix.
5221
5222 2004-05-15  Jackson Harper  <jackson@ximian.com>
5223
5224         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
5225         path is essentially the same as MONO_PATH except that it points to
5226         GACs instead of lib directories.
5227         * loader.h: The user gac is gone so we dont need function to
5228         enable/disable it.
5229         * mono-config.c: user gac option is now gone.
5230         
5231 2004-05-15  Jackson Harper  <jackson@ximian.com>
5232
5233         * culture-info.h: Make defines more consistent, add calendar data
5234         to the culture info table.
5235         * culture-info-tables.h: Add basic calendar data. Basically
5236         everyone gets default gregorian until all the data is
5237         updated.
5238         * locales.c: Use the new consistent defines. Set calendar data for
5239         culture info objects.
5240         * object.h: add a field for calendar data to CultureInfo
5241         
5242 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
5243
5244         * image.c: image->runtime_invoke_cache is keyed on signatures now.
5245         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
5246         a signature.
5247         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
5248         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
5249         an extra param that is the pointer of the method to invoke. The IL for
5250         the invoke method is no longer specific to the method, but to the
5251         signature of the method. Thus, we can share the same code for multiple
5252         methods. This reduces the number of methods that have to be compiled.
5253
5254 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
5255
5256         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
5257
5258         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5259
5260         * icall.c: Optimize Buffer.BlockCopy.
5261
5262 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5263
5264         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
5265         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
5266         quote). Changed them to "MMMM yyyy".
5267
5268 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
5269
5270         * rand.c
5271         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
5272
5273 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
5274
5275         * reflection.h: Updated after changes to managed structures.
5276
5277         * appdomain.c: Bump corlib version.
5278
5279 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5280
5281         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
5282         windows.
5283
5284 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5285
5286         * Makefile.am: link to ../os/libmonoos.la on windows.
5287
5288         * assembly.c:
5289                 -If MONO_DEBUG, warn about non-existing directories in
5290                 MONO_PATH.
5291                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
5292                 compile time variable.
5293                 -Removed init_default_path and call mono_set_rootdir from
5294                 libmonoos.a instead (windows only).
5295
5296         * assembly.h: declare mono_assembly_getrootdir().
5297
5298         * domain.c:
5299         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
5300
5301         * loader.c: s/getenv/g_getenv/
5302
5303 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
5304
5305         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
5306
5307         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
5308
5309         * metadata.h: Add new marshalling conversions.
5310
5311         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
5312         function.
5313
5314         * reflection.c (mono_reflection_get_type): Lookup the type in all
5315         modules of a multi-module assembly. Fixes #58291.
5316
5317 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
5318
5319         * threads.c: Before aborting a background, set the StopRequested
5320         state.  This avoids throwing the Abort exception.
5321         In mono_thread_manage, don't continue with the shutdown until all
5322         aborted threads have actually stopped.
5323
5324 2004-05-10  Jackson Harper  <jackson@ximian.com>
5325
5326         * locales.c: Remove the modifier from culture names.
5327         
5328 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5329
5330         * Makefile.am: monosn is not installed any more. It has been deprecated
5331         in favor of sn.
5332
5333 2004-05-07  Jackson Harper  <jackson@ximian.com>
5334
5335         * locales.c
5336         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
5337         Fix array construction, add bailout if the length is 0.
5338
5339 2004-05-07  Dick Porter  <dick@ximian.com>
5340
5341         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
5342         machine doesn't have a DNS entry.  Patch by Urs Muff
5343         (umuff@quark.com), fixes bug 57928.
5344
5345 2004-05-06  Jackson Harper  <jackson@ximian.com>
5346
5347         * reflection.c: Handle null PublicTokens properly. alloc mem for
5348         assembly names culture so we dont crash when freeing it.
5349         
5350 2004-05-06  Jackson Harper  <jackson@ximian.com>
5351
5352         * assembly.c: Check the usergac when loading with partial names.
5353         
5354 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
5355
5356         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
5357         does nothing for now (not required for Linux/Windows) but the class
5358         library can call it (and a newer or modified runtime could need it).
5359         * icall.c: Registred icall.
5360
5361 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5362
5363         * loader.c: prints a message on module loading error we set MONO_DEBUG
5364         environment variable.
5365
5366 2004-05-05  Jackson Harper  <jackson@ximian.com>
5367
5368         * appdomain.c: Handle PublicKeyToken=null properly.
5369         
5370 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
5371
5372         * environment.c|h: Added icall ves_icall_System_Environment_
5373         GetOSVersionString to get the current OS version as a string.
5374         * icall.c: Registred icall.
5375
5376 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
5377
5378         * object.c: in mono_object_get_virtual_method(), take into account that
5379         non-virtual methods don't have a slot in the vtable. Check needed when
5380         the object is a proxy.
5381
5382 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
5383
5384         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
5385         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
5386
5387         * object.c (mono_class_compute_gc_descriptor): Fix warning.
5388
5389         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
5390         passed when a valuetype is expected.
5391
5392         * object.c (mono_unhandled_exception): Only set the exit code if the
5393         exception happens in the main thread. Fixes thread5.exe.
5394
5395         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
5396         invalid names. Fixes #58047.
5397
5398 2004-05-03  Jackson Harper  <jackson@ximian.com>
5399
5400         * assembly.c: This line was committed accidently and is unneeded.
5401         
5402 2004-05-03  Jackson Harper  <jackson@ximian.com>
5403
5404         * icall.c: Add new icall for Assembly::LoadWithPartialName
5405         * assembly.c/.h: new function that probes the GAC to load partial
5406         assembly names by Paolo Molaro.
5407         
5408 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5409
5410         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
5411         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
5412         (type_get_fully_qualified_name): Added PublicKeyToken when building a
5413         full type name.
5414
5415 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5416
5417         * appdomain.c: fixed check for 'neutral' culture and removed warning.
5418         * reflection.c: fix bug when parsing a full type name and Version is not
5419         the last thing in the string.
5420
5421 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
5422
5423         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
5424         crashes when it is freed.
5425
5426 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5427
5428         * assembly.c: print the compat warning to stderr.
5429
5430 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
5431
5432         * assembly.c (mono_assembly_load_references): Add a compatibility
5433         hack to run old applications that might be still referencing the
5434         3300-based assemblies, only do this for System.xxx.
5435
5436 2004-05-01  Jackson Harper  <jackson@ximian.com>
5437
5438         * appdomain.c: If the culture is neutral we set it to "".
5439         
5440 2004-04-29  Jackson Harper  <jackson@ximian.com>
5441
5442         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
5443
5444 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
5445  
5446         * string-icalls.c: added low overhead function for copying chars
5447         * icall.c: added needed icall for the above function
5448  
5449 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5450
5451         * icall.c: fix return value of get_global_assembly_cache.  Implemented
5452         Environment.GetLogicalDrives.
5453
5454 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
5455
5456         * rand.c: try and talk to egd or prngd
5457         for random bytes if opening devices fail.
5458
5459 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
5460
5461         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
5462         alignment for the type using the native alignment of its members 
5463         instead of using klass->min_align.
5464
5465         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
5466
5467 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5468
5469         * file-io.c:
5470         * socket-io.c: added check for sys/aio.h.
5471
5472 2004-04-28  Dick Porter  <dick@ximian.com>
5473
5474         * threads.c: Don't abort a thread thats already aborting, when
5475         terminating everything.
5476
5477 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5478
5479         * icall.c: added 2 new async calls for Socket.
5480
5481         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
5482         IO on *nix systems.
5483
5484         * threadpool.c: removed unused variable.
5485
5486 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
5487
5488         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
5489
5490 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
5491
5492         * locales.c: put back string_invariant_tolower () and
5493         string_invariant_toupper ().
5494
5495 2004-04-26 David Waite <mass@akuma.org>
5496
5497         * file-io.h:
5498         * socket-io.h:
5499         * threads.h:
5500         * unicode.h: remove comma from end of enumeration declarations
5501
5502 2004-04-26 David Waite <mass@akuma.org>
5503
5504         * debug-mono-symfile.h:
5505         * decimal.c:
5506         * mono_debug.h:
5507         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
5508
5509
5510 2004-04-26  Jackson Harper  <jackson@ximian.com>
5511
5512         * appdomain.c: Increment version number.
5513         
5514 2004-04-26  Jackson Harper  <jackson@ximian.com>
5515
5516         * appdomain.c: Set assembly references public token value when
5517         PublicKeyToken is specified, not the hash_value. Free public token
5518         values when free assembly name data. Previously the public key
5519         token was hex decoded, however we are using hex encoded public key
5520         tokens, so this is not neccasary.
5521         * assembly.c: Lookup assemblies in the gac if their public token
5522         value is set. Add function to allow enabling user gac
5523         lookups. Specify whether or not the assembly was loaded from the
5524         GAC. Compare full assembly names when checking the cache for
5525         assemblies (Temporarily disabled see comment in code). Remove
5526         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
5527         specifies trace-loader they get extra info to stdout on the
5528         loading of assemblies.
5529         * image.h: Add a field for an assembly references public token
5530         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
5531         whether an assembly has been loaded from the GAC.
5532         * image.c: Remove a corlib -> mscorlib name mapping.
5533         * loader.h: Add function to enable/disable the user gac.
5534         * mono-config.c: Check if the usergac is enabled in the config
5535         file.
5536         * icall.c: New icall to determine whether or not an assembly has
5537         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
5538         * tabldefs.h: Add constant for assemblyref flag that specifies a
5539         full public key is used instead of a public token.
5540         * reflection.c: Remove mscorlib -> corlib mappings. Set
5541         PublicTokenValue instead of hash value. This value is a hex
5542         string so it does not need to be expanded.
5543
5544 2004-04-26  Martin Baulig  <martin@ximian.com>
5545
5546         * mono-debug-debugger.c (mono_debugger_initialize): Set
5547         `mono_debugger_initialized' before calling mono_debug_lock().
5548
5549 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
5550
5551         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
5552           InternalToUpper/InternalToLower.
5553         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
5554           removed invariant culture shortcut.  This is now done in managed code.
5555         * locales.c: (string_invariant_toupper/tolower) removed.
5556
5557 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5558
5559         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
5560         Added Poll internal call.
5561
5562         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
5563         call for Poll. Select was too heavy for polling a single socket.
5564
5565         * threadpool.[ch]: added mono_threadpool_cleanup.
5566         * threads.c: use it. Don't use Thread_Abort on windows.
5567
5568 2004-04-23  Martin Baulig  <martin@ximian.com>
5569
5570         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
5571
5572 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
5573
5574         * icall.c: Registred new icalls for key pair protection and added an
5575         icall for Environment.GetFolderPath on Windows.
5576         * security.c|h: Added new icalls for key pair protection.
5577
5578 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5579
5580         * socket-io.c: don't display the non-supported family warning for known
5581         families. Now this is not displayed on windows when checking support
5582         for IPv4/IPv6.
5583
5584 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5585
5586         * class.c: don't display the layout warning for static fields.
5587
5588 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
5589
5590         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
5591         * locales.c, locales.h: Added new icalls for culture-specific
5592         Char.ToLower and Char.ToUpper.
5593
5594 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5595
5596         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
5597         by David Waite.
5598
5599 2004-04-20  Martin Baulig  <martin@ximian.com>
5600
5601         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
5602         of the type name before passing it to mono_reflection_type_from_name().
5603
5604 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
5605
5606         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
5607         encodings here. Fixes #56965.
5608
5609 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
5610
5611         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
5612         fix test on strstr result not that I can see anything that
5613         relies on the result.
5614
5615 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
5616
5617         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
5618         Fixes #57081.
5619
5620         * marshal.c (mono_marshal_get_string_encoding): New helper function.
5621
5622         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
5623         function to determine which marshalling to use for strings. Fixes
5624         #56965.
5625
5626         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
5627
5628         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
5629
5630 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
5631
5632         * icall.c: #include mono-config.h
5633
5634 2004-04-15  Jackson Harper  <jackson@ximian.com>
5635
5636         * culture-info-tables.h: Fix date formats for en-US culture.
5637         
5638 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
5639
5640         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
5641         ThreadPool.SetMinThreads.
5642         * threadpool.c: Implemented ThreadPool.GetMinThreads and
5643         ThreadPool.SetMinThreads.
5644
5645 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
5646
5647         * mono-config.c: also load the .config file in the directory
5648         where the assembly was found.
5649
5650 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
5651
5652         * assembly.c: load per-assembly config files.
5653         * icall.c: decrapified code to get the config dir and moved to
5654         mono-config.c.
5655         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
5656         per-assembly config files. When doing a dll map lookup give precedence
5657         to the per-assembly data.
5658
5659 2004-04-14  Martin Baulig  <martin@ximian.com>
5660
5661         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
5662         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
5663         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
5664
5665         * mono-debugger-debugger.c: While the debugger is locked, remember
5666         whether the symbol tables have changes and send one single
5667         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
5668
5669 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
5670
5671         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
5672
5673         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
5674         function.
5675
5676         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
5677         account when marshalling string arrays. Fixes #56965.
5678
5679 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
5680
5681         * icall.c: Add new icalls mapping for security.
5682         * security.c|h: Add internal calls for WindowsIdentity,
5683         WindowsImpersonationContext and WindowsPrincipal.
5684
5685 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
5686
5687         * class.c: Added comment to ensure the System.MonoDummy class
5688         is removed when no longer necessary
5689
5690 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
5691
5692         * appdomain.c: Pass arguments to the bootstraping exceptions to
5693         minimize JITed methods at boot
5694
5695         * metadata.c (mono_exception_from_name_two_strings): Allow for the
5696         second string to be null.
5697
5698         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
5699         Change the protocol to minimize the JIT methods at startup.  Now
5700         it Returns the internal codepage, if the value of "int_code_page"
5701         is 1 at entry, and we can not compute a suitable code page
5702         number, returns the code page as a string.
5703
5704 2004-04-13  Jackson Harper  <jackson@ximian.com>
5705
5706         * culture-info-tables.h: Fix number of decimal digits for all
5707         english locales.
5708
5709 2004-04-13  Jackson Harper  <jackson@ximian.com>
5710
5711         * icall.c: Clairfy out of sync error message. It is not always
5712         your corlib that is out of sync.
5713
5714 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
5715
5716         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
5717         properties when only the set accessor is overriden. Fixes #55874.
5718
5719 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
5720
5721         * assembly.c (mono_assembly_load_references): Make this thread safe.
5722         Fixes #56327.
5723
5724 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
5725
5726         * monosn.c: Add missing initialization calls.
5727
5728 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
5729
5730         * locales.c:
5731         ves_icall_System_Globalization_CultureInfo_construct_number_format
5732         Fix g_assert so it compiles on fussier compilers re int/ptr
5733         mismatch
5734
5735 2004-04-08  Dick Porter  <dick@ximian.com>
5736
5737         * socket-io.h:
5738         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
5739         53992.  Also rearrange the code so that the internal calls return
5740         an error value and exceptions are thrown from managed code.
5741
5742         * icall.c: Add type info to the socket icalls.
5743
5744 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5745
5746         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
5747         owes me a beer.
5748
5749 2004-04-07  Martin Baulig  <martin@ximian.com>
5750
5751         * class.c (mono_class_from_generic_parameter): Don't default
5752         `klass->parent' to `mono_defaults.object_type'.
5753
5754 2004-04-07  Martin Baulig  <martin@ximian.com>
5755
5756         * reflection.c (mono_reflection_initialize_generic_parameter): Set
5757         `param->pklass->reflection_info'.       
5758
5759 2004-04-07  Jackson Harper  <jackson@ximian.com>
5760
5761         * culture-info-tables.h: Fix date separator symbol.
5762         
5763 2004-04-07  Martin Baulig  <martin@ximian.com>
5764
5765         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
5766         from System.Type to System.MonoType.
5767
5768 2004-04-07  Martin Baulig  <martin@ximian.com>
5769
5770         * reflection.h
5771         (MonoReflectionGenericParam): Added `has_reference_type' and
5772         `has_value_type' fields.
5773
5774         * reflection.c (mono_image_get_generic_param_info): Encode the
5775         correct flags if we have the `class' or `struct' constraint.
5776
5777 2004-04-07  Martin Baulig  <martin@ximian.com>
5778
5779         * reflection.h
5780         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
5781
5782 2004-04-07  Jackson Harper  <jackson@ximian.com>
5783
5784         * appdomain.c: Revert extra patches, just wanted to bump the
5785         version number.
5786         
5787 2004-04-07  Jackson Harper  <jackson@ximian.com>
5788
5789         * Makefile.am: Add culture-info private headers.
5790         * icall.c: Add new icalls for contructing locales.
5791         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
5792         * locales.h: Declare new culture info construction methods.
5793         * object.h: Add new fields used to avoid the CultureMap to
5794         MonoCultureInfo.
5795         * culture-info.h: Definition of structs used in the culture info
5796         tables.
5797         * culture-info-tables.h: Autogenerated tables that contain culture
5798         info data. This file was generated with the locale-builder tool.
5799         * appdomain.c: Incement corlib version number.
5800         
5801 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
5802
5803         * appdomain.c: (mono_runtime_init) move mono_thread_init
5804         to before mono_object_new calls so critical sections
5805         are initialized before use.
5806
5807 2004-04-07  Martin Baulig  <martin@ximian.com>
5808
5809         * icall.c
5810         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
5811         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
5812         (ves_icall_MonoGenericParam_initialize): Removed.
5813         (monogenericparam_icalls): Removed.
5814         (generictypeparambuilder_icalls): Added new table for
5815         System.Reflection.Emit.GenericTypeParameterBuilder.
5816
5817         * reflection.c
5818         (mono_reflection_define_generic_parameter): Removed.
5819         (mono_reflection_initialize_generic_parameter): This is now called
5820         from GenericTypeParameterBuilder's .ctor.
5821
5822 2004-04-06  Martin Baulig  <martin@ximian.com>
5823
5824         * class.c (mono_class_init): Don't inflate nested classes in a
5825         generic instance.
5826         (mono_type_get_name_recurse): Include the generic arguments for
5827         generic instances and generic type declarations.
5828         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
5829         (_mono_class_get_instantiation_name): Removed.
5830         (mono_class_create_generic): Always use `gklass->name' as our name.
5831
5832         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
5833
5834         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
5835         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
5836         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
5837         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
5838         closed generic methods here.
5839
5840         * reflection.c
5841         (mono_reflection_generic_inst_get_nested_types): Removed.
5842         (inflate_mono_method): Copy the generic parameters from the
5843         MonoMethodHeader into out MonoGenericMethod.
5844
5845 2004-04-06  Martin Baulig  <martin@ximian.com>
5846
5847         * row-indexes.h
5848         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
5849
5850         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
5851
5852         * reflection.c (build_compressed_metadata): If we have any entries
5853         in the GenericParam, MethodSpec or GenericParamConstraint tables,
5854         set the header version to 1.1.
5855
5856 2004-04-06  Martin Baulig  <martin@ximian.com>
5857
5858         * class.c (mono_class_init): If we're a generic instance,
5859         initialize our nested classes, too.
5860         (_mono_class_get_instantiation_name): Deal with the new `!%d'
5861         suffix. 
5862
5863 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5864
5865         * process.c: quote the argument passed to the shell on windows.
5866
5867 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
5868
5869         * threads.c (mono_alloc_special_static_data): Allow this to be
5870         called during startup.
5871
5872 2004-04-02  Martin Baulig  <martin@ximian.com>
5873
5874         * icall.c
5875         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
5876
5877 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
5878
5879         * icall.c: Fix build.
5880
5881 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
5882
5883         * Makefile.am: Added security.c|h.
5884         * icall.c: Added icall for get_UserName;
5885         * security.c: New file for security related icalls. Added function
5886         get_UserName for System.Environment (fix #56144).
5887         * security.h: New. Header file for security.c
5888
5889 2004-04-02  Dick Porter  <dick@ximian.com>
5890
5891         * icall.c: Deleted the icalls that were obsoleted some time ago
5892         by the ICU string code, and which were mixed into the icall
5893         rearranging.  Fixes bug 55969.
5894
5895         * string-icalls.h: 
5896         * string-icalls.c: Deleted the code that those icalls reference.
5897
5898 2004-04-01  Martin Baulig  <martin@ximian.com>
5899
5900         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
5901
5902         * class.c (mono_class_from_generic_parameter): Don't set 
5903         TYPE_ATTRIBUTE_INTERFACE.
5904         (my_mono_class_from_generic_parameter): Likewise.
5905
5906 2004-04-01  Martin Baulig  <martin@ximian.com>
5907
5908         * loader.c (find_method): Added an optional `MonoClass *ic'
5909         argument to search in a specific interface.
5910         (mono_get_method_constrained): New public function.
5911
5912 2004-04-01  Martin Baulig  <martin@ximian.com>
5913
5914         * reflection.c (mono_image_get_generic_field_token): Use the
5915         `handleref' cache here.
5916
5917 2004-04-01  Martin Baulig  <martin@ximian.com>
5918
5919         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
5920
5921         * reflection.c (create_generic_typespec): Use the `typespec' hash
5922         here, not the `typeref' one.    
5923
5924 2004-04-01  Martin Baulig  <martin@ximian.com>
5925
5926         * class.c (mono_class_inflate_generic_type): Moved the
5927         functionality into a new static inflate_generic_type() which
5928         returns NULL if it didn't do anything.  Only increment the
5929         `mono_stats.inflated_type_count' if we actually inflated
5930         something.
5931         (mono_class_get_full): Check the classes type to see whether we
5932         need to inflate it; also inflate MONO_TYPE_(M)VAR.
5933
5934 2004-04-01  Jackson Harper  <jackson@ximian.com>
5935
5936         * reflection.c: Set culture for assembly references.
5937         
5938 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
5939
5940         * reflection.[ch], icall.[ch], Fix support for pinning variables.
5941
5942 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5943
5944         * assembly.c:
5945         (do_mono_assembly_open): the critical section also covers
5946         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
5947
5948 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5949
5950         * threads.c:
5951         (mono_manage_threads): abort the background threads when finishing.
5952         Fixes bug #47232.
5953
5954 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
5955
5956         * gc.c: only close the done_event handle if there was no timeout.
5957         C-ified comments.
5958
5959 2004-03-30  Martin Baulig  <martin@ximian.com>
5960
5961         * icall.c (icall_entries): It's called "System.Activator", not
5962         "System.Activation".    
5963
5964 2004-03-30  Martin Baulig  <martin@ximian.com>
5965
5966         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
5967         (mono_class_create_from_typespec): Likewise.
5968
5969 2004-03-30  Martin Baulig  <martin@ximian.com>
5970
5971         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
5972         `has_ctor_constraint' and `initialized'.
5973
5974 2004-03-30  Martin Baulig  <martin@ximian.com>
5975
5976         * reflection.c (encode_new_constraint): New static function to add
5977         the constructor constraint attribute to a type parameter.
5978         (encode_constraints): Call encode_new_constraint() if necessary.
5979
5980         * reflection.h
5981         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
5982
5983         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
5984         
5985 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
5986
5987         * reflection.c, icall.c: add support for pinning variables. 
5988
5989 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
5990
5991         * marshal.c (mono_marshal_get_managed_wrapper):
5992         init bool local with zero rather than null.
5993
5994 2004-03-29  Martin Baulig  <martin@ximian.com>
5995
5996         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
5997         the "official" behavior here.
5998         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
5999
6000 2004-03-29  Martin Baulig  <martin@ximian.com>
6001
6002         * icall.c: Reflect latest API changes.
6003
6004 2004-03-29  Martin Baulig  <martin@ximian.com>
6005
6006         * loader.c (mono_get_method_from_token): Also call
6007         mono_metadata_load_generic_params () for abstract and interface
6008         methods; replace the type arguments in the method signature with
6009         the ones which are loaded from the metadata.
6010
6011 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
6012
6013         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
6014         of the lock is not the current thread. MS.NET don't do it, in spite of
6015         what the documentation says. See bug #56157.
6016
6017 2004-03-28  Martin Baulig  <martin@ximian.com>
6018
6019         * class.c (mono_class_init): Don't call init_properties() and
6020         init_events() for generic instances; set `prop->parent' when
6021         inflating properties.
6022
6023         * reflection.c (mono_generic_inst_get_object): Call
6024         `mono_class_init (ginst->klass)'.
6025         (mono_type_get_object): Only create a MonoGenericInst if your
6026         generic type is a TypeBuilder.
6027         (do_mono_reflection_bind_generic_parameters): Only set
6028         `ginst->is_dynamic' if our generic type is a TypeBuilder.
6029
6030 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
6031
6032         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
6033         Fixes #56091.
6034
6035 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6036
6037         * icall.c: added Kill_internal icall.
6038         * process.[ch]: added Kill_internal icall.
6039
6040 2004-03-25  Martin Baulig  <martin@ximian.com>
6041
6042         * class.h (MonoStats): Added `generic_instance_count',
6043         `inflated_method_count', `inflated_type_count' and
6044         `generics_metadata_size'.       
6045
6046 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6047
6048         * reflection.c: no warnings now.
6049
6050 2004-03-25  Martin Baulig  <martin@ximian.com>
6051
6052         * class.c (mono_class_get_full): New public function; does a
6053         mono_class_get(), but also takes a `MonoGenericContext *'.
6054
6055         * loader.c (mono_field_from_memberref): Renamed to
6056         `field_from_memberref', made static and added `MonoGenericContext *'
6057         argument.
6058         (mono_field_from_token): Added `MonoGenericInst *' argument.
6059         (method_from_memberef): Likewise.
6060         (mono_get_method_from_token): Likewise.
6061         (mono_get_method_full): New public function; does a
6062         mono_get_method(), but also takes a `MonoGenericContext *'.
6063
6064         * verify.c (mono_method_verify): Get the method's generic context
6065         and pass it to mono_field_from_token(), mono_get_method_full() and
6066         mono_class_get_full().
6067
6068 2004-03-25  Martin Baulig  <martin@ximian.com>
6069
6070         * class.c (mono_class_inflate_generic_type): Take a
6071         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
6072         `MonoGenericMethod *'.
6073
6074 2004-03-25  Martin Baulig  <martin@ximian.com>
6075
6076         * loader.h (MonoMethodInflated): Store the MonoGenericContext
6077         instead of the MonoGenericMethod here.
6078
6079 2004-03-25  Martin Baulig  <martin@ximian.com>
6080
6081         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
6082         each time we create a new MonoGenericInst, we also create a new
6083         context which points back to us.
6084
6085         * class.c (inflate_method): Use `ginst->context' instead of
6086         creating a new context.
6087
6088         * loader.c (method_from_memberref): Use
6089         `klass->generic_inst->context' instead of creating a new context.
6090
6091 2004-03-25  Martin Baulig  <martin@ximian.com>
6092
6093         * class.h (MonoGenericContext): New struct.
6094         (MonoGenericMethod): Removed `generic_inst'.
6095
6096         * class.c (mono_class_inflate_generic_method): Take a
6097         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
6098
6099 2004-03-25  Martin Baulig  <martin@ximian.com>
6100
6101         * loader.h (MonoMethodInflated): New typedef.
6102
6103         * metadata.h (MonoMethodSignature): Removed `gen_method', make
6104         `generic_param_count' consume just 30 bits, added `is_inflated'
6105         and `has_type_parameters' flags (one bit each).
6106
6107         * class.c (mono_class_inflate_generic_method): Create a
6108         MonoMethodInflated instead of a MonoMethodNormal and set
6109         `is_inflated' in the method signature.
6110
6111         * class.h (MonoGenericMethod): Removed `generic_method'.
6112
6113 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
6114
6115         * image.c: Make sure the name of a MonoImage is always an absolute path.
6116           This fixes bug #54415.
6117
6118 2004-03-24  Martin Baulig  <martin@ximian.com>
6119
6120         * class.c (mono_class_setup_vtable): If we're a generic instance,
6121         use our generic type's vtable size.
6122
6123 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
6124
6125         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
6126         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
6127         problems.
6128
6129 2004-03-23  Martin Baulig  <martin@ximian.com>
6130
6131         * class.h (MonoDynamicGenericInst): Added `int count_events' and
6132         `MonoEvent *events'.
6133
6134         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
6135         (typebuilder_icalls): Added "get_event_info"; calls
6136         mono_reflection_event_builder_get_event_info(). 
6137
6138         * reflection.c (mono_reflection_generic_inst_initialize): Added
6139         `MonoArray *events'.
6140         (mono_reflection_event_builder_get_event_info): New function.
6141
6142 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
6143
6144         * object.h: add mono_type_initialization_init
6145
6146         * object.c (mono_runtime_class_init): 
6147         implement class constructor synchronization rules
6148         to cope with threading issues.  
6149         add mono_type_initialization_init
6150
6151         * appdomain.c (mono_runtime_init): call 
6152         mono_type_initialization_init
6153
6154         * class.h: removing initializing field from MonoVTable
6155
6156 2004-03-23  Martin Baulig  <martin@ximian.com>
6157
6158         * class.c (my_mono_class_from_generic_parameter): Use
6159         `param->name' if it's not NULL. 
6160
6161 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
6162
6163         * class.c: do not insert non-virtual methods in the vtable.
6164         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
6165         that means the method is non-virtual. This never would have
6166         happened before.
6167
6168 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
6169
6170         * profiler.c: Added lock for accessing coverage_hash.
6171
6172 2004-03-22  Martin Baulig  <martin@ximian.com>
6173
6174         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
6175         `method->method->signature->generic_param_count != 0' to make it
6176         work for interface methods.
6177
6178 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6179
6180         * process.c: quote the string passed to the shell using g_shell_quote.
6181
6182 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6183
6184         * threads.c:
6185         (mono_threads_manage): don't remove the finalizer thread and self
6186         from the threads hash table so that mono_thread_manage can be called
6187         more than once.
6188
6189 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6190
6191         * process.c: quote the arguments when UseShellExecute is true. Fixes
6192         bug #55790.
6193
6194 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6195
6196         * threads.c: set mono_thread_detach as a cleanup routine for every
6197         thread. This way it's always executed upon thread termination, either
6198         aborted or finished normally. No more xsp hangs!
6199
6200 2004-03-17  Martin Baulig  <martin@ximian.com>
6201
6202         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
6203         `int count_nested' and a `MonoType **nested'.
6204
6205         * reflection.c (mono_reflection_bind_generic_parameters): Moved
6206         most of the functionality into a new static
6207         do_mono_reflection_bind_generic_parameters() and don't take a
6208         `MonoType *nested_in' argument any more.  Don't compute nested
6209         types here.
6210         (mono_reflection_generic_inst_get_nested_types): New public method
6211         to get nested types.
6212
6213         * class.c (mono_class_create_generic): Set `klass->nested_in' if
6214         we're a nested class.
6215
6216         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
6217         mono_reflection_generic_inst_get_nested_types() to compute the
6218         nested types.
6219
6220 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
6221
6222         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
6223         descriptive error message under windows.
6224         
6225 2004-03-17  Martin Baulig  <martin@ximian.com>
6226
6227         * class.c (dup_type): Added `const MonoType *original' argument;
6228         copy the attrs from the original type.
6229
6230 2004-03-17  Martin Baulig  <martin@ximian.com>
6231
6232         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
6233         `m->generic_inst_cache' here.
6234
6235 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
6236
6237         * exception.h exception.c: Add stack_overflow_exception.
6238
6239 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6240
6241         * threadpool.c:
6242         (overlapped_callback): call SetEvent *after* invoking the callback.
6243         No need to call CloseHandle.
6244
6245 2004-03-16  Martin Baulig  <martin@ximian.com>
6246
6247         * reflection.c (mono_image_get_fieldref_token): Take a
6248         `MonoReflectionField *' instead of a `MonoClassField *' and a
6249         `MonoClass *'; store the `MonoReflectionField *' in the hash.
6250
6251 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6252
6253         * appdomain.c: don't add the culture to the filename we're looking for
6254         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
6255
6256 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6257
6258         * locales.c: don't ignore symbols when doing case insensitive compares.
6259         Thanks Dick! Fixes bug #54046.
6260
6261         * threads.c: surround 'threads' usage with enter/leave in
6262         mono_thread_manage.
6263
6264 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
6265
6266         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
6267         implicitly marshalled as [Out]. Fixes #55450.
6268
6269         (mono_marshal_get_runtime_invoke): Zero out the result if there is
6270         an exception.
6271
6272 2004-03-16  Martin Baulig  <martin@ximian.com>
6273
6274         * class.c (mono_class_from_generic_parameter): Use the actual
6275         parameter name. 
6276
6277 2004-03-16  Martin Baulig  <martin@ximian.com>
6278
6279         * reflection.c (type_get_signature_size): New static function.
6280         Compues the size of the type in a method signature.
6281         (method_get_signature_size): New static function; calls
6282         type_get_signature_size() to compute the actual size of the
6283         method's signature.
6284         (method_encode_signature): Use method_get_signature_size() to get
6285         the signature's size rather than using `nparams * 10'.
6286
6287 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6288
6289         * file-io.h: define here WapiOverlapped on windows. I don't want the
6290         regular OVERLAPPED one.
6291
6292         * file-io.c:
6293         * threadpool.c: somehow, BindIoCompletionCallback is not found.
6294         Disabling AIO on windows.
6295
6296 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6297
6298         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
6299         bug #55385.
6300
6301 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6302
6303         * appdomain.c: upgraded corlib version.
6304
6305         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
6306         and BeginWrite. Allow opening files for asynchrnous operations.
6307
6308         * file-io.h: new struct that maps FileStreamAsyncResult.
6309         * icall.c: added new icalls.
6310         * process.[ch]: support setting child process environment variables
6311         and use the SHELL or COMSPEC when UseShellExecute is true.
6312
6313         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
6314         callback for async. IO is here and also BindHandle.
6315
6316         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
6317         from here.
6318
6319 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
6320
6321         * reflection.c (create_custom_attr): Allow len == 0.
6322
6323         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
6324         computation on big-endian machines.
6325
6326 2004-03-13  Martin Baulig  <martin@ximian.com>
6327
6328         * class.h (MonoGenericInst): Added `int count_ifaces'.
6329
6330         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
6331         `ginst->count_ifaces' instead `klass->interface_count' since we
6332         may get called before the vtable is created.
6333
6334         * loader.c (mono_method_get_param_names): If we're a generic
6335         instance, return and don't initialize the class.
6336
6337         * reflection.c (mono_reflection_setup_generic_class): Don't call
6338         ensure_runtime_vtable().
6339         (mono_reflection_bind_generic_parameters): Set
6340         `ginst->count_ifaces'.
6341
6342 2004-03-11  Jackson Harper <jackson@ximian.com>
6343
6344         * icall.c:
6345         * unicode.c:
6346         * unicode.h: Remove unused System.Char icalls.
6347         
6348 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
6349
6350         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
6351         code when we P/Invoke the first library in Windows.Forms, instead
6352         of when we first open the assembly.
6353
6354         * assembly.c: Drop the lookup from here.
6355
6356 2004-03-10  Martin Baulig  <martin@ximian.com>
6357
6358         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
6359         class for properties, fields and events.  Finally fixes #54945.
6360
6361 2004-03-10  Martin Baulig  <martin@ximian.com>
6362
6363         * metadata.c (mono_metadata_class_equal): New static function;
6364         checks whether two generic instances or two generic parameters are
6365         equal.
6366         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
6367         compare classes.        
6368
6369 2004-03-10  Martin Baulig  <martin@ximian.com>
6370
6371         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
6372
6373         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
6374         argument and write it into the `reflection_info' field.
6375
6376         * icall.c
6377         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
6378         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
6379
6380 2004-03-09  Jackson Harper  <jackson@ximian.com>
6381
6382         * char-conversions.h: use 8 bits for numeric data its all we need
6383         * icall.c: numeric data is only 8 bits now.
6384
6385 2004-03-09  Martin Baulig  <martin@ximian.com>
6386
6387         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
6388
6389         * class.c (init_properties, init_events): Initialize the new
6390         `parent' field.
6391
6392         * reflection.c (typebuilder_setup_properties): Likewise.
6393         (typebuilder_setup_events): Likewise.
6394
6395         * reflection.h (MonoEventInfo): Replaced `parent with
6396         `declaring_type' and `reflected_type'.
6397
6398         * icall.c (ves_icall_get_property_info): Distinguish between
6399         declaring and reflected type.
6400         (ves_icall_get_event_info): Likewise.
6401
6402 2004-03-09  Martin Baulig  <martin@ximian.com>
6403
6404         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
6405         (ves_icall_Type_GetField): Correctly set field->klass.
6406
6407 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
6408
6409         * loader.h: Fix warning.
6410
6411 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
6412
6413         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
6414         library routine if present.  Notice that it will still continue
6415         executing even if its missing, for those working on the Gtk#
6416         edition of Windows.Forms.
6417
6418         * assembly.c (do_mono_assembly_open): If loading the
6419         System.Windows.Forms call mono_loader_wini_init.
6420
6421 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
6422
6423         * class.h: Added MonoRemoteClass struct.
6424         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
6425         function for MonoStrings.
6426         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
6427         Added internal call for getting the proxy type.
6428         * marshal.c: Get the type of transparent proxies from its remote_class.
6429         Added methods that generate the IL for type checks and casts:
6430         mono_marshal_get_isinst, mono_marshal_get_castclass, 
6431         mono_marshal_get_proxy_cancast.
6432         * marshal.h: Declaration of the previous new methods.
6433         * object.c: Added new moethods for creating and updating MonoRemoteClass
6434         instances: mono_remote_class, mono_upgrade_remote_class, 
6435         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
6436         * verify.c: FIx transparent_proxy_fields layout.
6437         * appdomain.c: Bump corlib version.
6438
6439 2004-03-04  Jackson Harper  <jackson@ximian.com>
6440
6441         * icall.c: Add icall to access char conversion tables.
6442         * char-conversions.h: Character conversion tables.
6443         * Makefile.am: Add char-conversions.h private header file.
6444         
6445 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
6446
6447         * appdomain.c (unload_thread_main): Increase unloading timeout to
6448         10 sec as a temporary workaround for Nant problems.
6449
6450 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
6451
6452         * gc.c: Add checks for GC_enable and GC_disable.
6453
6454         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
6455         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
6456         (bug #54988).
6457         
6458 2004-02-27  Martin Baulig  <martin@ximian.com>
6459
6460         * reflection.c (mono_reflection_bind_generic_parameters): Take a
6461         `MonoReflectionType *' instead of a `MonoType *'.
6462
6463 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
6464
6465         * gc.c (run_finalize): Avoid finalizing the object representing the
6466         finalizer thread.
6467         (finalizer_thread): Fix warning.
6468
6469 2004-02-25  Martin Baulig  <martin@ximian.com>
6470
6471         * class.c (_mono_class_get_instantiation_name): Added `int offset'
6472         argument for nested types.
6473         (mono_class_create_generic): Added support for nested generictypes.
6474
6475         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
6476         `GList *nested'.
6477
6478         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
6479
6480         * reflection.c (method_encode_signature): Increase the minimum
6481         value of `size' from 10 to 11.
6482         (mono_reflection_bind_generic_parameters): Take `int type_argc'
6483         and `MonoType **types' arguments instead of the `MonoArray
6484         *types'; added `MonoType *nested_in'.  Recursively instantiate
6485         nested classes. 
6486
6487 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
6488
6489         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
6490         stack_overflow_ex members which are used by exception handling.
6491
6492         * appdomain.c (mono_runtime_init): Initialize the new members.
6493
6494         * gc.c (mono_gc_enable): New helper function.
6495         * gc.c (mono_gc_disable): New helper function.
6496
6497 2004-02-23  Martin Baulig  <martin@ximian.com>
6498
6499         * icall.c: I must have been really stupid - make it actually work
6500         this time ;-)
6501
6502 2004-02-23  Martin Baulig  <martin@ximian.com>
6503
6504         * loader.c (method_from_memberref): Only inflate the method if
6505         it's in another klass.
6506
6507 2004-02-23  Martin Baulig  <martin@ximian.com>
6508
6509         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
6510         (mono_class_init): If we're a generic instance and an interface,
6511         compute `class->interface_id'; also create `class->interfaces'
6512         here and inflate them.
6513
6514         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
6515         `ginst->is_open'.
6516         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
6517
6518         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
6519
6520 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
6521
6522         * reflection.c (method_encode_code): Improved the error message
6523         generated by the exception.
6524
6525 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6526
6527         * icall.c: Martin did not do what he said in the ChangeLog for
6528         2004-02-18, but put back the changes for properties and events.
6529         Commenting those changes out again and adding comment to bug #54518.
6530         
6531         * process.c: removed warning.
6532
6533 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
6534
6535         * marshal.c (emit_struct_conv): Print an error message instead of
6536         asserting when a type does not have the StructLayout attribute.
6537
6538 2004-02-20  Martin Baulig  <martin@ximian.com>
6539
6540         * reflection.c (mono_type_get_object): Also use the cache for
6541         generic instances.
6542         (mono_reflection_bind_generic_parameters): Always compute
6543         `ginst->ifaces'.        
6544
6545 2004-02-20  Martin Baulig  <martin@ximian.com>
6546
6547         * class.h (MonoGenericMethod): Removed `klass'.
6548
6549         * class.c (mono_class_inflate_generic_method): Added `MonoClass
6550         *klass' argument.
6551
6552 2004-02-20  Martin Baulig  <martin@ximian.com>
6553
6554         * reflection.c (method_encode_methodspec): Actually use the
6555         uninflated signature for the memberref.
6556
6557 2004-02-20  Martin Baulig  <martin@ximian.com>
6558
6559         * class.h (MonoGenericMethod): Removed `declaring'.
6560
6561         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
6562         is NULL, compute it here.
6563
6564 2004-02-20  Martin Baulig  <martin@ximian.com>
6565
6566         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
6567
6568         * metadata.c (mono_metadata_generic_inst_hash): New method.
6569         (mono_metadata_generic_inst_equal): New method.
6570
6571         * reflection.c (mono_reflection_bind_generic_parameters): Use the
6572         `klass->image->generic_inst_cache' cache to avoid creating
6573         duplicate MonoGenericInst's.
6574
6575         * class.c (mono_class_inflate_generic_type): Use the cache.
6576
6577 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
6578
6579         * object.c: fixed gc descriptor calculation for embedded valuetypes.
6580
6581 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6582
6583         * icall.c: added Socket.WSAIoctl icall.
6584
6585         * socket-io.[ch]: implemented
6586         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
6587
6588 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
6589
6590         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
6591
6592 2004-02-18  Urs C Muff  <umuff@quark.com>
6593
6594         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
6595         this work on PPC and other big-endian architectures.
6596
6597         * debug-mono-symfile.h: Prepended the names of all the `guint32'
6598         fields with an underscore to make sure they're only accessed by
6599         the read32() macro.
6600
6601 2004-02-18  Martin Baulig  <martin@ximian.com>
6602
6603         * icall.c: Put the klass->refclass changes back for methods and
6604         fields, but not for properties and events.  We're currently not
6605         distinguishing between DeclaringType and ReflectedType for
6606         properties and events, that's what caused the regressions.
6607
6608 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6609
6610         * object.c:
6611         (mono_async_result_new): the handle can be NULL.
6612
6613         * threadpool.c: Use an event instead of a semaphore, don't initialize
6614         it until needed. This saves quite a few semaphores from being created
6615         when using the threadpool.
6616
6617 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
6618
6619         * object.c (mono_string_is_interned_lookup): Fix interning of long
6620         strings. Fixes #54473.
6621
6622         * domain.c (ldstr_equal): Optimize if the two strings are equal.
6623
6624         * icall.c: Revert the klass->refclass changes since they introduce
6625         regressions (bug #54518).
6626
6627 2004-02-18  Martin Baulig  <martin@ximian.com>
6628
6629         * class.c (mono_class_init): If we're a generic instance and don't
6630         come from a TypeBuilder, inflate our members here.
6631         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
6632         (mono_class_create_generic): New public method.
6633         (mono_class_initialize_generic): Removed.
6634         (get_instantiation_name): Renamed to
6635         _mono_class_get_instantiation_name() and made it public.
6636
6637 2004-02-18  Martin Baulig  <martin@ximian.com>
6638
6639         * class.c (mono_class_inflate_generic_type): Clear the new
6640         instance's `nginst->klass' when inflating a generic instance.
6641         (mono_class_is_subclass_of): Added (basic) support for generic
6642         instances.
6643
6644 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
6645
6646         * appdomain.h, domain.c: use a MonoCodeManager instead of a
6647         MonoMempool to hold compiled native code.
6648
6649 2004-02-17  Martin Baulig  <martin@ximian.com>
6650
6651         * class.h (MonoDynamicGenericInst): Added `count_properties' and
6652         `properties'.
6653
6654         * reflection.c (mono_reflection_generic_inst_initialize): Added
6655         `MonoArray *properties' argument.
6656
6657         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
6658
6659 2004-02-17  Martin Baulig  <martin@ximian.com>
6660
6661         * icall.c (ves_icall_Type_GetFields): Renamed to
6662         ves_icall_Type_GetFields_internal() and added a
6663         `MonoReflectionType *rtype' argument; pass it to
6664         mono_field_get_object() to set the field's "reflected" type.
6665         (ves_icall_Type_GetConstructors): Likewise.
6666         (ves_icall_Type_GetEvents): Likewise.
6667         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
6668         argument; pass it to mono_method_get_object() to set the method's
6669         "reflected" type.       
6670
6671 2004-02-17  Martin Baulig  <martin@ximian.com>
6672
6673         * class.h (MonoDynamicGenericInst): New type.
6674         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
6675
6676         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
6677         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
6678         (ves_icall_MonoGenericInst_GetFields): New interncall.
6679
6680         * class.c (mono_class_from_generic): Don't call
6681         mono_class_initialize_generic() if this is a dynamic instance;
6682         ie. it's being created from a TypeBuilder.
6683         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
6684         `class->byval_arg.type'.
6685
6686         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
6687         to `inflate_method' and made static.
6688         (mono_reflection_inflate_field): Removed.
6689         (mono_reflection_generic_inst_initialize): New public method.
6690
6691         * reflection.h (MonoReflectionGenericInst): Removed `methods',
6692         `ctors' and `fields'; added `initialized'.
6693
6694 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
6695
6696         * debug-helpers.c (mono_method_full_name): Fix output for empty
6697         namespaces.
6698
6699 2004-02-12  Martin Baulig  <martin@ximian.com>
6700
6701         * class.h (MonoClassField): Added `MonoType *generic_type'.
6702
6703         * reflection.c (mono_image_get_fieldref_token): Added support for
6704         instantiated generic types.
6705         (field_encode_inflated_field): Removed.
6706         (mono_image_get_inflated_field_token): Removed.
6707         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
6708
6709         * reflection.h (MonoReflectionInflatedField): Removed.
6710
6711 2004-02-12  Martin Baulig  <martin@ximian.com>
6712
6713         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
6714         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
6715
6716         * reflection.c (mono_image_get_methodspec_token): Take a
6717         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
6718         (mono_image_create_token): Check whether we have a
6719         `method->signature->gen_method' and call
6720         mono_image_get_methodspec_token() if appropriate.
6721         (inflated_method_get_object): Removed.
6722         (mono_reflection_bind_generic_method_parameters): Return a
6723         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
6724         (mono_reflection_inflate_method_or_ctor): Likewise.
6725
6726         * reflection.h (MonoReflectionInflatedMethod): Removed.
6727
6728 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
6729
6730         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
6731         for custom valuetype marshalling.
6732
6733         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
6734
6735 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6736
6737         * icall.c: fixed WSAGetLastError_internal name.
6738
6739 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
6740
6741         * threads.c (mono_thread_attach): Allow this to be called multiple
6742         times for a thread.
6743         
6744         * threads.c (build_wait_tids): Do not wait for ourselves.
6745
6746         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
6747         appdomain list is empty.
6748
6749         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
6750         memory returned by mono_string_builder_to_utf16, since it points into
6751         managed memory. Thanks to Bernie Solomon for noticing this.
6752
6753         * icall.c: Add AppDomainSetup icalls.
6754
6755         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
6756
6757         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
6758         types.
6759
6760         * reflection.c (reflection_methodbuilder_to_mono_method): Save
6761         custom attributes to the method_aux struct. Also fix array indexes etc.
6762
6763         * loader.c (mono_method_get_param_names): Make dynamic case work again.
6764         
6765 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
6766
6767         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
6768         (both static and runtime) and reduce startup time.
6769
6770 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
6771
6772         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
6773         AsAny marshalling conversion instead of crashing.
6774
6775         * marshal.c: Fix warnings.
6776
6777 2004-02-09  Martin Baulig  <martin@ximian.com>
6778
6779         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
6780
6781         * reflection.h (MonoReflectionInflatedMethod): Removed the
6782         `declaring' field, it's now in the unmanaged MonoGenericMethod.
6783
6784         * reflection.c (method_encode_methodspec): Removed the `method'
6785         argument; we get it from `gmethod->declaring'.
6786         (inflated_method_get_object): Removed the `declaring' argument.
6787
6788 2004-02-09  Martin Baulig  <martin@ximian.com>
6789
6790         * class.h (MonoGenericMethod): New type.
6791         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
6792         `generic_method'.
6793
6794         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
6795         a `MonoGenericMethod *gen_method' one.
6796
6797         * class.c (mono_class_inflate_generic_type): Take an additional
6798         `MonoGenericMethod * argument.  This is only non-NULL if we're
6799         inflating types for a generic method.   
6800         (mono_class_inflate_generic_signature): Renamed to
6801         inflate_generic_signature() and made static; take a
6802         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
6803         (inflate_generic_header): Take a `MonoGenericMethod *' argument
6804         instead of a `MonoGenericInst *' one.
6805         (mono_class_inflate_generic_method): Likewise.
6806
6807         * reflection.c (encode_generic_method_sig): Take a
6808         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
6809         (method_encode_methodspec): Likewise.
6810         (inflated_method_get_object): Likewise. 
6811
6812         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
6813         field with a `MonoGenericMethod *gmethod' one.  
6814
6815 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
6816
6817         * class.h (mono_class_has_parent): add parens to expansion
6818         so you can ! this.
6819
6820 2004-02-08  Martin Baulig  <martin@ximian.com>
6821
6822         * image.h (MonoImage): Removed `generics_cache'.
6823
6824         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
6825         instead of a `MonoType *' argument; removed the `inflate_methods'
6826         argument.  Don't inflate methods here.
6827
6828         * loader.c (find_method): If it's a generic instance, call
6829         mono_class_init() on the `sclass->generic_inst->generic_type'.
6830
6831         * metadata.c (mono_type_size): Make this work on uninitialized
6832         generic instances; call it on the `ginst->generic_type's class.
6833
6834         * reflection.c (mono_reflection_bind_generic_parameters): Call
6835         mono_class_from_generic() to create the `ginst->klass'.
6836
6837 2004-02-08  Martin Baulig  <martin@ximian.com>
6838
6839         * class.h (MonoClass): Changed type of `generic_inst' from
6840         `MonoType *' to `MonoGenericInst *'.
6841
6842 2004-02-08  Martin Baulig  <martin@ximian.com>
6843
6844         * icall.c (ves_icall_Type_BindGenericParameters): Just call
6845         mono_type_get_object(), this is now creating a `MonoGenericInst'
6846         for MONO_TYPE_GENERICINST.
6847         (ves_icall_MonoGenericInst_GetParentType): Likewise.
6848         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
6849
6850         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
6851         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
6852         (inflated_method_get_object): Added `MonoClass *refclass' argument.
6853         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
6854         and reflected type.
6855
6856         * reflection.h (MonoReflectionInflatedMethod): Removed
6857         `declaring_type' and `reflected_type'.
6858
6859 2004-02-08  Martin Baulig  <martin@ximian.com>
6860
6861         * class.h (MonoGenericInst): Added `MonoType *parent' and
6862         `MonoType **ifaces'.
6863
6864         * reflection.h (MonoReflectionGenericInst): Removed `klass',
6865         `parent' and `interfaces'.
6866
6867         * reflection.c (mono_reflection_bind_generic_parameters): Take a
6868         `MonoType *' argument and return a `MonoType *'.
6869
6870         * icall.c
6871         (ves_icall_MonoGenericInst_GetParentType): New interncall.
6872         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
6873
6874 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
6875
6876         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
6877         valuetype marshalling.
6878
6879 2004-02-06  Martin Baulig  <martin@ximian.com>
6880
6881         * class.c
6882         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
6883         (my_mono_class_from_generic_parameter): Likewise.
6884
6885 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
6886
6887         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
6888         contents of the symbol files lazily.
6889
6890         * object.h (MonoThread): Add 'name' and 'name_len' fields.
6891
6892         * threads.h threads.c icall.c: New icalls for getting and setting the
6893         threads name.
6894
6895 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
6896
6897         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
6898         Raise an exception when the domain is not found.
6899
6900 2004-02-03  Martin Baulig  <martin@ximian.com>
6901
6902         * reflection.c (mono_image_get_methodspec_token): Use the
6903         uninflated signature; fixes gen-33.
6904
6905 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
6906
6907         * gc.c threads.c: Make the finalizer thread a normal managed thread so
6908         the finalizer code can use thread functionality.
6909
6910         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
6911         the finalizer thread.
6912
6913         * threads.c: Make some functions more robust.
6914
6915         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
6916
6917         * metadata.h: Add new marshalling conventions.
6918
6919         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
6920         stringbuilder marshalling. Fixes #53700.
6921
6922         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
6923
6924         * reflection.c (mono_image_get_type_info): Save declarative security
6925         info.
6926
6927         * reflection.c (mono_image_get_field_info): Handle uninitialized 
6928         unmanaged fields as well.
6929
6930         * appdomain.c: Bump corlib version.
6931
6932 2004-02-01  Martin Baulig  <martin@ximian.com>
6933
6934         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
6935         method type arguments.  
6936
6937 2004-01-30  Duncan Mak  <duncan@ximian.com>
6938
6939         * marshal.h: Add prototype for
6940         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
6941         and
6942         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
6943         fix the build.
6944
6945 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
6946
6947         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
6948         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
6949
6950 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
6951
6952         * marshal.c (mono_marshal_get_native_wrapper): Add support for
6953         custom marshalling of valuetypes.
6954
6955         * marshal.c: Fix some warnings.
6956
6957 2004-01-29  Martin Baulig  <martin@ximian.com>
6958
6959         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
6960         for generic method parameters.
6961
6962         * reflection.c (method_encode_methodspec): Write the uninflated
6963         signature into the methodspec table.
6964         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
6965         is always the uninflated method.
6966         (reflection_methodbuilder_to_mono_method): Copy the generic
6967         parameters from the MethodBuilder into `header->gen_params'.
6968
6969 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
6970
6971         * class.c (mono_class_from_generic_parameter): Fix warning.
6972
6973 2004-01-27  Martin Baulig  <martin@ximian.com>
6974
6975         * class.c (mono_class_from_generic_parameter): Don't create
6976         `klass->methods' here.  
6977
6978 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
6979
6980         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
6981         extension since it does not work with libraries named lib<FOO>.dll.so.
6982
6983 2004-01-25  Martin Baulig  <martin@ximian.com>
6984
6985         * class.c (mono_class_inflate_generic_type): Added support for
6986         MONO_TYPE_GENERICINST.
6987
6988         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
6989         inflate methods on open constructed types.      
6990
6991 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6992
6993         * object.c: fire ProcessExit event in the root AppDomain after running
6994         Main. Fixes bug #53299.
6995
6996 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
6997
6998         * socket-io.c: include the new socket-wrappers.h header.
6999         Use the wrappers instead of the unix socket functions to make the code
7000         more clear.
7001
7002 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
7003
7004         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
7005
7006         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
7007         Fixes #22532.
7008
7009 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
7010
7011         * reflection.c (mono_image_create_pefile): Handle the case when the
7012         entry point is not a MethodBuilder.
7013
7014         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
7015         field to ReflectionMethod since it is not allways a builder.
7016
7017         * reflection.c (type_get_fully_qualified_name): New helper function to
7018         return the fully qualified name of a type.
7019
7020         * reflection.c (encode_marshal_blob): Always emit the fully qualified
7021         type name for custom marshallers.
7022
7023         * reflection.c (mono_marshal_spec_from_builder): Ditto.
7024
7025         * class.c (mono_class_setup_vtable): If a parent class already 
7026         implements an interface, use the implementing methods from that class.
7027         Fixes #53148.
7028
7029 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7030
7031         * threadpool.c: just return instead of ExitThread to allow for thread
7032         clean up earlier.
7033
7034 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
7035
7036         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
7037         when closing resource modules.
7038
7039         * reflection.c (mono_image_create_pefile): Handle the case when the
7040         entry point is not a MethodBuilder.
7041
7042         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
7043         field to ReflectionMethod since it is not allways a builder.
7044
7045 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
7046
7047         * marshal.c (mono_marshal_get_managed_wrapper): 
7048         mono_marshal_alloc takes native int so CONV_I
7049         the arg for 64bits.
7050
7051 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
7052
7053         * reflection.c (fixup_cattrs): New function to fixup the methoddef
7054         tokens in the cattr table. Fixes #53108.
7055
7056 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7057
7058         * loader.c: don't trim ".dll" before looking up in the config file.
7059         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
7060
7061 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
7062
7063         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
7064         Return the module which contains the resource as well.
7065         (ves_icall_System_Reflection_Module_Close): New icall.
7066
7067         * appdomain.c: Bump corlib version number.
7068
7069         * image.c (mono_image_addref): New public function.
7070
7071         * assembly.c: Call mono_image_addref.
7072
7073         * reflection.c (mono_module_get_object): Increase reference count of 
7074         the image.
7075
7076         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
7077         Fixes #22532.
7078
7079         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
7080         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
7081         proper exceptions on DllImport problems.
7082
7083 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
7084
7085         * class.c, metadata.c: eliminate CSIZE macro.
7086
7087 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
7088
7089         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
7090         * object.h: Added async_callback field in MonoAsyncResult.
7091         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
7092         * verify.c: Added async_callback in MonoAsyncResult layout.
7093
7094 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
7095
7096         * reflection.c (mono_reflection_get_custom_attrs): Add support
7097         for Modules.
7098
7099 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
7100
7101         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
7102         marshalling.
7103         (mono_marshal_method_from_wrapper): Add null pointer check.
7104
7105 2004-01-16  Martin Baulig  <martin@ximian.com>
7106
7107         * debug-mono-symfile.h: Set version number to 36 and reflect
7108         latest symbol writer changes.
7109
7110 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
7111
7112         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
7113         multi-dimensional arrays.
7114         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
7115         (mono_class_from_mono_type): Use bounded_array_class_get.
7116         
7117         * class.c (mono_bounded_array_class_get): New function which takes
7118         a 'bounded' bool argument to distinguish vectors from one dimensional
7119         arrays.
7120
7121         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
7122         bounded_array_class_get if the array has bounds.
7123
7124         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7125         Search modules loaded using AssemblyBuilder:AddModule as well.
7126
7127 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7128
7129         * appdomain.c: increased corlib version.
7130         * filewatcher.c: removed g_print.
7131         * icall.c:
7132         (get_property_info): only allocate what is actually requested.
7133         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
7134
7135 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7136
7137         * Makefile.am: added filewatcher.[ch]
7138         * filewatcher.[ch]: FileSystemWatcher runtime support.
7139         * icall.c: added new FSW icalls.
7140
7141 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
7142
7143         * string-icalls.c: fix stringbuilder regression as suggested by
7144         Iain McCoy <iain@mccoy.id.au>.
7145
7146 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
7147
7148         * process.c (process_read_stringtable_block): Recognize '007f' as
7149         a language neutral stringtable block.
7150
7151 2004-01-12  Patrik Torstensson
7152
7153         * object.h (MonoStringBuilder) : Changed layout to support our
7154         new stringbuilder class.
7155         * marshal.c: Change marshalling to support the new layout of 
7156         string builder.
7157         * appdomain.c: increased version number because new layout of
7158         string builder.
7159
7160 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
7161
7162         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
7163         assembly name as an string instead of an AssemblyName, since it is
7164         easier to extract info from it.
7165
7166         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
7167         the culture subdirectories too. Fixes #52231.
7168
7169 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7170
7171         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
7172         It takes 2 new parameters with an optional name for the method to look
7173         for and case ignoring info.
7174
7175         * threadpool.c: removed unused variable.
7176
7177 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7178
7179         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
7180         It takes 2 new parameters with an optional name for the property to look
7181         for and case ignoring info.
7182         Fixes bug #52753.
7183
7184 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
7185
7186         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
7187         Fix #52451.
7188
7189 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7190
7191         * appdomain.c:
7192         * assembly.c: escape the uri before passing it to g_filename_from_uri.
7193         Fixes bug #52630.
7194
7195 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
7196
7197         * reflection.c: Add support for more than one unmanaged resource.
7198
7199         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
7200         in field->def_value, as done in all other cases.
7201
7202         * reflection.c (mono_reflection_get_custom_attrs): Add support for
7203         TypeBuilders.
7204
7205         * reflection.c (mono_reflection_create_runtime_class): Remove 
7206         errorneous assignment to klass->element_class, since it is already
7207         done in mono_reflection_setup_internal_class.
7208
7209 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7210
7211         * gc.c: added missing LeaveCriticalSection.
7212         * icall.c: indented a couple of lines.
7213         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
7214         if we call EndInvoke inside a callback. Fixes bug #52601.
7215
7216 2004-01-07  Martin Baulig  <martin@ximian.com>
7217
7218         * mono-debug-debugger.h
7219         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
7220
7221 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
7222
7223         * appdomain.c: Use messages in NotImplementedException.
7224
7225         * exception.c (mono_get_exception_not_implemented): Now this takes
7226         a message argument.
7227
7228         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
7229         exception instead of g_asserting an aborting when something is not
7230         implemented.
7231
7232         Add some inline docs.
7233
7234 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
7235
7236         * reflection.h: Update after changes to object layout.
7237
7238         * reflection.c: Implement saving of unmanaged aka win32 resources.
7239
7240         * appdomain.c: Bump version number.
7241
7242         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
7243         Handle missing domains gracefully.
7244
7245 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
7246
7247         * file-io.c : On Windows, there are much more invalid_path_chars.
7248
7249 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
7250
7251         * class.h, object.c: prepare for GetType () speedup.
7252
7253 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
7254
7255         * profiler.c: workaround for --profile null reference exception on
7256           cygwin. Patch by Patrik Torstensson.
7257
7258 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
7259
7260         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
7261         make work for unaligned access.
7262
7263 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
7264
7265         * class.c: small cleanup (class->fields [i] -> field).
7266         * image.c: check address of metadata is valid.
7267
7268 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
7269
7270         * assembly.h assembly.c (mono_assembly_loaded): New public function to
7271         search the list of loaded assemblies.
7272
7273         * reflection.c (mono_reflection_type_from_name): Use 
7274         mono_assembly_loaded instead of mono_image_loaded.
7275
7276         * reflection.c: Fix warnings.
7277
7278 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
7279
7280         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
7281         is dynamic. This is needed since an assembly can contain both dynamic and
7282         non-dynamic images.
7283
7284         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
7285         assembly->dynamic.
7286
7287         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
7288
7289         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
7290         to store modules loaded using AddModule.
7291
7292         * reflection.c (mono_image_fill_file_table): Generalize this so it works
7293         on Modules.
7294
7295         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
7296
7297         * reflection.c (mono_image_fill_export_table_from_module): New function to
7298         fill out the EXPORTEDTYPES table from a module.
7299
7300         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
7301         into a separate function. Also handle loaded non-dynamic modules.
7302
7303         * reflection.c (mono_image_basic_init): Fix memory allocation.
7304
7305         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7306
7307         * assembly.c (mono_assembly_load_references): Make this public.
7308
7309 2003-12-19  Martin Baulig  <martin@ximian.com>
7310
7311         * class.c (mono_class_initialize_generic): Made this static, take
7312         a `MonoGenericInst *' instead of a `MonoClass *'.
7313         (mono_class_from_generic): Call mono_class_initialize_generic()
7314         unless we're already initialized or being called from
7315         do_mono_metadata_parse_generic_inst().
7316
7317         * class.h (MonoGenericInst): Added `initialized' and
7318         `init_pending' flags.
7319
7320         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
7321         `mono_class_init (gklass)' or mono_class_initialize_generic()
7322         here; set `generic_inst->init_pending' while parsing the
7323         `type_argv'.
7324
7325 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
7326
7327         * locales.c: include string.h for memxxx prototypes
7328
7329 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
7330
7331         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
7332         constructor when accessing literal fields.
7333
7334 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
7335
7336         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7337
7338         * reflection.c (assembly_add_resource_manifest): New function to fill
7339         the MANIFESTRESOURCE table.
7340
7341         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
7342
7343         * reflection.h: Update to changes in class layout.
7344
7345         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
7346         Reenable call to mono_runtime_is_shutting_down ().
7347
7348         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
7349         determine if the runtime is shutting down.
7350
7351 2003-12-16  Jackson Harper <jackson@ximian.com>
7352
7353         * icall.c: comment out call to mono_runtime_is_shutting_down to
7354         fix build.
7355         
7356 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
7357
7358         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
7359         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
7360
7361 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
7362
7363         * reflection.c: move definition of swap_with_size
7364         to before its first call
7365
7366 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
7367
7368         * appdomain.c (mono_runtime_is_shutting_down): New public function.
7369
7370         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
7371         icall.
7372
7373         * object.c: Fix warnings.
7374
7375         * icall.c (ves_icall_Type_Get...): Only consider inherited static
7376         members if FlattenHierarchy is set.
7377
7378         * reflection.c (mono_image_add_decl_security): New function to emit
7379         declarative security.
7380
7381         * reflection.h reflection.c: Add support for declarative security.
7382
7383         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
7384         
7385 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
7386
7387         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
7388         
7389         * appdomain.c verify.c: Moved corlib version checking into its own
7390         function in appdomain.c since it needs to create vtables etc.
7391
7392 2003-12-13  Patrik Torstensson <p@rxc.se>
7393
7394         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
7395         instead of unwrapped server.
7396
7397 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
7398
7399         * verify.c (check_corlib): Fix field index.
7400
7401 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
7402
7403         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
7404         GetGacPath icall.
7405
7406 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
7407
7408         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
7409         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
7410         cope with sizeof(size_t) != sizeof(guint32).
7411
7412 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7413
7414         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
7415         in case of failure.
7416
7417 2003-12-10  Mark Crichton <crichton@gimp.org>
7418
7419         * icall.c: removed the GetNonZeroBytes.  We now handle this case
7420         in managed code.
7421
7422         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
7423
7424 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
7425
7426         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
7427         marked as deleted.
7428
7429 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
7430
7431         * verify.c (check_corlib): Handle the case when the version field is 
7432         initialized by a static constructor.
7433
7434 2003-12-08  Patrik Torstensson  <p@rxc.se>
7435
7436     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
7437
7438 2003-12-08  Martin Baulig  <martin@ximian.com>
7439
7440         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
7441         a MonoReflectionGenericParameter, also take the parameter index
7442         and name as arguments.
7443         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
7444         (ves_icall_MonoGenericParam_initialize): New interncall.
7445         (ves_icall_Type_make_byref_type): New interncall.
7446
7447         * reflection.h (MonoReflectionGenericParam): Derive from
7448         MonoReflectionType, not just from MonoObject.  Added `refobj' and
7449         `index' fields.
7450
7451         * reflection.c (mono_reflection_define_generic_parameter): Create
7452         and return a new MonoReflectionGenericParam; don't initialize the
7453         constraints here.
7454         (mono_reflection_initialize_generic_parameter): New public method;
7455         initializes the constraints and creates the `param->pklass'.
7456
7457 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
7458
7459         * reflection.h reflection.c: Use the new fields 'num_types', 
7460         'num_fields' and 'num_methods' to track the number of types etc.
7461
7462         * verify.c (check_corlib): Check corlib version number.
7463
7464 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
7465
7466         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
7467         function works on all methods.
7468
7469 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
7470
7471         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
7472         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
7473         the custom_type_info flag of the transparent proxy.
7474         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
7475         objects that supports IRemotingTypeInfo.
7476         * object.h: Added custom_type_info field in transparent proxy.
7477
7478 2003-12-06  Martin Baulig  <martin@ximian.com>
7479
7480         * class.c (mono_class_create_from_generic): Removed.
7481         (mono_class_from_generic): Check `ginst->klass' before doing
7482         anything else.  This is important to fully support "recursive"
7483         generic types.
7484
7485         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
7486         empty `generic_inst->klass' before doing anything else.
7487
7488 2003-12-06  Dick Porter  <dick@ximian.com>
7489
7490         * verify.c: 
7491         * object.h:
7492         * icall.c:
7493         * locales.c: Use C structs to access class fields.  Don't do a
7494         conversion between MonoString and UChar because both are
7495         platform-endian UTF-16.  Compare now takes startindex and count
7496         parameters.  Add a char overload for IndexOf.  Speed up the
7497         invariant string IndexOf.
7498
7499 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
7500
7501         * Makefile.am (monosn_LDADD): Fix parallel build.
7502
7503 2003-12-04  Martin Baulig  <martin@ximian.com>
7504
7505         * icall.c
7506         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
7507         (ves_icall_Type_make_array_type): New interncall.       
7508
7509 2003-12-04  Martin Baulig  <martin@ximian.com>
7510
7511         * locales.c: also change it in the !HAVE_ICU case.
7512
7513 2003-12-04  Dick Porter  <dick@ximian.com>
7514
7515         * icall.c:
7516         * locales.c: construct_compareinfo is now in CompareInfo, not
7517         CultureInfo.
7518
7519 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
7520
7521         * image.c (mono_image_load_file_for_image): Cache loaded images in the
7522         image->files array.
7523
7524         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
7525         table as well.
7526
7527         * assembly.c (mono_assembly_load_references): Only load references
7528         once.
7529
7530         * class.c (mono_class_from_name): Avoid linear search of the 
7531         EXPORTEDTYPE table.
7532
7533         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
7534
7535 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
7536
7537         * image.h (MonoImage): Add 'field_cache' field.
7538
7539         * loader.c (mono_field_from_token): Cache field lookups.
7540         
7541         * reflection.c (mono_module_get_object): Fix name property.
7542
7543         * icall.c (ves_icall_get_enum_info): Update after changes to 
7544         mono_metadata_get_constant_index ().
7545
7546         * icall.c: Get rid of get_type_info icall, use a separate icall for
7547         each type property to avoid needless memory allocations. Fixes #51514.
7548
7549         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
7550         to avoid needless binary searches.
7551
7552         * class.c (class_compute_field_layout): Move the initialization of
7553         field->def_value to mono_class_vtable ().
7554
7555         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
7556         non-corlib types.
7557
7558         * object.c (mono_object_allocate): Make it inline.
7559
7560         * object.c (mono_object_allocate_spec): Make it inline.
7561         
7562 2003-12-02  Dick Porter  <dick@ximian.com>
7563
7564         * locales.c (create_NumberFormat): NumberFormatInfo construction.
7565         Patch by Mohammad DAMT (mdamt@cdl2000.com).
7566
7567 2003-12-01  Dick Porter  <dick@ximian.com>
7568
7569         * threads.c: Fix signature and call in CreateMutex and
7570         CreateEvent.
7571
7572 2003-12-01  Dick Porter  <dick@ximian.com>
7573
7574         * icall.c: 
7575         * locales.c: Implement string compares and searching
7576
7577         * object.h: Add extra Thread field
7578
7579 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
7580
7581         * reflection.c (fixup_method): Add support for MonoCMethod.
7582
7583 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
7584
7585         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
7586
7587         * reflection.c (assembly_name_to_aname): Allow extra characters in
7588         assembly names. Fixes #51468.
7589
7590 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
7591
7592         * exception.c (mono_exception_from_name_domain): New helper function.
7593
7594         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
7595         exception object in the correct domain.
7596
7597         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
7598         formatting + make a copy a the input data.
7599
7600         * loader.c (mono_get_method_from_token): Methods which contain
7601         native code do not have entries in the ImplMap.
7602
7603         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
7604         Thanks to Gonzalo for spotting this.
7605         
7606         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
7607         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
7608
7609         * assembly.h (mono_assembly_load_from): Split the second part of 
7610         assembly loading into a new public function.
7611
7612         * exception.h (mono_get_exception_bad_image_format): New function.
7613
7614 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
7615
7616         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7617         Enumerate all modules inside a dynamic assembly. Fixes #51293.
7618         
7619         * icall.c: Add new icall for creating dynamic methods.
7620
7621         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
7622
7623         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
7624
7625         * reflection.c (mono_reflection_create_dynamic_method): New icall to
7626         create a dynamic method.
7627
7628         * reflection.c (resolve_object): New helper function.
7629
7630         * reflection.c: Generalize ReflectionMethodBuilder and the functions
7631         which manipulate it so they can also work on dynamic methods.
7632
7633         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
7634         creating the MonoReflectionMethodAux structure if it is not needed.
7635         
7636         * reflection.h verify.c: Update after changes to object layout.
7637
7638         * reflection.c (method_builder_encode_signature): Fix compilation on
7639         gcc 2.95.x.
7640
7641 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
7642
7643         * appdomain.h: Added support for context static fields. Added static_data
7644           field to MonoAppContext and renamed thread_static_fields to a more
7645           generic special_static_fields in MonoAppDomain, since it can now contain
7646           context static fields.
7647         * domain.c: Updated hashtable name.
7648         * object.c: Replaced field_is_thread_static() for a more generic
7649           field_is_special_static() which also checks for context static attribute.
7650           In mono_class_vtable(), added support for static context fields.
7651         * threads.c: Changed methods that manage thread static fields to more
7652           generic methods so they can be reused both for thread and context static
7653           data.
7654         * threads.h: Declared some new methods.
7655
7656 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
7657
7658         * reflection.h: Update after changes to the managed types.
7659
7660         * reflection.c (encode_custom_modifiers): New helper function.
7661
7662         * reflection.c (method_encode_signature): Emit custom modifiers.
7663
7664         * reflection.c (field_encode_signature): Emit custom modifiers.
7665
7666 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
7667
7668         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
7669
7670         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
7671         implementation.
7672
7673         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
7674         icall.
7675
7676         * object.c (mono_field_get_value_object): New function.
7677
7678         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
7679         specific.
7680
7681 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
7682
7683         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
7684         return a preallocated out-of-memory exception instance.
7685
7686         * object.c (out_of_memory): Use the new function.
7687
7688         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
7689         flag is before the custom modifiers. Fixes #49802.
7690
7691 2003-11-16  Martin Baulig  <martin@ximian.com>
7692
7693         * class.c (mono_class_is_open_constructed_type): Implemented the
7694         MONO_TYPE_GENERICINST case.
7695
7696 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
7697
7698         * assembly.c (mono_assembly_fill_assembly_name): New function to
7699         fill out the MonoAssemblyName structure.
7700         (mono_assembly_open): Use the new function.
7701
7702         * icall.c (fill_reflection_assembly_name): New helper function.
7703
7704         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
7705         new function.
7706
7707         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
7708
7709 2003-11-15  Martin Baulig  <martin@ximian.com>
7710
7711         * class.c (mono_class_is_open_constructed_type): New public
7712         function; checks whether a type is an open constructed type,
7713         ie. whether it still contains type parameters.
7714         (mono_class_inflate_generic_type): If we're a type parameter and
7715         the inflated type is also a MONO_TYPE_(M)VAR, return the original
7716         type.
7717
7718         * class.h (MonoGenericInst): Added `guint32 is_open'.
7719
7720         * loader.c (method_from_methodspec): Check whether we're an open
7721         or closed constructed type and set `ginst->is_open'.
7722
7723         * reflection.c (mono_reflection_bind_generic_parameters): Check
7724         whether we're an open or closed constructed type and set
7725         `ginst->is_open'.
7726         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
7727         from open constructed types.
7728
7729 2003-11-15  Martin Baulig  <martin@ximian.com>
7730
7731         * reflection.c (mono_reflection_bind_generic_parameters): If we're
7732         a generic instance (instead of a generic type declaration) with
7733         unbound generic parameters, bind them to our actual types.
7734
7735 2003-11-14  Martin Baulig  <martin@ximian.com>
7736
7737         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
7738
7739         * reflection.c (mono_reflection_bind_generic_parameters): If we're
7740         an interface type, populate `res->interfaces' with instantiated
7741         versions of all the interfaces we inherit.
7742
7743 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
7744
7745         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
7746         when MONO_PATH is set but doesn't contain the install dir.
7747
7748 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7749
7750         * icall.c:
7751         (ves_icall_Type_GetInterfaces): don't return an interface twice when
7752         it's also implemented in base classes. Fixes bug #50927.
7753
7754 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
7755
7756         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
7757         if this method is called from a finalizer. Fixes #50913.
7758
7759 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
7760
7761         * threads.c: Implement VolatileRead/VolatileWrite
7762
7763         * icall.c: Add new icalls for VolatileRead/VolatileWrite
7764
7765 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7766
7767         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
7768         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
7769         2.95.3.
7770
7771         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
7772         from Peter Ross (pro@missioncriticalit.com).
7773         
7774 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
7775
7776         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
7777
7778 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7779
7780         * assembly.c (mono_assembly_load_references): Disable check because it
7781         triggers on older corlibs which lots of people have.
7782
7783 2003-11-12  Jackson Harper  <jackson@ximian.com>
7784
7785         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
7786         load corlib.dll if mscorlib.dll is not found.
7787         * assembly.h: Remove corlib name define.
7788         * class.c:
7789         * domain.c:
7790         * image.c: Change corlib name to mscorlib.
7791         
7792 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
7793
7794         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
7795
7796 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
7797
7798         * appdomain.h: Added loader_optimization here to sync with the C#
7799         code, and add disallow_binding_redirects field.
7800
7801 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
7802
7803         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
7804
7805         * reflection.c (mono_image_build_metadata): Fix crash on modules
7806         with no types.
7807
7808         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
7809
7810         * icall.c (ves_icall_get_method_info): Return callingConvention as
7811         well.
7812
7813         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
7814         namespaces from the EXPORTEDTYPE table as well.
7815
7816         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
7817         from all modules inside the assembly.
7818         
7819 2003-11-11  Martin Baulig  <martin@ximian.com>
7820
7821         * reflection.c (mono_reflection_bind_generic_parameters): Make
7822         this work for interfaces.
7823
7824 2003-11-11  Martin Baulig  <martin@ximian.com>
7825
7826         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
7827
7828 2003-11-11  Martin Baulig  <martin@ximian.com>
7829
7830         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
7831         "MonoInflatedMethod" and "MonoInflatedCtor".
7832
7833 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
7834
7835         * reflection.c (resolution_scope_from_image): Use the assembly table
7836         from the manifest module, since other modules don't have it.
7837
7838         * debug-helpers.c (mono_type_full_name): New helper function.
7839
7840         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
7841
7842         * image.c (mono_image_load_file_for_image): New public function which
7843         is a replacement for the load_file_for_image in class.c.
7844
7845         * assembly.c (mono_assembly_load_module): A wrapper for the function
7846         above which does assembly association and reference loading too.
7847
7848         * class.c (mono_class_from_name): Call mono_assembly_load_module.
7849
7850 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7851
7852         * appdomain.c: not all of the attributes for the full assembly name
7853         are required and the order doesn't matter. Fixes bug #50787.
7854
7855 2003-11-10  Dick Porter  <dick@ximian.com>
7856
7857         * locales.c: Use platform-endian UTF16
7858
7859 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
7860
7861         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
7862         
7863 2003-11-10  Martin Baulig  <martin@ximian.com>
7864
7865         * metadata.c
7866         (mono_metadata_load_generic_params): Make this actually work.
7867
7868         * reflection.c (mono_reflection_bind_generic_parameters): If our
7869         parent is a generic instance, pass all the `types' to it, no
7870         matter whether it has the same number of type parameters or not.
7871
7872 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
7873
7874         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
7875
7876         * assembly.c (mono_assembly_load_references): Move the image<->assembly
7877         assignment code to this function so it gets called recursively for all
7878         modules.
7879
7880         * image.c (load_modules): Remove the assembly assignment since it is
7881         now done by mono_assembly_load_references.
7882         
7883         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
7884         Add 'module' argument.
7885         (mono_module_get_types): New helper function.
7886         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
7887
7888 2003-11-08  Martin Baulig  <martin@ximian.com>
7889
7890         * class.c (mono_class_inflate_generic_method): Interface method
7891         don't have a header.
7892
7893         * reflection.c (mono_image_get_methodspec_token): Take an
7894         additional `MonoGenericInst *' argument instead of reading it from
7895         the header; this is necessary to support interfaces.
7896         (mono_image_create_token): Pass the `MonoGenericInst *' from the
7897         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
7898         (inflated_method_get_object): Take an additional `MonoGenericInst *'
7899         argument.
7900
7901         * reflection.h (MonoReflectionInflatedMethod): Added
7902         `MonoGenericInst *ginst'.
7903
7904 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
7905
7906         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
7907
7908 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
7909
7910         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
7911
7912 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
7913
7914         * reflection.c 
7915         (reflection_methodbuilder_from_method_builder):
7916         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
7917         initialize a ReflectionMethodBuilder structure.
7918         (mono_image_get_methodbuilder_token):
7919         (mono_image_get_ctorbuilder_token): New functions to emit memberref
7920         tokens which point to types in another module inside the same assembly.
7921
7922         * reflection.c: Use the new helper functions.
7923         
7924         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
7925
7926         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
7927         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
7928
7929         * reflection.c (resolution_scope_from_image): Emit a moduleref if
7930         neccesary.
7931
7932         * reflection.c (mono_image_build_metadata): Emit metadata only for the
7933         current module. Emit the manifest only for the main module.
7934
7935         * reflection.c (mono_image_create_token): Add assertion when a 
7936         memberref needs to be created.
7937
7938         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
7939
7940         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
7941         larger buffer for the custom attribute blob. Fixes #50637.
7942         
7943 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
7944
7945         * threadpool.c: notify listener on async processing handles after
7946         invoking the async callback. Thanks to Zoltan.
7947
7948 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7949
7950         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
7951         avoid code duplication.
7952
7953         * reflection.h (MonoDynamicImage): New type which is currently unused,
7954         but will be used through the ref.emit code in place of 
7955         MonoDynamicAssembly.
7956
7957         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
7958         object layout.
7959
7960         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
7961         a MonoDynamicImage instead of just a MonoImage.
7962         
7963         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
7964         icalls to ModuleBuilder but keep their semantics, so they will work
7965         with moduleb->assemblyb. This will change later.
7966         
7967 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7968
7969         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
7970         object layout.
7971
7972         * reflection.c (mono_image_build_metadata): Avoid creation of a default
7973         main module, since it is now done by the managed code.
7974
7975 2003-11-03  Martin Baulig  <martin@ximian.com>
7976
7977         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
7978         `ginst->klass' here.
7979         (method_encode_methodspec): Don't use the `ginst->generic_method's
7980         klass if it's a generic instance, use `ginst->klass' in this case.
7981
7982 2003-11-03  Martin Baulig  <martin@ximian.com>
7983
7984         * reflection.c (mono_image_get_generic_method_param_info):
7985         Removed, use mono_image_get_generic_param_info() instead.
7986         (mono_image_get_type_info): Write the GenericParam table before
7987         the Method table.  This is neccessary because in the GenericParam
7988         table, type parameters of the class (ie. '!0' etc.) must come
7989         before the ones from its generic methods (ie. '!!0' etc).
7990
7991 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
7992
7993         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
7994
7995 2003-11-02  Martin Baulig  <martin@ximian.com>
7996
7997         * reflection.c (create_generic_typespec): Take a
7998         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
7999         the generic parameters from it.
8000
8001 2003-11-02  Martin Baulig  <martin@ximian.com>
8002
8003         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
8004         instead of a `MonoClassField *' since we just need the type.
8005         (create_generic_typespec): New static function.  Creates a
8006         TypeSpec token for a generic type declaration.
8007         (mono_image_get_generic_field_token): New static function.
8008         (mono_image_create_token): If we're a FieldBuilder in a generic
8009         type declaration, call mono_image_get_generic_field_token() to get
8010         the token.
8011
8012 2003-11-02  Martin Baulig  <martin@ximian.com>
8013
8014         * reflection.h
8015         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
8016         `MonoReflectionGenericInst *declaring_type' and
8017         `MonoReflectionGenericInst *reflected_type' fields.
8018
8019         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
8020         `MonoReflectionGenericInst *declaring_type' and a
8021         `MonoReflectionGenericInst *reflected_type' argument instead of a
8022         single `MonoReflectionGenericInst *type' one.  Set
8023         `res->declaring_type' and `res->reflected_type' from them.
8024         (mono_reflection_inflate_field): Likewise.      
8025
8026 2003-11-02  Martin Baulig  <martin@ximian.com>
8027
8028         * class.c (mono_class_setup_vtable): Don't store generic methods
8029         in the vtable.  
8030
8031 2003-11-02  Martin Baulig  <martin@ximian.com>
8032
8033         * reflection.h (MonoReflectionGenericInst): Added
8034         `MonoReflectionType *declaring_type'.
8035
8036         * reflection.c (mono_reflection_bind_generic_parameters): Use
8037         `if (tb->parent)' instead of `klass->parent'.
8038
8039 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
8040
8041         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
8042         with an empty ASSEMBLY table.
8043
8044         * reflection.c (mono_image_build_metadata): Avoid using the same loop
8045         variable in the inner and outer loops.
8046
8047 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
8048
8049         * metadata.h (mono_metadata_make_token): Put parentheses around macro
8050         argument.
8051
8052         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
8053         
8054         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
8055         icalls. Instead, do everything in managed code. This is needed since
8056         it is hard to restore the original domain etc. in unmanaged code in the
8057         presence of undeniable exceptions.
8058
8059         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
8060         New icalls to push and pop appdomain refs.
8061
8062 2003-10-31  Martin Baulig  <martin@ximian.com>
8063
8064         * class.c (inflate_generic_type): Renamed to
8065         mono_class_inflate_generic_type() and made it public.
8066
8067         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
8068         New interncall.
8069
8070         * loader.c (mono_field_from_memberref): Also set the retklass for
8071         typespecs.
8072
8073         * fielder.c (mono_image_get_inflated_field_token): New static
8074         method; creates a metadata token for an inflated field.
8075         (mono_image_create_token, fixup_method): Added support for
8076         "MonoInflatedField".
8077         (fieldbuilder_to_mono_class_field): New static function.
8078         (mono_reflection_inflate_field): New public function.
8079
8080         * reflection.h
8081         (MonoReflectionGenericInst): Added `MonoArray *fields'.
8082         (MonoReflectionInflatedField): New typedef.     
8083
8084 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
8085
8086         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
8087         for Solaris and other platforms without s6_addr16
8088
8089 2003-10-30  Martin Baulig  <martin@ximian.com>
8090
8091         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
8092         argument instead of two.
8093         (mono_class_inflate_generic_signature): Likewise.
8094         (inflate_generic_header): Likewise.
8095         (mono_class_inflate_generic_method): Likewise.  In addition, if
8096         `ginst->klass' is set, it becomes the new `method->klass'.
8097
8098         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
8099         field.
8100
8101         * reflection.c (encode_generic_method_sig): Write a 0xa as the
8102         first byte. [FIXME]
8103         (method_encode_methodspec): If we have generic parameters, create
8104         a MethodSpec instead of a MethodRef.
8105         (fixup_method): Added support for "MonoInflatedMethod" and
8106         "MonoInflatedCtor".
8107         (mono_image_create_token): Added support for "MonoInflatedMethod"
8108         and "MonoInflatedCtor".
8109         (inflated_method_get_object): New static function; returns a
8110         managed "System.Reflection.MonoInflatedMethod" object.
8111         (mono_reflection_bind_generic_method_parameters): Return a
8112         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
8113         (mono_reflection_inflate_method_or_ctor): Likewise.
8114         (mono_image_get_generic_method_param_info): Initialize unused
8115         fields to zero.
8116         (mono_image_get_generic_param_info): Likewise.
8117
8118         * reflection.h (MonoReflectionInflatedMethod): New public
8119         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
8120         "S.R.MonoInflatedCtor" classes.
8121
8122         * loader.c (method_from_memberref): If we're a TypeSpec and it
8123         resolves to a generic instance, inflate the method.
8124
8125 2003-10-28  Dick Porter  <dick@ximian.com>
8126
8127         * object.c (mono_runtime_run_main): Convert command-line arguments
8128         into utf8, falling back to the user's locale encoding to do so.
8129
8130 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
8131
8132         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
8133         at this time.
8134
8135         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
8136
8137         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
8138         up icalls at method definition time. Partially fixes #33569.
8139
8140 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
8141
8142         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
8143         marshalling of arrays. Fixes #50116.
8144
8145         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
8146
8147         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
8148         points to a vtable in the dying appdomain.
8149
8150         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
8151         listeners into unmanaged code inside the lock.
8152
8153         * object.c (mono_class_vtable): Turn off typed allocation in non-root
8154         domains and add some comments.
8155
8156 2003-10-25  Martin Baulig  <martin@ximian.com>
8157
8158         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
8159
8160         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
8161
8162         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
8163         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
8164         currently parsing.  Create the generic class and store it in
8165         `generic_inst->klass' before parsing the type arguments.  This is
8166         required to support "recursive" definitions; see mcs/tests/gen-23.cs
8167         for an example.
8168         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
8169         to support recursive typespec entries.
8170
8171         * class.c (mono_class_setup_parent): If our parent is a generic
8172         instance, we may get called before it has its name set.
8173         (mono_class_from_generic): Splitted into
8174         mono_class_create_from_generic() and mono_class_initialize_generic().
8175
8176 2003-10-25  Martin Baulig  <martin@ximian.com>
8177
8178         * icall.c (ves_icall_Type_BindGenericParameters): Return a
8179         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
8180         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
8181         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
8182
8183         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
8184         (create_typespec): Likewise.
8185         (mono_reflection_bind_generic_parameters): Return a
8186         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
8187         (mono_reflection_inflate_method_or_ctor): New public function.
8188
8189         * reflection.h (MonoReflectionGenericInst): New typedef.        
8190
8191 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
8192
8193         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
8194         inside the domain lock. Fixes #49993.
8195         
8196         * object.c (mono_class_vtable): When typed allocation is used, 
8197         allocate vtables in the GC heap instead of in the mempool, since the
8198         vtables contain GC descriptors which are used by the collector even
8199         after the domain owning the mempool is unloaded.
8200
8201         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
8202
8203         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
8204         reflect what it does. Also invalidate mempools instead of freeing
8205         them if a define is set.
8206
8207         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
8208         of the appdomain.
8209         
8210         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
8211         hold the finalizable objects in this domain.
8212
8213         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
8214         appdomain.
8215
8216         * appdomain.c (mono_domain_set): New function to set the current
8217         appdomain, but only if it is not being unloaded.
8218
8219         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
8220         appdomain which is being unloaded.
8221         
8222         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
8223         unloading of the root appdomain.
8224
8225         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
8226         icall to execute a method in another appdomain. Intended as a 
8227         replacement for InternalSetDomain, which can confuse the code 
8228         generation in the JIT.
8229
8230         * appdomain.c (mono_domain_is_unloading): New function to determine
8231         whenever an appdomain is unloading.
8232
8233         * appdomain.c (mono_domain_unload): New function to correctly unload
8234         an appdomain.
8235
8236         * assembly.c (mono_assembly_load_references): Check that an assembly
8237         does not references itself.
8238
8239         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
8240         domain manually, it asks the finalizer thread to do it, then waits for
8241         the result. Also added a timeout.
8242
8243         * icall.c: Register the new icalls.
8244
8245         * threads.h threads.c: Export the mono_gc_stop_world and 
8246         mono_gc_start_world functions.
8247         
8248         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
8249         function to fill out the mempool with 0x2a.
8250
8251 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
8252
8253         * reflection.h (MonoReflectionMethodAux): New structure to store
8254         information which is rarely used, thus is not in the MonoMethod
8255         structure.
8256
8257         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
8258         store the aux info.
8259
8260         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
8261         and marshalling info into the aux structure.
8262
8263         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
8264         from the aux structure.
8265
8266         * loader.c (mono_method_get_param_names): Retrieve the param names from
8267         the aux structure.
8268         
8269 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
8270
8271         * exception.h exception.c: Add AppDomainUnloadedException && fix 
8272         warning.
8273
8274 2003-10-21  Dick Porter  <dick@ximian.com>
8275
8276         * socket-io.c
8277         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
8278         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
8279
8280 2003-10-21  Martin Baulig  <martin@ximian.com>
8281
8282         * reflection.c (mono_reflection_bind_generic_parameters):
8283         `klass->parent' is NULL for interfaces.
8284
8285 2003-10-21  Martin Baulig  <martin@ximian.com>
8286
8287         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8288
8289 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
8290
8291         * exception.c (mono_exception_from_name_msg): New helper function for
8292         creating exceptions and initializing their message field.
8293
8294         * exception.c: Simplify functions using the new helper.
8295
8296         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
8297         New function.
8298
8299         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
8300         mono_raise_exception, since otherwise gcc doesn't generate the function
8301         epilog for raise_exception, confusing the stack unwinding in the JIT.
8302         Fixes #45043.
8303
8304         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
8305         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
8306         Fixes #49499.
8307
8308 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8309
8310         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
8311         utf8.
8312
8313 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
8314
8315         * icall.c: Removed GetUninitializedObject method because
8316           AllocateUninitializedClassInstance does the same.
8317
8318 2003-10-18  Martin Baulig  <martin@ximian.com>
8319
8320         * class.c (inflate_generic_signature): Renamed to
8321         mono_class_inflate_generic_signature() and made it public.
8322         (my_mono_class_from_generic_parameter): New static function; if we
8323         don't already have the generic parameter's MonoClass, create a
8324         very simple one which is just used internally in the runtime and
8325         not passed back to managed code.
8326
8327         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
8328
8329         * metadata.h (MonoMethodSignature): Moved the
8330         `MonoGenericParam *gen_params' to the MonoMethodHeader.
8331         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
8332
8333         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
8334         ves_icall_MonoMethod_GetGenericArguments(); this is now an
8335         interncall on the MonoMethod class, not on MethodInfo.
8336         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
8337         calling mono_reflection_bind_generic_method_parameters() directly.
8338
8339         * loader.c (mono_method_get_signature): If this is a MethodSpec;
8340         return the already computed `method->signature'.
8341         (method_from_methodspec): New static function to load a method
8342         from a MethodSpec entry.
8343         (mono_get_method_from_token): Call the new method_from_methodspec()
8344         for MethodSpec tokens.  
8345         (mono_get_method_from_token): If we're a generic method, load the
8346         type parameters.
8347
8348         * reflection.c (mono_image_get_memberref_token): Allow
8349         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
8350         table.
8351         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
8352         (mono_image_create_token): First check whether it's a generic
8353         method (so we'd need to create a MethodSpec), then do the other
8354         two alternatives.
8355         (mono_reflection_bind_generic_method_parameters): Return a
8356         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
8357         called directly from the interncall.
8358
8359 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
8360
8361         * reflection.c (load_public_key): Move loading of the public key
8362         into managed code.
8363
8364         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
8365
8366         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
8367         fields.
8368
8369         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
8370         culture, hash_alg and public_key. Fixes #49555.
8371
8372 2003-10-17  Martin Baulig  <martin@ximian.com>
8373
8374         * class.h (MonoGenericInst): Moved this declaration here and added
8375         `MonoMethod *generic_method'.
8376
8377         * icall.c
8378         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
8379         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
8380
8381         * metadata.c (mono_metadata_type_equal): Two types of
8382         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
8383         index; ie. don't compare the address of the `MonoGenericParam'
8384         structure.
8385         (mono_metadata_load_generic_params): Removed the `MonoMethod
8386         *method' argument.
8387
8388         * metadata.h (MonoGenericInst): Moved declaration to class.h.
8389         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
8390
8391         * reflection.c (method_encode_signature): Encode the number of
8392         generic parameters.
8393         (encode_generic_method_sig): New static function.
8394         (method_encode_methodspec): New static function; creates an entry
8395         in the MethodSpec table for a generic method.
8396         (mono_image_get_methodspec_token): New static function.
8397         (mono_image_create_token): Call mono_image_get_methodspec_token()
8398         for generic methods.
8399         (mono_reflection_bind_generic_method_parameters): New public
8400         function.  Instantiates a generic method.
8401
8402 2003-10-16  Martin Baulig  <martin@ximian.com>
8403
8404         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
8405         *gen_params' here from MonoMethodHeader.
8406
8407         * metadata.c (mono_metadata_parse_method_signature): If we have
8408         generic parameters, initialize `method->gen_params' and then set
8409         the correct `type->data.generic_param' in all the parameters.
8410
8411 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
8412
8413         * threads.c (mono_threads_get_default_stacksize): New function to 
8414         return the default stacksize.
8415
8416         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
8417         termination of the finalizer thread, since the previous method had
8418         race conditions. Fixes #49628.
8419
8420         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
8421         as for the other managed threads.
8422
8423 2003-10-16  Martin Baulig  <martin@ximian.com>
8424
8425         * class.c (inflate_generic_signature): Copy `generic_param_count'
8426         and `gen_params'.
8427
8428         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
8429         New interncall.
8430
8431         * metadata.c (mono_metadata_parse_method_signature): Actually set
8432         the `method->generic_param_count' here.
8433         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
8434
8435 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
8436
8437         * object.h: Add a new field to TypedRef to simplify the implementation
8438         of the REFANY opcodes in the JIT.
8439
8440         * icall.c: Make use of the new field.
8441
8442         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
8443         dynamically.
8444
8445 2003-10-15  Martin Baulig  <martin@ximian.com>
8446
8447         * class.c (mono_class_from_gen_param): Renamed to
8448         mono_class_from_generic_parameter() and moved most of the
8449         functionality from mono_reflection_define_generic_parameter()
8450         here; ie. we create a "real" class here.
8451         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
8452         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
8453         previously been called.
8454
8455         * class.h (MonoGenericParam): Moved the declaration of this struct
8456         here from metadata.h and added `MonoMethod *method'.
8457
8458         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
8459         interncall.
8460
8461         * loader.c (mono_get_method_from_token): If we have any generic
8462         parameters, call mono_metadata_load_generic_params() to read them
8463         from the MONO_TABLE_GENERICPAR.
8464
8465         * metadata.c (mono_metadata_load_generic_params): Added
8466         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
8467
8468         * metadata.h (MonoMethodSignature): Replaced
8469         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
8470         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
8471
8472         * reflection.c (mono_reflection_define_generic_parameter): Moved
8473         most of the functionality into the new
8474         mono_class_from_generic_parameter(); set the `method' field if
8475         we're a method parameter.       
8476
8477 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
8478
8479         * marshal.c (emit_struct_conv): if native size is 0
8480         emit no code.
8481
8482 2003-10-14  Martin Baulig  <martin@ximian.com>
8483
8484         * icall.c: The generics API has changed in the spec since it was
8485         added to System.Type; these modifications make it match the spec
8486         again.
8487         (ves_icall_Type_GetGenericParameters): Renamed to
8488         `ves_icall_Type_GetGenericArguments'.
8489         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
8490         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
8491         `ves_icall_MonoType_get_HasGenericArguments'.
8492         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
8493         `ves_icall_MonoType_get_IsGenericParameter'.
8494         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
8495         this is no interncall anymore.
8496         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
8497         `ves_icall_TypeBuilder_get_IsGenericParameter'.
8498
8499 2003-10-14  Martin Baulig  <martin@ximian.com>
8500
8501         * reflection.c (mono_reflection_bind_generic_parameters): Also
8502         inflate generic methods if we're reading the class from IL.
8503
8504 2003-10-13  Martin Baulig  <martin@ximian.com>
8505
8506         * reflection.c (mono_reflection_define_generic_parameter): This
8507         method isn't called directly from the icall anymore; take a
8508         `MonoReflectionAssemblyBuilder *' so we can use this for type and
8509         method generic parameters.
8510         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
8511         (method_builder_encode_signature): Encode generic parameters.
8512         (mono_image_get_method_info): Write generic params to the
8513         MONO_TABLE_GENERICPARAM table.
8514
8515         * reflection.h (MonoReflectionMethodBuilder): Added
8516         `MonoArray *generic_params'.
8517
8518         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
8519
8520         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
8521         wrapper for mono_reflection_define_generic_parameter().
8522         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
8523
8524 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
8525
8526         * marshal.h: Add missing function to fix build.
8527
8528         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
8529         the SetLastError pinvoke attribute.
8530
8531         * marshal.c (mono_marshal_set_last_error): New helper function called
8532         by the generated code.
8533         
8534         * marshal.c (mono_mb_emit_branch): New helper function.
8535
8536         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
8537
8538         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
8539         classes as parameters and return values of delegates. Fixes #29256. 
8540
8541 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
8542
8543         * locales.c: use gint32 in non HAVE_ICU case
8544
8545 2003-10-11  Martin Baulig  <martin@ximian.com>
8546
8547         * mono-debug.c (mono_debug_add_method): Added a workaround for
8548         bug #48591.
8549
8550 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
8551
8552         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
8553         delegates passed to native code must use the STDCALL calling 
8554         convention. Fixes #35987.
8555
8556 2003-10-10  Martin Baulig  <martin@ximian.com>
8557
8558         * class.c (inflate_generic_type): If we're inflating for a generic
8559         type instance (and not for a generic method), return
8560         MONO_TYPE_MVAR unchanged.
8561
8562 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8563
8564         * string-icalls.c: Join ignores null strings in the source array.
8565         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
8566         * threads.c: GetAvailableTheads is slightly more accurate.
8567
8568 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
8569
8570         * threads.h threads.c : add mono_threads_set_default_stacksize
8571         and pass default to CreateThread calls.
8572
8573 2003-10-09  Dick Porter  <dick@ximian.com>
8574
8575         * icall.c:
8576         * locales.h:
8577         * locales.c: Internal calls for constructing CultureInfo and
8578         related objects from libicu (if its available.)
8579
8580 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
8581
8582         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
8583
8584 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8585
8586         * threadpool.c: added an argument to async_invoke_thread that is the
8587         item to process, pass the MonoAsyncResult to the thread start function
8588         when creating a new thread. This way we don't need to acquire any lock
8589         when we're creating a new thread. Readded a semaphore for faster
8590         response times (instead of that Sleep i added).
8591
8592 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
8593
8594         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
8595         get daylight change dates better on Windows, fix handling
8596         of platforms without tm_gmtoff.
8597
8598 2003-10-06  Martin Baulig  <martin@ximian.com>
8599
8600         * class.c (inflate_generic_method): Renamed to
8601         mono_class_inflate_generic_method() and made public.
8602         (mono_class_init): Don't inflate the generic methods here.
8603         (mono_class_from_generic): Added `gboolean inflate_methods'
8604         argument.  Inflate the methods here.
8605
8606         * loader.c (mono_method_get_param_names): Ignore instances of
8607         generic types for the moment.
8608
8609         * reflection.c (fixup_method): Added support for inflated methods.
8610         (mono_image_create_token): Use mono_image_get_methodref_token()
8611         for inflated methods.
8612         (mono_custom_attrs_from_param): Ignore instances of generic types
8613         for the moment.
8614         (mono_reflection_bind_generic_parameters): New public function.
8615         Moved all the functionality from
8616         ves_icall_Type_BindGenericParameters() here and added support for
8617         dynamic types.
8618         (mono_reflection_define_generic_parameter): Initialize
8619         `klass->methods' here.
8620
8621         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
8622         functionality into mono_reflection_define_generic_parameter().
8623         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
8624         TypeBuilder, return that TypeBuilder.
8625
8626 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8627
8628         * appdomain.c: removed mono_delegate_semaphore.
8629
8630         * threadpool.c:
8631         (mono_thread_pool_add): moved hash table creation inside and the thread 
8632         creation outside of the critical region.
8633         (mono_thread_pool_finish): removed obsolete code.
8634         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
8635         continue or exit the thread depending on the queue.
8636
8637 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
8638
8639         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
8640         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
8641         handle more bool marshalling options
8642
8643 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
8644
8645         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
8646         arrays of structs. Also add a more descriptive error message when
8647         a structure member is marshalled as LPArray.
8648
8649 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
8650
8651         * marshal.c (mono_marshal_get_native_wrapper): Add support for
8652         marshalling arrays of complex types. Fixes #29098. Also remove an
8653         usused and incomplete function.
8654
8655 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
8656
8657         * gc.c: report heap_size - free_bytes as total memory allocated
8658         (bug#49362).
8659
8660 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
8661
8662         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
8663         fix timezone handling problems on Windows.
8664         
8665         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
8666         asserts when the year is outside the range handled by ms the functions.
8667
8668         * class.c (setup_interface_offsets): If the class is an interface,
8669         fill out its interface_offsets slot.
8670
8671 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8672
8673         * threadpool.c: mark threadpool threads as background.
8674
8675 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
8676
8677         * decimal.c - define DECINLINE to nothing if not using GCC
8678
8679 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
8680
8681         * assembly.c: More refcount fixes.
8682
8683 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8684
8685         * string-icalls.c: if we're not trimming, return the same string.
8686         When not splitting, don't create a new string.
8687
8688 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8689
8690         * image.c:
8691         (mono_image_open): increment the ref_count inside the critical section.
8692
8693 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
8694
8695         * image.c (mono_image_open): Fix reference counting bug.
8696
8697 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
8698
8699         * marshal.c (mono_marshal_type_size) struct alignment changed for 
8700         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
8701         64bits. Avoid leak in mono_marshal_get_native_wrapper when
8702         mono_lookup_pinvoke_call throws.        
8703
8704 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
8705
8706         * reflection.c (mono_reflection_parse_type): Fix #49114.
8707
8708         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
8709         temporary workaround for cygwin header problem.
8710
8711         * object.c (mono_object_isinst): Synchronize this with the code
8712         generated by the JIT for casts.
8713
8714 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
8715
8716         * reflection.c (encode_type): Fix #38332.
8717
8718 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
8719
8720         * marshal.c (mono_marshal_method_from_wrapper): New function to return
8721         the original method from the wrapper method.
8722
8723 2003-09-25  Martin Baulig  <martin@ximian.com>
8724
8725         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
8726         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
8727         (ves_icall_Type_get_IsGenericInstance): New interncall.
8728
8729 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
8730
8731         * object.c: fix cast warning in big endian code.
8732
8733 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
8734
8735         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
8736         
8737 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8738
8739         * assembly.c: don't call check_env from mono_assembly_load. It's
8740         already done once in mono_assemblies_init and may cause headaches when
8741         multiple threads are loading assemblies.
8742
8743 2003-09-19  Martin Baulig  <martin@ximian.com>
8744
8745         * reflection.c (mono_reflection_define_generic_parameter): Don't
8746         allocate `klass->methods', set `klass->flags' to
8747         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
8748
8749 2003-09-18  Martin Baulig  <martin@ximian.com>
8750
8751         * class.c (mono_class_init): Don't create `class->methods' if it's
8752         already initialized.
8753
8754         * metadata.c (mono_metadata_load_generic_params): Make this
8755         actually work.
8756
8757         * reflection.c (mono_reflection_define_generic_parameter): Set
8758         parent class and interfaces from the constraints.
8759
8760         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
8761         to keep this struct in sync with the declaration in TypeBuilder.cs.
8762
8763 2003-09-17  Martin Baulig  <martin@ximian.com>
8764
8765         * metadata.h (MonoType): Replaced the data's `int type_param'
8766         field with `MonoGenericParam *generic_param'.
8767         (MonoGenericParam): Added `MonoClass *klass'.
8768
8769         * class.c (mono_class_from_gen_param): Removed the
8770         `MonoImage *image' and `int type_num' arguments.
8771
8772         * metadata.c (mono_metadata_parse_generic_param): New static
8773         method; creates a MonoGenericParam which just contains the index.
8774         (do_mono_metadata_parse_type): Call
8775         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
8776         MONO_TYPE_MVAR.
8777
8778         * reflection.c (mono_image_typedef_or_ref): Generic type
8779         parameters may be in the same assembly, but never use a typedef
8780         for them.
8781         (mono_reflection_define_generic_parameter): We're now creating a
8782         "real" class for the type parameter; it's now safe to call
8783         mono_class_from_mono_type() on the class'es type, it'll do the
8784         right thing.
8785
8786 2003-09-16  Martin Baulig  <martin@ximian.com>
8787
8788         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
8789         `symfile->range_entry_size' and `symfile->class_entry_size' here;
8790         the `symfile' data structure must be fully initialized before it
8791         gets added to the table.
8792
8793 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
8794
8795         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
8796
8797         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
8798         class init trampolines.
8799
8800 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
8801
8802         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
8803         to the built-in profiler to turn off time and allocation profiling
8804         respectively.
8805
8806 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
8807
8808         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
8809         g_direct_equal.
8810
8811         * debug-helpers.c (mono_method_full_name): Print the wrapper type
8812         in human readable form.
8813
8814 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
8815
8816         * reflection.c icall.c: Fixed warnings.
8817
8818         * image.c (load_class_names): Use a temporary hash table to hold the
8819         namespaces in order to avoid doing many string comparisons.
8820
8821         * image.h: Fix typo.
8822
8823         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
8824         Pass NULL instead of g_direct_equal to the GHashTable constructor 
8825         since the NULL case is short-circuited inside g_hash_table_lookup, 
8826         leading to better performance.  
8827
8828         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
8829         obtain the first custom attribute for a given index. Depends on the
8830         CustomAttribute table being sorted by the parent field.
8831
8832         * reflection.c (mono_custom_attrs_from_index): Use the new function 
8833         for better performance.
8834
8835 2003-09-07  Martin Baulig  <martin@ximian.com>
8836
8837         * class.c (mono_class_init): If we're a generic instance, inflate
8838         all our methods instead of loading them from the image.
8839         (mono_class_from_generic): Set `class->methods = gklass->methods'.
8840
8841 2003-09-07  Martin Baulig  <martin@ximian.com>
8842
8843         * mono-debug-debugger.c: Added support for constructors.
8844
8845 2003-09-06  Martin Baulig  <martin@ximian.com>
8846
8847         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
8848         New interncall.
8849
8850         * reflection.c (mono_reflection_setup_generic_class): Call
8851         ensure_runtime_vtable() to create the vtable.
8852
8853 2003-09-05  Martin Baulig  <martin@ximian.com>
8854
8855         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
8856         MONO_TYPE_MVAR.
8857
8858 2003-09-04  Martin Baulig  <martin@ximian.com>
8859
8860         * reflection.c (mono_reflection_define_generic_parameter): Generic
8861         parameters start with zero.
8862
8863 2003-09-04  Martin Baulig  <martin@ximian.com>
8864
8865         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
8866
8867         * reflection.h (MonoReflectionGenericParam): New typedef.
8868         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
8869         the generic parameters from the managed TypeBuilder.
8870
8871         * reflection.c (mono_reflection_define_generic_parameter): New function.
8872         (mono_reflection_create_runtime_class): Encode generic parameters.
8873         (mono_reflection_setup_generic_class): New function; this is
8874         called after adding adding all generic params to the TypeBuilder.
8875         (encode_type): Added MONO_TYPE_VAR.
8876
8877 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * class.h class.c (mono_class_needs_cctor_run): Moved this method
8880         here from the JIT.
8881
8882         * assembly.h assembly.c: Moved the AOT loading code into an assembly
8883         load hook.
8884
8885 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
8886
8887         * reflection.h reflection.c class.h class.c: Delete duplicate 
8888         definition of mono_type_get_name () from reflection.c and export the
8889         one in class.c.
8890
8891         * class.c: Class loading fixes from Bernie Solomon 
8892         (bernard@ugsolutions.com).
8893
8894         * reflection.c: Endianness fixes from Bernie Solomon 
8895         (bernard@ugsolutions.com).
8896         
8897 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
8898
8899         * assembly.h assembly.c: Define a file format version for AOT
8900         libraries.
8901         
8902         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
8903
8904         * appdomain.h (MonoJitInfo): New field to determine whenever the
8905         code is domain neutral.
8906         
8907 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
8908
8909         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
8910
8911 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
8912
8913         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
8914         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
8915         Avoid caching the result since strings must be domain specific. Fixes
8916         #48050.
8917
8918 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
8919
8920         * marshal.c (mono_marshal_init): Make this callable multiple times
8921         since it is hard to find a correct place to call it.
8922
8923         * object.c (mono_runtime_class_init): Execute static constructors in
8924         the correct appdomain.
8925
8926         * image.c (build_guid_table): Handle the case when multiple images have
8927         the same GUID.
8928
8929 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
8930
8931         * icall.c: added a couple of icalls for System.Web.
8932
8933 2003-08-28  Martin Baulig  <martin@ximian.com>
8934
8935         * icall.c (ves_icall_Type_BindGenericParameters): Use
8936         `klass->generic_inst' instead of `&klass->byval_arg' in the
8937         mono_type_get_object() call.  The returned type must be
8938         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
8939
8940 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
8941
8942         * NOTES: New file.
8943
8944         * object.c (mono_class_proxy_vtable): Make it thread safe.
8945
8946         * pedump.c: Fix warning.
8947
8948         * object.c appdomain.h: Get rid of metadata_section. 
8949         It is no longer needed and it was causing deadlocks with domain->lock.
8950
8951         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
8952
8953 2003-08-26  Martin Baulig  <martin@ximian.com>
8954
8955         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
8956
8957 2003-08-26  Martin Baulig  <martin@ximian.com>
8958
8959         * pedump.c (main): Call mono_metadata_init(),
8960         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
8961         and mono_loader_init().
8962
8963 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
8964
8965         * loader.h: Add missing include to fix build.
8966
8967         * image.h: mono_image_load_references is no more.
8968
8969         * assembly.c: Reworked assembly loading to make it really thread safe.
8970         After these changes, the assembly returned by mono_assembly_open is
8971         fully initialized, i.e. all its references assemblies are loaded.
8972
8973         * assembly.c (mono_image_load_references): Renamed to 
8974         mono_assembly_load_references, and made private, since clients no
8975         longer need to call it.
8976
8977         * class.c: Removed calls to mono_assembly_load_references, since it was
8978         a source of deadlocks.
8979
8980         * loader.h loader.c class.h class.c: Protect data structures using a 
8981         new lock, the loader lock.
8982
8983         * class.c (mono_class_setup_vtable): Create temporary hash tables and
8984         GPtrArrays only when needed.
8985
8986         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
8987         into empty structures by mcs. Fixes pinvoke7.cs.
8988         
8989         * domain.c (mono_init): Call a new initialization function.
8990
8991         * appdomain.c (mono_runtime_init): Call the new initializer function
8992         of the marshal module.
8993
8994         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
8995         inserted into empty structures by mcs. Fixes pinvoke7.cs.
8996
8997         * marshal.h marshal.c: Added locks around the wrapper caches to make
8998         this module thread safe.
8999
9000         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
9001         this argument. Fixes pinvoke1.exe.
9002
9003 2003-08-25  Lluis Sanchez <lluis@ximian.com>
9004
9005         * object.h: Added call_type field to MonoMethodMessage and the corresponding
9006         enumeration of values. Removed fields to store remote call output values in
9007         MonoAsyncResult. Not needed any more.
9008         * object.c: Initialize call_type and async_result fields in mono_message_init.
9009         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
9010         dispatching the message.
9011         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
9012         async call to finish. To do it use a message with EndInvoke call type.
9013
9014 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
9015
9016         * loader.h loader.c (mono_method_hash_marhal_info): New function which
9017         determines whenever a method has marshalling info.
9018
9019 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9020
9021         * assembly.c: fix the build on windows.
9022
9023 2003-08-22 Lluis Sanchez <lluis@ximian.com>
9024
9025         * object.cs: Fixed bug #47785.
9026
9027 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
9028
9029         * string-icalls.c (StringReplace): If their are no occurances of
9030         the old string found return a reference to the supplied
9031         string. This saves some memory and matches MS behavoir.
9032         
9033 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9034
9035         * socket-io.c: fixed compilation for systems that define AF_INET6
9036         and don't define SOL_IP/SOL_IPV6.
9037
9038 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
9039
9040         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
9041         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
9042
9043         * rawbuffer.c rawbuffer.h: Make this module thread safe.
9044
9045         * domain.c: Make this module thread safe.
9046
9047         * domain.c (mono_init): Call new initialization function.
9048
9049         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
9050         reference types too. Fixes #38812.
9051
9052         * image.c (mono_image_init): Fixed warnings.
9053
9054         * class.c (mono_class_from_typeref): Handle assembly load failure
9055         correctly.
9056
9057         * appdomain.c (add_assemblies_to_domain): Handle the case when
9058         the references of an assembly are not yet loaded.
9059
9060         * metadata.c image.c assembly.c: Moved initialization of global
9061         variables to a separate function called at startup since lazy 
9062         initialization of these variables is not thread safe.
9063         
9064         * image.c assembly.c: Made this module thread safe by adding locks in 
9065         the appropriate places.
9066
9067         * domain.c (mono_init): Call the new initialization functions of the
9068         three modules.
9069
9070 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
9071
9072         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
9073           make a direct call. It is proxy's work to make the call asynchronous.
9074           mono_delegate_end_invoke(): If the targe is a proxy, just collect
9075           the return values.
9076         * object.cs: mono_method_call_message_new(): read AsyncResult and
9077           state object from parameters list, if this info is requested.
9078         * object.h: Added fields to store remote call output values in
9079           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
9080
9081 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9082
9083         * object.h: add needed fields to MonoThread.
9084         * threads.c, threads.h: allow registering a function to cleanup data
9085         allocated per thread by the JIT.
9086
9087 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
9088
9089         * loader.h: portability fix by Bernie Solomon
9090         * <bernard@ugsolutions.com>.
9091
9092 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
9093
9094         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
9095         return a MonoArray. This simplifies the code and also ensures that
9096         the cache allways contains an object reference as a value.
9097
9098         * icall.c (ves_icall_get_parameter_info): Simplified using the new
9099         function.
9100
9101 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9102
9103         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
9104         fixes a problem with byte ordering when getting the address family for
9105         a socket.
9106
9107 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
9108
9109         * .cvsignore: Added monosn.
9110
9111         * reflection.h reflection.c loader.c: Added support for parameter
9112         marshalling to dynamically created types. Fixes #47295.
9113
9114 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
9115
9116         * rand.c: remove useless warnings.
9117
9118 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
9119
9120         * class.c: implemented ldtoken for methods and fieldrefs.
9121
9122 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9123
9124         * threadpool.c: when mono_async_invoke was called, no one took care of
9125         monitoring the queue. So if the method invoked took some time and we
9126         got new async invoke requests after 500 ms (the thread created waited
9127         that long in WaitForSingleObject), the new async invoke was not called
9128         until the previous one finished.
9129
9130         This is fixed now. Thanks to Totte for helping with it.
9131
9132 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9133
9134         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
9135
9136 2003-08-11  Martin Baulig  <martin@ximian.com>
9137
9138         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
9139
9140 2003-08-06  Martin Baulig  <martin@ximian.com>
9141
9142         * mono-debug-debugger.c: Added support for static fields,
9143         properties and methods.
9144
9145 2003-08-06  Martin Baulig  <martin@ximian.com>
9146
9147         * mono-debug-debugger.c: Don't store the MonoString's vtable to
9148         make this work for applications with multiple application domains.
9149
9150 2003-08-04  Martin Baulig  <martin@ximian.com>
9151
9152         * mono-debug-debugger.c: Completely reworked the type support; the
9153         most important thing is that we're now just using one single
9154         `MonoType' instance per type.
9155
9156 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
9157
9158         * mono-endian.h, mono-endian.c, icall.c: Added icall
9159         ves_icall_System_Double_AssertEndianity to assert double word endianity
9160         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
9161
9162 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
9163
9164         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
9165         support, icalls and fixes.
9166
9167 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
9168
9169         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
9170         classes that are a punctuation character in .NET is not the same a
9171         g_unichar_ispunct.
9172
9173 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
9174
9175         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
9176
9177 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
9178
9179         * icall.c: Add new MemCopy internalcall.
9180         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
9181         Simplified code; It is not necessary to handle all the cases here,
9182         as the C# code takes care of it.  Only handle the case of the name
9183         resource embedded into the assembly.
9184
9185         Changed signature to return the data pointer and the size of the
9186         data. 
9187
9188 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
9189
9190         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
9191         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
9192
9193 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
9194
9195         * socket-io.c: ignore EINTR error in select.
9196
9197 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
9198
9199         * class.h, class.c: removed unused subclasses field in MonoClass.
9200
9201 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
9202
9203         * icall.c: improve fix of get_base_definition(). If the parent class
9204           doesn't have the mehod, look at the parent of the parent.
9205         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
9206           to check if a parameter is an in or out parameter
9207           (PARAM_ATTRIBUTE_IN is not set by default).
9208           mono_method_return_message_restore(): Use mono_class_value_size to
9209           get the size of a value type. mono_type_stack_size (parameterType)
9210           does not return the correct value if parameterType is byRef.
9211           mono_load_remote_field(), mono_load_remote_field_new(),
9212           mono_store_remote_field(), mono_store_remote_field_new():
9213           raise exception if the remote call returns an exception.
9214
9215 2003-07-28  Martin Baulig  <martin@ximian.com>
9216
9217         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
9218         method.  This is a wrapper around mono_runtime_invoke() which
9219         boxes the instance object if neccessary.
9220
9221 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
9222
9223         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
9224         metadata.h, row-indexes.h, verify.c: first cut of generics support.
9225
9226 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
9227
9228         * icall.c: disable mcs bug workaround.
9229
9230 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
9231
9232         * object.c (mono_runtime_class_init): Take the metadata_section
9233         mutex before obtaining the domain mutex.
9234
9235         * appdomain.h: Added definition of metadata_section mutex here. 
9236
9237         * object.c: define metadata_mutex here.
9238
9239 2003-07-24  Ravi Pratap  <ravi@ximian.com>
9240
9241         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
9242         fixed.
9243
9244 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
9245
9246         * reflection.c: Fix bug #46669
9247
9248 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9249
9250         * exception.c:
9251         * exception.h:
9252         * icall.c:
9253         * object.h: fill in the type name for TypeLoadException.
9254
9255 2003-07-23  Ravi Pratap  <ravi@ximian.com>
9256
9257         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
9258         relationship between TypeBuilders while compiling corlib) and bug
9259         45993 (Array types returned from the runtime while compiling
9260         corlib were from the loaded corlib).
9261
9262 2003-07-22  Martin Baulig  <martin@ximian.com>
9263
9264         * mono-debug-debugger.c: Reworked the type support a bit more;
9265         distinguish between types and classes.
9266
9267 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
9268
9269         * icall.c: add IsArrayImpl icall.
9270
9271 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
9272
9273         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
9274         initializing real_size only once. Also fix bug #46602.
9275
9276 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
9277
9278         * object.c: Renamed mono_metadata_section to metadata_section.
9279
9280 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
9281
9282         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
9283           empty array if the type is an array. Fixed.
9284           ves_icall_MonoMethod_get_base_definition: if the base method
9285           is abstract, get the MethodInfo from the list of methods of
9286           the class.
9287         * reflection.c: ParameterInfo.PositionImpl should be zero-based
9288           and it was 1-based. Fixed in mono_param_get_objects.
9289
9290 2003-07-20  Martin Baulig  <martin@ximian.com>
9291
9292         * mono-debug.h: Set version number to 31.
9293         (mono_debug_init): Added `MonoDomain *' argument.
9294
9295         * mono-debug-debugger.c: Reworked the type support; explicitly
9296         tell the debugger about builtin types; pass the `klass' address to
9297         the debugger.
9298
9299 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
9300
9301         * image.c: Allow new metadata tables to be loaded without a
9302         warning. Also update the warning message to give the new constant value.
9303                 
9304 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
9305
9306         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
9307         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
9308         array type representation changes.
9309
9310 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
9311
9312         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
9313         on Environment.Exit () call.
9314
9315 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
9316
9317         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
9318         requires a matching corlib.
9319
9320 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
9321
9322         * Changelog: My editor decided to add a CR to each line. Sorry about that.
9323           Committed again without the CRs.
9324         
9325 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
9326
9327         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
9328           getting it from the "this" socket instance. Did not work
9329           if the socket is a subclass of Socket.
9330           Also fixed bug #35371.
9331
9332 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
9333
9334         * metadata.c: fixed size for TypedByRef.
9335         * loader.c: when searching for a method, consider the vararg amrker.
9336         * unicode.c, decimal.c: constify some arrays.
9337
9338 2003-07-15  Dick Porter  <dick@ximian.com>
9339
9340         * socket-io.c: Fixed compilation for gcc < 3.2.
9341
9342         Fixed compilation for machines that don't have AF_INET6 (thanks to
9343         Bernie Solomon <bernard@ugsolutions.com> for that part.)
9344
9345         Fixed compile warnings.
9346         
9347         Fixed formatting and line endings.
9348
9349 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
9350
9351         * socket-io.h:
9352         * socket-io.c: Added IPv6 support.
9353
9354 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
9355
9356         * class.c (mono_class_is_assignable_from): New function to implement
9357         the is_assignable_from logic. Used by mono_object_isinst, 
9358         Type::IsAssignableFrom () and the interpreter.
9359
9360         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
9361         Object, even interfaces.
9362         
9363         * object.c (mono_object_isinst): Implement in terms of 
9364         is_assignable_from.
9365
9366         * icall.c (ves_icall_type_is_assignable_from): New icall.
9367
9368 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
9369
9370         * domain.c (foreach_domain): fix compiler warning.
9371
9372 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
9373
9374         * image.c (load_metadata_ptrs): use g_strndup because strndup is
9375         not available on all plattforms
9376
9377 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
9378
9379         * image.h image.c: Store the metadata version string in MonoImage.
9380         * icall.c: New icall to retrieve the image version.
9381         * reflection.c (create_dynamic_image): Fill in the image version field
9382         * reflection.c (build_compressed_metadata): Use the image version
9383         from the image structure.
9384
9385 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9386
9387         * appdomain.c: modified comment.
9388         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
9389         That will be its last iteration when mono_gc_cleanup is called from
9390         mono_runtime_cleanup and before the domain is unloaded.
9391
9392         Fixes bug #45962.
9393
9394 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
9395
9396         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
9397         attributes.
9398
9399 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
9400
9401         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
9402         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
9403         Bernie Solomon <bernard@ugsolutions.com>.
9404
9405 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
9406
9407         * object.c, object.h: provide mono_object_new_fast() for faster
9408         allocation in some special cases.
9409
9410 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
9411
9412         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
9413         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
9414
9415 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
9416
9417         * threadpool.c: fix leaks.
9418
9419 2003-07-01  Dick Porter  <dick@ximian.com>
9420
9421         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
9422         using MonoGHashTables.  Fixes threadpool bug posted to list.
9423
9424 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
9425
9426         * image.h, image.c: added support to load an assembly from a byte array.
9427         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
9428         assembly bundle support.
9429
9430 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
9431
9432         * threadpool.c (mono_thread_pool_add): keep a reference to the
9433         AsyncResult to prevent GC
9434
9435 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
9436
9437         * class.c: leak fix.
9438
9439 2003-06-25  Dick Porter  <dick@ximian.com>
9440
9441         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
9442         for the async object, the WaitHandle object will close the handle.
9443         Fixes bug 45321.
9444
9445 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
9446
9447         * class.c: in mono_array_class_get (), lookup from the hash with the
9448         same type we insert: this works around a bug in
9449         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
9450         lluis. The real fix will have to wait for after the release.
9451
9452 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
9453
9454         * icall.c: fix memory leak when getting type members.
9455
9456 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
9457
9458         * reflection.c: added more pubtoken special cases.
9459
9460 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
9461
9462         * class.c: handle field offset correctly when class size
9463         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
9464
9465 2003-06-20  Martin Baulig  <martin@ximian.com>
9466
9467         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
9468         *image' field.
9469
9470 2003-06-20  Martin Baulig  <martin@ximian.com>
9471
9472         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
9473
9474 2003-06-20  Martin Baulig  <martin@ximian.com>
9475
9476         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
9477         just distinguish between variables in registers and variables at
9478         an offset relative to a register.
9479
9480 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9481
9482         * icall.c: #ifdef out latest changes until mcs is fixed.
9483
9484 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9485
9486         * icall.c: return members in metadata order.
9487
9488 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
9489
9490         * icall.c: avoid infinite loop in GetTimeZoneData.
9491
9492 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
9493
9494         * icall.c: added Marshal.Prelink/All icalls.
9495
9496 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
9497
9498         * object.c, object.h: fix warnings and do some overflow checking
9499         when creating arrays.
9500
9501 2003-06-17  Dick Porter  <dick@ximian.com>
9502
9503         * file-io.h:
9504         * file-io.c: File attributes need to be tweaked slightly when
9505         passed from the managed to the w32 world.
9506
9507 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
9508         * profiler.h profiler-private.h profiler.c: Rework last patch
9509         based on suggestion by Paolo.
9510         
9511 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
9512
9513         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
9514         instruction level coverage data collection.
9515         * profiler.h profiler.c (: Added new callback function which can be
9516         used by the profiler to limit which functions should have coverage
9517         instrumentation.
9518         * profiler.c (mono_profiler_load): Call g_module_build_path to
9519         generate the file name of the profiler library.
9520
9521 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
9522
9523         * profiler.c, profiler.h, profiler-private.h: added basic block 
9524         coverage profiling API.
9525
9526 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
9527
9528         * reflection.c (mono_reflection_create_runtime_class): Add support
9529         for events in dynamically generated code.
9530
9531         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
9532         not allocated.
9533
9534 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
9535
9536         * icall.c: when getting timezone info, return reasonable values if we
9537         can't get the actual data.
9538
9539 2003-06-14  Dick Porter  <dick@ximian.com>
9540
9541         * threads.c (start_wrapper): Remove the reference to the thread
9542         object in the TLS data, so the thread object can be finalized.
9543         This won't be reached if the thread threw an uncaught exception,
9544         so those thread handles will stay referenced :-( (This is due to
9545         missing support for scanning thread-specific data in the Boehm GC
9546         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
9547
9548 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
9549
9550         * reflection.c: ensure streams and tables are first allocated with
9551         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
9552
9553 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
9554
9555         * icall.c: fixed GetElementType for byrefs (bug# 44792).
9556
9557 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
9558
9559         * reflection.c (mono_reflection_create_runtime_class): Add support for
9560         properties to dynamically created classes.
9561         * reflection.c: Fix a few places where non-MonoObjects were inserted
9562         into the tokens hashtable.
9563
9564 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
9565
9566         * object.c: some support to handle out of memory exceptions.
9567
9568 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
9569
9570         * marshal.c (mono_marshal_get_native_wrapper): support reference
9571         return types
9572
9573 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
9574
9575         * object.h, object.c: more portability stuff from Bernie Solomon.
9576         Unexport mono_object_allocate(). Added mono_object_unbox ().
9577         Set exitcode when an unhandled exception is thrown.
9578
9579 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
9580
9581         * marshal.c (mono_marshal_get_native_wrapper): use custom
9582         marshaler for return types.
9583
9584 2003-06-10  Dick Porter  <dick@ximian.com>
9585
9586         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
9587         ip_mreq is available
9588
9589 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
9590
9591         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
9592         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
9593         by Bernie Solomon <bernard@ugsolutions.com>.
9594
9595 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
9596
9597         * gc.c (mono_gc_init): Avoid error message on shutdown when
9598         GC_DONT_GC=1 is used.
9599
9600         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
9601         New icall to return the GUID of a module.
9602
9603 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
9604
9605         * class.c: ensure instance size always includes the parent's size
9606         even whem class size is set explicitly (fixes bug#44294).
9607
9608 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
9609
9610         * profiler.h, profiler.c: made the simple profiler thread-safe,
9611         get more accurate timing info. Allow the loading of an
9612         externally-developed profiler module.
9613
9614 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
9615
9616         * marshal.c (mono_marshal_get_native_wrapper): improved
9617         class/byref arguments.
9618         (mono_marshal_get_native_wrapper): better string marshaling support.
9619
9620 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
9621
9622         * class.c: ensure .pack and .size are handled correctly and
9623         simplified layout of static fields.
9624
9625 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
9626
9627         * appdomain.c
9628         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
9629
9630         * loader.c (mono_lookup_pinvoke_call): look for modules in the
9631         current directory (fix bug 44008)
9632
9633 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
9634
9635         * marshal.c (mono_marshal_get_native_wrapper): started support for
9636         custom marshalers.
9637         (mono_delegate_to_ftnptr): consider marshalling specifications
9638
9639 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
9640
9641         * reflection.c, reflection.h: emit custom marshal info.
9642
9643 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9644
9645         * object.c: free the GError.
9646         * icall.c: added CloseEvent_internal.
9647         * threads.[ch]:
9648         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
9649         call.
9650
9651 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
9652
9653         * loader.c (mono_method_get_signature): Add support for dynamic
9654         assemblies.
9655
9656 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
9657
9658         * reflection.c: fixed bug #43905.
9659
9660 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
9661
9662         * class.c, domain.c, icall.c, metadata.h, object.h: support for
9663         handling TypedReference and ArgIterator.
9664         * loader.c, loader.h: added function to get signature at call site.
9665
9666 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
9667
9668         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
9669         data readonly. Buglets and warning fixes. Some MethodSpec support.
9670
9671 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
9672
9673         * class.h, class.c, object.c: remove relative numbering support.
9674
9675 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
9676
9677         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
9678         free the string, until we get a chance to fix Gtk#
9679
9680 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9681
9682         * marshal.c: revert last patch.
9683
9684 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
9685
9686         * icall.c: updates for new mono_class_vtable() not calling
9687         the type constructor anymore.
9688
9689 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
9690
9691         * object.h, object.c: separate vtable creation from type
9692         initialization. Make running the .cctor thread safe.
9693
9694 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
9695
9696         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
9697
9698 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
9699
9700         * loader.c (mono_get_method): consider calling convention
9701
9702 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
9703
9704         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
9705         to return the invisible global type for a module.
9706
9707         * reflection.c (mono_image_build_metadata): Emit global fields too.
9708
9709 2003-05-20  Peter Williams  <peterw@ximian.com>
9710
9711         * loader.c (mono_lookup_internal_call): Add a few newlines.
9712
9713 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
9714
9715         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
9716         literal strings.
9717
9718         * appdomain.c (set_domain_search_path): Recalculate search path when
9719         AppDomainSetup.PrivateBinPath changes.
9720
9721         * object.c (mono_class_compute_gc_descriptor): It turns out some
9722         parts of the class libs (like System.Thread) holds pointers to
9723         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
9724         to treat native int a pointer type here.
9725         
9726 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
9727
9728         * appdomain.h, domain.c: add hashtable for jump target resolution.
9729
9730 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
9731
9732         * reflection.h reflection.c icall.c: Added new icalls 
9733         GetManifestResourceInfoInternal, GetModulesInternal and support
9734         infrastructure.
9735
9736 2003-05-16  Dick Porter  <dick@ximian.com>
9737
9738         * icall.c:
9739         * file-io.h:
9740         * file-io.c: Implement System.IO.MonoIO::GetTempPath
9741
9742 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
9743
9744         * object.c: mono_store_remote_field: little fix to previous patch.
9745
9746 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
9747
9748         * class.c: add constructors to array classes.
9749         * icall.c: special case array construction for InternalInvoke (),
9750
9751 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
9752
9753         * class.h class.c reflection.c object.c: Added support for field
9754         defaults in dynamically generated classes.
9755
9756 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
9757
9758         * reflection.c: properly encode charset for ddlimport.
9759
9760 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
9761
9762         * threads.c: allow compiling without GC.
9763
9764 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
9765
9766         * appdomain.h, object.c, object.h, threads.c, threads.h: added
9767         handling of thread static data.
9768
9769 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
9770
9771         * reflection.h, reflection.c: added mono_custom_attrs_free ().
9772
9773 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
9774
9775         * class.c (mono_array_class_get): always set the serializable flags
9776         (mono_array_class_get): always set the SEALED attribute for array types
9777
9778 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
9779
9780         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
9781         attributes (fix for bug 42021).
9782
9783 2003-05-12  Dick Porter  <dick@ximian.com>
9784
9785         * gc.c: Don't run finalizers when the finalizer thread is
9786         finishing up, because the default domain has already been
9787         destroyed.
9788
9789 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
9790
9791         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
9792         value is null, we should throw an exception.   This is slightly
9793         different than the other conventions used for the constructor.
9794
9795 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9796
9797         * socket-io.c: fixed windows build.
9798
9799 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9800
9801         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
9802
9803 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
9804
9805         * object.c (mono_string_new_wrapper): Compatibility fix for MS
9806         compilers.
9807
9808 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
9809
9810         * class.c (mono_class_layout_fields): Add experimental GC aware
9811         auto layout facility. Requires class library changes to work correctly.
9812
9813         (mono_class_setup_vtable): Avoid overriding explicit interface
9814         method implementations. Fixes iface3.exe test.
9815
9816         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
9817         object reference.
9818         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
9819         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
9820
9821         * metadata.h: Add new type classification macro which determines
9822         whenever the type holds an object reference.
9823
9824 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
9825
9826         * marshal.c (mono_marshal_get_native_wrapper): cleanups
9827
9828 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
9829
9830         * gc.c (finalizer_thread): Work around a GC bug.
9831
9832 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
9833
9834         * marshal.c (emit_struct_conv): allow unions
9835
9836         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
9837
9838 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
9839
9840         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
9841
9842 2003-05-06  Martin Baulig  <martin@ximian.com>
9843
9844         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
9845
9846 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9847
9848         * socket-io.c:
9849         (Select_internal): allow NULLs, don't create arrays if not needed.
9850         Coupled with Socket.cs changes.
9851
9852         * threadpool.c:
9853         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
9854         register a finalizer for it that will close the semaphore handle. This
9855         fixes the leak and make Lupus' test run with > 4080 loops.
9856
9857 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
9858
9859         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
9860         Jerome Laban (bug #42287)
9861
9862 2003-05-02  Martin Baulig  <martin@ximian.com>
9863
9864         * debug-mono-symfile.h
9865         (MonoSymbolFile): Moved declaration into mono-debug.h.
9866         (MonoDebugMethodJitInfo): Likewise.
9867         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
9868         argument.
9869         (_mono_debug_address_from_il_offset): Take a
9870         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
9871
9872         * mono-debug.h
9873         (MonoDebugDomainData): New struct.
9874         (mono_debug_get_domain_data): New function.
9875         (mono_debug_add_method): Take an additional `MonoDomain *'
9876         argument.
9877         (mono_debug_source_location_from_address): Likewise.
9878         (mono_debug_il_offset_from_address): Likewise.
9879         (mono_debug_address_from_il_offset): Likewise.
9880
9881 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
9882
9883         * reflection.c: one more check for null type in custom attrs.
9884
9885 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9886
9887         * reflection.c: avoid warning (comparison is always false due to limited
9888         range of data type).
9889
9890 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9891
9892         * icall.c: throw an exception in Type.GetField if the argument 'name'
9893         is NULL.
9894
9895 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
9896
9897         * reflection.c: fixed handling of enums in named arguments to custom
9898         attributes (bug #42123).
9899
9900 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
9901
9902         * reflection.c: use the right array element type and handle
9903         a null for a Type argument, too.
9904
9905 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
9906
9907         * reflection.c: handle arrays as arguments to custom attributes.
9908
9909 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
9910
9911         * reflection.c: handle a string value in a custom attr
9912         ctor that takes an object.
9913
9914 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
9915
9916         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
9917         (fix bug #42063)
9918
9919 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
9920
9921         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
9922
9923 2003-04-27  Martin Baulig  <martin@ximian.com>
9924
9925         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
9926         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
9927         MONO_DEBUGGER_EVENT_BREAKPOINT.
9928         (mono_breakpoint_trampoline_code): Removed.
9929         (mono_debugger_event_handler): The last argument is now a
9930         `guint32'.
9931         (mono_debugger_insert_breakpoint_full): Removed the
9932         `use_trampoline' argument.
9933         (mono_debugger_method_has_breakpoint): Likewise.
9934         (mono_debugger_trampoline_breakpoint_callback): Renamed to
9935         mono_debugger_breakpoint_callback(); take the method and
9936         breakpoint number as arguments.
9937
9938 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
9939
9940         * metadata.c: fix off by one when loading parameters attributes.
9941
9942 2003-04-24  Martin Baulig  <martin@ximian.com>
9943
9944         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
9945
9946 2003-04-24  Martin Baulig  <martin@ximian.com>
9947
9948         * mono-debug-debugger.c: Moved all code which interacts with the
9949         Mono Debugger here.
9950
9951         * debug-mono-symfile.c: This code now just deals with the symbol
9952         file itself, the debugger code is now in mono-debug-debugger.c.
9953
9954 2003-04-23  Martin Baulig  <martin@ximian.com>
9955
9956         * mono-debug.c (mono_debug_source_location_from_il_offset):
9957         New method; like mono_debug_source_location_from_address(), but
9958         takes an IL offset instead of a machine address.
9959
9960 2003-04-23  Martin Baulig  <martin@ximian.com>
9961
9962         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
9963         `line' field; this is now computed by the debugger.
9964
9965 2003-04-23  Martin Baulig  <martin@ximian.com>
9966
9967         * mono-debug.[ch]: New files.  This is the new debugging interface.
9968
9969         * mono-debug-debugger.[ch]: New files.  Moved all code which
9970         interacts with the Mono Debugger here.
9971
9972 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
9973
9974         * domain.c (mono_init): initialize mono_defaults.monitor_class
9975
9976 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
9977
9978         * reflection.c (method_encode_code): Add a spicy exception to help
9979         future compiler authors.
9980
9981 2003-04-21  Martin Baulig  <martin@ximian.com>
9982
9983         * icall.c
9984         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
9985         Make this work with relative pathnames; g_filename_to_uri() needs
9986         an absolute filename.
9987
9988 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
9989
9990         * icall.c: Track name changes in Object and ValueType.
9991
9992 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
9993
9994         * metadata.c (mono_type_stack_size): size should be a multiple of
9995         sizeof (gpointer)
9996
9997 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
9998
9999         * gc.c:
10000         (internal_domain_finalize): moved into mono_domain_finalize. No need
10001         to create another thread because the finalizers will be run in the
10002         finalizer thread.
10003         
10004         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
10005         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
10006         to be run (MS does this too).
10007
10008 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
10009
10010         * object.c (mono_class_compute_gc_descriptor): Update comment.
10011
10012         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
10013
10014         * image.h: Add synchronized wrapper cache.
10015
10016         * image.c (do_mono_image_open): Initialize cache.
10017
10018         * reflection.c (create_dynamic_mono_image): Initialize cache.
10019
10020 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10021
10022         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
10023         ves_icall_System_Buffer_ByteLengthInternal.
10024
10025 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
10026
10027         * reflection.c: setup klass->nested_in earlier. Allow
10028         a dash in the assembly name.
10029
10030 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
10031
10032         * metadata.c (mono_type_to_unmanaged): dont access
10033         type->data.klass for MONO_TYPE_OBJECT
10034         (mono_type_to_unmanaged): consider System.Delegate class
10035
10036 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
10037
10038         * class.c: just setup supertypes in the proper place instead of
10039         initializing the full element class for arrays.
10040
10041 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
10042
10043         * class.c: ensure the element class of arrays is initialized.
10044         Setup the supertype info for array classes, too.
10045
10046 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
10047
10048         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
10049
10050 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10051
10052         * Makefile.am: re-added -m option when running cygpath. This way,
10053         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
10054         separator.
10055         * mono-config.c: same codepath for locating mono config file for WIN32
10056         and the rest.
10057         * assembly.c: if mono_assembly_setrootdir is called, don't override
10058         the value set.
10059
10060 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10061
10062         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
10063         MONO_ASSEMBLIES variable.
10064
10065 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
10066
10067         * icall.c: added Assembly::GetNamespaces() icall.
10068
10069 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10070
10071         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
10072
10073 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
10074
10075         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
10076         * object.c: fixed bug in the construction of vtable for proxies
10077
10078 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
10079
10080         * object.c (mono_array_new): Mark mono_array_new as an icall.
10081
10082 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10083
10084         * class.c: fixed test for public method when overriding interfaces.
10085         Closes bug #40970.
10086
10087 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
10088
10089         * appdomain.h, domain.c: added mono_domain_foreach() to
10090         be able to access the currently loaded appdomains.
10091         * object.c: make string interning work across sppdomains.
10092         Mark some functions for use as icalls.
10093
10094 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
10095
10096         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
10097
10098         * reflection.h reflection.c: Allocate long living data using 
10099         GC_MALLOC_ATOMIC so the collector does not need to scan it.
10100
10101         * reflection.c: Double the allocation size in streams instead of
10102         increasing it, to prevent unneccesary copying on large assemblies.
10103         
10104         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
10105         creation if the assembly does not have the Run flag set.
10106
10107 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
10108
10109         * class.h: avoid the C++ keywords in header files (Jerome Laban
10110         spotted and fixed this).
10111
10112 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10113
10114         * object.c:
10115         (mono_unhandled_exception): fill in the arguments for the
10116         UnhandledException event. Only trigger that event for the default
10117         domain (as MS does).
10118
10119 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
10120
10121         * object.c: Improve typed allocation stuff based on suggestions from
10122         Paolo. Also turn it on if the GC library supports it.
10123
10124 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
10125
10126         * object.c object.h class.h: Added experimental typed allocation
10127         facility using the interfaces in gc_gcj.h.
10128
10129         * os/gc_wrapper.h: Added new include files.
10130         
10131 2003-04-03  Martin Baulig  <martin@ximian.com>
10132
10133         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
10134         which is not yet enabled by default.
10135
10136         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
10137         functions.
10138         (mono_gc_lock, mono_gc_unlock): New static functions.
10139
10140         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
10141         functions; stop/start the world for the garbage collector.  This
10142         is using the windows API; we need to complete the SuspendThread()/
10143         ResumeThread() implementation in the io-layer to make this work on Unix.
10144         (mono_gc_push_all_stacks): New public function; tells the garbage
10145         collector about the stack pointers from all managed threads.
10146
10147 2003-04-03  Martin Baulig  <martin@ximian.com>
10148
10149         * object.h (MonoThread): Added `gpointer stack_ptr'.
10150
10151         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
10152
10153 2003-04-03  Martin Baulig  <martin@ximian.com>
10154
10155         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
10156
10157 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
10158
10159         * reflection.c (typebuilder_setup_fields): Initialize field.first and
10160         field.last.
10161
10162 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
10163
10164         * loader.c (mono_lookup_internal_call): Report the corlib that is
10165         out of sync.
10166
10167 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
10168
10169         * icall.c (ves_icall_type_GetTypeCode): fixed check for
10170         System.DBNull (it's class not valuetype).
10171
10172 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
10173
10174         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
10175         if the array method was already assigned a token (fixes bug#40646).
10176
10177 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
10178
10179         * reflection.c (mono_reflection_get_type): Attempt type resolve even
10180         if no assembly is given.
10181
10182 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
10183
10184         * metadata.h: Added the new tables.
10185
10186         * row-indexes.h: Added definitions for new tables.
10187
10188         * metadata.c: Add schemas for new tables, and add support for
10189         computing the sizes of them.
10190
10191         * class.c: Update for handling the new type cases.
10192
10193 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
10194
10195         * metadata.h (MONO_TYPE_IS_VOID): new macro
10196
10197 2003-03-31  Martin Baulig  <martin@ximian.com>
10198
10199         * threads.h (MonoThreadCallbacks): Added `thread_created'.
10200
10201         * threads.c (mono_thread_new_init): Call `thread_created' in the
10202         mono_thread_callbacks.
10203
10204 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
10205
10206         * loader.h: added marshalbyrefobject_class to mono_defaults
10207         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
10208         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
10209           generation of output parameters.
10210           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
10211         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
10212           contextbound and the target object belongs to the context of the caller.
10213         * object.h: added context and unwrapped_server variables in MonoRealProxy.
10214         * object.c: Implemented support for interfaces and abstract classes
10215           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
10216           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
10217
10218 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
10219
10220         * class.h class.c (mono_class_is_subclass_of): New function.
10221         
10222         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
10223         routines for most common case (calls from ArrayList::ToArray).
10224
10225         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
10226         routine so programs which call Environment::Exit() can be profiled.
10227
10228         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
10229         Added MONO_ARCH_SAVE_REGS.
10230
10231         * icall.c (ves_icall_type_is_subtype_of): Use new function.
10232
10233 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
10234
10235         * blob.h: Add a couple of new MonoType types definitions.
10236
10237         * tabledefs.h: Add a couple of new call convs.
10238
10239 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
10240
10241         * reflection.h (MonoReflectionDynamicAssembly): track changes in
10242         the layout of the class.
10243
10244         * reflection.c (alloc_table): double the size on overflow to avoid
10245         unnecessary copying.
10246
10247         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
10248         avoid filling out metadata tables and blobs. Also set mb->ilgen to
10249         null so it can be garbage collected.
10250         
10251 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
10252
10253         * reflection.c (mono_reflection_get_type): Return the resolved type
10254         only if it is in the assembly we searched.
10255
10256         * reflection.c (ensure_runtime_vtable): Initialize method slots.
10257
10258         * class.c (mono_class_setup_vtable): Set the slot of the overriding
10259         method.
10260
10261 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10262
10263         * appdomain.c:
10264         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
10265         the right one is 'file:///blah', but MS allows it.
10266         * assembly.c:
10267         (mono_assembly_open): allow 'file://blah'
10268
10269         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
10270
10271 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
10272
10273         * socket-io.c: fixes bug #40310.
10274
10275 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
10276
10277         * reflection.c (mono_reflection_parse_type): handle deeply nested
10278         types correctly.
10279
10280         * reflection.c (mono_image_create_token): Use unique token values
10281         since they will be put into a hash table.
10282
10283         * class.c (mono_class_setup_vtable): If a method occurs in more than
10284         one place in the vtable, and it gets overriden, then change the
10285         other occurances too.
10286
10287         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
10288         object as return type.
10289
10290 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10291
10292         * icall.c: Deleted "ToString" implementation for double and float
10293         because they are full implemented in managed code.
10294
10295 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10296
10297         * reflection.c, reflection.h: implemented and exported functions
10298         to retrieve info about custom attributes.
10299
10300 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10301
10302         * appdomain.c: moved Uri handling to assembly.c
10303         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
10304         work when using a file Uri in *nix and windows.
10305
10306         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
10307         GetReferencedAssemblies.
10308
10309 2003-03-18  Dick Porter  <dick@ximian.com>
10310
10311         * icall.c: Rename a couple of internal calls
10312
10313         * threads.c: Set the thread state to Stopped when a thread exits.
10314         Fixes bug 39377.
10315
10316 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
10317
10318         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
10319         New icall.
10320
10321         * object.c (mono_class_vtable): fix warning.
10322
10323 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
10324
10325         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
10326
10327         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
10328         memory.
10329         (method_encode_clauses): Create exception info structures in the right
10330         order.
10331         (mono_reflection_setup_internal_class): Initialize supertypes field.
10332
10333         * class.c object.c: Handle interfaces which implement other interfaces 
10334         correctly.
10335
10336         * class.h class.c: Move the supertypes array initialization code into 
10337         a separate function so it can be used for dynamic types too. Also call
10338         it earlier, in mono_class_init(), since it can be used before the
10339         type is initialized.
10340
10341 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10342
10343         * Makefile.am:
10344         * assembly.c:
10345         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
10346
10347         * appdomain.c:
10348         * appdomain.h:
10349         * marshal.c:
10350         * object.c: remove warnings.
10351
10352 2003-03-13  Martin Baulig  <martin@ximian.com>
10353
10354         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
10355         (MonoDebugLexicalBlockEntry): New types.
10356
10357         * debug-mono-symfile.c
10358         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
10359
10360 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10361
10362         * process.c: ret can be any non-zero value accroding to MS doc.
10363
10364 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
10365
10366         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
10367         fixing a warning for a miss-used prototype, would have cause
10368         random memory corruption.
10369
10370 2003-03-07  Martin Baulig  <martin@ximian.com>
10371
10372         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
10373         getting really annoying ....
10374
10375 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
10376
10377         * reflection.c (fixup_method): added support for array methods.
10378
10379 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
10380
10381         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
10382         (pointed out by Michael Adams).
10383
10384 2003-03-04  Dick Porter  <dick@ximian.com>
10385
10386         * icall.c: Temporarily reverted the Double and Single ToString()
10387         change, because it broke nunit.
10388
10389 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
10390
10391         * object.h, threads.h: make include files compatible with C++
10392         (patch by Jerome Laban <jlaban@wanadoo.fr>).
10393
10394 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10395
10396         * icall.c: Erased ToString helper functions for Double and Single.
10397         Now, that implementations ar all in managed code (Double and Single
10398         Formatters).
10399
10400 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
10401
10402         * appdomain.c: Added method for initializing the default context of
10403         a domain. Added internal call for getting the default context.
10404         * appdomain.h: Added context variable in MonoDomain struct.
10405         * domain.c: mono_domain_set also sets the default context of the domain
10406         * icall.c: Mapped internal method InternalGetDefaultContext.
10407         * object.c: mono_object_get_virtual_method returns always a remoting
10408         wrapper if the object is a transparent proxy.
10409         mono_runtime_invoke_array: when creating an object by calling the
10410         constructor, if the created object is a proxy, then the constructor should
10411         be called using the a remoting wrapper.
10412
10413 2003-03-03  Dick Porter  <dick@ximian.com>
10414
10415         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
10416         variable so it compiles on solaris.  Problem spotted by
10417         Christopher Taylor <ct@cs.clemson.edu>
10418
10419 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10420
10421         * appdomain.c:
10422         (get_info_from_assembly_name): don't leak value.
10423
10424         * icall.c:
10425         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
10426         result.
10427
10428 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
10429
10430         * assembly.c: export mono_image_load_references ().
10431         * class.c: handle function pointers. mono_class_from_name() now
10432         supports nested type names directly.
10433
10434 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
10435
10436         * reflection.h reflection.c: Encode already created dynamic methods 
10437         and fields correctly as a DEF instead of a REF.
10438
10439         * reflection.c: Get rid of the force_ref argument to 
10440         mono_image_typedef_or_ref since it was wrong in the first place.
10441
10442         * string-icalls.c: add error checking to string constructors according
10443         to the MSDN docs.
10444
10445         * reflection.c: Emit types in the order their TypeBuilders were 
10446         created. Previously, a new table index was assigned to each type before
10447         the tables were emitted. This was wrong because the signature blob
10448         might already refer to a type by its original table index.
10449
10450 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
10451
10452         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
10453         change.
10454         
10455 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10456
10457         * Makefile.am: make assemblies dir have \ instead of / on windows.
10458
10459 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
10460
10461         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
10462         iterate over the NESTEDCLASS table using a linear search since the
10463         table is not guaranteed to be sorted by the secondary key.
10464
10465         * class.c (mono_class_create_from_typedef): fixed up call to
10466         mono_metadata_nesting_typedef.
10467         
10468 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
10469
10470         * marshal.c (mono_string_to_byvalstr): clear the memory as
10471         suggested by Jerome Laban <jlaban@wanadoo.fr>
10472
10473 2003-02-26  Dick Porter  <dick@ximian.com>
10474
10475         * process.c: Cope with padding in .rsrc blocks
10476
10477 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
10478
10479         * metadata.h: reverted the filter_len change, it breaks reflection
10480         
10481 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
10482
10483         * metadata.h: added a new field to store the filter_len
10484         
10485
10486 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
10487
10488         * reflection.c: handle custom attributes for types and members
10489         created with Reflection.Emit (bug#38422).
10490
10491 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
10492
10493         * reflection.c: define RTSpecialName automatically for constructors for
10494         compatibility with MS.NET.
10495
10496         * reflection.c (mono_reflection_create_runtime_class): initialize
10497         nested_in field of dynamically created classes.
10498
10499 2003-02-22  Martin Baulig  <martin@ximian.com>
10500
10501         * debug-mono-symfile.h: Incremented version number.
10502
10503 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
10504
10505         * object.h icall.c process.c: fix warnings.
10506
10507 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
10508
10509         * appdomain.h appdomain.c:
10510         (mono_domain_try_type_resolve): split the 
10511         name_or_tb argument into a name and a tb argument.
10512         (mono_domain_has_type_resolve): new function to check whenever the
10513         application has registered a TypeResolve event handler.
10514         
10515         * icall.c reflection.h reflection.c: move the type resolve logic into
10516         mono_reflection_get_type () so it will be invoked when 
10517         Assembly::GetType () is called.
10518
10519         * reflection.c:
10520         (mono_reflection_get_type): renamed to get_type_internal.
10521         (mono_reflection_get_type): fixed type name generation so it works 
10522         for nested types too.
10523         (mono_reflection_get_type): call has_type_resolve () to avoid the 
10524         costly type name generation if there is no resolve event handler.
10525
10526 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10527
10528         * class.c, image.c: load exported types from file references.
10529
10530 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
10531
10532         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
10533           used to cache the managed methods used to create proxies and make 
10534           remote invocation of methods.
10535         * class.h: Added in MonoVTable a flag to indicate that a class needs 
10536           to be remotely created.
10537         * object.c: Modified the method mono_class_vtable(). It now initializes 
10538           the remote flag of the vtable. Modified mono_object_new_specific(), 
10539           so now it checks the remote flag.
10540         * icall.c: Added a couple of internal methods, one for enabling instance 
10541           creation interception for a type, and one for creating objects bypassing
10542           the remote check.
10543
10544 2003-02-18  Martin Baulig  <martin@ximian.com>
10545
10546         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
10547         New interncall to get a method's metadata token.
10548
10549         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
10550         New interncall for the debugger.
10551
10552 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
10553
10554         * class.c (mono_class_setup_vtable): allocate supertype array
10555
10556 2003-02-18  Martin Baulig  <martin@ximian.com>
10557
10558         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
10559
10560 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10561
10562         * reflection.c:
10563         (assembly_name_to_aname): jump over unknown properties (i've found
10564         something like: 'type, assembly, version=xxx, custom=null, public...',
10565         so now will ignore custom=null and still get the rest of the values).
10566
10567 2003-02-17  Dick Porter  <dick@ximian.com>
10568
10569         * threads.c: Have Thread.Start() wait for a semaphore to signal
10570         that the thread has set up all its local data.  This fixes bug
10571         34323, where Abort() raced the new thread's TLS data.
10572
10573         Also removes the handle_store() call from start_wrapper, because
10574         threads are now always created suspended and there is no longer a
10575         race between the parent and child threads to store the info.
10576
10577 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
10578
10579         * image.c: explain the #- heap issue in a message, hopefully
10580         avoiding FAQs on mono-list.
10581
10582 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10583
10584         * icall.c:
10585         (GetEntryAssembly): if the domain has not invoked
10586         AppDomain.ExecuteAssembly yet, return the assembly of the default
10587         AppDomain.
10588
10589 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
10590
10591         * class.c (mono_ldtoken): make it work in dynamic assemblies.
10592
10593 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
10594
10595         * metadata.c, reflection.c: simple speedup to type hash
10596         and equals code.
10597
10598 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
10599
10600         * image.c, image.h, class.c, assembly.c: move module loading
10601         to MonoImage. When loading metadata, consider alignemnet from
10602         the start of metadata, not from the metadata address in memory.
10603
10604 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
10605
10606         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
10607         AssemblyBuilder objects. Factored out custom attribute creation into
10608         a separate function.
10609         (create_custom_attr): new function to create custom attributes.
10610
10611 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
10612
10613         * Makefile.am: Got tired of typing the full pathname to pedump.
10614         Until there is another option, am installing this.
10615
10616 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
10617
10618         * class.c (class_compute_field_layout): always set field->parent 
10619         (mono_ldtoken): use mono_defaults.fieldhandle_class;
10620
10621 2003-02-11  Dick Porter  <dick@ximian.com>
10622
10623         * threads-types.h:
10624         * monitor.c: Rewrote Monitor, making lock much faster and
10625         Pulse/Wait work as specified.  Also uses much fewer handles, and only
10626         creates them as needed.
10627
10628         * exception.c: Added SynchronizationLockException
10629
10630         * threads.c: Deleted old Monitor implementation.  The new one is
10631         in a new file.
10632
10633 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
10634
10635         * class.c: handled TypedReference type code. Set the correct size for
10636         class data. Setup interface_offsets for interface classes, too.
10637
10638 2003-02-09  Martin Baulig  <martin@ximian.com>
10639
10640         * debug-mono-symfile.h: Reflect latest symbol writer changes.
10641
10642 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
10643
10644         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
10645         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
10646         * object.c: fixed mono_object_get_virtual_method () for interfaces.
10647         * verify.c: check for code that runs after the end of the method.
10648
10649 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
10650
10651         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
10652         "System.Math::Round2".
10653         * sysmath.h: Added Floor, Round and Round2 definitions.
10654         * sysmath.c: Modified certain functions that were not 100% compliant
10655         with MS.NET (math precision) and added the implementation of Floor,
10656         Round and Round2.
10657
10658 2003-02-07  Martin Baulig  <martin@ximian.com>
10659
10660         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
10661
10662 2003-02-07  Martin Baulig  <martin@ximian.com>
10663
10664         * debug-mono-symfile.c: Reflected latest symwriter changes.
10665         (mono_debug_create_mono_symbol_file): Removed.
10666         (mono_debug_open_mono_symbol_file): Take an argument which
10667         specifies whether to create a dynamic symbol file.
10668
10669 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
10670
10671         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
10672
10673 2003-02-05  Martin Baulig  <martin@ximian.com>
10674
10675         * reflection.c (mono_image_build_metadata): Make this public,
10676         protect it against being called multiple times, don't create
10677         resources and don't build the compressed metadata here.
10678         (mono_image_create_pefile): Do this here.
10679
10680         * icall.c
10681         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
10682
10683 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10684
10685         * socket-io.c: fixed bug #36322.
10686
10687 2003-02-06  Piers Haken <piersh@friskit.com>
10688
10689         * appdomain.[ch]:
10690         * class.h:
10691         * debug-mono-symfile.c:
10692         * icall.c:
10693         * loader.c:
10694         * mono-config.c:
10695         * monosn.c:
10696         * reflection.c:
10697         * socket-io.c: warning cleanups
10698
10699 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
10700
10701         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
10702         function. works like remoting invoke, but does a check for the Proxy first.
10703
10704 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
10705
10706         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
10707
10708 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
10709
10710         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
10711         array of pointers.
10712         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
10713         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
10714
10715         * object.c (mono_store_remote_field_new): used by the new jit
10716         instead of mono_store_remote_field
10717         (mono_load_remote_field_new): used by the new jit
10718         instead of mono_load_remote_field
10719
10720 2003-02-05  Patrik Torstensson
10721
10722         * appdomain.c: changed unload to take the domain id instead
10723         of domain
10724         
10725         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
10726
10727
10728 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10729
10730         * appdomain.c: don't look for assemblies in ApplicationBase if
10731         PrivateBinPathProbe is set.
10732
10733 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10734
10735         * object.c: make the first argument in main_args contain the absolute
10736         path to the assembly. Fixes bug #37511.
10737
10738 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10739
10740         * icall.c: get correct UTC offset for countries not using daylight
10741         time saving. Fixes bug #30030.
10742
10743 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10744
10745         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
10746         and 1 are the family).
10747
10748 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
10749
10750         * icall.c (ves_icall_InternalExecute): removed wrong assertion
10751
10752         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
10753
10754 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
10755
10756         * reflection.c: added support for SignatureHelper tokens, which is
10757         needed by the Calli opcode.
10758
10759         * reflection.h: track changes to SignatureHelper class.
10760
10761         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
10762
10763 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10764
10765         * appdomain.c: fixed loading assemblies from PrivateBinPath.
10766
10767 2003-02-03  Patrik Torstensson
10768         * appdomain.[c|h], domain.c : 
10769          - Added support for getting a domain via domain id
10770          - Support for setting and getting domain from System.AppDomain 
10771            (used in cross appdomain channel)
10772          - Added support for get/set for a MonoAppContext on a thread 
10773            (Context class in System.Runtime.Remoting.Contexts),
10774          - Removed hack in Get/SetData and ExecuteAssembly.
10775         
10776         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
10777         the managed world to get control when a proxy is created.
10778
10779         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
10780         
10781 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
10782
10783         * icall.c
10784         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
10785         Populate the codebase field as well.
10786
10787 2003-02-02  Martin Baulig  <martin@ximian.com>
10788
10789         * debug-mono-symfile.c
10790         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
10791         (mono_debug_symfile_add_method): Allow interncalls.
10792
10793 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10794
10795         * icall.c: throw parse exception if strtod fails or the string is empty.
10796
10797 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
10798
10799         * marshal.c: handle object type separately from defined
10800         class types.
10801
10802 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
10803
10804         * marshal.c: handle NATIVE_LPSTR for strings when it's
10805         explicitly specified.
10806
10807 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
10808
10809         * reflection.c, reflection.h, icall.c: setup the reflection
10810         handle cache for ModuleBuilders and AssemblyBuilders.
10811
10812 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
10813
10814         * reflection.c (reflection_methodbuilder_to_mono_method): set
10815         pinvoke flag
10816
10817 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10818
10819         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
10820
10821 2003-01-29  Dick Porter  <dick@ximian.com>
10822
10823         * threads.c: No need for the fake_thread kludge now that Thread
10824         doesn't run a class constructor
10825         
10826 2003-01-29  Dick Porter  <dick@ximian.com>
10827
10828         * threads.c: Use g_direct_hash instead of the rather bogus
10829         g_int_hash
10830
10831 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
10832
10833         * marshal.c (mono_marshal_get_native_wrapper): add check for null
10834         (fix pinvoke12.exe)
10835         (mono_marshal_get_struct_to_ptr): generate valid IL code
10836         (mono_marshal_get_ptr_to_struct): generate valid IL code
10837         (*): correctly set sig->pinvoke, we need to memdup the signature
10838         to do that
10839
10840 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
10841
10842         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
10843         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
10844
10845 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
10846
10847         * profiler.c: provide more callers information.
10848
10849 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
10850
10851         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
10852
10853         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
10854
10855         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
10856
10857 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10858
10859         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
10860         exception instead of going into an infinite loop on dates which it 
10861         can't yet handle.
10862
10863         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
10864         out-of-range exception if needed.
10865
10866         * class.c (mono_class_setup_vtable): allow a virtual method to provide
10867         an implementation for an interface method and to override an inherited
10868         method at the same time. 
10869         Imagine a scenario when a virtual method is used to override a
10870         virtual abstract method in a parent class, and this same method 
10871         provides an implementation for an method inherited from an interface. 
10872         In this case, the interface resolution code will set im->slot, which 
10873         means that the virtual method override pass will skip this method 
10874         which means a pointer to the abstract method inherited from the parent
10875         will remain in the vtable of this non-abstract class.
10876
10877         * class.c: (mono_class_setup_vtable): continue search for a real 
10878         method if only an abstract method is found.     
10879
10880 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
10881
10882         * reflection.c: add size to encoding for ByValStr and ByValArray
10883         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
10884
10885 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10886
10887         * class.c (mono_class_setup_vtable): pass the override info as an
10888         argument.
10889
10890         * class.c (mono_class_setup_vtable): set the slot of overriding methods
10891         correctly.
10892         
10893         * reflection.c (ensure_runtime_vtable); add support for method 
10894         overrides.
10895         
10896 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10897
10898         * reflection.c (resolution_scope_from_image): Hack to work to work with
10899         dynamic assemblies.
10900
10901         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
10902         added a 'force_ref' argument to force this function to allways return 
10903         a TypeRef. This is needed by mono_image_get_memberref_token ().
10904         
10905 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10906
10907         * reflection.c (mono_image_get_type_info): interfaces really don't have
10908         a parent.
10909
10910         * reflection.c (mono_image_basic_init): fill out missing fields of
10911         image structure.
10912
10913         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
10914         dynamic assemblies. This is required so dynamic assemblies show up in
10915         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
10916         Type::GetType() etc. This is consistent with MS behaviour.
10917
10918         * image.c image.h reflection.c: add newly created classes to the name 
10919         cache so mono_class_get () will find them.      
10920
10921 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
10922
10923         First part of changes to get IKVM.NET running under mono.
10924         
10925         * appdomain.h, appdomain.c: added new function 
10926         mono_domain_try_type_resolve() which will emit TypeResolve events. 
10927         This function will call AppDomain::DoTypeResolve to do the actual work.
10928
10929         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
10930         moved existing code dealing with dynamic tokens to a new function 
10931         called mono_reflection_lookup_dynamic_token (). This function will 
10932         raise TypeResolve events when appropriate. Since reflection.c is not 
10933         part of libmetadata, a new hook function called 
10934         mono_lookup_dynamic_token() is added to class.c which will call this.
10935
10936         * assembly.h assembly.c: make the invoke_load_hook function public,
10937         so it can be called for dynamic assemblies.
10938
10939         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
10940
10941         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
10942         type isn't found.
10943
10944         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
10945         MonoGHashTable, since it contains pointers to objects which the GC 
10946         needs to track.
10947
10948         * assembly.c (search_loaded): remove unused variable.
10949         
10950 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
10951
10952         * object.c: fixed issue exposed by gcc-generated IL programs
10953         that use RVA data for pointers.
10954
10955 2003-01-25  Martin Baulig  <martin@ximian.com>
10956
10957         * threads.c (start_wrapper): Moved the initialization of
10958         `start_func' above the mono_new_thread_init() call to which we
10959         pass it as argument.
10960
10961 2003-01-24  Martin Baulig  <martin@ximian.com>
10962
10963         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
10964         the MonoThread pointer.
10965
10966 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
10967
10968         * icall.c: Rename `PowImpl' to Pow.
10969
10970 2003-01-23  Dick Porter  <dick@ximian.com>
10971
10972         * threads.c (start_wrapper): Create a Thread object if needed, so
10973         the Main() thread can do the class initialisation in a subthread
10974         that has been set up to allow managed code execution.
10975
10976         Pass the thread ID instead of the MonoThread pointer to the thread
10977         start and attach callbacks.  This change is required, because the
10978         jit thread start callback must be called _before_ the Thread
10979         object can be created.
10980         
10981         (mono_thread_init): Removed much object creation code that is no
10982         longer needed.  No managed code is called from here now.
10983
10984         * object.c (mono_runtime_exec_managed_code): Create a subthread
10985         for Main, and call back to the runtime to use it.
10986         Set the exit code when Main exits.
10987
10988         * gc.c: Make sure domain finalisation happens in a subthread.
10989         Re-enable threaded GC, fixing bug 31333 (again).
10990
10991         * environment.c: System.Environment internall calls (so far just
10992         ExitCode is here, the others are still in icall.c)
10993
10994         * appdomain.c (mono_runtime_cleanup): All threads running managed
10995         code should have finished before mono_runtime_cleanup() is
10996         reached, so no need to clean up threads.
10997
10998 2003-01-22  Martin Baulig  <martin@ximian.com>
10999
11000         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
11001         `gpointer func' arguments.      
11002         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
11003         but added `MonoThread *thread' argument.
11004         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
11005
11006         * threads.c (mono_new_thread_init): Added `gpointer func' argument
11007         and pass it to the mono_thread_start_cb callback.
11008         (mono_install_thread_callbacks): New public function to install a
11009         set of callbacks which are set by the debugger.
11010         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
11011
11012 2003-01-22  Martin Baulig  <martin@ximian.com>
11013
11014         * Makefile.am: Install debug-mono-symfile.h.
11015
11016 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
11017
11018         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
11019
11020 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
11021
11022         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
11023         * class.c (mono_ptr_class_get): correctly set access levels of pointers
11024         (mono_array_class_get): correctly set access levels of arrays
11025
11026 2003-01-20      Patrik Torstensson
11027         * image.h (MonoAssemblyName): changed major, minor, build, revision
11028         from signed to unsigned.
11029
11030 2003-01-20  sean kasun <skasun@azstarnet.com>
11031
11032         * reflection.c (load_cattr_value): Now this handles
11033         MONO_TYPE_SZARRAY.  Fixes bug #35629
11034
11035 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
11036
11037         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
11038         integer value
11039
11040 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11041
11042         * decimal.c: fixed bug #26056.
11043
11044 2003-01-17  Martin Baulig  <martin@ximian.com>
11045
11046         * gc.c: Raise an ExecutionEngineException instead of using g_error().
11047
11048 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11049
11050         * exception.[ch]:
11051         (mono_get_exception_type_initialization): new function.
11052
11053         * object.c: throw a TypeInitializationException when an exception is
11054         thrown invoking the class constructor.
11055
11056 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11057
11058         * reflection.c: fixed attribute reading.
11059
11060 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11061
11062         * icall.c:
11063         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
11064         provided, look for the type in the calling assembly and then in
11065         mscorlib; if the assembly name is provided, only try that one.
11066
11067 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
11068
11069         * object.c: register the vtable before there is a chance it's
11070         queried again recursively.
11071
11072 2003-01-13  Duncan Mak  <duncan@ximian.com>
11073
11074         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
11075         gc-internal.h. 
11076         
11077 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
11078
11079         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
11080
11081 2003-01-11  Martin Baulig  <martin@ximian.com>
11082
11083         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
11084         this to 20 for the release.
11085
11086 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
11087
11088         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
11089
11090         * loader.c (mono_method_get_marshal_info): bug fix
11091
11092         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
11093         structures with explicit layout
11094
11095 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
11096
11097         * profiler.c: made the output more readable (and sorted). 
11098         Added caller information for the allocation profiler.
11099
11100 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
11101
11102         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
11103
11104 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11105
11106         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
11107         to get value types.
11108         
11109 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
11110
11111         * object.c, profiler.h, profiler.c, profiler-private.h:
11112         Added object allocation profiler.
11113
11114 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
11115
11116         * reflection.h, reflection.c: handle global methods.
11117         Compress blob entries.
11118
11119 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
11120
11121         * marshal.c: fix compilation.
11122
11123 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
11124
11125         * loader.c (mono_method_get_marshal_info): impl.
11126
11127         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
11128
11129 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11130
11131         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
11132         for reference types.
11133
11134 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
11135
11136         * loader.c: fixed off by one error in loaded parameter names.
11137
11138 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
11139
11140         * marshal.c (mono_marshal_get_icall_wrapper): like
11141         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
11142         instead of a MonoMethod.
11143
11144 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11145
11146         * decimal.c: fixed bug #36537.
11147
11148 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
11149
11150         * marshal.c: throw a missing method exception if a
11151         P/Invoke method is not found.
11152
11153 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
11154
11155         * icall.c: allow a null this for constructors.
11156
11157 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
11158
11159         * icall.c: raise the proper exceptions if the arguments to the
11160         internal Invoke are incorrect.
11161
11162 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
11163
11164         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
11165
11166 2003-01-03  Martin Baulig  <martin@ximian.com>
11167
11168         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
11169
11170 2002-12-31  Martin Baulig  <martin@ximian.com>
11171
11172         * debug-mono-symfile.c: Completely rewrote the type section.
11173         Instead of using individual malloc()ed fields, we use one big
11174         continuous memory area and offsets into this area.
11175         See the comments in the source code for details.
11176
11177 2002-12-30  Martin Baulig  <martin@ximian.com>
11178
11179         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
11180
11181 2002-12-30  Martin Baulig  <martin@ximian.com>
11182
11183         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
11184         line number table in this data blob instead of using an external
11185         pointer.
11186
11187 2002-12-28  Martin Baulig  <martin@ximian.com>
11188
11189         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
11190
11191 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
11192
11193         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
11194         as a boxed return type.
11195
11196 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
11197
11198         * appdomain.c
11199         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
11200         g_build_filename to properly get separators on the filename created.
11201
11202         * object.h: Small change, introduce MonoMarshalByRefObject to
11203         track the layout of that structure in the C# universe as we make
11204         changes there.
11205
11206 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
11207
11208         * object.c: removed assert to allow static fields on interfaces.
11209         * loader.c: a TypeSpec may be used for any type, not just arrays.
11210
11211 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
11212
11213         * class.c, class.h: added mono_class_array_element_size ().
11214         Ignore static methods in interfaces.
11215
11216 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11217
11218         * threads.c: fixed the build under cygwin.
11219
11220 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
11221
11222         * reflection.c: handle nullref constants. Allocate keys for
11223         reflection handles with the GC.
11224
11225 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11226
11227         * threads.c, threads.h: added mono_thread_get_abort_signal()
11228         to get a suitable signal for thread abort.
11229
11230 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
11231
11232         * metadata.c: fix handling of ExportedType table.
11233
11234 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11235
11236         * icall.c: added WriteWindowsDebugString internal call.
11237
11238 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11239
11240         * reflection.h: added fields to match C# implementation.
11241
11242 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11243
11244         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
11245
11246 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
11247
11248         * gc.h, gc-internal.h: Rename header for GC internal calls to
11249         gc-internal.h from gc.h as to not clash with Boehm GC having its
11250         header installed as <gc.h> in outside include paths.
11251         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
11252         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
11253
11254 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11255
11256         * icall.c: assign minor, build and revision in FillName.
11257
11258 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
11259
11260         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
11261         Added support for running code generated by Reflection.Emit.
11262
11263 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11264
11265         * appdomain.c: check for NULL argument in LoadFrom.
11266
11267 2002-12-10  Dick Porter  <dick@ximian.com>
11268
11269         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
11270
11271 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11272
11273         * appdomain.c: fix buglet when building exe file name.  Handle full
11274         assembly name (needed after latest changes to AssemblyName).
11275         * image.c:
11276         (mono_image_close): free some hashtables.
11277
11278 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
11279
11280         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
11281         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
11282         on some systems (redhat 7.3) 
11283
11284 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
11285
11286         * threads.c: delete the critical section of a sync block,
11287         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
11288
11289 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
11290
11291         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
11292
11293 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11294
11295         * appdomain.[ch]: handle the assembly preload event to try loading the
11296         assemblies using the paths we have in the current domain.
11297
11298         * assembly.[ch]: created an assembly preload hook that is called to try
11299         loading the assembly by other means that the ones provided here.
11300
11301         * domain.c: initialize the domain search path.
11302
11303         From now on, assemblies (TODO: except corlib and System) are loaded
11304         according to these rules when using mono_assembly_load ():
11305
11306                 1. It tries to load the assembly from the ApplicationBase
11307                 of the current domain appending .dll and .exe (TODO: have to
11308                 try loading from name/name.dll and name/name.exe).
11309
11310                 2. It tries the search path specified in PrivateBinPath for the
11311                 current domain (if any).
11312
11313                 3. Previous behavior.
11314
11315 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
11316
11317         * icall.c: implemented GetInterfaceMap() related icall.
11318         * domain.c, loader.h: load MethodInfo in mono_defaults.
11319
11320 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
11321
11322         * gc.c: disable the finalizer thread for now, untill all the issues
11323         with it are resolved.
11324
11325 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
11326
11327         * string-icalls.c: handle embedded nulls in string ctor when the
11328         length is specified.
11329
11330 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
11331
11332         * class.c: look for explicit interface implementation in parent
11333         classes, too.
11334
11335 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
11336
11337         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
11338
11339 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
11340
11341         * gc.c: protect handles with a critical section.
11342
11343 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11344
11345         * icall.c:
11346         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
11347         parameters. If no assembly specified, try getting the type from all
11348         the assemblies in the current domain, else, load the assembly and get
11349         the type from it.
11350
11351 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11352
11353         * marshal.c: applied patch from Aleksey Demakov that fixes
11354         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
11355
11356 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11357
11358         * icall.c: fixed get_location.
11359
11360 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
11361
11362         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
11363         declarations to make it work with older gcc. 
11364
11365         * loader.c (mono_get_method): set signature->pinvoke for native calls
11366
11367 2002-11-20  Dick Porter  <dick@ximian.com>
11368
11369         * threads.c (mono_thread_init): Set the main thread's handle
11370
11371 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
11372
11373         * gc.c: allow compilation without GC support. Changed to match the
11374         mono coding style.
11375
11376 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
11377
11378         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
11379
11380 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
11381
11382         * reflection.c: set a public key token on the core assemblies.
11383
11384 2002-11-18  Dick Porter  <dick@ximian.com>
11385
11386         * threads.c: Split out some thread initialisation so that other
11387         files can set the start callback function.
11388
11389         * gc.c: Run finalisers in a separate thread, to avoid stack
11390         overflow.  Fixes bug 31333.
11391
11392         * appdomain.c: Set up GC finalisation thread.
11393
11394         * reflection.c: 
11395         * object.c: 
11396         * domain.c: Use gc.h macros for GC_malloc
11397         
11398 2002-11-15  Dick Porter  <dick@ximian.com>
11399
11400         * threadpool.c: 
11401         * threads.c:
11402         * appdomain.c: Removed mono_runtime_init_with_attach(),
11403         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
11404         merging the extra parameter with the existing function.  Removed
11405         unneeded code in mono_thread_attach().
11406
11407 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
11408
11409         * image.c (mono_image_loaded_by_guid): a method to get loaded
11410         images by guid. 
11411         (load_metadata_ptrs): we store the guid as string.
11412
11413 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
11414
11415         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
11416
11417         * metadata.c (mono_guid_to_string): imported method form Zoltan
11418         Varga (slightly modified)
11419
11420         * assembly.c (mono_assembly_open): load precompiled code
11421
11422         * loader.h (MonoMethod): we store the method token for use in the
11423         aot compiler. 
11424
11425 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11426
11427         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
11428         the hook function called when an assembly is loaded.
11429         
11430         * domain.c: Modified file.
11431         (mono_domain_assembly_load): removed hash table insertion of assemblies.
11432
11433         Fixes bug #33196.
11434
11435 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
11436
11437         * reflection.c: Map PEFileKind to the value expected by the WinNT
11438         image loader. 
11439
11440 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11441
11442         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
11443         Read until the buffer is filled completely.
11444
11445 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11446
11447         * icall.c: implemented MonoType.InternalGetEvent ().
11448
11449 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11450
11451         * appdomain.c: implemented InitAppDomainSetup. Delayed
11452         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
11453         the entry_assembly.
11454
11455         * assembly.c: base_dir is now an absolute path ending with
11456         G_DIR_SEPARATOR.
11457
11458         * icall.c: modified get_location according to the above changes.
11459
11460         * object.c: init AppDomain.SetupInformation for the default domain after
11461         we have the entry assembly.
11462
11463         * domain.c: when unloading a domain, setup = NULL.
11464
11465 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
11466
11467         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
11468
11469 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
11470
11471         * object.h, object.c: introduced mono_object_get_virtual_method ()
11472         to lookup the method invoked on an object when a callvirt is done on
11473         a method.
11474         * icall.c: make MethodInfo::Invoke() always do a virtual call.
11475
11476 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11477
11478         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
11479         current domain when loaded an assembly and failed to load it.
11480
11481         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
11482
11483 2002-10-31  Dick Porter  <dick@ximian.com>
11484
11485         * icall.c: 
11486         * file-io.h: 
11487         * file-io.c: Return the error status in a parameter, as the
11488         GetLastError() value has long since been blown away if we try and
11489         look it up in a subsequent internal call invocation.  Delete the
11490         GetLastError() internal call, because it's useless.
11491
11492 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
11493
11494         * class.[ch]: added cast_class to fix bug 29517
11495
11496 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
11497
11498         * marshal.c: create valid IL code in the filter clause:
11499         the new JIT is less forgiving:-)
11500
11501 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11502
11503         * icall.c: removed get_property internal call.
11504
11505 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
11506
11507         * appdomain.h domain.c: Added an ID to appdomains.
11508         
11509         * threads.c threads.h icall.c: Implement icall
11510         Thread:GetDomainID(), and remove unused icall 
11511         CurrentThreadDomain_internal.
11512
11513 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11514
11515         * icall.c: Don't recurse through the base types in GetConstructor.
11516         Fixes bug #32063. 
11517
11518 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
11519
11520         * mempool.h, mempool.c: added mono_mempool_empty() and
11521         mono_mempool_stats().
11522
11523 2002-10-23  Dick Porter  <dick@ximian.com>
11524
11525         * file-io.c: 
11526         * file-io.h: 
11527         * icall.c: Added MonoIO.GetFileType internal call
11528
11529 2002-10-17  Dick Porter  <dick@ximian.com>
11530
11531         * appdomain.c (mono_runtime_cleanup): Don't signal the async
11532         delegate semaphore before waiting for all threads to finish,
11533         because new threads can also call async delegates.  Fixes bug
11534         32004.
11535
11536         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
11537         of 3 seconds, in case another async job is queued.  (This part is
11538         needed because the bug fix reintroduced the 3s exit lag.)  This
11539         makes the mono_runtime_shutdown flag superfluous.
11540
11541 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
11542
11543         * reflection.c: include ehader size in method section headers.
11544         Really check for suplicated modules entries.
11545
11546 2002-10-17  Martin Baulig  <martin@gnome.org>
11547
11548         * debug-mono-symfile.c: Added back support for locals.
11549
11550 2002-10-14  Martin Baulig  <martin@gnome.org>
11551
11552         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
11553         MONO_TYPE_VOID.
11554
11555 2002-10-14  Martin Baulig  <martin@gnome.org>
11556
11557         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
11558         mono_class_get() instead of looking in the class cache. 
11559
11560 2002-10-13  Martin Baulig  <martin@gnome.org>
11561
11562         * debug-mono-symfile.c: Set version number to 28, include the
11563         signature in method names.
11564
11565 2002-10-13  Martin Baulig  <martin@gnome.org>
11566
11567         * debug-mono-symfile.h: Set version number to 27.
11568
11569 2002-10-11  Martin Baulig  <martin@gnome.org>
11570
11571         * gc.c: Don't register/unregister NULL pointers as disappearing links.
11572
11573 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11574
11575         * metadata.c, metadata.h: added helper function to allocate signatures.
11576
11577 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11578
11579         * icall.c: added internal call to get the location of machine.config.
11580
11581 2002-10-08  Martin Baulig  <martin@gnome.org>
11582
11583         * debug-mono-symfile.c: Ignore classes with a pending init for the
11584         moment.
11585
11586 2002-10-03  Dick Porter  <dick@ximian.com>
11587
11588         * threads.c: Freebsd pthread_t is a pointer
11589
11590 2002-10-03  Dick Porter  <dick@ximian.com>
11591
11592         * socket-io.c: Implemented GetHostName_internal
11593
11594 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11595
11596         * mono-config.c:
11597         (mono_config_parse_file): don't leak the text.
11598
11599 2002-10-02  Martin Baulig  <martin@gnome.org>
11600
11601         * debug-mono-symfile.c: Added support for methods.
11602
11603 2002-10-01  Martin Baulig  <martin@gnome.org>
11604
11605         * debug-mono-symfile.c: Don't emit methods and line numbers for
11606         the dynamic symbol file, just write the type table.  We can easily
11607         have an external helper program which creates a symbol file for an
11608         IL file.        
11609
11610 2002-10-01  Dick Porter  <dick@ximian.com>
11611
11612         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
11613         Only add the handle to the cleanup array when we're about to
11614         launch the thread.  Bug 31425 deadlocked when the test was run on
11615         mono under w32.
11616
11617 2002-10-01  Martin Baulig  <martin@gnome.org>
11618
11619         * debug-mono-symfile.c: Added support for properties.
11620
11621 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
11622
11623         * reflection.c: unaligned store fix from Mark Crichton
11624         <crichton@gimp.org>.
11625
11626 2002-09-27  Martin Baulig  <martin@gnome.org>
11627
11628         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
11629         New interncall.
11630
11631 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
11632
11633         * assembly.h, assembly.c: use a sane API to hook into the assembly
11634         loading process instead of a useless special-purpouse hack
11635         (ngen needs a hook, too, for example).
11636
11637 2002-09-27  Dick Porter  <dick@ximian.com>
11638
11639         * threads.c (mono_thread_init): Call GetCurrentProcess() so
11640         io-layer can set up some process handle info.  Not needed on w32,
11641         but doesn't hurt either.
11642
11643         * process.c: Pass the program name in the second parameter to
11644         CreateProcess, so the path is searched.  Include the working
11645         directory. Implemented process name, process enumeration, and some
11646         process detail internal calls.
11647         
11648         * icall.c: Added internal calls for process lookup, and some
11649         process details
11650
11651 2002-09-26  Martin Baulig  <martin@gnome.org>
11652
11653         * assembly.c (mono_install_open_assembly_hook): New global
11654         function to install a function to be invoked each time a new
11655         assembly is loaded.
11656         (mono_assembly_open): Run this callback function if set.
11657
11658         * debug-mono-symfile.c: Put back line numbers for the dynamic
11659         symbol file and also record the .il file as source file.  This
11660         allows us to install the temporary symbol file as `file.dbg' just
11661         like a compiler-generated one.
11662
11663 2002-09-26  Nick Zigarovich <nick@chemlab.org>
11664
11665         * Corrected typo in gc.c (BOHEM vs BOEHM).
11666
11667 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11668
11669         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
11670         GetProperties. Also avoid calling g_slist_length in GetProperties and
11671         GetMethods.
11672
11673 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
11674
11675         * reflection.c: avoid unaligned stores (bug spotted by
11676         Mark Crichton  <crichton@gimp.org>).
11677
11678 2002-09-25  Martin Baulig  <martin@gnome.org>
11679
11680         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
11681         instead of guint64 for addresses and added prologue/epilogue info.
11682
11683 2002-09-25  Martin Baulig  <martin@gnome.org>
11684
11685         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
11686         store line number info.  For the dynamic symbol file, we only need
11687         to provide the JIT generated dynamic line number info for the dynamic
11688         symbol file.
11689
11690 2002-09-25  Martin Baulig  <martin@gnome.org>
11691
11692         * debug-mono-symfile.h: Incremented version number.
11693
11694 2002-09-24  Martin Baulig  <martin@gnome.org>
11695
11696         * class.c (mono_debugger_class_init_func): New global function
11697         pointer variable.
11698         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
11699         call it.
11700
11701         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
11702         function.  This is called via the mono_debugger_class_init_func
11703         hook to add all types to the dynamic type table.
11704         (ves_icall_MonoDebugger_GetType): New interncall to get a class
11705         from its metadata token.
11706
11707         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
11708         New interncall for the debugger.
11709
11710 2002-09-24  Nick Drochak <ndrochak@gol.com>
11711
11712         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
11713         before using it in case it is null.
11714         
11715 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
11716
11717         * metadata.c: allow custom modifiers in local var signatures
11718         (bug spotted by Zoltan Varga).
11719
11720 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
11721
11722         * class.c: deal with the <Module> class that may have a NULL vtable.
11723         Eliminate warnings.
11724
11725 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11726
11727         * image.c, image.h: more strong name helpers.
11728         * monosn.c: more work: convert pem keys to cryptoapi format.
11729
11730 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
11731
11732         * string-icalls.c: speedup IndexOf.
11733
11734 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11735
11736         * icall.c: updates from Zoltan.2.Varga@nokia.com.
11737
11738 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
11739
11740         * icall.c: cleanup: use mono_object_domain ().
11741
11742 2002-09-23  Martin Baulig  <martin@gnome.org>
11743
11744         * debug-mono-symfile.c: Improved type support.
11745
11746 2002-09-22  Martin Baulig  <martin@gnome.org>
11747
11748         * debug-mono-symfile.c: Added support for reference types and strings.
11749
11750 2002-09-22  Martin Baulig  <martin@gnome.org>
11751
11752         * debug-mono-symfile.c: Started to work on the type table.
11753
11754 2002-09-21  Martin Baulig  <martin@gnome.org>
11755
11756         * debug-mono-symfile.c: Largely reworked the symbol table format.
11757         The symbol table is now incrementally updated each time a new
11758         method is added.  We're now also using our own magic and version
11759         so that you don't need to recompile all your classes if the
11760         dynamic table changes.
11761         (mono_debug_update_mono_symbol_file): Removed.
11762         (mono_debug_symfile_add_method): New function to add a method.
11763
11764 2002-09-21  Martin Baulig  <martin@gnome.org>
11765
11766         * icall.c
11767         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
11768         New interncall.
11769
11770         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
11771         New interncall to get a method from its metadata token.
11772
11773 2002-09-21  Martin Baulig  <martin@gnome.org>
11774
11775         * debug-mono-symfile.c: Create type table.
11776
11777 2002-09-20  Martin Baulig  <martin@gnome.org>
11778
11779         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
11780
11781 2002-09-20  Martin Baulig  <martin@gnome.org>
11782
11783         * debug-mono-symfile.c: Provide information about params and locals.
11784
11785 2002-09-20  Martin Baulig  <martin@gnome.org>
11786
11787         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
11788         New interncall.
11789
11790         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
11791         interncall to get a method from its metadata token.
11792
11793 2002-09-20  Martin Baulig  <martin@gnome.org>
11794
11795         * debug-mono-symfile.c: Added a few checks for method->header
11796         being non-NULL.  This should never happen, but for the moment
11797         let's use a g_warning() rather than a g_assert().
11798
11799 2002-09-19  Mark Crichton  <crichton@gimp.org>
11800
11801         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
11802         even if support for it isn't present.  Added an #ifdef to fix this.
11803
11804         * socket-io.c: Added checks back for Solaris support.
11805
11806 2002-09-19  Martin Baulig  <martin@gnome.org>
11807
11808         * debug-mono-symfile.c (read_string, write_string): Reflect latest
11809         changes in the symbol file format.
11810
11811 2002-09-18  Martin Baulig  <martin@gnome.org>
11812
11813         * debug-mono-symfile.c: Set version number to 21.
11814
11815 2002-09-18  Dick Porter  <dick@ximian.com>
11816
11817         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
11818         on netbsd.  Fixes bug 30051.
11819
11820 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11821
11822         * reflection.c:
11823         (set_version_from_string): little fix.
11824
11825 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11826
11827         * monosn.c, Makefile.am: added strong name utility.
11828         * reflection.h, reflection.c: implemented delayed signing,
11829         locale, version and hash id assembly attributes.
11830
11831 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
11832
11833         * loader.c, metadata.c: load param attributes in signatures.
11834
11835 2002-09-16  Martin Baulig  <martin@gnome.org>
11836
11837         * debug-mono-symfile.c: Added string table with all method names.
11838
11839 2002-09-14  Martin Baulig  <martin@gnome.org>
11840
11841         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
11842         fast method lookup.
11843
11844 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11845
11846         * reflection.c: record the public key token of referenced assemblies.
11847
11848 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
11849
11850         * image.c, image.h: added functions to get the strong name and the
11851         public key of an assembly.
11852         * pedump.c: use them.
11853
11854 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
11855
11856         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
11857
11858 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
11859
11860         * marshal.c (mono_marshal_get_managed_wrapper): Added
11861         MONO_TYPE_BOOLEAN 
11862
11863 2002-09-11  Martin Baulig  <martin@gnome.org>
11864
11865         * gc.c: Call GC_unregister_disappearing_link() on all links when
11866         finalizing them, this is necessary to aviod a crash in boehm's
11867         finalize handler.
11868
11869 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
11870
11871         * gc.c: handle GetTarget for finalized objects spotted and fixed by
11872         nick@chemlab.org.
11873
11874 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
11875
11876         * icall.c: implemented MonoType::Module.
11877         * reflection.c, reflection.h: mono_module_get_object () from
11878         Tomi Pakarinen <tomi.pakarinen@welho.com>.
11879
11880 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
11881
11882         * icall.c: ignore overridden methods in GetMethods ().
11883         Fix for FieldInfo::SetValue().
11884         * object.c: handle float/double in runtime invoke.
11885
11886 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
11887
11888         * object.c: allow a constructor to be called again on an object.
11889
11890 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11891
11892         * class.h, class.c: move field layout code to it's own function and
11893         export it. Get an interface id earlier. Move fields in MonoClass
11894         so they are more cache friendly and align the bitfields.
11895         * loader.c: temporary handle get_param_names() for a runtime method.
11896         * reflection.c, reflection.h: more code to handle runtime creation of
11897         types.
11898
11899 2002-09-09  Martin Baulig  <martin@gnome.org>
11900
11901         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
11902         signature with the pinvoke field being set for the actual call.
11903
11904 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
11905
11906         * icall.c: removed some unused icalls. Start of map of glib charsets
11907         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
11908
11909 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
11910
11911         * debug-helpers.c: break infinite loop (found and fixed by
11912         Holger Arnold <harnold@gmx.de>).
11913
11914 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
11915
11916         * icall.c: target may be null in create_delegate.
11917
11918 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
11919
11920         * marshal.c: handle a boolean return type.
11921
11922 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
11923
11924         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
11925
11926 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
11927
11928         * gc.c: fix weakreferences.
11929
11930 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
11931
11932         * icall.c: added icall to get default codepage.
11933
11934 2002-09-03  Dick Porter  <dick@ximian.com>
11935
11936         * threads.h: 
11937         * threads.c: Use MonoThread instead of MonoObject where
11938         apropriate.
11939
11940         Store running thread objects in a hash table, so that we have all
11941         the info to hand when waiting for them to finish
11942         (means we don't need OpenThread() any more, so mingw builds should
11943         be fully functional again.)
11944
11945         * verify.c:
11946         * object.h: Added thread ID to MonoThread
11947
11948 2002-09-03  Martin Baulig  <martin@gnome.org>
11949
11950         * icall.c (System.Reflection.Assembly::get_location): New interncall.
11951
11952 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11953
11954         * icall.c: fixed leak in get_temp_path. Thanks lupus.
11955
11956 2002-09-03  Martin Baulig  <martin@gnome.org>
11957
11958         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
11959         argument to store the end address of the disassembled instruction.
11960
11961         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
11962         here from debug-symfile.h.
11963         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
11964         JIT into this struct.
11965         (MonoSymbolFile): Added `char *image_file' field.
11966         (MonoDebugGetMethodFunc): Removed.
11967         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
11968         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
11969         (mono_debug_find_method): New method.
11970
11971         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
11972         create a full symbol file.
11973         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
11974         and static symbol files.
11975         (mono_debug_find_method): The symbol file keeps an internal method hash,
11976         call this to get a MonoDebugMethodInfo from a MonoMethod.
11977
11978         * debug-symfile.[ch]: Removed.
11979
11980 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
11981
11982         * image.c (do_mono_image_open): Remove linker version check.
11983
11984 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
11985
11986         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
11987         wrappers for instance methods.
11988         
11989 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11990
11991         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
11992
11993 2002-08-28  Dick Porter  <dick@ximian.com>
11994
11995         * Makefile.am: Export HOST_CC for w32 builds
11996
11997 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
11998
11999         * file-io.c process.c: MonoString are null terminated, no
12000         need for mono_string_to_utf16() anymore.
12001
12002 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12003
12004         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
12005
12006 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
12007
12008         * icall.c, reflection.h: speedup System.MonoType.
12009
12010 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
12011
12012         * reflection.c: allow null as the value of a string argument in
12013         custom attributes constructors.
12014
12015 2002-08-27  Martin Baulig  <martin@gnome.org>
12016
12017         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
12018         `trampoline_address' field.
12019
12020 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
12021
12022         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
12023         check (fixes bug #29486) 
12024
12025 2002-08-27  Martin Baulig  <martin@gnome.org>
12026
12027         * debug-mono-symfile.c: Changed the file format in a way that allows us
12028         open it read-only and to use a specially malloced area for all the
12029         dynamic data.  We can now also generate a symbol file on-the-fly if we're
12030         debugging IL code and there is no MCS generated symbol file for it.
12031
12032 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12033
12034         * object.c: added a define for a good string and array
12035         creation speedup (not enabled by default because we need to deal with
12036         the synch stuff).
12037
12038 2002-08-26  Martin Baulig  <martin@gnome.org>
12039
12040         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
12041         function to create a dynamic symbol file.  This is used by the
12042         debugger to create a symbol file for IL code on-the-fly.
12043
12044 2002-08-26  Martin Baulig  <martin@gnome.org>
12045
12046         * loader.c (mono_lookup_pinvoke_call): Include the error message
12047         from g_module_error() in the error message.
12048
12049 2002-08-24  Martin Baulig  <martin@gnome.org>
12050
12051         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
12052         function to update the symbol file.  The symbol file is mmap()ed
12053         writable, but private.  This allows us to install the symbol file
12054         together with the assembly.
12055
12056 2002-08-24  Martin Baulig  <martin@gnome.org>
12057
12058         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
12059         but they can read the new symbol file format which mcs is now creating.
12060
12061         * debug-symfile.c (mono_debug_find_source_location): Moved to
12062         debug-mono-symfile.c; this is now operating on the new symbol file.
12063
12064 2002-08-23  Martin Baulig  <martin@gnome.org>
12065
12066         * debug-helpers.c (mono_method_desc_from_method): New function to get
12067         a MonoMethodDesc from a MonoMethod.
12068
12069 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
12070
12071         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
12072         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
12073
12074 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
12075
12076         * string-icalls.[ch]: make helper methods static.
12077
12078 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12079
12080         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
12081         types to it and to SetValueInternal.
12082
12083         * object.c: Moved handle_enum label to its proper place. This was the
12084         f... bug! ;-)
12085
12086         This time i compiled mcs and gtk-sharp and they both work.
12087
12088 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12089
12090         * icall.c: reverted partially my previous patch until 
12091         object.c:set_value handles enums correcly.
12092
12093 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12094
12095         * icall.c:
12096         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
12097         (ves_icall_System_Environment_get_MachineName): removed warning when
12098         compiling under cygwin.
12099
12100 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12101
12102         * object.c: fixed field_get_value() for reference types.
12103
12104 2002-08-22  Dick Porter  <dick@ximian.com>
12105
12106         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
12107         Don't free a buffer while it's still needed.  Patch from Jonathan
12108         Liger <Jonathan.liger@wanadoo.fr>
12109
12110 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
12111
12112         * icall.c (ves_icall_System_Environment_get_Platform): Add new
12113         internal call.
12114
12115 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
12116
12117         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
12118         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
12119
12120         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
12121         we call unmanaged code which throws exceptions.
12122
12123 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12124
12125         * appdomain.h: added per-domain entry_assembly.
12126         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
12127         arguments.
12128         * icall.c: Assembly::GetEntryAssembly icall.
12129         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
12130         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
12131
12132 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
12133
12134         * appdomain.h, gc.c: added mono_domain_finalize ().
12135
12136 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12137
12138         * object.c:
12139         (mono_print_unhandled_exception): changed g_warning by g_printerr
12140         because g_log has a 1024 characters limit (yeah, i got a big stack
12141         trace). Don't print exception name, that should be in ToString 
12142         returned string.
12143
12144 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12145
12146         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
12147         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
12148
12149 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12150
12151         * object.c:
12152         (mono_print_unhandled_exception): after previous commit, i realized
12153         that MS calls ToString on the exception. I changed this function to
12154         do that. This way we get stack_trace for free.
12155
12156 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12157
12158         * object.c:
12159         (mono_print_unhandled_exception): invoke Message property instead of
12160         getting 'message' field from Exception. Don't allocate memory for
12161         'trace' and 'message' if not needed.
12162
12163 2002-08-18  Dick Porter  <dick@ximian.com>
12164
12165         * unicode.c: Fix asserts to match Encoder.cs checks
12166
12167 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12168
12169         * marshal.c: fix unaligned store issue and a few wrong
12170         opcode argument types.
12171
12172 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12173
12174         * icall.c: added GetUninitializedObjectInternal internal call.
12175
12176 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
12177
12178         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
12179         to the right domain.
12180
12181 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
12182
12183         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
12184
12185         * class.c (class_compute_field_layout): set blittable to false for Strings
12186
12187         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
12188
12189 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12190
12191         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
12192         first chunk of code to create types at runtime. Code to
12193         handle ReflectedType/DeclaringType. Make reflection handles
12194         domain specific.
12195
12196 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
12197
12198         * class.c: set correct name in arrays.
12199
12200 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
12201
12202         * appdomain.c (mono_domain_transfer_object): make it work with
12203         valuetypes. bug fixes.
12204
12205 2002-08-12  Dick Porter  <dick@ximian.com>
12206
12207         * object.h: Rename some parameters to avoid c++ keywords (Patch
12208         from Joseph Wenninger <kde@jowenn.at>)
12209
12210 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
12211
12212         * icall.c: added icall to implement Assembly.GetFile*.
12213
12214 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
12215
12216         * reflection.h, reflection.c: code to embed managed resources.
12217
12218 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
12219
12220         * class.c: move all the type size stuff into
12221         class_compute_field_layout().
12222
12223 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
12224
12225         * class.c: ensure enums have always the correct instance size.
12226         * unicode.c: remove wrong assert.
12227
12228 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
12229
12230         * assembly.c: fix mem corruption issue.
12231         * image.h, image.c: added mono_image_get_resource () to access
12232         managed resources.
12233         * icall.c: implemented Assembly.EntryPoint property and some
12234         Managed Resources related internalcalls.
12235
12236
12237 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
12238
12239         * image.c, image.h: impemented mono_image_get_entry_point ().
12240         * appdomain.c: use mono_image_get_entry_point.
12241
12242 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
12243
12244         * reflection.c: support the object type argument when loading
12245         custom attributes.
12246
12247 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
12248
12249         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
12250         String as return type.
12251
12252 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
12253
12254         * reflection.c: fix encoding of named args for custom attrs to match
12255         the ms implementation. Read them back when instantiating custom
12256         attributes.
12257
12258 2002-08-02  Radek Doulik  <rodo@ximian.com>
12259
12260         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
12261         by Dietmar as quick fix
12262         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
12263         16 as stack size, used on more places as quick fix before Dietmar
12264         will fix it properly
12265
12266 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
12267
12268         * object.h, object.c: added accessors for fields and properties.
12269
12270 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
12271
12272         * class.c, class.h: made mono_class_get_field_from_name ()
12273         loop on parent types.
12274         Added mono_class_get_property_from_name ().
12275
12276 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12277
12278         * class.c, class.h: move the code to setup the type vtable in its own
12279         function so that it can be reused also for types created at runtime.
12280         Eliminate the "class" identifier from the header file.
12281         * reflection.c: setup the vtable for enums so that we can create
12282         objects for use in SetConstant ().
12283
12284 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
12285
12286         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
12287         instead of the delegate itself as this pointer (bug #28383)
12288
12289 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
12290
12291         * marshal.c (mono_marshal_get_managed_wrapper): added return type
12292         conversions.
12293
12294 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12295
12296         * loader.c: don't set the pinvoke bit on icalls.
12297
12298 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
12299
12300         * debug-helpers.c (mono_method_full_name): only print a number to
12301         indicate wrapper type (so that the output is more readable in traces).
12302
12303 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
12304
12305         * class.c (mono_class_init): include method override patch from Paolo
12306
12307 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
12308
12309         * icall.c: fixed GetTypeCode().
12310
12311 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
12312
12313         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
12314         use real delegate invoke function to make it work with multicast
12315         delegates (fix bug# 28291).
12316
12317 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12318
12319         * object.c: load constant strings.
12320
12321 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12322
12323         * reflection.c: no magic numbers.
12324         * tabledefs.h: security action enum.
12325
12326 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12327
12328         * assembly.c: fix possible memory corruption.
12329
12330 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12331
12332         * reflection.h, reflection.c: added support for linking resources.
12333         * verify.c: check we have an updated corlib.
12334
12335 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
12336
12337         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
12338         string arrays.
12339         (mono_marshal_string_array): null terminate unmanaged string arrays.
12340         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
12341
12342 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12343
12344         * icall.c: Type.GetType () can now return also types from the
12345         calling assembly.
12346
12347 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
12348
12349         * loader.h, loader.c: stack walking support.
12350         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
12351         GetCallingAssembly.
12352
12353 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
12354
12355         * marshal.c: added optimisations for blittable types 
12356
12357         * class.c (mono_array_class_get): do not set blittable attribute on arrays
12358         (mono_class_setup_mono_type): set blittable attribute for single
12359         and double.
12360
12361         * marshal.c (mono_string_utf8_to_builder): impl.
12362         (mono_string_builder_to_utf8): impl.
12363         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
12364
12365 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
12366
12367         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
12368         (mono_marshal_get_managed_wrapper): impl. byref types
12369
12370 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12371
12372         * icall.c:
12373         (search_method): don't display debug message. 
12374
12375 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
12376
12377         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
12378
12379 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
12380
12381         * appdomain.c: set the missing filename when throwing exception.
12382
12383 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
12384
12385         * metadata.c (mono_type_size): code cleanup
12386         (mono_type_stack_size): removed some test code
12387
12388 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
12389
12390         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
12391         mono_get_exception_file_not_found now.
12392
12393         * exception.c (mono_exception_from_name_two_strings): New version
12394         that will call a constructor with two string arguments. 
12395         (mono_get_exception_file_not_found): New helper routine, used to
12396         report file-not-found errors.
12397
12398 2002-07-20  Dick Porter  <dick@ximian.com>
12399
12400         * process.h:
12401         * process.c: Pass file handles to CreateProcess
12402         
12403         * icall.c:
12404         * file-io.h:
12405         * file-io.c: Implemented CreatePipe
12406
12407 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
12408
12409         * metadata.c (mono_get_param_info): set alignment for value types
12410
12411 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
12412
12413         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
12414         Constify mono_domain_assembly_open().
12415         * loader.c: handle null namespace in icalls.
12416
12417 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
12418
12419         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
12420         (emit_str_to_ptr_conv): marshal object as structs
12421
12422         * metadata.c (mono_type_to_unmanaged): marshal object as structs
12423
12424         * marshal.c (mono_marshal_get_runtime_invoke): support value types
12425
12426 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
12427
12428         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
12429         (mono_marshal_get_native_wrapper): we an now return value types
12430
12431 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12432
12433         * verify.c: more checks implemented.
12434
12435 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
12436
12437         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
12438         (fix bug #27695)
12439         (mono_marshal_get_native_wrapper): allow byref arguments
12440         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
12441         impl. PtrToStringXXX methods
12442         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
12443         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
12444         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
12445         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
12446         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
12447
12448 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12449
12450         * reflection.c: fix buglet in parsing an assembly name.
12451
12452 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
12453
12454         * marshal.c (emit_ptr_to_str_conv): first impl.
12455
12456 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
12457
12458         * object.c, class.h: cache the vtable in the class as suggested by
12459         vargaz@freemail.hu (Zoltan Varga).
12460
12461 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12462
12463         * class.h, loader.c: added mono_field_from_token().
12464         * verify.c: first cut of type checking code.
12465
12466 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
12467
12468         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
12469
12470 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
12471
12472         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
12473         (fix bug #27782)
12474         (mono_marshal_get_remoting_invoke): impl.
12475         (mono_delegate_begin_invoke): impl.
12476         (mono_mb_emit_save_args): impl.
12477         (mono_delegate_end_invoke): impl.
12478         (mono_marshal_get_delegate_begin_invoke):
12479         (mono_marshal_get_delegate_end_invoke):
12480         (mono_marshal_get_delegate_invoke): generate a special name for
12481         those methods (including the signature) and associate them whith
12482         the delegate class. 
12483
12484 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
12485
12486         * reflection.[ch]: 
12487         (mono_reflection_type_from_name): now it has a MonoImage parameter
12488         which is used as the default image to search the type in. If the image
12489         is NULL or getting the type from it fails, it defaults to corlib.
12490
12491         * icall.c: changed 1 call to mono_reflection_type_from_name to match
12492         new parameter.
12493
12494 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12495
12496         * reflection.c: update the parameter table index.
12497
12498 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12499
12500         * domain.c: don't include the mark byte in the string hash.
12501
12502 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12503
12504         * icall.cs: icall for Type.GetTypeCode ().
12505         * verify: a couple of fixes and disabled local initialization checks.
12506
12507 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
12508
12509         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
12510
12511         * debug-helpers.c (mono_method_full_name): print the type of the
12512         runtime wrapper
12513
12514         * metadata.c (mono_signature_hash): a hash function for signatures
12515         (mono_signature_hash): better hash algorithm
12516
12517         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
12518
12519         * debug-helpers.c (mono_method_full_name): this can now generate
12520         method names with signatures
12521
12522         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
12523         method dont have this pointers.
12524
12525 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
12526
12527         * reflection.c: fixup typebuilder tokens.
12528         * image.c: fix buglet.
12529         * marshal.h: remove whitespace.
12530         * metadata.h, metadata.c: reinstate code that was removed.
12531         * verify.c: handle catch directives and fix another couple of bugs.
12532
12533 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
12534
12535         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
12536         (mono_marshal_get_native_wrapper): make it comp. with the old code
12537         (mono_marshal_get_native_wrapper): support boolean
12538         (mono_marshal_get_managed_wrapper): support more types
12539
12540 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
12541
12542         * class.c (class_compute_field_layout): compute class->blittable attribute.
12543
12544 2002-07-09  Dick Porter  <dick@ximian.com>
12545
12546         * threads.c: Make the thread cleaning up cope with threads that
12547         call ExitThread()
12548
12549 2002-07-08  Radek Doulik  <rodo@ximian.com>
12550
12551         * reflection.c (method_encode_code): use non-translated values to
12552         compute finally_start, this fixes exception handling on ppc, yay!
12553
12554         * decimal.h (struct signscale): fix endianess
12555
12556 2002-07-07  Radek Doulik  <rodo@ximian.com>
12557
12558         * reflection.c: swap box_val and not val
12559
12560 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
12561
12562         * reflection.c, reflection.h: handle full assembly info in type name.
12563         Handle Type arguments when loading custom attributes.
12564         * icall.c: updated to use new mono_reflection_type_from_name () method.
12565
12566 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12567
12568         * loader.c:
12569         (method_from_memberref): also print assembly name when method not found.
12570
12571 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12572
12573         * icall.c:
12574         (ves_icall_TypeGetProperties): fixed bug #27473. 
12575
12576 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12577
12578         * reflection.c: display image name and token when cannot find the
12579         .ctor for an attribute.
12580
12581 2002-07-05  Martin Baulig  <martin@gnome.org>
12582
12583         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
12584
12585 2002-07-04  Dick Porter  <dick@ximian.com>
12586
12587         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
12588         compile on mingw.  This will cause mingw builds to not wait for
12589         subthreads to terminate after the main thread does.  I've lodged a
12590         bug with the mingw developers for them to wrap OpenThread().
12591
12592 2002-07-03  Dick Porter  <dick@ximian.com>
12593
12594         * threads.c: Store thread IDs instead of handles, because
12595         GetCurrentThread() returns a pseudohandle and therefore stores
12596         useless values.  mono_thread_cleanup() continues checking the
12597         array of threads until it is empty, to cope with subthreads
12598         spawning new threads after the main thread has finished.
12599
12600         * profiler.h:
12601         * profiler.c:
12602         * profiler-private.h: Pass the thread ID to thread profiler
12603         functions, instead of a handle
12604
12605 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
12606
12607         * verify.c: fixes to make it more usable.
12608         * pedump.c: added --verify code to verify IL code in an assembly.
12609
12610 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12611
12612         * reflection.c: turn errors into warnings to allow compiling corlib.
12613
12614 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
12615
12616         * reflection.c: add special cases to compile corlib.
12617
12618 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12619
12620         * reflection.c: handle properties with only a set method.
12621
12622 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
12623
12624         * opcodes.h: add enum with opcodes in opval order.
12625
12626 2002-07-01  Dick Porter  <dick@ximian.com>
12627         
12628         * object.h:
12629         * object.c (mono_runtime_run_main): Removed unneeded argument
12630
12631 2002-06-28  Martin Baulig  <martin@gnome.org>
12632
12633         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
12634
12635 2002-06-27  Dick Porter  <dick@ximian.com>
12636
12637         * threads.c: Store the handle in both the parent thread and in the
12638         subthread, to minimise the time between starting a new thread and
12639         storing its ID.
12640
12641 2002-06-26  Dick Porter  <dick@ximian.com>
12642
12643         * appdomain.c (mono_runtime_cleanup): Close the socket library
12644         after all the threads have finished, not before
12645
12646 2002-06-26  Martin Baulig  <martin@gnome.org>
12647
12648         * debug-symfile.c (mono_debug_find_source_location): Added
12649         `guint32 *line_number' argument.  If it's not NULL, store the line number
12650         there and return the file name without the line number.
12651
12652 2002-06-25  Dick Porter  <dick@ximian.com>
12653
12654         * icall.c:
12655         * process.h:
12656         * process.c: Process forking and other support functions
12657
12658 2002-06-25  Dick Porter  <dick@ximian.com>
12659
12660         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
12661         things dont happen when the image is closed.
12662         (mono_image_lookup_resource): Walk the resource section looking
12663         for a particular entry
12664
12665         * cil-coff.h: PE resource section decoding
12666
12667 2002-06-25  Dick Porter  <dick@ximian.com>
12668         
12669         * assembly.h:
12670         * assembly.c: 
12671         (mono_assembly_foreach): Accessor functions to walk the list of
12672         loaded assemblies
12673         (mono_assembly_set_main):
12674         (mono_assembly_get_main): Process methods need to know which
12675         assembly is the "main" one
12676
12677         * object.c (mono_runtime_run_main): Record the main assembly
12678
12679         * debug-helpers.c: Fix typo
12680
12681 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
12682
12683         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
12684         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
12685
12686 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12687
12688         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
12689
12690 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
12691
12692         * image.c (do_mono_image_open): Initialize reference count,
12693         otherwise we leak the MonoImage.
12694
12695 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12696
12697         * reflection.c: small tweak to handle self-hosting.
12698
12699 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
12700
12701         * reflection.c: fix type name parse code.
12702
12703 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12704
12705         * reflection.c: break out of the loop.
12706         * image.c: special case corlib.
12707
12708 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12709
12710         * reflection.c: add all the custom attrs at the end to ensure the
12711         ctors have been properly initialized when the attributes are defined
12712         in the current assembly.
12713
12714 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12715
12716         * reflection.c: handle correctly multiple-nested types.
12717
12718 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
12719
12720         * row-indexes.h: fix typos.
12721         * reflection.c: adjust for typos and fix method_def_or_ref
12722         encoding in MethodImpl table.
12723
12724 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12725
12726         * reflection.c: fix entry point patching (thanks Serge!).
12727
12728 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
12729
12730         * verify.c: add check for System.Exception
12731
12732 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
12733
12734         * image.c, class.c: minifix for code just c&p'ed.
12735         * reflection.c: warning fix.
12736         * object.h, loader.h, domain.c: load also StringBuilder.
12737
12738 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
12739
12740         * marshal.h, marshal.c: some support code to handle complex marshaling.
12741
12742 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12743
12744         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
12745         Better signatures with vtable error dump.
12746
12747 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
12748
12749         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
12750
12751 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
12752
12753         * icall.c (ves_icall_Type_GetField): impl.
12754
12755 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12756
12757         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
12758         to retrieve a marshal description blob for a field or param.
12759
12760 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
12761
12762         * reflection.h, reflection.c: change order of nested type emission
12763         to avoid table corruption. The NestedTypes table is sorted.
12764         * icall.c: change order of GetConstructor results to workaround mcs bug.
12765
12766 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
12767
12768         * reflection.h, reflection.c: handle field and param marshal
12769         information.
12770
12771 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
12772
12773         * icall.c, marshal.c marshal.h: more Marshal class implementation.
12774
12775 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12776
12777         * reflection.c: fix call convention.
12778
12779 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12780
12781         * reflection.h, reflection.c: mono_image_get_memberref_token()
12782         takes a type instead of a class, now. Added
12783         mono_image_get_array_token() to create tokens for the special
12784         multi-dim array methods.
12785
12786 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
12787
12788         * assembly.c: handle modules (no assembly table). Split
12789         loading references in its own function.
12790         * class.c: handle moduleref resolution scope.
12791         * image.c, image.h: cache module name in image.
12792
12793 2002-06-07  Martin Baulig  <martin@gnome.org>
12794
12795         * reflection.c (mono_image_get_type_info): Only add a class layout entry
12796         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
12797
12798 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12799
12800         * icall.c: more signature fixes that used uint instead of int.
12801
12802 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12803
12804         * reflection.c: fixed signature of field refs.
12805
12806 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
12807
12808         * class.c, reflection.c: handle typerefs of nested types
12809         (both on read and when writing files).
12810
12811 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
12812
12813         * icall.c: fix method signatures that tried to workaround the previous
12814         typo, d'oh!
12815
12816 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
12817
12818         * debug-helpers.c: fix typo.
12819
12820 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
12821
12822         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
12823         rewrote the PE/COFF writing code (our programs are understood by the
12824         ms runtime, now).
12825
12826 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
12827
12828         * gc.c, gc.h, icall.c: weakreference support.
12829
12830 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
12831
12832         * Makefile.am, mono-config.c: use $(sysconfdir).
12833
12834 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
12835
12836         * icall.c: changed default precision of Double.ToString() to 15.
12837         Fixed memory leak. Unified with Single.ToString.
12838
12839 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
12840
12841         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
12842
12843 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
12844
12845         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
12846         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
12847         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
12848         and myself.
12849
12850 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12851
12852         * debug-symfile.c, sysmath.c: yet more compilation fixes.
12853
12854 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
12855
12856         * reflection.c, socket-io.c: more compilation fixes.
12857
12858 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12859
12860         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
12861         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
12862         unicode.c: warning and compiler compatibility fixes.
12863
12864 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12865
12866         * class.h, metadata.c: fixed warnings/compilation errors.
12867
12868 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
12869
12870         * Makefile.am, mono-config.c, mono-config.h: configuration file
12871         support routines.
12872         * loader.c, loader.h: make Dll mapping configurable at runtime in the
12873         config file. Export methods to insert and lookup mappings.
12874
12875 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
12876
12877         * reflection.c: handle types and boxed objects in custom attr
12878         constructors.
12879
12880 2002-05-30  Martin Baulig  <martin@gnome.org>
12881
12882         * debug-symfile.c
12883         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
12884
12885 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
12886
12887         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
12888         to lookup the implmap row for a P/Invoke method.
12889         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
12890         P/Invoke method from the runtime on an as needed basis.
12891
12892 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
12893
12894         * metadata.c (mono_metadata_parse_signature): impl.
12895
12896 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
12897
12898         * class.c: handle .pack directive.
12899
12900 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
12901
12902         * object.c: initialize static fields with RVA data.
12903
12904 2002-05-25  Martin Baulig  <martin@gnome.org>
12905
12906         * debug-symfile.c
12907         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
12908
12909 2002-05-24  Martin Baulig  <martin@gnome.org>
12910
12911         * debug-symfile.c
12912         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
12913         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
12914         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
12915
12916 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
12917
12918         * object.c: special case string ctros in invoke.
12919         * gc.c: silly whitespace changes.
12920
12921 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
12922
12923         * threadpool.[ch]: impl. a threadpool that can
12924         be used by mint and mono.
12925
12926 2002-05-22  Martin Baulig  <martin@gnome.org>
12927
12928         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
12929         The first argument is now a `MonoReflectionModuleBuilder *', the return
12930         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
12931         `methods' field to get the method builder.  The `token' argument is the
12932         unfixed token.
12933
12934         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
12935         invalid characters instead of g_assert_not_reached()ing.  This seems
12936         to be the behaviour of mscorlib.
12937
12938 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
12939
12940         * object.c (mono_runtime_invoke_array): applied patch from Rachel
12941         Hestilow to fix bug #25104
12942
12943 2002-05-21  Martin Baulig  <martin@gnome.org>
12944
12945         * debug-symfile.c (mono_debug_find_source_location): New function.
12946         Looks up an IL offset in the line number table and returns the source
12947         location as a string.
12948
12949 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12950
12951         * icall.c:
12952         (mono_double_ToStringImpl): changed %f by %g until we have something
12953         better.
12954
12955 2002-05-21  Nick Drochak  <ndrochak@gol.com>
12956
12957         * icall.c : Use different name for Math.Pow's icall.  Needed to check
12958         parameters first in C#.
12959
12960 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
12961
12962         * icall.c, reflection.h: added icall to get info about an event.
12963
12964 2002-05-20  Radek Doulik  <rodo@ximian.com>
12965
12966         * object.c (mono_value_box): don't use memcpy for boxing on BIG
12967         endian
12968         (mono_value_box): don't use memcpy for small sizes on
12969         architectures with unaligned access
12970
12971 2002-05-20  Martin Baulig  <martin@gnome.org>
12972
12973         * reflection.c (mono_reflection_setup_internal_class): Don't crash
12974         if `tb->parent == NULL'.
12975         (mono_reflection_create_internal_class): New function.  This is
12976         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
12977         for enum types.
12978
12979         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
12980         New interncall.
12981
12982 2002-05-19  Martin Baulig  <martin@gnome.org>
12983
12984         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
12985         argument to get the length, don't default to the array length.
12986
12987 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
12988
12989         * assembly.c (mono_assembly_setrootdir): New function used to
12990         override the MONO_ASSEMBLIES directory.
12991
12992 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
12993
12994         * icall.c: ValueType_GetHashCode() initialize local var.
12995
12996 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
12997
12998         * reflection.c: sort custom attributes table.
12999
13000 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
13001
13002         * reflection.c: support named args in custom attributes (write support).
13003
13004 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
13005
13006         * reflection.c: fix finally position calculation.
13007
13008 2002-05-15  Radek Doulik  <rodo@ximian.com>
13009
13010         * reflection.c: fixed endianess at many places
13011
13012         * icall.c (ves_icall_InitializeArray): comment out debug msg
13013
13014 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
13015
13016         * object.c (mono_unhandled_exception): new function to handle
13017         unhandled exceptions.
13018         (mono_unhandled_exception): call the UnhandledException event.
13019         (mono_runtime_delegate_invoke): impl.
13020
13021 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
13022
13023         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
13024         returns the RVA, not the direct pointer to the data. Handle the case
13025         when the class size is fixed.
13026
13027 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
13028
13029         * reflection.c: fix some endianess issues.
13030
13031 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
13032
13033         * object.c (mono_runtime_invoke): is now able to catch exceptions.
13034
13035         * threads.c (mono_thread_init): added a callback which is invoked
13036         at thread start.
13037
13038 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
13039         
13040         * icall.c: make GetHashCode return non-negative values.
13041
13042 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
13043
13044         * object.c, icall.c, gc.c: revert to address-based hashcode.
13045
13046 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
13047
13048         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
13049
13050 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13051
13052         * icall.c, class.c: special case <Module>.
13053
13054 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
13055
13056         * icall.c: fix bug in GetNow().
13057
13058 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
13059
13060         * object.c (mono_runtime_class_init): make sure that we call all
13061         static class constructors.
13062
13063 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
13064
13065         * reflection.c: sort methodsemantics table.
13066
13067 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
13068
13069         * reflection.h, reflection.c: honour init locals setting.
13070
13071 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
13072
13073         * icall.c: copied Double ToStringImpl for Single ToStringImpl
13074
13075 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
13076
13077         * reflection.c: support ContructorBuilders in attribute blob creation.
13078
13079 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13080
13081         * reflection.c: some changes to build a binary that can be run
13082         directly in windows.
13083
13084 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
13085
13086         * loader.c: print a big message when an icall can't be found.
13087
13088 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13089
13090         * string-icalls.c: fix bug 24248.
13091
13092 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
13093
13094         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
13095         icall.c, reflection.h: separate assembly loading by pathname and by
13096         assembly name. Use the MONO_PATH env var to search for assemblies.
13097
13098 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13099
13100         * assembly.c, image.h: add some support for assemblies
13101         with multiple modules.
13102         * class.c, class.h: export mono_class_from_typeref().
13103         * loader.c: remove duplicated code and use mono_class_from_typeref(),
13104         instead.
13105
13106 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13107
13108         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
13109         documentation says (the ECMA one is correct).
13110
13111 2002-05-02  Dick Porter  <dick@ximian.com>
13112
13113         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
13114         Don't name the synchronisation mutex.
13115
13116 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
13117
13118         * rand.c
13119         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
13120         Make the prototypes match.
13121         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
13122         Same.
13123
13124         * icall.c
13125         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
13126         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
13127         all systems have tm.tm_zone, so use strftime() with %Z to print
13128         the timezone abreviation into a temp string.
13129
13130         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
13131         rather than mono_array_addr() on a MonoString on Big Endian
13132         machines.
13133
13134 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
13135
13136         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
13137         fix bug 24041
13138
13139 2002-04-30  Dick Porter  <dick@ximian.com>
13140
13141         * socket-io.c: Cope with SOCKET being an integer rather than a
13142         pointer now.
13143
13144         * threads.c: Added Thread_free_internal, to deal with thread
13145         handle cleanup.  Moved calls to handle_store() and handle_remove()
13146         to start_wrapper(), so each can only be called once.  Allocate
13147         synchronisation blocks with GC_malloc(), and use GC finalisation
13148         to close the handles.
13149
13150         * icall.c: added System.Threading.Thread::Thread_free_internal
13151
13152 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13153
13154         * icall.c: support Environment.Exit, CommandLineArgs().
13155
13156 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
13157
13158         * object.c, object.h: added mono_runtime_run_main () and
13159         mono_runtime_get_main_args () for use in System.Environment.
13160
13161 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
13162
13163         * gc.c: fix thinko, enable actual finalization since the jit is now
13164         fixed.
13165
13166 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13167
13168         * gc.c, object.c: take into account that an object may be offset wrt the address
13169         returned by GC_malloc().
13170
13171 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
13172
13173         * image.c: handle files without entries in the assembly table (modules).
13174
13175 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
13176
13177         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
13178         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
13179         allowed to be null when it's System.Object class setup.
13180
13181 2002-04-27  Martin Baulig  <martin@gnome.org>
13182
13183         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
13184         if `tb->parent == NULL' rather than crashing.
13185
13186 2002-04-28  Nick Drochak  <ndrochak@gol.com>
13187
13188         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
13189         calling acos() where asin() should have been called.
13190
13191 2002-04-26  Martin Baulig  <martin@gnome.org>
13192
13193         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
13194         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
13195         there's a subdirectory called `System', but we don't want to read that
13196         subdirectory as an assembly.
13197
13198 2002-04-25  Martin Baulig  <martin@gnome.org>
13199
13200         * debug-symfile.c: Reflect latest MonoString changes.
13201
13202 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
13203
13204         * rand.c, rand.h: instance method icalls need to have an explicit
13205         this pointer as first argument in the C implementation.
13206
13207 2002-04-25  Nick Drochak <ndrochak@gol.com>
13208
13209         * icall.c: Fix typo in map for GetNonZeroBytes
13210
13211 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
13212
13213         * string-icalls.c : String does now passes unit tests without any 
13214         errors, the following changes has been made:
13215         
13216         Implemented replace methods.
13217         Renaming of methods to (try) follow the standard.
13218         Fixed compare ordinal
13219         Made all memory allocated directly to function instead of via icall function.
13220         Small performance fix in is_in_array function
13221                         
13222  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
13223
13224         c (mono_string_Internal_ctor_charp_int_int):
13225         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
13226         sindex < 0, throw ArgumentOutOfRangeException instead of
13227         ArgumentNullException.
13228
13229         Added new check for length == 0, however
13230         I need to make it return String.Empty from the C code.
13231         
13232         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
13233         that calculate the length for us here.
13234         
13235         (mono_string_Internal_ctor_sbytep_int_int): Replaced
13236         mono_string_new_utf16 with mono_string_new, since value is utf8.
13237
13238 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13239
13240         * object.c: register the object for finalization if needed.
13241         Allocate one more char in the string for the terminating 0 char.
13242
13243 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
13244
13245         * class.c, class.h, image.c: check if a type implemenst a destructor.
13246         Use the proper key for array class lookups.
13247         * icall.c: register the icalls in the System.GC class.
13248         * gc.c, gc.h: GC-related functions and icalls.
13249
13250 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13251
13252         * icall.c:
13253         * socket-io.c:
13254         * unicode.c: free some strings gotten from mono_string_to_utf8 and
13255         changed a couple of free () by g_free ().
13256
13257         * decimal.c: one-liner in the comments for decimal2string ().
13258
13259 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
13260
13261         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
13262
13263 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
13264
13265         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
13266         * object.c (mono_runtime_invoke_array) : handle null in params
13267
13268 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13269
13270         * string-icalls.c: fixed bug in split (one off bug)
13271
13272 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13273
13274         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
13275         * icalls.c: added String::Equals as internal method
13276
13277 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
13278
13279         * threads.c: fixed bug in the double interlocked functions
13280
13281 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
13282
13283         * threads.c: implemented all of the new interlocked icalls.
13284         * string-icalls.c: fix a bug in insert.
13285         * icalls.c: added the icalls for interlocked, removed old string functions.
13286         
13287 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
13288
13289         * loader.c: fix off-by-one error when reading argument names.
13290
13291 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13292
13293         * profiler.c: win32 counter implementation (untested).
13294         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
13295         (the latter needs testing and more complete impl. from win32 folks).
13296
13297 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
13298
13299         * object.c: mono_array_new_full workaround mono_array_class_get
13300         problem.
13301
13302 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13303
13304         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
13305         * object.h (mono_string_chars): Changed casting type.
13306
13307 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13308
13309         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
13310                            method signatures to use gunichar2 instead of gint16.
13311
13312 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
13313
13314         * object.h, object.c: domain-specific versions of mono_object_new and
13315         mono_array_new.
13316
13317 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
13318
13319         * object.c: changed String layout
13320
13321         * string-icalls.c (mono_string_Internal_ctor_chara): added
13322         internal string constructors.
13323
13324 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
13325
13326         * threads.c: pass 'this' to the thread start routine.
13327
13328 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13329
13330         * string-icalls.c: fix IndexOf and LastIndexOf. Now
13331         InternalCompareStr don't call twice mono_string_cmp_char for the last
13332         character. Improved performance in mono_string_cmp_char.
13333
13334 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
13335
13336         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
13337         code into its own library: libmonoruntime.
13338
13339 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
13340
13341         * object.h, object.c: changed array format so that szarrays do not
13342         require a bounds structure.
13343         * icall.c, appdomain.c: support for new szarray format.
13344
13345 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
13346
13347         * metadata.c: compare also the retuns type when comparing signatures:
13348         we didn't do this as an optimization since really overloaded methods
13349         must differ also in the arguments, but this doesn't work with
13350         low-level IL code (or when using explicit conversion operators: see
13351         bug#23498 for an example).
13352
13353 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
13354
13355         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
13356
13357 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
13358
13359         * icall.c: make MonoType::GetElementType its own icall.
13360
13361 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
13362
13363         * icall.c: remove MonoMethod_get_Name().
13364         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
13365         object.
13366
13367 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13368
13369         * string-icalls.c: optimized a few methods.
13370
13371 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
13372
13373         * icall.c: added all new string internal calls
13374         * string-icalls.c: added, new string internal call implementation.
13375         * object.c: added mono_string_new_size for allocating a string a size
13376
13377 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
13378
13379         * object.c (mono_object_isinst): use the same code as in the
13380         optimized x86 version.
13381
13382 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
13383
13384         * profiler.c: TSC-based timer code (faster and more accurate).
13385         Not hooked up in configure, yet (set USE_X86TSC to 1).
13386
13387 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
13388
13389         * profiler.c, profiler.h: track time spent compiling methods.
13390         * threads.c: track thread creation/destruction.
13391
13392 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
13393
13394         * profiler.c, profiler.h, profiler-private.h: profiling interface
13395         and sample implementation. Moved here so that it can be used also by
13396         the jit.
13397
13398 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
13399
13400         * reflection.c, reflection.h: keep types and other handles separate in
13401         the hash tables for referred tokens. Add guid for modules.
13402
13403 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
13404
13405         * assembly.c: fix bugs found with valgrind.
13406         * metadata.h, metadata.c: added mono_metadata_guid_heap().
13407
13408 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
13409
13410         * threads: added icall support for getting current domain for
13411                    the thread.
13412  
13413 2002-04-13  Martin Baulig  <martin@gnome.org>
13414
13415         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
13416         (MonoDebugVarInfo): Added `index' field for register based addresses.
13417         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
13418         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
13419         `MonoDebugVarInfo *params' and `guint32 this_offset' with
13420         `MonoDebugVarInfo *this_var'.
13421
13422         * debug-symfile.c (relocate_variable): New static function to write
13423         a location description for a local variable or method parameter.
13424
13425 2002-04-12  Martin Baulig  <martin@gnome.org>
13426
13427         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
13428         stack offset and begin/end scope address of a local variable.
13429         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
13430         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
13431         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
13432
13433         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
13434         Added new relocation types for start/end scope of a local variable.
13435
13436 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
13437
13438         * object.h: add mono_object_domain() macro.
13439         * reflection.c: handle typespecs.
13440         * icall.c: MonoMethod::get_Name() implementation.
13441
13442 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13443
13444         * icall.c: String::GetHashCode() icall implementation.
13445
13446 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13447
13448         * icall.c: String::IndexOfAny icall.
13449         * object.c, object.h: make array->max_length more useful.
13450         Intrduced mono_object_class() and mono_string_length() macros.
13451
13452 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13453
13454         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
13455         instead of g_unichar_isdigit.
13456
13457 2002-04-11  Nick Drochak  <ndrochak@gol.com>
13458
13459         * icall.c: Implement a simple Double.ToString().
13460
13461 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
13462
13463         * appdomain.h: only io-layer.h is supposed to be included.
13464         * icall.c: explicitly import environ. Fix warning.
13465
13466 2002-04-10  Nick Drochak  <ndrochak@gol.com>
13467
13468         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
13469                 return true even if it's not Daylight Savings time.
13470                 Only return false for the case where the function isn't
13471                 implemented for a plaform (read Windows).
13472
13473 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
13474
13475         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
13476         data with a mutex.
13477
13478 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
13479
13480         * mempool.c (mono_mempool_alloc): only use g_malloc when
13481         absolutely necessary.
13482
13483 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
13484
13485         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
13486
13487         * class.c (mono_class_vtable): use domain mempool to allocate vtable
13488         (mono_class_proxy_vtable): use domain mempool
13489
13490 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
13491
13492         * appdomain.h, appdomain.c: split initialization that requires the
13493         execution engine support into mono_runtime_init().
13494
13495 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
13496
13497         * class.c (mono_class_init): don't include vtable inside MonoClass
13498         to save some memory, gather some statistics.
13499         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
13500
13501 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13502
13503         * icall.c: internalcall implementation for ValueType.Equals().
13504
13505 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
13506
13507         * object.c (mono_message_init): moved 
13508         (mono_runtime_exec_main): new arch. independent impl.
13509         (mono_runtime_invoke_array): new method - like
13510         mono_runtime_invoke, but you can pass an array of objects.
13511         (mono_remoting_invoke): new arch. independent impl.
13512         (mono_message_invoke): new arch. independent impl.
13513         (mono_runtime_class_init): new arch. independent impl.
13514         (mono_runtime_object_init): new arch. independent impl.
13515
13516 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
13517
13518         * metadata.c, object.c, reflection.c: documented the exported
13519         functions.
13520
13521 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
13522
13523         * icall.c: simpler code to pass the assembly builder data to corlib.
13524         Implement GetNestedTypes() internalcall.
13525
13526 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
13527
13528         * class.c: warn if a type can't be loaded.
13529
13530 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
13531
13532         * image.h: typedef MonoImageOpenStatus
13533         * types.h: removed unused file
13534         
13535 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
13536
13537         * icall.c: Enum_ToObject accepts enum value arguments.
13538
13539 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
13540
13541         * class.c: move initialization of properties, events and nested
13542         classes, so that they happen for interfaces, too.
13543
13544 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
13545
13546         * icall.c: cleanup some ugly casts in Array_SetValue*.
13547
13548 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
13549
13550         * icall.c: the values array fro enums is of the correct type, now.
13551         Implement (correctly) getFullName instead of assQualifiedName for
13552         MonoType.
13553         * reflection.h, reflection.c: added mono_type_get_name ().
13554
13555 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
13556
13557         * assembly.c, image.h: for each MonoImage, record from wich assembly
13558         it was loaded.
13559         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
13560         Make Type.Assembly work.
13561
13562 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
13563
13564         * debug-symfile.h: use char* instead of gpointer to avoid
13565         unnecessary casts.
13566
13567         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
13568
13569         * icall.c (ves_icall_InternalExecute): impl. FielSetter
13570         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
13571
13572 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
13573
13574         * icall.c (mono_message_init): impl. (code cleanup)
13575         (ves_icall_InternalExecute): impl. FieldGetter
13576
13577         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
13578         defined we call all (non-static)methods through the vtable. 
13579
13580 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
13581
13582         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
13583         finalizer even though the memory is still referenced (and the chunk of
13584         memory is not freed).
13585
13586 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
13587
13588         * assembly.c: fix brokeness.
13589
13590 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
13591
13592         * class.c: kill some warnings. Check explicit interface method
13593         implementation also without considering the namespace.
13594         Load also literal strings in static class data.
13595
13596 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
13597
13598         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
13599         (default_assembly_name_resolver): Make the resolver take the
13600         "base" directory where the assembly was originally defined, so we
13601         can load DLLs that are in the same directory as the assembly that
13602         is being referenced.
13603
13604 2002-03-28  Dick Porter  <dick@ximian.com>
13605
13606         * file-io.h: 
13607         * file-io.c:
13608         * socket-io.c: 
13609         * unicode.h: 
13610         * unicode.c: Warning cleanups
13611
13612 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
13613
13614         * object.h, reflection.h: use the correct type instead of MonoObject.
13615
13616 2002-03-28  Martin Baulig  <martin@gnome.org>
13617
13618         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
13619         (mono_debug_update_symbol_file): Initialize classes if necessary.
13620
13621 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
13622
13623         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
13624         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
13625
13626 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
13627
13628         * assembly.h: fix function prototype.
13629         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
13630         * mono-endian.h: use const cast.
13631
13632 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
13633
13634         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
13635
13636 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
13637
13638         * loader.c: don't assert when a typeref can't be loaded, give
13639         a chance to the runtime to trow an exception instead.
13640         * loader.h: fix warning.
13641
13642 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
13643
13644         * class.c (mono_class_proxy_vtable): added proxy support
13645
13646 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
13647
13648         * icall.c: removed last of PAL calls, added System.Environment
13649         * file-io.h, file-io.c: MonoIO implementation
13650         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
13651
13652 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
13653
13654         * appdomain.c: do not use the byte marker in ldstr table lookup.
13655         * debug-helpers.c: allow two ':' to separate class and method name.
13656         * object.c: allocate arrays bounds with the GC, too.
13657         * verify: add a few more checks.
13658
13659 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
13660
13661         * reflection.c: output also literal strings. Allocate parameter data
13662         with GC_malloc() (thanks, Martin, for catching this!).
13663
13664 2002-03-26  Martin Baulig  <martin@gnome.org>
13665
13666         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
13667         include the `this' offset in the `param_offsets'.
13668
13669 2002-03-25  Martin Baulig  <martin@gnome.org>
13670
13671         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
13672         mono_debug_get_class() function to get the classes. Added new
13673         relocation types for arrays and strings.
13674         (mono_debug_get_class): New static function to search in all
13675         referenced assemblies for a metadata token.
13676
13677         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
13678
13679 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
13680
13681         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
13682         hold gc-allocated objects. Make the string heap a stream like the
13683         others. Removed duplicated code when writing stream info.
13684         Added asserts to catch possible buffer overflows. Set the sorted map
13685         for tables that need sorting. Added some documentation.
13686
13687 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
13688
13689         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
13690         for interned strings and vtables.
13691
13692 2002-03-24  Martin Baulig  <martin@gnome.org>
13693
13694         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
13695         it in the array since it was created with g_slist_prepend().
13696
13697 2002-03-24  Martin Baulig  <martin@gnome.org>
13698
13699         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
13700         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
13701         (mono_debug_method_from_token): Renamed to
13702         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
13703         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
13704
13705         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
13706         relocation types.
13707
13708         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
13709
13710 2002-03-24  Martin Baulig  <martin@gnome.org>
13711
13712         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
13713         (mono_debug_method_from_token): New func.
13714
13715         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
13716         New interncall, calls mono_debug_local_type_from_signature().
13717         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
13718         calls mono_debug_method_from_token().
13719
13720 2002-03-23  Martin Baulig  <martin@gnome.org>
13721
13722         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
13723         specifies the number of bytes to be converted, not the array size.
13724         Return the number of chars, not the number of bytes.
13725         (ves_icall_iconv_get_chars): The `byteCount' argument
13726         specifies the number of bytes to be converted, not the array size.
13727
13728 2002-03-23  Martin Baulig  <martin@gnome.org>
13729
13730         * reflection.h (MonoReflectionSigHelper): New type.
13731
13732         * reflection.c (mono_reflection_sighelper_get_signature_local),
13733         (mono_reflection_sighelper_get_signature_local): New functions.
13734
13735         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
13736         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
13737         interncalls.
13738
13739 2002-03-23  Martin Baulig  <martin@gnome.org>
13740
13741         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
13742         is_writeable is set.
13743         (mono_raw_buffer_update): New function to write the modified map
13744         back to disk.
13745
13746         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
13747
13748         * debug-symfile.c (mono_debug_update_symbol_file): Call
13749         mono_raw_buffer_update() when done writing.
13750
13751 2002-03-23  Martin Baulig  <martin@gnome.org>
13752
13753         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
13754
13755         * debug-symfile.c: Added support for arguments and local variables.
13756
13757 2002-03-23  Dick Porter  <dick@ximian.com>
13758
13759         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
13760         protected by ifdefs, hence breaking the w32 build.
13761
13762 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13763
13764         * object.c: implement is_interned() the right way.
13765
13766 2002-03-21  Martin Baulig  <martin@gnome.org>
13767
13768         * debug-symfile.[ch]: New files to handle debugging information
13769         files. There's also support to dynamically update these symbol
13770         files to include machine dependent information.
13771
13772 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
13773
13774         * threads.c (mono_thread_create): new function to create thread
13775         from C
13776
13777 2002-03-20  Martin Baulig  <martin@gnome.org>
13778
13779         * icall.c (ves_icall_InternalInvoke): Create a new object if the
13780         method is a constructor.
13781         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
13782         points to ves_icall_InternalInvoke().
13783
13784 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
13785
13786         * file-io.c: Flush shouldn't throw exceptions.
13787
13788 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
13789
13790         * file-io.c: FileStream flush support; FileSetLength now
13791         restores file pointer.
13792
13793 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
13794
13795         * class.c: set image for pointer classes.
13796
13797 2002/03/19  Nick Drochak <ndrochak@gol.com>
13798
13799         * sysmath.c: Forgot one.
13800
13801 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
13802
13803         * sysmath.c: Avoid redefining existing names.
13804
13805 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
13806
13807         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
13808         handled by runtime as icall rather than dllimport from libm.so
13809         * file-io.c, file-io.h: fixed handle argument type.
13810
13811 2002-03-18  Dick Porter  <dick@ximian.com>
13812
13813         * reflection.c (mono_image_get_type_info): rename interface to
13814         iface, because of "#define interface struct" on windows.
13815
13816 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
13817
13818         * class.c, class.h: rename and export mono_ptr_class_get().
13819         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
13820         * reflection.c, reflection.h, icall.c: better/saner type name
13821         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
13822         method signatures.
13823
13824 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
13825
13826         * class.c (mono_class_init): removed hardcoded GHC_SLOT
13827
13828         * icall.c (ves_icall_InternalInvoke): impl.
13829
13830 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
13831
13832         * reflection.c: output the interface map table, too.
13833
13834 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
13835
13836         * class.c (class_compute_field_layout): separate computation of 
13837         static field layout
13838
13839 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
13840
13841         * icall.c: added System.Buffer support.
13842         * file-io.c: moved file icalls from PAL to FileStream.
13843
13844 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
13845
13846         * icall.c (ves_icall_System_Object_GetHashCode): impl.
13847
13848 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
13849
13850         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
13851
13852 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
13853
13854         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
13855
13856 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
13857
13858         * debug-helpers.{c,h}: moved here from monograph some useful functions
13859         to locate a method by name/signature in a class or image. Included
13860         also a small and flexible IL disassembler.
13861
13862 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
13863
13864         * reflection.c: fixup tokens in methods with small header size, too.
13865
13866 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
13867
13868         * object.c (mono_string_to_utf8): remove assert(!error), instead
13869         print a warning. 
13870
13871 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
13872
13873         * icall.c: update to the new mono_Array_class_get interface.
13874
13875 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
13876
13877         * appdomain.c, object.c: Boehm-GC enable.
13878         * icall.c: make get_data_chunk() support split data requests.
13879         Ensure a class is initialized in more cases. Return only the first
13880         property found in GetProperties() or the compiler gets confused. 
13881         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
13882         * reflection.h, reflection.c: add fixup mechanism for field and method
13883         tokens. Initialize assembly->typeref in a single place. Output
13884         properties after events. Support custom attributes for events, too.
13885         Typo fix for paramter custom attrs.
13886
13887 2002-03-07  Martin Baulig  <martin@gnome.org>
13888
13889         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
13890
13891 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
13892
13893         * class.c (mono_array_class_get): fix. for multi. dim. arrays
13894
13895 2002-03-06  Martin Baulig  <martin@gnome.org>
13896
13897         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
13898         non-zero lower bounds. See testcases #F10-#F13.
13899
13900 2002-03-05  Martin Baulig  <martin@gnome.org>
13901
13902         * exception.c (mono_get_exception_argument_out_of_range): New exception.
13903
13904         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
13905         ves_icall_System_Array_GetValue(), only calculate the absolute array position
13906         here.
13907         (ves_icall_System_Array_SetValue): Likewise.
13908         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
13909         as argument and does the actual work. This function is used when copying a
13910         multi-dimensional array.
13911         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
13912         now do all the widening conversions of value types.
13913         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
13914
13915 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
13916
13917         * class.c: remove some magic numbers and use the smbolic names,
13918         instead. Added init_events() to load event info at class init time.
13919         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
13920         and mono_metadata_methods_from_event().
13921         * reflection.h, reflection.c: added support for writing out the evnets
13922         related information.
13923
13924 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
13925
13926         * reflection.h, icall.c: use a different method (GetInterfaces)
13927         to gather interface info and add isbyref, isprimitive and
13928         ispointer to the ves_icall_get_type_info() return value.
13929
13930 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
13931
13932         * class.h: stared adding support for events.
13933         * icall.c: split find_members implementation. Added debug icall to get
13934         the address of an object.
13935         * reflection.c: handle TypeBuilders in mono_type_get_object().
13936
13937 2002-03-01  Martin Baulig  <martin@gnome.org>
13938
13939         * icall.c (ves_icall_System_Array_GetLength): This must throw an
13940         ArgumentOutOfRangeException(), not an ArgumentException().
13941         (ves_icall_System_Array_GetLowerBound): Likewise.
13942         (ves_icall_System_Array_GetValue): Improved argument checking.
13943         (ves_icall_System_Array_SetValue): Improved argument checking.
13944
13945 2002-03-01  Martin Baulig  <martin@gnome.org>
13946
13947         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
13948         called with invalid arguments rather than just dying with g_assert().
13949         (ves_icall_System_Array_SetValue): Likewise.
13950         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
13951         raise a NotImplementedException instead.
13952         (ves_icall_System_Array_GetLength): Added argument checking.
13953         (ves_icall_System_Array_GetLowerBound): Added argument checking.
13954
13955 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
13956
13957         * object.h (mono_assert): new macros mono_assert and
13958         mono_assert_not_reached
13959
13960 2002-02-28  Martin Baulig  <martin@gnome.org>
13961
13962         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
13963         and "System::String::IsInterned" to "System::String::_IsInterned".
13964
13965 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
13966
13967         * icall.c: remove hacks for typebuilder. Added icall to create a
13968         modified type from a tybebuilder.
13969         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
13970         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
13971         to create a backing MonoClass for a TypeBuilder.
13972
13973 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
13974
13975         * class.c, class.h: more refactoring of class init.
13976         Export mono_class_setup_mono_type() and mono_class_setup_parent().
13977
13978 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
13979
13980         * marshal.c, marshal.h: start of marshaling interface.
13981
13982 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
13983
13984         * icall.c: fix order in assembly qualified name icall.
13985
13986 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
13987
13988         * class.c: do not free str, since we store it in the hash table.
13989         * reflection.h: add label field to MonoILExceptionInfo.
13990         * reflection.c: handle references to more than one assembly. Handle
13991         case when there isn't a module created in the assembly.
13992
13993 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
13994
13995         * class.c: Fix typo. Start refactoring of class init code.
13996
13997 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
13998
13999         * appdomain.c: exit with 1 on error.
14000         * class.c: we already have the name in MonoClassField.
14001         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
14002         MonoStreamHeader instead of an offset of image->raw_metadata.
14003
14004 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
14005
14006         * appdomain.c (mono_init): Be even more descriptive about the error.
14007
14008 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
14009
14010         * appdomain.c: give the user an informative message when corlib can't
14011         be loaded.
14012
14013 2002-02-26  Martin Baulig  <martin@gnome.org>
14014
14015         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14016         New icall to get the time zone data.
14017
14018 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
14019
14020         * reflection.c: set virtual and raw size of section correctly.
14021         * threads.c: transfer domain information to newly created threads.
14022
14023 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
14024
14025         * class.c: when instancing a class in a domain, load the default
14026         vaules for static fields from the constant table. Fix System.Enum to
14027         not be an enum.
14028         * icall.c: implement Object::GetType() internalcall. Implemented
14029         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
14030         Fixed checking of binding flags in find_members().
14031         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
14032         * reflection.c: handle enumerations when writing to the constant
14033         table. Use a different object cache for types.
14034
14035
14036 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
14037
14038         * object.c (mono_object_isinst): fix for arrays
14039
14040         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
14041
14042 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
14043
14044         * object.c: don't use mprotect ()  and fix intern pool hash table
14045         lookup for big endian systems.
14046
14047 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14048
14049         * icall.c: change type_is_subtype_of () signature.
14050
14051 2002-02-21  Mark Crichton  <crichton@gimp.org>
14052
14053         * rand.c, rand.h: Added random number generator for
14054         System.Security.Cryptography classes.
14055
14056         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
14057
14058         * icall.c: Added System.Security.Cryptography calls.
14059
14060 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
14061
14062         * class.c, icall.c, metadata.c: better support for pointer types.
14063         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
14064         * reflection.c: Add support for getting custom attrs for properties
14065         and simplify some code.
14066
14067 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
14068
14069         * icall.c: change getToken () and add custom attribute GetBlob()helper
14070         method.
14071         * reflection.h: add custom attrs array to the reflection builder structures.
14072         * reflection.c: encode and emit custom attributes for all the relevant
14073         reflection objects. Cache fieldref and methodref tokens. Change
14074         mono_image_create_token() interface to take a MonoDynamicAssembly.
14075         More complete custom attributes decoder. Load custom attributes for
14076         Assembly, Field, Method and Constructor objects, too. Make the
14077         returned array an Attribute[] one, not object[]. Added
14078         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
14079         custom attribute constructor.
14080
14081 2002-02-20  Dick Porter  <dick@ximian.com>
14082
14083         * icall.c:
14084         * rawbuffer.c:
14085         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
14086         problem code out for now).
14087
14088 2002-02-19  Radek Doulik  <rodo@ximian.com>
14089
14090         * object.c (mono_ldstr): use hash table to avoid multiple swapping
14091
14092 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
14093
14094         * icall.c: register the GetCustomAttributes method.
14095         * object.c, object.h: add mono_string_new_len ().
14096         * reflection.h, reflection.c: added mono_runtime_invoke(),
14097         mono_install_runtime_invoke(). Added
14098         mono_reflection_get_custom_attrs () to load custom attributes and
14099         create the attribute objects.
14100
14101 2002-02-19  Dick Porter  <dick@ximian.com>
14102         * threads-dummy-types.c:
14103         * threads-dummy-types.h:
14104         * threads-dummy.c:
14105         * threads-dummy.h:
14106         * threads-pthread-types.c:
14107         * threads-pthread-types.h:
14108         * threads-pthread.c:
14109         * threads-pthread.h:  Deleted obsolete files
14110
14111 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
14112
14113         * class.c (mono_class_vtable): runtime init the class when we
14114         allocate static class data.
14115
14116         * icall.c (ves_icall_System_Array_SetValue): check for null values.
14117
14118         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
14119         and String - but we will need generic marshalling support in the
14120         future. 
14121         (mono_init): set the domain name in a ms compatible way
14122
14123         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
14124         String[].
14125
14126 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
14127
14128         * object.c (mono_array_clone): use alloca() instead of g_malloc  
14129         for sizes
14130
14131         * appdomain.c (mono_domain_unload): impl.
14132
14133 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
14134
14135         * appdomain.c, object.c: fix intern pool implementation.
14136         * class.c: fix alignment code.
14137
14138 2002-02-16  Radek Doulik  <rodo@ximian.com>
14139
14140         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
14141         and s2 > s1, just copy lower bytes to be compatible with little
14142         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
14143         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
14144
14145         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
14146         force big_endian to be 1 for big endian machines 
14147         (ves_icall_iconv_new_decoder): ditto
14148
14149 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
14150
14151         * socket-io.c (convert_sockopt_level_and_name): If the system
14152         doesn't define SOL_IP or SOL_TCP, get them by hand using
14153         getprotobyname() and caching the values (because this could be a
14154         slow operation).
14155         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
14156         Use the appropriate struct when the system does support it. Ie,
14157         not all systems have struct ip_mreqn so use struct ip_mreq when
14158         appropriate.
14159
14160 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
14161
14162         * reflection.c: handle finally clauses.
14163
14164 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
14165
14166         * socket-io.c: use g_snprintf() instead of snprintf.
14167
14168 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
14169
14170         * reflection.c (mono_param_get_objects): Cast second argument to
14171         mono_method_get_param_names to a const char** to silence the
14172         compiler warning.
14173
14174         * appdomain.c (mono_domain_assembly_open): Put parens around the
14175         truth statement in the for-loop.
14176
14177         * unicode.c (iconv_convert): Got rid of a compiler warning about
14178         int i being unused when the system has a new iconv.
14179         (iconv_get_length): Same.
14180
14181         * image.c (load_class_names): Cast the second argument to
14182         g_hash_table_insert() to char* to hush compiler warnings about the
14183         arg being a const.
14184         (mono_image_open): Same here.
14185
14186         * socket-io.c: Don't conditionally include sys/filio.h or
14187         sys/sockio.h here anymore since we now get them from
14188         io-layer/io-layer.h
14189         (inet_pton): If the system doesn't support inet_aton, implement
14190         using inet_addr and also #define INADDR_NONE if it isn't defined
14191         by the system.
14192
14193 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
14194
14195         * metadata.c, metadata.h: added function to get packing and size info
14196         of a typedef.
14197         * reflection.h, reflection.c: handle field RVA data. Save info about
14198         the table layout if needed. Assign typedef indexes to all the types
14199         before dumping the info about them to avoid forward reference problems.
14200
14201 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
14202
14203         * socket-io.c (convert_sockopt_level_and_name): ifdef
14204         SO_ACCEPTCONN because it is not defined on my system (old debian)
14205
14206 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
14207
14208         * opcode.c: use stddef.h to get NULL.
14209
14210 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
14211
14212         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
14213         for FIONBIO, FIONREAD and SIOCATMARK.
14214         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
14215         define INADDR_NONE and besides, inet_addr() is deprecated and
14216         should not be used. Use inet_pton() instead - it also has the
14217         added bonus that it can easily handle IPv6 addresses as well.
14218         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
14219
14220 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
14221
14222         * decimal.c: remove _MSC_VER conditional.
14223
14224 2002-02-13  Dick Porter  <dick@ximian.com>
14225
14226         * socket-io.c: 
14227         * icall.c: Internal calls for Blocking, Select, Shutdown,
14228         GetSocketOption and SetSocketOption
14229
14230 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14231
14232         * assembly.cs: better resolver: use it instead of some kludgy
14233         code.
14234
14235 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
14236
14237         * reflection.c: the best way to speed-up the compiler is to avoid
14238         infinite loops.
14239
14240 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
14241
14242         * class.c (mono_class_vtable): changed the object layout
14243         (obj->vtable->class). 
14244         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
14245
14246 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
14247
14248         * assembly.c: look for assemblies in the assembly dir, too.
14249
14250 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14251
14252         * class.c: fix thinko in mono_class_from_type().
14253
14254 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
14255
14256         * exception.h, exception.c: added TypeLoadException.
14257         * object.h, object.c: added mono_array_clone ().
14258         * icall.c: handle throwOnError in AssemblyGetType().
14259         Added Array.Clone().
14260         * opcode.h, opcode.c: use a single value for the opcode val.
14261         Compile fix for non-gcc compilers.
14262
14263 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
14264
14265         * opcodes.c, opcodes.h: export interesting info about opcodes.
14266
14267 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
14268
14269         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
14270         icalls. 
14271
14272         * class.c (class_compute_field_layout): set element_class for enums
14273         (mono_class_create_from_typedef): set element_class for normal classes
14274
14275         * icall.c (ves_icall_System_Enum_get_value): impl.
14276
14277         * class.c (mono_class_create_from_typedef): do not set valuetype
14278         flag for System.ValueType and System.Enum
14279
14280 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
14281
14282         * unicode.c (iconv_convert): fix big endian problem.
14283
14284 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
14285
14286         * class.c: add asserts if we are ever going to scribble over memory.
14287         * socket-io.c: not all systems have AF_IRDA defined.
14288
14289 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
14290
14291         * class.c (class_compute_field_layout): do not consider static
14292         fields to compute alignment
14293
14294 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
14295
14296         * appdomain.c (mono_appdomain_get): impl.
14297         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
14298
14299 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
14300
14301         * icall.c: ignore "file://" prefix when loading an assembly.
14302
14303 2002-01-23  Dick Porter  <dick@ximian.com>
14304
14305         * socket-io.c:
14306         * icall.c:
14307         * Makefile.am: Added socket support
14308
14309 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
14310
14311         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
14312         code back.  This should return the assemblies that are loaded by
14313         the runtime on behalf of an application domain. 
14314
14315         The current implementation is still broken, it just returns every
14316         assembly loaded, but until we get real applications domain this
14317         will do.
14318
14319 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
14320
14321         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
14322         AppDomain object.
14323
14324 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
14325
14326         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
14327         the mono_class_from_name lookup.
14328         (ves_icall_get_parameter_info): ditto.
14329         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
14330         method.
14331         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
14332
14333 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
14334
14335         * class.c: load also nested classes on class init.
14336         System.ValueType instance methods gets passed boxed
14337         values, unless methods in derived classed that get a pointer to the
14338         data.
14339         * icall.c: use better name parsing code in GetType().
14340         * image.c, image.h: add mono_image_loaded ().
14341         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
14342         * reflection.c, reflection.h: added mono_reflection_parse_type().
14343
14344 2002-01-22  Veronica De Santis <veron78@interfree.it>
14345
14346         * icall.c : Added mapping of internal calls for Manual and Auto reset events
14347         * threads.c : Added the implementation of internal calls for events
14348         * threads.h : Added prototypes of internal calls for events
14349         
14350 2002-01-21  Radek Doulik  <rodo@ximian.com>
14351
14352         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
14353
14354 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
14355
14356         * class.c (mono_class_init): set min_align to 1 (instead of 0)
14357         (mono_class_value_size): use min_align
14358
14359 2002-01-20  Dick Porter  <dick@ximian.com>
14360
14361         * threads.h:
14362         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
14363         so it compiles on w32.
14364
14365 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
14366
14367         * metadata.c (mono_type_stack_size): impl.
14368
14369         * class.c (mono_class_get_field): impl. memberref token
14370
14371 2002-01-16 Veronica De Santis <veron78@@interfree.it>
14372
14373         * icall.h : Added the internal calls mapping for CreateMutex_internal
14374                     and ReleaseMutex_internal.
14375         * threads.h : Added the prototype of mutexes internal calls.
14376         * threads.c : Added the implementations of mutexes internal calls.
14377
14378 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
14379
14380         * metaparse.h: removed unused file.
14381         * reflection.c, reflection.h: added stream_data_align () function 
14382         to align data in streams and keep stream aligned. Add support for
14383         exception support in method headers.
14384
14385 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
14386
14387         * unicode.c: make iconv_convert () return the number of bytess written
14388         in the output buffer.
14389
14390 2002-01-15  Dick Porter  <dick@ximian.com>
14391         * threads.c: Make the runtime's idea of infinite timeouts coincide
14392         with the class library's
14393
14394         Fix a particularly egregious bug in mono_thread_cleanup(). That
14395         code was so utterly bogus it must have been written on a Monday.
14396
14397 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
14398
14399         * reflection.h: add subtypes field to TypeBuilder.
14400         * reflection.c: encode constants for literal fields.
14401         Handle subtypes. Fix user string token (and add a zero byte)
14402         at the end.
14403         
14404 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
14405
14406         * class.c (mono_class_init): bug fix: assign slot numbers for
14407         abstract methods.
14408
14409 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
14410
14411         * reflection.c: don't try to output a code RVA for abstract methods.
14412         Small fixes for method header format. Output parameter info to the
14413         ParamDef table. Save method overriding info to MethodImpl table.
14414         Fix property support. Allow typedef.extends to be a type in the
14415         building assembly.
14416         * verify.c: fix off-by-one error.
14417
14418 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
14419
14420         * class.c: fix mono_class_from_mono_type () for szarray types.
14421         Remove unused cache check in mono_class_from_type_spec().
14422         * icall.c: *type_from_name () functions handle simple arrays and byref.
14423         * reflection.c: handle byref and szarray types. Handle methods without
14424         body (gets P/Invoke compilation working). Handle types and fields in
14425         get_token ().
14426         * reflection.h: add rank to MonoTypeInfo.
14427
14428 2002-01-10  Dick Porter  <dick@ximian.com>
14429
14430         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
14431         internal calls
14432
14433 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
14434
14435         * icall.c: initialize class in type_from_handle ().
14436         Loop also in parent classes for get_method ().
14437         * reflection.c: properly encode class and valuetype types.
14438         Start on encoding TypeBuilder types. Handle fieldrefs.
14439         Use correct length when registering a user string.
14440         Handle ConstructorBuilder and MonoMethod in get_token ().
14441         Make mono_type_get_object () aware of cached types.
14442         * object.c: back out change to mono_string_new ().
14443
14444 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
14445         * object.c: mono_string_new should return a NULL when the string 
14446         passed in is NULL -- not try to deference it.
14447         
14448 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
14449
14450         * icall.c: hack to make IsSubType work for TypeBuilders.
14451         * reflection.c: emit constructors before methods.
14452         Retrieve param names in mono_param_get_objects().
14453
14454 2002/01/05  Nick Drochak  <ndrochak@gol.com>
14455
14456         * Makefile.am: fix list of headers and sources so automake 1.5
14457         doesn't complain. Removed \# at end of list.
14458
14459 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
14460
14461         * reflection.c: get token for a method ref. Set return type of
14462         constructor to void.
14463         * loader.c: debug message.
14464         * class.c: typo fix.
14465
14466 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
14467
14468         * icall.c: fix array init with rank > 1. FindMembers
14469         loops in parent class as well.
14470         * image.c: do not insert nested types in name cache.
14471         * reflection.c: warning fix.
14472         * reflection.h: add override method (for interface impl).
14473
14474 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
14475
14476         * metadata.c: fix customattr decoding.
14477
14478 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
14479
14480         * rawbuffer.cs: Added native Win32 implementation, avoids using
14481         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
14482
14483 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
14484
14485         * class.c: make the low-level routines handle the cache.
14486
14487 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
14488
14489         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
14490
14491 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
14492
14493         * class.c: fix mono_array_element_size() for objects.
14494         * class.h, class.c: add properties to MonoClass and load them
14495         at init time.
14496         * icall.c: check with isinst() when assigning a value to an array
14497         instead of requiring the classes to match exactly.
14498         Implemented icall for System.Type::GetType().
14499         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
14500         enums. Handle bindingflags when looking for methods and fields.
14501         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
14502         and mono_metadata_methods_from_property().
14503         * reflection.h, reflection.c: added structures for propreties,
14504         parameters and enums. Implemented mono_property_get_object() and
14505         mono_param_get_objects().
14506
14507 2001-12-18  Dick Porter  <dick@ximian.com>
14508
14509         * file-io.c: Use mono_string_to_utf16() instead of
14510         mono_string_chars()
14511
14512         * object.c: Added mono_string_to_utf16(), which copies the non
14513         NULL-terminated MonoString into a new double-null-terminated
14514         buffer.
14515
14516 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
14517
14518         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
14519
14520 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
14521
14522         * file-io.c: raise exceptions if handle is invalid.
14523
14524 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
14525
14526         * assembly.c: yet another check for mscorlib.
14527         * class.c, class.h: load nesting info for classes.
14528         * icall.c: many new functions to support the Reflection classes.
14529         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
14530         * reflection.h, reflection.c: mono_image_create_token(),
14531         mono_assembly_get_object(), mono_type_get_object(),
14532         mono_method_get_object(), mono_field_get_object(): methods to return
14533         objects that parallel the C representation of assemblies, types,
14534         methods, fields.
14535
14536 2001-12-11  Dick Porter  <dick@ximian.com>
14537
14538         * icall.c:
14539         * file-io.c: Internal calls for file IO.
14540
14541 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
14542
14543         * tabledefs.h: missing FileAttributes.
14544         * verify.h, verify.c: use is_valid_string () to simplify and check for
14545         valid strings more correctly. Fix warnings and speeling.
14546         Check more tables: Filed, File, ModuleRef, StandAloneSig.
14547         Check code: branches, maxstack, method calls.
14548
14549 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
14550
14551         * object.c (mono_object_allocate): removed static, so that the jit
14552         can allocate value types.
14553
14554         * icall.c (ves_icall_System_DateTime_GetNow): impl.
14555
14556 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14557
14558         * class.c: init enum types right away and register the
14559         token->MonoClass map in mono_class_create_from_typedef ().
14560         * verify.h, verify.c: first cut of the verifier.
14561         * pedump.c: add --verify switch to verify metadata tables.
14562         * tabledefs.h: add some missing enums.
14563
14564 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
14565
14566         * class.c (mono_install_runtime_class_init): impl.
14567         (mono_class_init): renamed mono_class_metadata_init to
14568         mono_class_init, also removed the metadata_inited flag
14569
14570         * object.c (mono_object_isinst): use faster algorithm
14571
14572 2001-11-30  Radek Doulik  <rodo@ximian.com>
14573
14574         * mono-endian.h: reverted last change
14575         added function prototypes
14576
14577         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
14578         add mono-endian.c back
14579
14580         * mono-endian.c: returned back, as Paolo pointed out, it's needed
14581         for unaligned access, I've mistaked it with endianess. I am
14582         sorry.
14583         (mono_read16): fix reverted endianess
14584         (mono_read64): ditto
14585         (mono_read32): ditto
14586
14587 2001-11-30  Dick Porter  <dick@ximian.com>
14588
14589         * exception.c: Implement mono_exception_from_name()
14590
14591 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
14592
14593         * metadata.h, metadata.c: remove params_size and locals_size and their
14594         calculation from the metadata code: they are only usefult to the
14595         interp.
14596
14597 2001-11-29  Radek Doulik  <rodo@ximian.com>
14598
14599         * object.c (mono_ldstr): swap bytes here, it's probably not the
14600         best place, but works for me now, I'll redo it once I know mono
14601         better, also note that I add PROT_WRITE and don't reset back, also
14602         note that it's only affects big endians, so x86 should be OK
14603
14604         * mono-endian.h (read16): use just glib macros for both endians
14605
14606         * mono-endian.c: removed as glib macros are used in in
14607         mono-endian.h so we don't need to care about endianess for read
14608         macros as glib does that for us already
14609
14610 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
14611
14612         * class.h, class.h: take minimum alignment into consideration so
14613         that the fields of a class remain aligned also when in an array.
14614
14615 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14616
14617         * loader.h, loader.c: add mono_method_get_param_names().
14618         * class.c: 0-init class fields.
14619
14620 2001-11-26  Dick Porter  <dick@ximian.com>
14621
14622         * icall.c:
14623         * threads-types.h:
14624         * threads.c: New file that handles System.Threading on all platforms
14625
14626         * object.c: 
14627         * object.h: Remove the synchronisation struct from MonoObject,
14628         replace it with a pointer that gets initialised on demand
14629
14630         * Makefile.am: Replace all the system-specific threading code with
14631         a single file that uses the new wrapper library
14632
14633 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
14634
14635         * class.c, class.h: add mono_install_trampoline() so that the runtime
14636         can register a function to create a trampoline: removes the ugly
14637         requirement that a runtime needed to export arch_create_jit_trampoline.
14638         * object.h, object.c: added mono_install_handler() so that the runtime
14639         can install an handler for exceptions generated in C code (with
14640         mono_raise_exception()). Added C struct for System.Delegate.
14641         * pedump.c: removed arch_create_jit_trampoline.
14642         * reflection.c: some cleanups to allow registering user strings and
14643         later getting a token for methodrefs and fieldrefs before the assembly
14644         is built.
14645         * row-indexes.h: updates and fixes from the new ECMA specs.
14646
14647 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
14648
14649         * class.h, class.c: add enum_basetype field to MonoClass.
14650         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
14651         to get index in the constant table reated to a field, param or
14652         property.
14653         * reflection.h, reflection.c: handle constructors. Set public-key and
14654         version number of the built assembly to 0.
14655         * row-indexes.h: update from new ECMA spec.
14656
14657 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
14658
14659         * class.h, class.c: add a max_interface_id to MonoClass.
14660         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
14661         since it's used to do that. Added mono_type_type_from_obj().
14662         Make GetType() return NULL instead of segfaulting if the type was not
14663         found. Handle simple arrays in assQualifiedName.
14664         * object.h: add a struct to represent an Exception.
14665         * reflection.c: output call convention in method signature.
14666         Add code to support P/Invoke methods and fixed offsets for fields.
14667
14668 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
14669
14670         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
14671         the value.
14672         * icall.c: use mono_array_addr instead of array->vector: fixes the
14673         reflection image writing.
14674         * reflection.c: init call convention byte to 0 in method signature.
14675         Encode the property signature. Don't output property-related methods
14676         twice. Really process the properties for a type (don't cast a field to
14677         a property, my mom always told me that).
14678         Fix 64 bit issues in pointer alignment in a different and more
14679         readable way.
14680
14681 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
14682
14683         * loader.h: Removed type class from MonoDefaults, added monotype
14684
14685         * loader.c: Loaded MonoType, removed loading of Type
14686
14687         * icall.c (my_mono_new_object): Now returns a System.MonoType,
14688         and fills in System.Type._impl with a RuntimeTypeHandle rather
14689         than the actual MonoClass *
14690
14691         (ves_icall_type_from_handle): change from type_class to
14692         monotype_class
14693
14694         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
14695         implemented
14696
14697         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
14698         implemented
14699
14700         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
14701
14702         (ves_icall_System_Reflection_Assembly_GetType): implemented
14703
14704         (ves_icall_System_MonoType_assQualifiedName): implemented
14705
14706         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
14707
14708 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
14709
14710         * assembly.c (mono_assembly_open): Implement a cache for the
14711         assemblies. 
14712
14713         (mono_assembly_close): only destroy the assembly when the last
14714         reference is gone.
14715         
14716 2001-11-09  Dick Porter  <dick@ximian.com>
14717
14718         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
14719
14720 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
14721
14722         * class.c (mono_class_metadata_init): bug fix: compute the right slot
14723
14724 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
14725
14726         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
14727         from Martin Weindel.
14728         * object.h: add mono_string_chars ().
14729
14730 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
14731
14732         * reflection.c (build_compressed_metadata): Eliminates warnings
14733         and uses 64-bit clean code.
14734
14735         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
14736         (mono_type_equal): Change signature to eliminate warnings.
14737
14738 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
14739
14740         * icall.c, loader.c: remove the internalcall array constructors.
14741         Changes to match the new MonoArray structure.
14742         * object.h, object.c: an array object doesn't allocate an extra
14743         vector. Add mono_array_new_full () to create jagged arrays easily.
14744
14745 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
14746
14747         * metadata.h, metadata.c: add mono_metadata_field_info () to
14748         retreive all the info about a field from vairous tables.
14749         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
14750         * class.h, class.c: augment MonoClassField with more info.
14751         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
14752         policy and load a field's RVA if needed.
14753
14754 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
14755
14756         * class.c (mono_class_metadata_init): create a trampoline for all
14757         virtual functions instead of actually compiling them.
14758
14759 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
14760
14761         * class.h, class.c: include name in MonoClassField.
14762         * class.c: fix fundamental type of System.Object and System.String.
14763         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
14764         tokens in ldtoken.
14765         * icall.c: remove internalcalls for the Reflection stuff that is now
14766         done in C# code.
14767         * loader.c: mono_field_from_memberref () implementation.
14768         * mono-endian.c: thinko (s/struct/union/g).
14769         * object.c, object.h: make the mono_string_* prototypes actually use
14770         MonoString instead of MonoObject.
14771         * reflection.c, reflection.h: updates for changes in the reflection
14772         code in corlib: we use C structures that map to the actual C# classes.
14773         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
14774         fat method header if needed and use the info from the ILGenerator for
14775         methods. Handle fields in types. Misc fixes.
14776
14777 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
14778
14779         * class.c (mono_class_metadata_init): bug fix: always allocate
14780         space for static class data
14781
14782 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
14783
14784         * class.c (mono_compute_relative_numbering): use relative
14785         numbering to support fast runtime type checks.
14786
14787 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
14788
14789         * class.c (mono_class_create_from_typeref): added debugging output
14790         to print class name when MonoDummy is returned instead of real class
14791
14792 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
14793
14794         * class.c (mono_class_metadata_init): interface offset table now
14795         contains pointers into the vtable - this is more efficient for the jit
14796
14797 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
14798
14799         * class.c (mono_class_metadata_init): use a temporary vtable (the
14800         old algorithm only worked for the interpreter, but not for the jit)
14801
14802 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
14803
14804         * loader.c (method_from_memberref): use mono_class_get to get the
14805         class of an array instead of using System.Array directly.
14806         (mono_get_method): also add MEMBERREF methods to the method cache
14807         which usefull for arrays.
14808
14809 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
14810
14811         * pedump.c (arch_compile_method): added to compute vtable entry
14812
14813         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
14814         number of interfaces.
14815         
14816         * class.h: merged MonoArrayClass into MonoClass
14817
14818         * class.c (mono_class_create_from_typedef): compute the vtable size and
14819         allocate space to include the vtable inside MonoClass
14820         (mono_class_metadata_init): initialize the vtable
14821
14822 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
14823
14824         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
14825         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
14826         * image.c: endian fixes by Laurent Rioux.
14827         * object.h, object.c: rename MonoStringObject to MonoString and
14828         MonoArrayObject to MonoArray. Change some function names to conform to
14829         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
14830         guint16* as first argument, so don't use char*.
14831         Provide macros to do the interesting things on arrays in a portable way.
14832         * threads-pthread.c: updates for the API changes and #include <sched.h>
14833         (required for sched_yield()).
14834         * icall.c: updates for the API changes above.
14835         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
14836         platforms that need them.
14837
14838 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
14839
14840         * class.c: set the correct type for all the fundamental
14841         type when loading the class.
14842
14843 2001-10-05  Dick Porter  <dick@ximian.com>
14844
14845         * threads-pthread.c (pthread_mutex_timedlock): Simple
14846         compatibility version for C libraries that lack this call.
14847
14848 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
14849
14850         * class.c: MonoTypes stored in MonoClass are stored as
14851         fundamental MonoTypes when the class represents a
14852         fundamental type (System.Int32, ...).
14853         The TypeHandle return by ldtoken is a MonoType*.
14854         * icall.c: ves_icall_get_data_chunk () write out all the
14855         PE/COFF stuff. Implement ves_icall_define_method (),
14856         ves_icall_set_method_body (), ves_icall_type_from_handle ().
14857         * image.c: properly skip unknown streams.
14858         * loader.h, loader.c: add type_class to mono_defaults.
14859         * metadata.c, metadata.h: export compute_size () as
14860         mono_metadata_compute_size () with a better interface.
14861         Typo and C&P fixes.
14862         * pedump.c: don't try to print the entry point RVA if there is no entry point.
14863         * reflection.c, reflection.h: many cleanups, fixes, output method
14864         signatures and headers, typedef and typeref info, compress the metadata
14865         tables, output all the heap streams, cli header etc.
14866         * row-indexes.h: typo fixes.
14867
14868 2001-10-04  Dick Porter  <dick@ximian.com>
14869
14870         * object.h: Add a synchronisation mutex struct to MonoObject
14871
14872         * object.c (mono_new_object): Initialise the object
14873         synchronisation mutexes
14874
14875         * icall.c: System.Threading.Monitor internal calls
14876         
14877         * threads-pthread.h:
14878         * threads-pthread.c: System.Threading.Monitor internal calls
14879
14880         * threads-types.h: New file, includes the system-specific thread
14881         structures
14882         
14883         * threads-pthread-types.h:
14884         * threads-pthread-types.c: New files, handle pthread-specific
14885         synchronisation types
14886
14887         * threads-dummy-types.h: 
14888         * threads-dummy-types.c: New files of dummy support for
14889         thread-specific types
14890
14891         * metadata.c:
14892         * image.c:
14893         * pedump.c: include mono-endian.h not endian.h
14894         
14895         * Makefile.am: More threads files.
14896         Name mono-endian.h not endian.h
14897
14898 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
14899
14900         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
14901         stuff and implement a few more bits.
14902         * icall.c: a field needs to be dereferenced twice. Do not use the same
14903         name for two variables in the same scope.
14904         * image.c, image.h: cleanups.
14905
14906 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
14907
14908         * class.c (mono_class_metadata_init): bug fix: compute the right size
14909
14910 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
14911
14912         * icall.c: implemented some of the Reflection internalcalls.
14913         * image.c, image.h: start writing out the PE/COFF image.
14914         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
14915         that does the reverse than decode_blob_size ().
14916         * object.c: use mono_metadata_encode_value (). Move here
14917         temporary implementation of mono_string_to_utf8 ().
14918         * rawbuffer.c: make malloc_map static.
14919
14920 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
14921
14922         * metadata.c: fix type comparison for arrays.
14923         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
14924         Added a couple of new classes to monodefaults.
14925         * icall.c: added a couple of Reflection-related internalcalls.
14926         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
14927         Added a byval_arg MonoType to MonoClass.
14928
14929 2001-09-28  Dick Porter  <dick@ximian.com>
14930
14931         * icall.c:
14932         * threads-pthread.h: 
14933         * threads-pthread.c: Implemented internal calls for
14934         LocalDataStoreSlot operations.  Applied mutexes around all shared
14935         data.  Reworked the thread creation and Start() operations to
14936         avoid a race condition.
14937         
14938         * threads-dummy.h:
14939         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
14940
14941 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
14942
14943         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
14944
14945 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
14946
14947         * class.c, loader.c: warn and return NULL instead of erroring out.
14948         * icall.c: added System.AppDomain::getCurDomain().
14949         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
14950
14951 2001-09-25  Dick Porter  <dick@ximian.com>
14952
14953         * threads-pthread.h:
14954         * threads-pthread.c: Implemented timed thread joining and added
14955         System.Threading.Thread::Join_internal internal call
14956
14957         * icall.c: Added System.Threading.Thread::Join_internal internal call
14958
14959         * threads-dummy.h:
14960         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
14961
14962 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
14963
14964         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
14965         mono_string_intern () to implement the semantics of the ldstr opcode
14966         and the interning of System.Strings.
14967         * icall.c: provide hooks to make String::IsIntern and String::Intern
14968         internalcalls.
14969
14970 2001-09-23  Dick Porter  <dick@ximian.com>
14971
14972         * threads-dummy.c: 
14973         * threads-dummy.h: New files of dummy threading routines
14974
14975         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
14976         support code based on system specifics
14977
14978         Rename PTHREAD_LIBS to THREAD_LIBS
14979         
14980 2001-09-23  Dick Porter  <dick@ximian.com>
14981
14982         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
14983         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
14984         internal calls.
14985         (mono_thread_init): Set up a Thread object instance to return when
14986         the main thread calls Thread.CurrentThread
14987         (mono_thread_cleanup): Wait for all subthreads to exit
14988
14989         * icall.c: New internal calls for System.Threading.Thread::Sleep
14990         (including Schedule) and CurrentThread
14991
14992         * threads.h: New file, to insulate thread-specific stuff from the
14993         rest of the code
14994
14995 2001-09-21  Dick Porter  <dick@ximian.com>
14996
14997         * threads-pthread.h: 
14998         * threads-pthread.c: New file, for handling pthreads-style
14999         threading support.  Start() now starts a new thread and executes
15000         the ThreadStart delegate instance.
15001
15002         * icall.c: Added the internalcall for
15003         System.Threading.Thread::Start_internal
15004
15005         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
15006
15007 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
15008
15009         * loader.c: work around the different signatures for delegates
15010         constructors csc generates in compiled code vs the ones compiled in mscorlib.
15011
15012 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
15013
15014         * class.h, class.c: add mono_class_get_field_from_name ().
15015         * *: Fix C comments and other ANSI C issues.
15016
15017 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
15018
15019         * endian.h, assembly.c: fix some endianness issues.
15020
15021 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
15022
15023         * loader.h, load.c: add delegate_class to mono_defaults.
15024         Handle runtime provided methods in mono_get_method ().
15025
15026 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
15027
15028         * loader.c (mono_get_method): use pinvoke for internal call
15029
15030         * icall.c: use pinvoke for internal call
15031
15032         * loader.c (method_from_memberref): set the method name
15033
15034 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
15035
15036         * metadata.c: help the compiler generate better code for
15037         mono_class_from_mono_type ().
15038
15039 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
15040
15041         * class.c (mono_class_metadata_init): delayed computing of the
15042         class size to mono_class_metadata_init ()
15043
15044 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
15045
15046         * class.c, class.h: add an interfaces member to MonoClass.
15047         * image.c, image.h: add assembly_name field to MonoImage
15048         from the assembly table.
15049         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
15050
15051 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
15052
15053         * class.c: Handle Array in mono_class_from_mono_type ().
15054         * metadata.c, pedump.c: some endian fixes.
15055
15056 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
15057
15058         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
15059         * metadata.c: fix small problem introduced with the latest commit.
15060
15061 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
15062
15063         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
15064         We don't need a MonoMetadata pointer anymore to compare signatures in
15065         mono_metadata_signature_equal (), update callers.
15066         Reduced memory usage an number of allocations for MonoMethodHeader and
15067         MonoMethodSignature.
15068
15069 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
15070
15071         * metadata.c: added compare for szarray.
15072
15073 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
15074
15075         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
15076         and add a couple more types to it and mono_defaults. Give an hint on
15077         classes that need implementing in our corlib and are referenced
15078         in mscorlib.
15079
15080 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
15081
15082         * class.h, class.c: keep track if a class is also an Enum.
15083         * loader.c: Implement a couple more types for use in libffi
15084         marshalling. Gives better diagnostics when failing to dlopen
15085         a library. Set method->klass for P/Invoke methods, too.
15086
15087 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
15088
15089         * class.c, class.h: add a MonoType this_arg to MonoClass that
15090         represents a pointer to an object of the class' type that
15091         can be used by the interpreter and later the type cache.
15092         Add best guess alignment info for valuetype objects.
15093
15094 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
15095
15096         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
15097         into MonoType: one less level of indirection and allocation and
15098         simplifies quite a bit of code. Added cache for MonoTypes that are
15099         used frequently, so that we don't need to allocate them all the time.
15100
15101 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
15102
15103         * class.c (mono_class_create_from_typedef): System.Enum is also a
15104         value type, although it does not derive from System.ValueType
15105         (maybe a bug in the ms compiler?)
15106
15107         * metadata.c (mono_type_size): return the right size for value types
15108
15109         * loader.c (mono_get_method): only initialize method header if not abstract
15110
15111         * class.c (mono_class_from_mono_type): use mono_default values. 
15112
15113 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
15114
15115         * *: use MonoClass pointers instead of <type_tokens>
15116         
15117         * class.h: new flag: metadata_inited.
15118
15119         * class.c (mono_class_metadata_init): impl.
15120         (mono_class_instance_size): impl.
15121         (mono_class_data_size): impl.
15122
15123 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
15124
15125         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
15126         MonoClass now has the name and name_space fields. 
15127         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
15128         mono_get_method () takes and optional MonoClass as argument.
15129         Removed mono_typedef_from_name() and added mono_class_token_from_name()
15130         instead that takes advantage of a map from class names to typedef
15131         tokens in MonoImage.
15132
15133 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
15134
15135         * metadata.c: zero is not a valid alignment boundary.
15136         Merge MONO_TYPE_VOID in default decoding code.
15137
15138 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
15139
15140         * image.h: merged MonoMetadata into MonoImage
15141
15142         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
15143         identify the type of elements.
15144
15145 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
15146
15147         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
15148         * cil-coff.h: split MonoMSDOSHeader and add size info.
15149         * image.c: add some consistency checks.
15150         * metadata.c: fix row size computation: one programmer
15151         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
15152         add explanation for the locator routine.
15153         Fix decoding of size in method header.
15154         
15155 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
15156
15157         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
15158         (g_concat_dir_and_file): Bring g_concat_dir_and_file
15159         function from gnome-libs.  This uses the right path separator
15160         based on the OS, and also works around a bug in some systems where
15161         a double slash is not allowed. 
15162         (default_assembly_name_resolver): Use g_concat_dir_and_file
15163         (mono_assembly_open): ditto.
15164
15165 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
15166
15167         * metadata.c (mono_metadata_signature_equal): impl.
15168
15169         * *: void is now a realy MonoType (instead of using NULL)
15170         
15171         * metadata.c (do_mono_metadata_parse_type): use
15172         mono_metadata_parse_type to parse void value.
15173
15174 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
15175
15176         * metadata.c, metadata.h: in the signature and method header store
15177         only the space required for holding the loca vars and incoming arguments.
15178
15179 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
15180
15181         * metadata.c (do_mono_metadata_parse_type): treat void like any
15182         other type (instead of assigning NULL);
15183
15184 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
15185
15186         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
15187
15188 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
15189
15190         * image.c (do_mono_image_open): added a cache for arrays.
15191
15192 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
15193
15194         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
15195         decode a single column from a row in a metadata table and changes
15196         to take advantage of it in the typedef locator (gives a nice speed up).
15197         Store offset info for function params.
15198
15199 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
15200
15201         * image.h (MONO_IMAGE_IS_CORLIB): removed 
15202
15203 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
15204
15205         * assembly.c: how could mono_assembly_close () had ever worked?
15206         * metadata.c, metadata.h: provide offset info for local vars.
15207         Implement mono_type_size () to take care of alignment as well
15208         as size (it was mono_field_type_size in cli/class.c before).
15209
15210 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
15211
15212         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
15213
15214         * assembly.h (CORLIB_NAME): set to corlib.dll
15215
15216         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
15217
15218 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
15219
15220         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
15221         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
15222         tokentype.h: massive namespace cleanup.
15223
15224 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
15225
15226         * metadata.h, metadata.c: decode exception clauses when parsing method header.
15227
15228 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
15229
15230         * metadata.c (mono_metadata_free_type): added check for type !=
15231         NULL (void) before calling mono_metadata_free_type()
15232
15233 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
15234
15235         * metadata.h, row_indexes.h: added header with enumerations to use
15236         to index in the columns from tables in metadata and to decode coded
15237         tokens: we should start using this instead of embedding magic numbers
15238         all over the code.
15239
15240 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
15241
15242         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
15243         Move metadata_t info from cli_image_info_t to MonoImage, where
15244         it's easily accessible. Changed all the uses accordingly.
15245         Added the method and class caches to MonoImage.
15246         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
15247         and mono_metadata_decode_value () signature to be more consistent
15248         with the other parse functions (and simplify code). Taken advantage
15249         of zero-length array allocation with GCC. Removed reduntant (and
15250         wrong) MonoFieldType struct and use MonoParam instead. Changed
15251         mono_metadata_parse_field_type () to use common code for parsing.
15252         Added mono_metadata_typedef_from_field () and
15253         mono_metadata_typedef_from_method () to lookup a typedef index from a
15254         field or method token.
15255         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
15256
15257 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
15258
15259         * metadata.c (mono_metadata_parse_field_type): Implement. 
15260         (do_mono_metadata_parse_type): Split engine from
15261         mono_metadata_parse_type, so that we can create smaller structures
15262         for things that just have one pointer to the MonoType (look at
15263         the MonoFieldType)
15264
15265 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
15266
15267         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
15268         as Jan Gray found out, it is incorrect. 
15269
15270 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
15271
15272         * assembly.c: Implement asssembly loading.  This loads an image
15273         and loads all the referenced assemblies.  Come to think of it, we
15274         could always do lazy loading of the assemblies. 
15275
15276         * image.c (mono_image_open): Keep loaded images in a hashtable.
15277
15278         * image.h (MonoImage): Add reference count.
15279
15280 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
15281
15282         * assembly.c (mono_assembly_open): Keep track of the file name in
15283         case the assembly has no ASSEMBLY table.
15284
15285         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
15286         from get.c here.
15287
15288 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
15289
15290         * metadata.c, metadata.h: decode local vars in method header
15291         parse function. Change callers accordingly.
15292
15293 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
15294
15295         * metadata.h, cil-coff.h: protect against multiple inclusion.
15296         Added some new structures to hold information decoded from metadata:
15297         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
15298         and relevant decoding/free functions.
15299         * metadata.c: implement decoding functions. Add warning for out of bounds
15300         index in mono_metadata_locate(). Implement mono_get_method () to retreive
15301         all the info about a method signature and invocation. Remove check on
15302         uninitialized local var in parse_mh() and fix memory leak.
15303
15304 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
15305
15306         * metadata.h: More macros.
15307
15308         * tokentype.h: New file.
15309
15310 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
15311
15312         * assembly.c: added a consistency check and initialize
15313         some structures with g_new0().
15314         * metadata.c: fixed a couple more bugs in table size computation
15315         and add other checks for out-of bound access to metadata.
15316
15317 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
15318
15319         * metatada.c: fix bugs computing table sizes. Spew a
15320         warning when index in string heap is out of bounds.
15321
15322 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
15323
15324         * metadata.h: Add a couple of macros to manipulate tokens. 
15325
15326 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
15327
15328         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
15329         cli_section_tables).
15330
15331 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
15332
15333         * metadata.c (mono_metadata_user_string): New function, provides
15334         access to the UserString heap. 
15335
15336 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
15337
15338         * metadata.c: Add inline documentation.
15339
15340 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
15341
15342         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
15343         files. 
15344
15345 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
15346
15347         * typeattr.h: New file, TypeAttribute flags. 
15348
15349 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
15350
15351         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
15352         mono_assembly_ensure_section): Section loading code.
15353         (load_section_tables): Load the sections.
15354
15355         * mono/metadata/metadata.c (mono_metadata_locate_token,
15356         mono_metadata_locate): Functions to locate the information
15357         definition given a token or a table and an index.
15358         (mono_metadata_compute_table_bases): New.
15359         (compute_size): New function to compute the sizes of the various
15360         tables.
15361
15362         * mono/metadata/metadata.h: Finish listing the different index
15363         types. 
15364
15365         * mono/metadata/pedump.c: Improve to dump new information.
15366
15367 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
15368
15369         * mono/metadata/metadata.c: Entered all the tables matching
15370         Beta2. 
15371
15372         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
15373