fe7bdeb4797ff1925f196535bacda7d07cadb771
[mono.git] / mono / metadata / ChangeLog
1 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
2
3         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
4
5 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
6
7         * assembly.c: removed Mono.Data.SqliteClient from the list of
8         forward-compatible assemblies as it breaks the ABI (bug #81899).
9
10 2007-06-19  Raja R Harinath  <rharinath@novell.com>
11
12         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
13         lookup/update with the loader lock.
14         * reflection.c (mono_class_bind_generic_parameters): No need to
15         protect mono_metadata_lookup_* with the loader lock.
16         * class.c (inflate_generic_type): Likewise.
17         
18         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
19         on a generic instantiated type.
20
21 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
22
23         *verify.c: produce meanfull error messages on verification error
24         *verify.c: fixed some cases of verification errors reported as validation errors
25         *pedump.c: fixed the error name array, now it shows validation errors properly
26         *verify.h: fixed the contant that should be used for verification errors
27
28 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
29
30         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
31         for bug #77596, 81858 and 80743 (generics data structures on domain
32         unload).
33
34 2007-06-15  Raja R Harinath  <rharinath@novell.com>
35
36         Avoid allocating 'MonoGenericContext' on the heap.
37         * class-internals (_MonoMethodInflated::context): Make field
38         inline, not a pointer.
39         * loader.c (method_from_methodspec): Allocate 'new_context' on the
40         stack.  Use the context embedded within the inflated method as the
41         hash key, rather than 'new_context'.
42         * class.c (inflate_generic_context): Simplify.  Return a struct
43         rather than allocating on the heap.
44         (mono_class_inflate_generic_method_full): Update to changes.  Now,
45         doesn't salt away a copy of the context -- simplifying the
46         lifetime rules of a 'MonoGenericContext *'.
47         (mono_method_get_context): Return pointer to embedded context.
48         (setup_generic_array_ifaces): Allocate temporary context on stack.
49         * reflection.c (inflate_mono_method): Likewise.
50         (mono_reflection_bind_generic_method_parameters): Likewise.
51         Use the context embedded within the inflated method as the hash key.
52
53         Avoid a source of allocation of 'MonoGenericContext'.
54         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
55         and 'cached_context' fields into embedded 'MonoGenericContext' field.
56         * class.c: Update to changes.
57         (mono_generic_class_get_context): Simplify drastically.  Now just
58         returns a pointer to the field.
59         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
60         argument as a const pointer.
61         (mono_metadata_generic_context_equal): Likewise.
62         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
63         Update to changes.
64
65 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
66
67         * verify.c improved the handling of brtrue/brfalse, factored out common code
68
69 2007-06-14  Raja R Harinath  <rharinath@novell.com>
70
71         Kill MonoGenericMethod.
72         * class-internals.h (MonoGenericContext::method_inst): Rename from
73         'gmethod' and convert to a MonoGenericInst.
74         (MonoGenericMethod): Remove.
75         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
76         * loader.c (method_from_methodspec): Update to changes.  Use a
77         MonoGenericContext as the key to the hashtable.
78         * metadata.c (mono_metadata_generic_context_equal): Rename from 
79         'mono_metadata_generic_method_equal' and take MonoGenericContext.
80         (mono_metadata_generic_context_hash): Likewise from
81         'mono_metadata_generic_method_hash'.  Change hash function.
82         (mono_metadata_load_generic_params): Update to changes.
83         (mono_get_shared_generic_method): Remove.
84         * metadata-internals.h (mono_get_shared_generic_method): Remove.
85         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
86         (inflate_generic_context): Likewise.
87         (mono_class_inflate_generic_method_full): Likewise.
88         (setup_generic_array_ifaces): Likewise.
89         (mono_class_create_from_typespec): Likewise.
90         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
91         (method_encode_methodspec): Update callsite.
92         (reflection_methodbuilder_to_mono_method): Update to changes.
93         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
94         MonoGenericContext as the key to the hashtable.
95         (inflate_mono_method): Update to changes.
96
97         * class-internals.h (MonoGenericMethod::container): Remove.
98         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
99
100 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
101
102         * profiler-private.h, profiler.c, profiler.h: added API to profile
103         exception events.
104
105 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
106
107         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
108
109 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
110
111         * verify.c: method invocation is now validated, now we verify parameter types on stack.
112         Fixed overflow and underflow not aborting the verification process.
113
114 2007-06-13  Mark Probst  <mark.probst@gmail.com>
115
116         * class-internals.h (MonoStats): Added stats entries for dynamic
117         code allocations.
118
119 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
120
121         * loader.c (mono_free_method): Free header->locals and header->clauses.
122
123         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
124         dynamic case.
125
126         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
127
128         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
129
130 2007-06-12  Raja R Harinath  <rharinath@novell.com>
131
132         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
133         the tables.
134
135 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
136
137         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
138
139 2007-06-11  Raja R Harinath  <harinath@gmail.com>
140
141         MonoGenericMethod on a diet
142         * class-internals.h (_MonoMethodInflated::reflection_info): Move
143         here ...
144         (_MonoGenericMethod::reflection_info): ... from here.
145         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
146         Update to changes.
147         * reflection.c (inflate_mono_method): Likewise.
148         (mono_reflection_bind_generic_method_parameters): Likewise.
149
150 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
151
152         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
153         *verify.c: factored long ldarg forms to share code with short forms
154
155 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
156
157         *verify.c: fixed code formating factored some duplicate code
158         into a new function
159
160         *verify.h: fixed binary incompatibility introduced earlier
161
162         *pedump.c: fixed formating
163
164 2007-06-11  Raja R Harinath  <harinath@gmail.com>
165
166         Fix assertion when disassembling Mono.C5.dll
167         * loader.c (method_from_methodspec): Avoid inflating a method
168         twice with the same context.  If the methodref is inflated, use
169         the declaring method instead.
170
171         * class.c (mono_class_from_generic_parameter): Fix case similar to
172         bug #81830 handled below, but for method containers.
173
174 2007-06-10  Raja R Harinath  <harinath@gmail.com>
175
176         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
177         get_shared_generic_class.  Directly inflate the instance.
178         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
179         (inflate_generic_class): Delete.
180         (get_shared_generic_class): Delete.  Move setting of
181         'cached_class' and 'cached_context' ...
182         * metadata.c (mono_metadata_lookup_generic_class): ... here.
183
184         * metadata.c (mono_metadata_lookup_generic_class): Change
185         signature to take the components of a MonoGenericClass rather than
186         an allocated MonoGenericClass.  Change semantics to be intern-like.
187         * reflection.c (mono_class_bind_generic_parameters): Update to
188         changes.  Make locking region tighter.
189         * class.c (inflate_generic_class): Update to changes.
190         (get_shared_generic_class): Likewise.
191         * metadata-internals.h: Likewise.
192
193         * reflection.c (mono_class_bind_generic_parameters): Take and
194         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
195         (mono_reflection_bind_generic_parameters): Use
196         'mono_class_bind_generic_parameters' rather than duplicate the code.
197         * class.c (mono_bounded_array_class_get): Update to changes.
198         * object-internals.h: Likewise.
199
200         * reflection.c (mono_class_bind_generic_parameters): Only support
201         parameterizing generic type definitions.  Remove support for other
202         open types.
203
204 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
205
206         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
207
208         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
209         in the dynamic case.
210
211 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
212
213         * threads.c: When cleaning up thread, reset the Background bit.
214         Fixes bug #81720.
215
216 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
217
218        * metadata.c: Move variable declarations to top of scope.
219        * verify.c: Move variable declarations to top of scope.
220
221        Code is contributed under MIT/X11 license.
222
223 2007-06-08  Raja R Harinath  <rharinath@novell.com>
224
225         * reflection.c (mono_class_bind_generic_parameters): Replace
226         open-coded loop with mono_metadata_inflate_generic_inst.
227
228         * class.c (get_shared_generic_class): Don't call
229         mono_get_shared_generic_inst.  Use the container's own
230         'class_inst'.
231
232         * metadata.c (mono_metadata_load_generic_params): Move
233         initialization of 'context' field here from ...
234         * class.c (mono_class_create_from_typedef): ... here, and ...
235         * loader.c (mono_get_method_from_token): ... here.
236
237         * class.c (get_shared_generic_class): Rename from
238         mono_get_shared_generic_class and make static.
239         (mono_get_shared_generic_inst): Move to metadata.c.
240         * loader.c (mono_get_shared_generic_method): Likewise.
241         * class-internals.h, metadata-internals.h: Update to changes.
242
243         Fix #81830
244         * class.c (mono_class_from_generic_parameter): Don't assume a
245         generic container owner exists.  Generic containers from monodis
246         don't have any.
247
248 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
249
250         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
251         * verify.h: new typedefs to returns the non-verifiable status
252         * verify.c: initial implementation of generics, stack merging and object compatibility check
253
254 2007-06-06  Mark Probst  <mark.probst@gmail.com>
255
256         * class.c, image.c, class-internals.h (MonoImage): class_cache is
257         a MonoInternalHashTable again (fixed bug in internal hash table
258         code).
259
260 2007-06-06  Mark Probst  <mark.probst@gmail.com>
261
262         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
263         MonoInternalHashTable again (fixed bug in internal hash table
264         code).
265
266 2007-06-06  Mark Probst  <mark.probst@gmail.com>
267
268         * class.c, image.c, class-internals.h, domain.c,
269         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
270         changes.  Have to figure out what makes them break the SWF
271         regression.
272
273 2007-06-04  Mark Probst  <mark.probst@gmail.com>
274
275         * class.c, image.c, class-internals.h (MonoImage): class_cache is
276         a MonoInternalHashTable now.
277
278 2007-06-04  Mark Probst  <mark.probst@gmail.com>
279
280         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
281         MonoInternalHashTable now.
282
283 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
284
285         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
286         invoke_impl code.
287
288         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
289
290         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
291         dependent trampoline.
292
293         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
294
295         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
296
297 2007-05-29  Robert Jordan  <robertj@gmx.net>
298
299         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
300
301 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
302
303         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
304
305 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
306
307        * marshal.c: Fix interface lookup loops for
308        cominterop_get_com_slot_for_method and 
309        cominterop_get_method_interface. Only need to lookup
310        if type is a class, else use interface type method is on.
311
312        Code is contributed under MIT/X11 license.
313
314 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
315
316         * reflection.c: HasSecurity can be present even if no specially 
317         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
318         SecurityAttribute). Fix CAS regression tests on buildbot.
319
320 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
321
322        * appdomain.c: Add configure checks for header files.
323        * image.c: Add configure checks for header files.
324        * file-io.c: Add configure checks for header files.
325        * debug-mono-symfile.c: Add configure checks for header files.
326        * threadpool.c: Add configure checks for header files.
327        * console-io.c: Add configure checks for header files.
328        * profiler.c: Add configure checks for header files.
329        * rawbuffer.c: Add configure checks for header files.
330        * icall.c: Add configure checks for header files.
331        * rand.c: Add configure checks for header files.
332        * socket-io.c: Add configure checks for header files.
333
334        Code is contributed under MIT/X11 license.
335
336 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
337
338         * reflection.c (mono_custom_attrs_from_builders): Remove the 
339         assertion as it breaks the build.
340         
341         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
342
343         * reflection.c (lookup_custom_attr): Make a copy here too.
344
345         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
346         dynamic images.
347
348         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
349         images.
350
351         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
352         info.
353
354 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
355
356         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
357         (load_cattr_value): Ditto.
358
359 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
360
361         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
362
363 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
364
365         * threads.c: In "start_wrapper", set apartment_state to MTA if
366         apartment_state is Unknown and we're running on 2.0 profile or
367         higher.
368         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
369         to main method, then set apartment_state to Unknown on 1.0 profile,
370         and MTA on 2.0 profile.
371
372 2007-05-16  Jb Evain  <jb@nurv.fr>
373
374         * class-internals.h (MonoDefaults): Add an attribute_class and
375           customattribute_data_class.
376         * domain.c (mono_init_internal): Populate them.
377         * reflection.c: Use them to remove duplicates. Make a vew
378         MonoClass variables `static'.
379
380 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
381
382         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
383         step in implementing IMT, so that all isinst checks now can go
384         through the bitmap.
385         This was needed because vtables for TransparentProxy need to look
386         like the vtable of the "target" class, so they need to point to
387         its interface bitmap directly.
388
389         * object.c: inside "mono_class_create_runtime_vtable" and
390         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
391
392 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
393
394         * object-internals.h
395           culture-info.h : added territory field in MonoCulture and
396           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
397         * locales.c : fill territory field above too.
398         * culture-info-table.h : regenerated.
399
400 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
401
402         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
403         Fixes #81599.
404
405 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
406
407         * object.c: Always initialize apartment, even if 
408         there is no custom attributes on entry point.
409         
410         Code is contributed under MIT/X11 license.
411
412 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
413
414         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
415         * metadata.c: If no encoding is set, check for unicode
416         on class.
417         
418         Code is contributed under MIT/X11 license.
419
420 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
421
422         * threads.c: Handle if mono_thread_current returns NULL 
423         
424         Code is contributed under MIT/X11 license.
425
426 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
427
428         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
429         in start_wrapper. Added mono_thread_init_apartment_state and
430         mono_thread_cleanup_apartment_state.
431         * object.c: Initialize thread apartment state on main thread
432         by checking for STAThreadAttribute on entry point.
433         * object-internals.h: Add apartment_state field to MonoThread.
434         * threads-types.h: Add unmanaged definition of 
435         System.Threading.ApartmentState, MonoThreadApartmentState.
436         
437         Code is contributed under MIT/X11 license.
438         
439 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
440
441         * class.c: Fix windows build.
442         * class-internals.h: Fix windows build.
443         
444         Code is contributed under MIT/X11 license.
445
446 2007-05-08  Robert Jordan  <robertj@gmx.net>
447
448         * process.c (CreateProcess_internal):
449         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
450         .CreateNoWindow was specified. Fixes #81496.
451
452 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
453
454         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
455         step in implementing IMT, replaced it with two compact arrays
456         (interfaces_packed and interface_offsets_packed) and a bitmap that
457         is used for isinst checks (interface_bitmap).
458
459         * class.c: (compare_interface_ids): compare function to pass to
460         bsearch when looking for an interface with a given id.
461         (mono_class_interface_offset): reimplemented using bsearch on
462         interfaces_packed, getting the offset from interface_offsets_packed.
463         (print_implemented_interfaces): utility debugging function.
464         (setup_interface_offsets): reworked to initialize interfaces_packed,
465         interface_offsets_packed and interface_bitmap.
466
467         * object.c: replaced all accesses to "MonoClass.interface_offsets"
468         with uses of interfaces_packed and interface_offsets_packed.
469
470 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
471
472         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
473         mono_class_interface_offset prototype to wrap all accesses to
474         "MonoClass.interface_offsets".
475
476         * class.c: Implemented mono_class_interface_offset, and wrapped all
477         accesses to "MonoClass.interface_offsets".
478
479         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
480         "MonoClass.interface_offsets".
481
482 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
483
484         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
485         GetMethodFromHandle overloads (bug #78637).
486
487 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
488
489         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
490         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
491
492 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
493
494         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
495         #81498.
496
497         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
498         gracefully.
499         (mono_custom_attrs_from_index): Ditto.
500
501         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
502         Fixes #81501.
503
504 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
505
506         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
507         is now allocated from a mempool.
508
509 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
510
511         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
512         caller holds threads_lock, leading to deadlocks. Fixes #81476.
513
514 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
515
516         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
517         mono_loader_clear_error () too late. Fixes #81463.
518
519 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
520
521         * culture-info-table.h : regenerated.
522
523 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
524
525         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
526         is missing.
527
528 2007-04-25  Dick Porter  <dick@ximian.com>
529
530         * Makefile.am: Put the mingw enforced-optimisation back into the
531         PLATFORM_WIN32 section.
532
533 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
534
535         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
536         patch.
537
538         * image.c (mono_image_load_module): New API function to load a module reference.
539
540         * image.c (load_modules): Load modules lazily. Fixes #80812.
541
542         * class.c (mono_class_from_typeref): Use mono_image_load_module.
543         
544         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
545
546         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
547         to mono_image_load_module_dynamic.
548
549 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
550
551         * marshal.c: Fix calling convention for CCW on non-windows
552         platforms. STDCALL on windows, CDECL everywhere else to work 
553         with XPCOM and MainWin COM.
554         
555         Code is contributed under MIT/X11 license.
556
557 2007-04-23  Martin Baulig  <martin@ximian.com>
558
559         Fix #80969.
560
561         * loader.c
562         (method_from_memberref): Added `gboolean *used_context' argument.
563         (mono_get_method_from_token): Likewise.
564         (mono_get_method_full): Don't insert the method in the cache when
565         `used_context' is true.
566
567 2007-04-23  Raja R Harinath  <rharinath@novell.com>
568
569         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
570
571         * reflection.c (mono_reflection_bind_generic_parameters): Don't
572         create new MonoTypes for returned types.
573         * class.c (mono_generic_class_get_class): Export mono-internal.
574         * class-internals.h: Update to changes.
575
576 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
577
578         * threadpool.c, threadpool.h, icall-def.h: patch from
579         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
580
581 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
582
583         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
584         
585         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
586
587         * threads.c (mono_thread_get_stack_bounds): New helper function.
588
589         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
590         Correctly compute stack bounds when attaching. Fixes #81394.
591
592 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
593
594         * reflection.c: fix handling of doubles in custom attributes
595         for the arm-fpa format (bug #81368).
596
597 2007-04-18  Raja R Harinath  <rharinath@novell.com>
598
599         * reflection.c (assembly_add_win32_resources): Mildly relax an
600         bounds check to let the end pointer point just past the end of the
601         allocated buffer.  (may fix #81384)
602
603 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
604
605         * culture-info-table.h : regenerated.
606
607 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
608
609         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
610         the thread is aborted early.
611
612 2007-04-05  Dick Porter  <dick@ximian.com>
613
614         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
615         FindFirstFile()/FindNextFile() to find entries.  This lets the
616         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
617         81038.
618
619         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
620         the parameters of
621         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
622
623 2007-04-04  Martin Baulig  <martin@ximian.com>
624
625         * debug-helpers.c
626         (mono_method_desc_full_match): Add support for nested classes.
627
628 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
629
630         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
631
632 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
633
634         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
635         waiting for too many threads.
636
637 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
638
639         * environment.c: Fix return value check on uname so we can get the 
640         executing version on Solaris operating systems.
641
642 2007-03-28  Jb Evain  <jbevain@gmail.com>
643
644         * class.c (mono_type_get_name_recurse): Complete the
645         fix for the creation of assembly qualified names for
646         pointer types. Fixes #81208.
647
648 2007-03-27  Dick Porter  <dick@ximian.com>
649
650         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
651         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
652         changed.
653
654         * threads.c
655         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
656         the value of ReleaseMutex().
657
658 2007-03-27  Dick Porter  <dick@ximian.com>
659
660         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
661         in little-endian order, not network endian, so must be converted
662         to host endian here.  Fixes bug 80593.
663
664 2007-03-22  Jb Evain  <jbevain@gmail.com>
665
666         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
667         qualified names for pointer types. Fixes #81208.
668
669 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
670
671         * marshal.c: Add support for PreserveSigAttribute. 
672         
673         Code is contributed under MIT/X11 license.
674
675 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
676
677         * process.c: Fix endianness issues. Fixes #81126.
678
679         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
680         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
681
682         * image.c (mono_image_lookup_resource): Make this work on big-endian
683         machines.Change API contract so the caller needs to free the return value.
684         
685         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
686         API change.
687         
688 2007-03-14  Martin Baulig  <martin@ximian.com>
689
690         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
691         mono_type_get_desc() as well.
692
693 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
694
695         * icall.c:  Fix environ access in VS.  
696         
697 2007-03-13  Alp Toker  <alp@atoker.com>
698
699         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
700         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
701         #63841.
702
703 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
704
705         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
706         circular references among dynamic methods. Fixes #81091.
707
708         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
709
710 2007-03-09  Martin Baulig  <martin@ximian.com>
711
712         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
713
714 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
715
716         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
717         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
718         
719         Code is contributed under MIT/X11 license.
720         
721 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
722
723         * loader.c: Reapply patch for bug #79424.
724
725 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
726
727         * metadata.c (mono_type_to_unmanaged): Only convert object to
728         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
729
730 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
731
732         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
733         (and incorrectly set) is_reference field from MonoGenericInst.
734
735 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
736
737         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
738         a little earlier.
739
740         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
741
742         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
743
744 2007-03-05  Miguel de Icaza  <miguel@novell.com>
745
746         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
747         FileOptions.1 value to mean "temporary", map that to
748         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
749
750         Fixes 80688
751
752 2007-03-03  Marek Habersack  <mhabersack@novell.com>
753
754         * appdomain.c: implement MS .Net style shadow copying. Copies of
755         the assemblies are made in a subdirectory of the dynamic base
756         directory, the assembly names are preserved.
757         Copy .mdb and .config files along with the assemblies being shadowed.
758
759 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
760
761         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
762         (emit_marshal_handleref): Ditto.
763
764         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
765         on Visual C++. Fixes #80671.
766
767 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
768
769         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
770         for clone operations.
771
772 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
773
774         * marshal.c: Fix warnings.
775
776 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
777
778         * loader.c: allow case-insensitive matching of the dll name
779         in dllmap handling when prefixed with "i:".
780
781 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
782
783         * threads.c: Fix #ifdef for dummy_apc function for VS.
784
785 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
786
787         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
788
789 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
790         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
791         giving precedence to the methods with a fully qualified name
792         (InterfaceName.MethodName) when building the interface sections
793         of the vtable.
794
795 2007-02-16  Dick Porter  <dick@ximian.com>
796
797         * threadpool.c (append_job): Fix fast-path array handling, so it's
798         less likely the array will grow exponentially when the load is
799         heavy.
800
801 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
802
803         * metadata-internals.h, loader.c: fix dllmap lookup order
804         for non-function maps, too, and prepare for fallback code.
805
806 2007-02-12  Robert Jordan  <robertj@gmx.net>
807
808         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
809         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
810         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
811         GlobalFree. Fixes a part of bug #77075.
812
813 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
814
815         * loader.c: implemented typedef parent in field memberref.
816
817 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
818
819         * marshal.c: Fix warnings and remember to call Release on
820         IUnknown of RCW.
821         
822         Code is contributed under MIT/X11 license.
823
824 2007-02-10  Miguel de Icaza  <miguel@novell.com>
825
826         * class-internals.h: Add MonoHandleRef definition, and
827         handleref_class to mono_defaults. 
828
829         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
830         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
831
832         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
833         (do nothing on this stage)
834         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
835         (emit_marshal_handleref): New method, used for argument handling
836         of HandleRefs. 
837
838 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
839
840         * class.c (mono_class_setup_parent): Lazily init com types.
841         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
842         init com types.
843         * object.c (mono_remote_class_vtable): Lazily init com types.
844         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
845         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
846         * domain-internals.h: Expose mono_init_com_types.
847         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
848         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
849         Add support for COM Callable Wrapper marshalling.
850         * marshal.h: Add icall definitions.
851         * gc.c: Handle freeing of CCWs in finalizer code.
852         
853         Code is contributed under MIT/X11 license.
854
855 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
856
857         * reflection.c: changed all the signature encoding code to use
858         a variable-sized buffer.
859
860 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
861
862         * marshal.c: locking fixes: never take the loader lock
863         or other runtime locks when holding the marshal lock
864         (fixes bug#80664).
865
866 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
867
868         * marshal.c: make the delegate function pointer mapping
869         work for the moving GC.
870
871 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
872
873         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
874         for bug #80618.
875
876 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
877
878         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
879         gmodule.
880
881 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
882
883         * threadpool.c: made the code moving-GC safe.
884
885 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
886
887         * assembly.c, boehm-gc.c, class-internals.h, class.c,
888         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
889         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
890         warning cleanup.
891         * reflection.c: warning cleanup, some threading and moving GC fixes.
892
893 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
894
895         * class.c, loader.c: create the needed Set/Get/Address array methods
896         as well as the .ctors in mono_class_init (), fixes bug #80567.
897
898 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
899
900         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
901         we doesn't decrease its alignment. Should fix the sparc build.
902
903 2007-01-24  Dick Porter  <dick@ximian.com>
904
905         * socket-io.c
906         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
907         Create the returned object if we need to ignore an unsupported
908         socket option.  Fixes a segfault reported by Atsushi.
909
910 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
911
912         * class.c, object.c: restrict GC-tracked fields to
913         UIntPtr fields used inside corlib, so we provide better
914         type info to the GC and also allow broken packing as in
915         bug #80580.
916
917 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
918
919         * sgen-gc.c: removed duplicated function.
920
921 2007-01-19  Miguel de Icaza  <miguel@novell.com>
922
923         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
924         value that means that the value is not supported, but that we
925         should not return a failure, but instead report this as a
926         successful operation.
927
928 2007-01-19  Raja R Harinath  <rharinath@novell.com>
929
930         Fix tests/bug79956.2.il
931         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
932         (mono_generic_class_get_class): If the generic definition in an
933         enum, copy over other fields related to it.
934
935 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
936
937         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
938         genericinst enums (bug #79215).
939
940 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
941         * class.c: Fix bug 80307.
942
943 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
944
945         * image.c: if the file table is not present, try to load
946         all the modules, since we don't have info about them
947         having or not metadata (bug #80517).
948         * assembly.c: allow mono_assembly_load_references () to
949         work for netmodules.
950
951 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
952
953         * image.c, metadata-internals.h, object.c: execute module
954         cctors when running on the 2 runtime if present (bug #80487).
955
956 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
957
958         * icall.c: optimized InitializeArray() on bigendian.
959
960 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
961
962         * icall.c: fix for the broken ARM FPA double format.
963
964 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
965
966         * icall.c: handle endian issues for r4 and r8 types, too, in
967         the InitializeArray() icall.
968
969 2007-01-15  Miguel de Icaza  <miguel@novell.com>
970
971         * loader.c (mono_loader_error_prepare_exception): Clear the error
972         once we have extracted the information from it, do this before we
973         call into the JIT's class loading mechanisms.
974
975         * object.c (mono_class_create_runtime_vtable): Do not clear the
976         loader error before calling mono_class_get_exception_for_failure
977         as the loader error is needed inside
978         mono_class_get_exception_for_failure to throw the error (thinko).
979
980         Fixes #80521
981         
982 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
983
984         * reflection.c: align fields rva data so it's faster to load at
985         runtime.
986
987 2007-01-12  Raja R Harinath  <rharinath@novell.com>
988
989         Prepare to simplify GenericMethod handling.
990         * class-internals.h (mono_method_get_context): New accessor function.
991         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
992         rather than directly accessing '->context' field.
993
994         * class-internals.h (_MonoGenericParam.method): Move ...
995         (_MonoGenericContainer): ... here.  Add into union with klass field.
996         * class.c, icall.c, loader.c, metadata.c, reflection.c:
997         Update to changes.
998
999 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
1000
1001         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
1002         the wrapper type enum and reduce relocations.
1003
1004 2007-01-12  Raja R Harinath  <rharinath@novell.com>
1005
1006         * reflection.c (inflate_mono_method): Reuse method instantiation
1007         from the generic method, if available.
1008
1009 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1010
1011         * marshal.c (emit_marshal_variant): Fix conv_arg
1012         type in last commit, based on whether parameter is byref.
1013         
1014 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1015
1016         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
1017         marshalling.
1018         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
1019         MONO_TYPE_OBJECT back for VARIANT support.
1020
1021 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
1022
1023         * marshal.c, marshal.h, icall-def.h: Implement 
1024         Marshal.ReAllocCoTaskMem.
1025
1026 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
1027
1028         * marshal.c: memory retention fixes: use the proper
1029         image cache for runtime_invoke method lookups.
1030
1031 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
1032
1033         * mempool.c: added code to help debug mempool allocations.
1034
1035 2007-01-11  Dick Porter  <dick@ximian.com>
1036
1037         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
1038         support (experimenting with faking it with IP_MTU_DISCOVER for
1039         systems that don't have IP_DONTFRAGMENT.)
1040         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
1041         icall.
1042
1043         * icall-def.h: new System.Net.Sockets.Disconnect icall.
1044
1045         * socket-io.h: Add new fields to MonoSocketAsyncResult
1046         corresponding to the new ones in Socket.cs.
1047
1048 2007-01-11  Raja R Harinath  <rharinath@novell.com>
1049
1050         Fix IronPython regression mentioned in #80249
1051         * metadata.c (do_mono_metadata_parse_generic_class): Clear
1052         'cached_context' field, since it may have been initialized as a
1053         side-effect of metadata parsing.
1054
1055         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
1056         (_MonoGenericClass.cached_class): Move here and rename from lone
1057         remaining field of ...
1058         (_MonoInflatedGenericClass): ... this.  Remove.
1059         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
1060         to changes.
1061
1062         Fix mcs/tests/test-128.cs regression.
1063         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
1064         2007-01-10 change below.
1065         [MONO_TYPE_OBJECT]: Recurse into array case.
1066
1067 2007-01-11  Raja R Harinath  <harinath@gmail.com>
1068
1069         * class-internals.h (mono_get_inflated_generic_class): Remove.
1070         * class.c (mono_get_inflated_generic_class): Remove.
1071         (mono_generic_class_get_class): Rename from
1072         mono_class_create_generic.
1073         (mono_class_from_mono_type) [GENERICINST]: Use it.
1074         * reflection.c, metadata.c: Update to changes.  Use
1075         'mono_class_from_mono_type'.
1076
1077 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
1078
1079         * reflection.c: use passed type when encoding an array element
1080         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
1081
1082 2007-01-09  Robert Jordan  <robertj@gmx.net>
1083
1084         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
1085         result arguments (someDelegate.EndInvoke (unrelatedAres)).
1086         Fixes bug #80392.
1087
1088 2007-01-09  Raja R Harinath  <rharinath@novell.com>
1089
1090         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
1091
1092         * object.c (set_value): Avoid aliasing between type->data.klass
1093         and type->data.generic_class.
1094
1095         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
1096
1097 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1098
1099         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
1100         between type->data.klass and type->data.generic_class.
1101
1102 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
1103
1104         * marshal.c: In MS.NET, StringBuilder objects are not copied by
1105         value in out parameters.
1106
1107 2007-01-08  Raja R Harinath  <rharinath@novell.com>
1108
1109         Simplify invariant for MonoGenericClass::klass field.
1110         * class.c (mono_class_create_generic): Verify 'klass' is null.
1111         * metadata.c (do_mono_metadata_parse_generic_class): Don't
1112         initialize 'klass' field.
1113
1114 2007-01-05  Raja R Harinath  <rharinath@novell.com>
1115
1116         Ongoing work to avoid redundant data and simplify invariants.
1117         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
1118         'generic_class', and change type to a GenericInst.
1119         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
1120         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
1121
1122 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
1123
1124         * class.c : skip io-layer under PLATFORM_WIN32.
1125
1126 2007-01-03  Tor Lillqvist  <tml@novell.com>
1127
1128         Fix #80305: In a bundled executable, look in the bundled exe
1129         assembly to determine the runtime version. Add the possibility to
1130         bundle also the machine.config file.
1131         
1132         * assembly.c (mono_assembly_open_from_bundle): Make
1133         non-static. Allow being called even if we have no bundled
1134         assemblies, and return NULL right away in that case.
1135
1136         * domain-internals.h: Declare mono_assembly_open_from_bundle()
1137         here.
1138
1139         * domain.c (app_config_parse): Take an assembly exe file name as
1140         parameter instead of a config file name. Check for a bundled
1141         config file for that assembly by calling
1142         mono_config_string_for_assembly_file() (see below) before looking
1143         for one in the file system.
1144         (get_runtimes_from_exe): Corrsponding change to call of
1145         app_config_parse().
1146         (get_runtimes_from_exe): Check for bundled assembly exe file first
1147         by calling mono_assembly_open_from_bundle(). If no bundled
1148         assembly exe file is found, call mono_image_open() as before to
1149         look it up in the file system.
1150
1151         * mono-config.c: Add variable bundled_machinec_onfig.
1152         (mono_config_string_for_assembly_file): New function.
1153         (mono_config_for_assembly): Move code snippet that looks for a
1154         bundled assembly .config file into the above new function. Call
1155         it.
1156         (mono_register_machine_config, mono_get_machine_config): New
1157         functions to set and retrieve
1158
1159         * assembly.h: Declare mono_register_machine_config().
1160
1161         * mono-config.h: Declare mono_get_machine_config() and
1162         mono_config_string_for_assembly_file().
1163
1164         * icall.c: No declaration of environ necessary on Win32. It is
1165         declared (as a macro expanding to a function call) in stdlib.h.
1166         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
1167         New internal mono function. Returns the value of
1168         mono_get_machine_config() as a Mono string.
1169
1170         * icall-def.h: Add get_bundled_machine_config().
1171
1172 2007-01-04  Raja R Harinath  <rharinath@novell.com>
1173
1174         Remove redundant field
1175         * class-internals.h (_MonoGenericContext.container): Remove field.
1176         * loader.c (mono_method_get_signature_full): Don't parse a
1177         "container" for a signature parse when the signature is inflated
1178         immediately.
1179         (method_from_methodspec): Likewise, for a generic_inst.
1180         * class.c, metadata.c, reflection.c: Update to changes.
1181
1182 2006-01-04  Raja R Harinath  <rharinath@novell.com>
1183
1184         * class-internals.h (_MonoGenericClass): Rename 'context' field to
1185         'cached_context', and change semantics -- it starts off NULL, and
1186         is initialized on demand.
1187         * class.c (mono_generic_class_get_context): New accessor to
1188         replace 'context' field accesses.
1189         (mono_class_get_context): New helper.
1190         (*): Update to changes.
1191         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
1192
1193 2007-01-03  Miguel de Icaza  <miguel@novell.com>
1194
1195         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
1196         before the memcpy.   Fixes Marshal2 regression.
1197
1198 2007-01-02  Jb Evain  <jbevain@gmail.com>
1199
1200         * blob.h: add a MONO_TYPE_ENUM definition
1201         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
1202         fix the encoding of arrays of enums in custom attributes.
1203
1204         Fixes #79666.
1205
1206 2007-01-01  Miguel de Icaza  <miguel@novell.com>
1207
1208         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
1209         string is null terminated, but only cut the string short if it
1210         overflows the buffer.   
1211         
1212         (mono_string_to_byvalstr): Also fix this routine.   The code here
1213         was not properly terminating a string (it was only terminated
1214         because of the previous catch-all memset). 
1215
1216         I left the memset, because I do not know if applications expect
1217         the runtime to clear this region. 
1218
1219         Fixes #79944.
1220
1221         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
1222         Clear the error before returning to unmanaged code to prevent the
1223         runtime from being confused later on (fixes  80420).
1224         (ves_icall_type_from_name): Always call mono_loader_clear_error
1225         after parsing a type that could have failed.
1226         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
1227
1228         * loader.c (mono_loader_clear_error): Fix indentation.
1229
1230 2006-12-28  Martin Baulig  <martin@ximian.com>
1231
1232         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
1233
1234 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
1235
1236         * reflection.c: patch from Rolf Bjarne Kvinge to fix
1237         getting a token for an EnumBuilder.
1238
1239 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
1240
1241         * reflection.c: be more careful in case resource generation
1242         fails to create the data array.
1243
1244 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
1245
1246         * sgen-gc.c: write barrier for clone and fix unregister handles.
1247
1248 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
1249
1250         * reflection.c: some fixes needed in the generics code for the moving GC.
1251
1252 2006-12-22  Robert Jordan  <robertj@gmx.net>
1253
1254         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
1255         account. Fixes bug #80299.
1256
1257 2006-12-21  Raja R Harinath  <rharinath@novell.com>
1258
1259         Fix WaitHandle usage in delegates.
1260         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
1261         * object.c (mono_wait_handle_new): Use the property set method to
1262         initialize the handle.
1263         (mono_wait_handle_get_handle): New.
1264         * threadpool.c (mono_async_invoke): Use it.
1265         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
1266         Likewise.
1267         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
1268
1269 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
1270
1271         * marshal.c (emit_marshal): Call emit_marshal_variant and
1272         emit_marshal_com_interface when applicable.
1273         (emit_marshal_variant, emit_marshal_com_interface): Add
1274         methods for this case and remove if's from emit_marshal_object.
1275         
1276 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
1277
1278         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
1279
1280 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
1281
1282         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
1283         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
1284         and GlobalFree on Windows. Remove FIXME.
1285
1286 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
1287
1288         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
1289         implementation for managed objects.
1290
1291 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
1292
1293         * object.c: implemented code to be used for checking
1294         that no reference field overlaps with non-references.
1295
1296 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1297
1298         * threadpool.c: fix queue code to be compatible with the
1299         moving GC.
1300
1301 2006-12-18  Miguel de Icaza  <miguel@novell.com>
1302
1303         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
1304         in structures by throwing ArgumentNullException.
1305
1306         (emit_marshal_safehandle): Also when they are null parameters.
1307
1308         (emit_marshal_safehandle): Add support for ref
1309         SafeHandles parameters
1310
1311 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
1312
1313         * profiler.c: updated to use the mono-dl API instead of
1314         gmodule.
1315
1316 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1317
1318         * profiler.c: updated to use the mono-dl dynamic loading
1319         API instead of gmodule.
1320
1321 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
1322
1323         * profiler.c: use readlink, older versions of glib don't have
1324         g_file_read_link ().
1325
1326 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1327
1328         * profiler.c: try to detect the path to mono if libc fails to provide
1329         a useful name (bug #80286).
1330
1331 2006-12-16  Raja R Harinath  <rharinath@novell.com>
1332
1333         Fix #80242
1334         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
1335         instance, use the generic type definition instead.
1336         (ves_icall_Type_GetNestedTypes): Likewise.
1337         * class.c (mono_class_create_generic): Always set the
1338         nested_classes of a generic instance to NULL, even if the generic
1339         type definition has nested types.
1340
1341 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
1342
1343         * marshal.c (mono_string_from_bstr): Revert previous Windows change
1344         and fix on Linux.
1345         
1346 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1347
1348         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
1349         my arguments were in the wrong order.   I also fixed the Windows
1350         version which seems to have had the same issue.
1351
1352         (mono_free_bstr): On Unix, this is g_free.
1353         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
1354         conversions (for the tests in corlib to pass).
1355
1356 2006-12-14  Miguel de Icaza  <miguel@novell.com>
1357
1358         * marshal.c (emit_ptr_to_object_conv): For now, ignore
1359         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
1360         exception if a ref SafeHandle in a struct has changed).
1361         
1362         (emit_struct_conv): Do not perform layout checks for classes
1363         derived from SafeHandle, as those are specially handled. 
1364
1365         (emit_object_to_ptr_conv): Add support for
1366         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
1367
1368         (emit_marshal_safehandle): Implement conversion of return values
1369         of safehandles (MARSHAL_ACTION_CONV_RESULT).
1370         
1371         * threads.c: WaitHandle now is compiled with two different handles
1372         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
1373         for 2.0.
1374         
1375         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
1376         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
1377         these routines to cope with both kinds of fields.
1378
1379 2006-12-12  Miguel de Icaza  <miguel@novell.com>
1380
1381         * metadata.c (mono_type_to_unmanaged): Handle the case where
1382         type->data.klass is a SafeHandle, and in that case, return the
1383         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
1384         MONO_MARSHAL_CONV_SAFEHANDLE. 
1385
1386 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1387
1388         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
1389         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
1390         calling emit_marshal_object.
1391
1392         (emit_marshal_safehandle): Implement marshalling of
1393         SafeHandle parameters (no ref support yet).
1394
1395         (MarshalAction): Document the defines as I implement
1396         them for SafeHandle.
1397
1398         (emit_marshal_object): indentation police.
1399
1400         * class-internals.h: Define MonoSafeHandle.
1401         Add safehandle_class to MonoDefaults type.
1402
1403         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
1404         list of classes to check for fields. 
1405
1406         * domain.c (mono_init_internal): Add SafeHandle to the list of
1407         mono_defaults loaded.
1408
1409 2006-12-15  Raja R Harinath  <rharinath@novell.com>
1410
1411         Fix #80253
1412         * reflection.c (mono_reflection_bind_generic_parameters): If the
1413         generic type definition is a type builder, ensure that it is fully
1414         initialized before instantiating it.  Kill some dead code.
1415
1416 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
1417
1418         * object.c: clear the loader_error () before loading
1419         more metadata stuff (bug #80258).
1420
1421 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
1422
1423         * icall.c, icall-defs.h: type modifiers icalls for
1424         parameters and properties.
1425
1426 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
1427
1428         * object.c, icall.c: fixed warnings.
1429
1430 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1431
1432         * marshal.c: fixed a couple of leaks and coding style in a few places.
1433
1434 2006-12-08  Dick Porter  <dick@ximian.com>
1435
1436         * process.c: Cope with NULL ProcessStartInfo arguments on windows
1437         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
1438         80173.
1439
1440 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
1441
1442         * process.c: ProcessStartInfo may have only filename set and
1443         arguments can be NULL.
1444
1445 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
1446
1447         * icall.c: fix leak found by Robert Jordan.
1448
1449 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
1450
1451         * marshal.c, marshal.h: generate managed method to access an element
1452         of a multi-dimensional array.
1453
1454 2006-11-30  Paolo Molaro (lupus@ximian.com)
1455
1456         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
1457
1458 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
1459
1460         * icall.c: back out GetFields () fix until the serialization code is
1461         fixed to not depend on the incorrect behaviour.
1462
1463 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
1464
1465         * profiler.c: provide defaults if none are set.
1466
1467 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
1468
1469         * Makefile.am, attrdefs.h: new public header file with
1470         constants for attributes for use by embedders.
1471
1472 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
1473
1474         * icall.c: GetFields () fix for bug #80064.
1475
1476 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
1477
1478         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
1479         removed long unused icalls.
1480
1481 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
1482   
1483         * marshal.c: 
1484                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
1485                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
1486                 can be generated without a delegate class.
1487                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
1488         
1489         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1490
1491 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1492
1493         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
1494         #80069.
1495
1496 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
1497
1498         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
1499         icall-def.h: added icalls needed by System.GC.
1500
1501 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
1502
1503         * loader.c: ensure the class in catch clauses is handled
1504         correctly for generics methods (fixes bug#79980).
1505
1506 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
1507
1508         * monitor.h, monitor.c: added mono_locks_dump () function
1509         to help debug deadlocks involving managed locks.
1510
1511 2006-11-13  Dick Porter  <dick@ximian.com>
1512
1513         * file-io.c (get_file_attributes): If the file is a symlink try
1514         and get the stat data for the target, but also add the
1515         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
1516         the specs for the windows symlink support, but will probably have
1517         to be reworked when I have test data from a vista machine.  Fixes
1518         bug 79887.
1519
1520 2006-11-13  Dick Porter  <dick@ximian.com>
1521
1522         * gc.c (mono_domain_finalize): 
1523         * marshal.c (mono_delegate_begin_invoke): 
1524         * threadpool.c (socket_io_init, mono_thread_pool_init)
1525         (mono_thread_pool_finish): 
1526         * monitor.c (mono_monitor_try_enter_internal): 
1527         * threads.c (mono_thread_resume, mono_thread_init)
1528         (mono_thread_suspend_all_other_threads)
1529         (mono_thread_execute_interruption): 
1530         * appdomain.c (mono_domain_unload): Check for NULL error returns
1531         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
1532         75733.
1533
1534 2006-11-11  Miguel de Icaza  <miguel@novell.com>
1535
1536         * process.c
1537         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
1538         Only close the handle if the value of the handle is not
1539         INVALID_HANDLE_VALUE.  This just makes the process a bit more
1540         robust.
1541
1542         Improvement for #75733, so that we do not run into this problem. 
1543
1544         
1545         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
1546         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
1547         internal variables.  Fixes #79462 
1548         
1549
1550 2006-11-09  Dick Porter  <dick@ximian.com>
1551
1552         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1553         Use poll() not select().  Fixes bug 79397.
1554
1555 2006-11-09  Raja R Harinath  <rharinath@novell.com>
1556
1557         Fix #79872
1558         * assembly.c (mono_assembly_load_from_full): Check that the given
1559         image has an assembly manifest.
1560
1561 2006-11-09  Ankit Jain  <jankit@novell.com>
1562
1563         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
1564         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
1565         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
1566
1567 2006-11-07  Dick Porter  <dick@ximian.com>
1568
1569         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1570         Put the old resolver behaviour back for pre-2.0 profiles.
1571
1572 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
1573
1574         * threadpool.c: precise GC and locking fixes.
1575
1576 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
1577
1578         * class.c: don't load types that have an explicit unaligned
1579         managed reference. Provide better info in the TypeLoad exception.
1580         Part of the fix for bug #79744.
1581         * object.c: use the correct check for class type load issues.
1582
1583 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
1584
1585         * class.c: enforce alignment of fields with managed references
1586         even when Pack=1 is forced by the user (bug #77788).
1587
1588 2006-11-03  Dick Porter  <dick@ximian.com>
1589
1590         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
1591         If the address reverse lookup fails, return it as the hostname
1592         anyway.  Fixes bug 79721.
1593
1594 2006-11-03  Dick Porter  <dick@ximian.com>
1595
1596         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
1597         Fix build on Windows.
1598
1599 2006-11-02  Dick Porter  <dick@ximian.com>
1600
1601         * icall-def.h: 
1602         * object-internals.h: 
1603         * exception.c (mono_get_exception_thread_interrupted): 
1604         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
1605         Fixes bug 74525.
1606
1607         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
1608         Check for pending Thread.Interrupt.
1609
1610 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
1611         * loader.c: Fixed bug 79684.
1612
1613 2006-10-27  Dick Porter  <dick@ximian.com>
1614
1615         * file-io.c (get_file_attributes): Force symlinks to directories
1616         to be returned as a regular file.  Fixes bug 79733.
1617 2006-10-26  Dick Porter  <dick@ximian.com>
1618
1619         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
1620         CreateFile to open a directory then we need to set the
1621         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
1622
1623 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
1624
1625         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
1626         friends.
1627
1628 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1629
1630         * sgengc.c: small cleanup of timer code.
1631
1632 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
1633
1634         * sgen-gc.c: fix some warnings and start adding support for
1635         complete object removal on domain unload.
1636
1637 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
1638
1639         * assembly.c: build_assembly_name should not consider a version
1640         number without build or revision number invalid. Fixes bug #79715.
1641
1642 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
1643
1644         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
1645         call kernel32 function OutputDebugString directly.
1646         
1647         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
1648         
1649 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
1650
1651         * reflection.c: small cleanup, using a function to insert a MonoString
1652         in the string heap.
1653
1654 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
1655
1656         * reflection.c: moving GC fixes.
1657
1658 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
1659
1660         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
1661         all the objects with finalizers belonging to an unloading appdomain.
1662
1663 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
1664
1665         * sgen-gc.c: added ability to allocate even when the nursery is fully
1666         pinned and fixed a couple of bugs.
1667
1668 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1669
1670         * threads.h: Revert the last change for now.
1671
1672         * threads.h (mono_thread_get_pending_exception): Rename this to
1673         mono_thread_get_undeniable_exception ().
1674
1675 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
1676
1677         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
1678         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
1679         when fname does not refer to valid assembly. This result in a more
1680         meaningful error message.
1681         * exception.c: added mono_get_exception_bad_image_format2 which 
1682         constructs a BadImageFormatException using the ctor taking a custom
1683         message and the file name. Passing in a NULL msg results in a default
1684         message.
1685         * exception.h: define mono_get_exception_bad_image_format2 function.
1686         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
1687         when file name pointed to an invalid IL image. Use 
1688         mono_get_exception_file_not_found2 to construct FileNotFoundException,
1689         as this results in a more meaningful error message.
1690
1691 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
1692
1693         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
1694         #79465.
1695
1696 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
1697
1698         * metadata.c (mono_type_size): Change the align parameter to guint32 for
1699         consistency with the other _size functions.
1700         (mono_type_stack_size): Ditto.
1701
1702         * class.c object.c icall.c: Fix warnings caused by the above change.
1703
1704         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
1705
1706         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
1707
1708         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
1709
1710 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
1711
1712         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
1713         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
1714         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
1715         threadpool.h, threads-types.h: mark more internal functions.
1716
1717 2006-10-11  Dick Porter  <dick@ximian.com>
1718
1719         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
1720         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
1721         reproduce the bug even before applying the fix.)
1722
1723 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
1724
1725         * reflection.c: allow retrieving attributes for arguments in generic
1726         methods (bug #79241).
1727
1728 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
1729
1730         * debug-mono-symfile.c: properly check fopen () result (found by
1731         coverity).
1732
1733 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
1734
1735         * reflection.c: make error message clearer and fixed two
1736         issuelets found by Coverity.
1737
1738 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
1739
1740         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
1741
1742 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
1743
1744         * object-internals.h, gc-internal.h, profiler-private.h:
1745         mark internal functions.
1746
1747 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
1748
1749         * reflection.c: put data in the text section.
1750         * icall.c: recognize more types in type_from_typename ().
1751         * process.c, marshal.c: added some GC FIXMEs.
1752
1753 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1754
1755         * loader.c: check for NULL before initializing.
1756
1757 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
1758
1759         * gc.c (finalizer_thread): Use a non-alertable wait here.
1760
1761         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
1762         until the correct solution is found.
1763
1764 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1765
1766         * reflection.c (mono_module_get_object): Avoid an assert when operating on
1767         modules with no metadata. Fixes #79596.
1768
1769         * image.c (load_metadata_ptrs): Put back the error message when
1770         the #- heap is encountered since the support is not complete yet.
1771
1772 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
1773
1774         * gc.c: do not allow the user to SuppressFinalize () a
1775         delegate because it would leak the trampoline if present.
1776
1777 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
1778
1779         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
1780         PropertyPtr table.
1781
1782 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
1783
1784         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
1785
1786         * metadata.c (mono_metadata_get_param_attrs): Ditto.
1787
1788         * row-indexes.h: Add definitions for *Ptr tables.
1789
1790         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
1791
1792         * metadata.c (mono_metadata_translate_token_index): New helper function to
1793         translate table indexes used in uncompressed metadata.
1794         (mono_metadata_decode_table_row): Ditto.
1795         (mono_metadata_decode_table_row_col): Ditto.
1796
1797         * metadata.c: Add table schema for *Ptr tables.
1798
1799         * class.c loader.c: Use the new helper function to access the affected metadata
1800         tables.
1801         
1802         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
1803         #38532.
1804         
1805 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
1806
1807         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
1808         sequences which can be unbounded in size. Fixes #79583.
1809
1810 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
1811
1812         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
1813         static initialization.
1814
1815         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
1816
1817         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
1818
1819         * domain.c (mono_domain_free): Free up type_init_exception_hash.
1820
1821         * object.c (mono_runtime_class_init): Implement correct semantics when a static
1822         ctor fails, i.e. throw the same exception on subsequent accesses.
1823         
1824 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
1825
1826         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
1827         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
1828         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
1829         Handle marshalling of interfaces and VARIANTs contained in structs.
1830         
1831         Code is contributed under MIT/X11 license.
1832         
1833 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
1834
1835         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
1836         
1837         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
1838         mempool.
1839
1840 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1841
1842         * console-io.c: ignore previous SIGINT handler.
1843
1844 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
1845
1846         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
1847         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
1848         #79460, #79461, #79485.
1849
1850         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
1851
1852         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
1853         #79217.
1854
1855 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
1856
1857         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
1858         could be generated from it.
1859
1860 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
1861
1862         * rand.c: fix read loop to correctly handle EINTR.
1863
1864 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1865
1866         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
1867         internal calls are defined to keep methods closer to the declaring
1868         type and allow a significant reduction in runtime relocations and
1869         memory usage.
1870
1871 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
1872
1873         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
1874         exception message to have FileNotFoundException use the default
1875         assembly load error message. Fixes bug #79426.
1876         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
1877
1878 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1879
1880         * threadpool.c: (start_thread_or_queue) use the root domain when
1881         creating the thread instead of the async object one.
1882
1883 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
1884
1885         * class.c, object.c, class-internals.h, reflection.c:
1886         for arrays, store element_size inside MonoClass (speedup
1887         for array object creation).
1888
1889 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
1890
1891         * icall.c: fixed CodeBase to use the file name and not the module
1892         name (bug #79365).
1893
1894 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
1895
1896         * mono-debug.c, mono-debug.h: export find_method as
1897         mono_debug_find_method ().
1898
1899 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
1900
1901         * debug-helpers.c, class-internals.h: added a few functions useful
1902         when debugging under gdb.
1903
1904 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1905
1906         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
1907         characters that need special handling.
1908
1909 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
1910
1911         * mono-config.c: make the os/cpu specification more flexible,
1912         allowing lists and negation.
1913
1914 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
1915
1916         * marshal.c: COM Interop fixes. Handle case where method->klass.
1917         is interface. Handle BSTR/MonoString when null. Use CDECL as 
1918         calling convention on non-windows platforms. This is for
1919         compatibility with XPCOM and MainWin COM.
1920         
1921         Code is contributed under MIT/X11 license.
1922         
1923
1924 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
1925
1926         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
1927         correctly. Fixes #79217.
1928
1929         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
1930
1931 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
1932
1933         * mono-config.c: allow both an os and cpu attribute for dllmap
1934         and dllentry elemnets to enable a single config file to be used
1935         for multiple architectures.
1936
1937 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
1938
1939         * loader.c: MonoLoaderError was cleared too soon on load failure.
1940         Fixes bug #79424.
1941
1942 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
1943
1944         * icall.c: use the defining class vtable when accessing a
1945         static field, not a pobblibly derived class.
1946
1947 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
1948
1949         * icall.c string-icalls.c: Remove references to unicode.h.
1950
1951         * unicode.h unicode.c Makefile.am: Remove these unused source files.
1952
1953         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
1954
1955         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
1956         indicating the image where custom marshaller types should be looked up.
1957         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
1958         custom marshallers, instead of corlib. Fixes #79425.
1959
1960 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
1961
1962         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
1963
1964 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
1965
1966         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
1967         Implement Environment.ProcessorCount.
1968         
1969         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
1970         Implement Environment.ProcessorCount.
1971         
1972         * icall.c: 
1973         Add Environment.ProcessorCount icall.
1974         
1975         Patch by Jason McFall.
1976
1977 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1978
1979         * assembly.c: don't append .exe/.dll when the filename already contains
1980         one of those extensions.
1981
1982 2006-09-12  Martin Baulig  <martin@ximian.com>
1983
1984         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
1985         to array interfaces.
1986
1987 2006-09-11  Martin Baulig  <martin@ximian.com>
1988
1989         * reflection.c (mono_image_build_metadata): Create the
1990         MethodImpl's after emitting all types and methods, so we don't
1991         need another fixup pass for them.
1992
1993 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
1994
1995         * class.c (mono_class_from_name_case): Fix regression introduced by the last
1996         change.
1997
1998 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
1999
2000         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
2001         unload.
2002
2003 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
2004
2005         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
2006         args is not set. Fixes #78926.
2007
2008 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
2009
2010         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
2011
2012         * image.c (load_class_names): Move this to class.c, and rename it to 
2013         'mono_image_init_name_cache'.
2014         (load_modules): Fix a warning.
2015
2016         * class.c icall.c image.c: Initialize image->name_cache lazily.
2017
2018         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
2019         on its name using information in the AOT file.
2020
2021         * class.c (mono_class_from_name): Use the new hook function.
2022
2023 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
2024
2025         * reflection.c (mono_param_get_objects): Handle enum default parameter values
2026         correctly.
2027
2028         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
2029         Fixes #79289.
2030         
2031 2006-09-06  Martin Baulig  <martin@ximian.com>
2032
2033         * icall.c (mono_lookup_internal_call): Small fix.
2034
2035 2006-09-05  Raja R Harinath  <rharinath@novell.com>
2036
2037         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
2038         double g_free.
2039
2040 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
2041
2042         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
2043         when --debug is specified.
2044
2045 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
2046
2047         * class.c (setup_generic_array_ifaces): Fix a warning.
2048
2049 2006-09-04  Miguel de Icaza  <miguel@novell.com>
2050
2051         * Temporarily remove the patch to assemly.c that checks the
2052         assembly versions as it breaks our gacutil.
2053
2054 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
2055
2056         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
2057
2058         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
2059         a net 1.0 runtime.
2060
2061         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
2062         created using the default ctor. Fixes #79152.
2063         (mono_string_builder_to_utf16): Ditto.
2064
2065 2006-09-01  Martin Baulig  <martin@ximian.com>
2066
2067         Fix handling of the generic array interfaces.
2068
2069         * class-internals.h
2070         (MonoDefaults): Removed `generic_array_class' and added
2071         `generic_ilist' class.
2072
2073         * class.c
2074         (mono_bounded_array_class_get): Add the new generic array interfaces.
2075         (setup_generic_array_ifaces): New static method; create vtable
2076         entries for each method in the generic array interfaces.
2077
2078         * metadata.c
2079         (select_container): Allow "parent-less" generic methods.
2080
2081         * marshal.c
2082         (mono_marshal_get_generic_array_helper): New public method.
2083
2084         * icall.c
2085         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
2086         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
2087         moved the interncall into System.Array.
2088
2089 2006-09-01  Raja R Harinath  <rharinath@novell.com>
2090
2091         A few more cases of avoiding work on types with ->byref set.
2092         Has the real fix for #79238
2093         * icall.c (is_generic_parameter): New helper.
2094         (ves_icall_Type_GetGenericParameterPosition): Use it.
2095         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
2096         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
2097         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
2098         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
2099         reference types.
2100         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
2101         reference types.
2102         (ves_icall_Type_get_IsGenericInstance): Likewise.
2103         (ves_icall_Type_get_IsGenericType): Likewise.
2104
2105 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
2108         class if possible.
2109
2110         * mempool.h (mono_mempool_get_allocated): New helper function.
2111
2112         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
2113         change.
2114
2115         * mempool.c: Fix warnings and the calculation of stats.
2116
2117         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
2118
2119         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
2120
2121         * loader.c (mono_get_method_from_token): Update method_count stat.
2122
2123         * class-internals.h (MonoStats): Add some stats.
2124
2125 2006-08-31 Robert Jordan  <robertj@gmx.net>
2126
2127         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
2128         with managed variants.
2129         All code is contributed under the MIT/X11 license.
2130         
2131 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
2132
2133         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
2134         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
2135
2136         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
2137
2138         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
2139         with cycles in classes.
2140
2141         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
2142
2143         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
2144         missing a [MarshalAs] directive. Fixes #79203.
2145
2146         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
2147         klass->marshal_info. Fixes #79217.
2148
2149 2006-08-30  Martin Baulig  <martin@ximian.com>
2150
2151         Committing a patch from Joachim Ante <joe@otee.dk>:
2152         Add support for binary data symbol stores.
2153
2154         * debug-mono-symfile.c
2155         (mono_debug_open_mono_symbol_file): Renamed into
2156         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
2157         arguments.
2158
2159         * mono-debug.c
2160         (mono_debug_open_image): Added `raw_contents' and `size' args.
2161         (mono_debug_init_2_memory): New public function.
2162
2163 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
2164
2165         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
2166
2167 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2168
2169         * appdomain.c: implement support for ShadowCopyFiles.
2170
2171 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
2172
2173         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
2174         when value is NULL (and should remove CID #51).
2175
2176 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2177
2178         * image.c: moved 2 functions to ../utils.
2179
2180 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
2181
2182         * gc.c: cope with the target object of a GC handle being NULL
2183         (bug #78877).
2184
2185 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
2186
2187         * class.c: recursively check parent's explicit implementations
2188         of interface methods (fixes bug #79125).
2189
2190 2006-08-19  Miguel de Icaza  <miguel@novell.com>
2191
2192         * filewatcher.c: Avoid warnings when building, do not redefine
2193         constants that are defined.
2194
2195         Remove warnings.
2196
2197 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2198
2199         * image.c: don't fail when the link points to an absolute path.
2200
2201 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
2202
2203         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
2204         Fix CID #3.
2205
2206 2006-08-17  Miguel de Icaza  <miguel@novell.com>
2207
2208         * image.c (full_path): A new method used to obtain the actual path
2209         of an assembly even in the presence of symbolic links.  
2210
2211         This is necessary for the case where we are running a binary that
2212         has been GACed, but we are using the "published" path name
2213         ($prefix/mono/1.0/blah.exe) which happens to point to the real
2214         file in the GAC.
2215
2216         This was the source of the failure for the `xsp' command with the
2217         recent AppDomain changes, as far as the runtime was concerned,
2218         there were two different assemblies: $prefix/mono/1.0/blah.exe and
2219         $prefix/mono/gac/blah/version/blah.exe.
2220
2221         (do_mono_image_open): use full path
2222
2223 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2224
2225         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
2226
2227 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
2228
2229         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
2230         domain_id is supplied. Fix CID #241 and corlib's unit tests.
2231
2232 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2233
2234         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
2235         small structures. Fixes #78990.
2236
2237 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
2238
2239         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
2240
2241         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
2242
2243 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2244
2245         * appdomain.c:
2246         * marshal.c: don't load all the assemblies from a domain into newly
2247         created ones. The new domains might have different rules and load
2248         assemblies from different locations. Fixes bug #76757.
2249
2250         Patch by Lluis. Conflicts resolved by Brian Crowell.
2251
2252 2006-08-16  Alp Toker  <alp@atoker.com>
2253
2254         * socket-io.c: First half of the fix for #79084.
2255         Set sa_size to the length of the content, not that of the struct.
2256         Don't add NULL suffix to the content, this should be done in
2257         managed code if needed.
2258
2259 2006-08-14  Raja R Harinath  <rharinath@novell.com>
2260
2261         Fix part of #79012
2262         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
2263         mono_metadata_parse_type returns NULL.
2264
2265 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
2266
2267         * normalization-tables.h : new file for string normalization data.
2268         * locales.c, locales.h, icall.c :
2269           added load_normalization_resource() for string normalization,
2270           and icall as well.
2271         * Makefile.am : added normalization-tables.h to the sources.
2272
2273 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
2274
2275         * marshal.c: Add more helper functions to reduce code duplication and use them
2276         everywhere.
2277
2278 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
2279
2280         * marshal.c: Fix non-x86 stdcall warnings.
2281         
2282         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
2283         them everywhere.
2284
2285 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
2286
2287         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
2288         type check on multi-dimensional arrays. Fixes #79000.
2289
2290 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
2291
2292         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
2293         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
2294         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
2295         * class-internals.h: add is_com_object to class structure.
2296         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
2297         null checks to COM object marshalling. Fix .ctor call on RCW.
2298         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
2299         
2300         All code is contributed under the MIT/X11 license.
2301
2302 2006-08-09  Dick Porter  <dick@ximian.com>
2303
2304         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
2305         racing mono_monitor_allocator_lock() somewhere, so don't delete
2306         the critical section for now.  Found by running and exiting
2307         monodevelop.
2308
2309 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
2310
2311         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
2312         (ves_icall_System_ComObject_FindInterface): Ditto.
2313         (ves_icall_System_ComObject_CacheInterface): Ditto.
2314
2315         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
2316         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
2317
2318 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2319
2320         * threadpool.c: treat pipes from process asynchronous reads as sockets
2321         when reading from them, so we get select/poll or epoll to wait for
2322         data.
2323
2324 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
2325
2326         * loader.c: Fix a typo (CID #233) in the null check.
2327
2328 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
2329
2330         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
2331         Hopefully fixes #78949.
2332         
2333         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
2334         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
2335         bytes. Fixes #78972.
2336
2337 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2338
2339         * filewatcher.c: we need to set errno here.
2340
2341 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2342
2343         * filewatcher.c: let Win32Exception get the error value.
2344
2345 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2346
2347         * filewatcher.c: translate errno into win32 errors for Win32Exception
2348         to know what happened.
2349
2350 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
2351
2352         * threadpool.c: Fix more warnings.
2353
2354         * assembly.c (search_loaded): Fix warnings.
2355
2356         * threadpool.c (mono_thread_pool_finish): Fix warnings.
2357         (mono_async_invoke): Ditto.
2358
2359 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
2360
2361         * object.c (mono_remote_class_vtable): Need to create proxy vtable
2362         entries for __ComObject type in addition to ComImport types.
2363         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
2364         about hash table.
2365         
2366         All code is contributed under the MIT/X11 license.
2367
2368 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
2369
2370         * image.c: avoid tentative loading of modulerefs that contain
2371         no metadata (P/Invoke library names).
2372
2373 2006-07-28  Dick Porter  <dick@ximian.com>
2374
2375         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
2376         mono_loader_lock() somewhere, so don't delete the critical section
2377         for now.  Found by running and exiting monodevelop.
2378
2379 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380
2381         * filewatcher.c: define the inotify syscalls when we're building on
2382         linux and have sys/syscall.h. The build system might not have support
2383         for inotify but the target system might have it.
2384
2385 2006-07-26  Miguel de Icaza  <miguel@novell.com>
2386
2387         * domain.c: Documentation updates.
2388
2389         * loader.c (mono_free_method): Do not release the method
2390         information if we are being profiled, as profilers will use this
2391         information at shut down to present some data to the user.
2392
2393         This is needed so that the profiler does not crash, as the
2394         profiler tends to keep MonoMethods around, and they might become
2395         invalid if we free these.
2396
2397         (mono_get_method_constrained): Return the original CIL stream
2398         method as well, so verification can be performed against it.
2399
2400 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2401
2402         * filewatcher.[ch]: support for inotify file system watcher.
2403         * icall.c: add new internal calls for the inotify file system watcher.
2404
2405 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
2406
2407         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
2408         #78888.
2409
2410 2006-07-20  Dick Porter  <dick@ximian.com>
2411
2412         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
2413         warning.
2414
2415 2006-07-20  Dick Porter  <dick@ximian.com>
2416
2417         * threads.c (start_wrapper): Do the thread cleanup while we still
2418         hold a reference to its object.  Fixes bug 78123.
2419
2420 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
2421
2422         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
2423         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
2424           "managed-to-managed".
2425         * icall.c: Redirect string constructors that take sbyte* to
2426           ves_icall_System_String_ctor_RedirectToCreateString.
2427         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
2428           to CreateString () methods with matching signature.
2429         * reflection.c: Use original security informations for
2430           MONO_WRAPPER_MANAGED_TO_MANAGED.
2431         * security-manager.c: Use original security informations for
2432           MONO_WRAPPER_MANAGED_TO_MANAGED.
2433         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
2434           that is a placeholder and only its address should be used.
2435         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
2436           that is a placeholder and only its address should be used.
2437
2438 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
2439
2440         Begin implementing COM Interop.
2441         * appdomain.c: Increment corlib version.
2442         * class.c: Set ComImport classes' parent to __ComObject.
2443         * loader.c: Mark cominterop methods as such.
2444         * domain.c: Add __ComObject class to MonoDefaults structure.
2445         * image.c: Add 2 hashtables to the image for COM Interop related methods
2446         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
2447         using the mempool allocator
2448         
2449         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
2450         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
2451         declaration for mono_metadata_type_dup_mp.
2452         
2453         * debug-helpers.c: Added strings for two additional wrapper types
2454         * object.c: Create proxy objects for ComImport classes
2455         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
2456         and added __ComObject class to MonoDefaults structure.
2457         
2458         * object-internals.h: Finish MonoRealProxy definition, and add definition of
2459         MonoComInteropProxy and MonoComObject.
2460         
2461         * marshal.c: Added support for COM Interop
2462         (signature_cominterop): Converts managed signature to corresponding
2463         unmanaged COM signature.
2464         (cominterop_get_function_pointer): gets unmanaged function pointer via
2465         COM object vtable
2466         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
2467         (cominterop_get_method_interface): returns interface type that method is defined on
2468         (mono_mb_emit_cominterop_call): emits native call to function pointer
2469         gotten from vtable
2470         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
2471         that matches signature of unmanaged function.
2472         (cominterop_get_native_wrapper): wrapper around adjusted method call.
2473         (cominterop_get_invoke): forwards call from proxy to __ComObject
2474         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
2475         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
2476         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
2477         
2478         * marshal.h: Added Marshal icall declarations.
2479         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
2480         so we can access them in finalizer
2481         
2482 2006-07-14  Dick Porter  <dick@ximian.com>
2483
2484         * object.c (mono_type_initialization_cleanup): Fix a race
2485         condition by temporarily commenting out the critical section
2486         deletion.
2487
2488 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
2489
2490         * reflection.c (create_custom_attr): Fix some warnings.
2491         (create_custom_attr_data): Ditto.
2492         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
2493         types. Fixes #78855.
2494
2495 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
2496
2497         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
2498
2499         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
2500
2501 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
2502
2503         * reflection.c (resolve_object): Add support for DynamicMethod.
2504
2505         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
2506         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
2507
2508 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
2509
2510         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
2511         don't leak GPtrArray's pdata has we have no use (nor free) for it.
2512
2513 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
2514
2515         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
2516         Fixes #77888.
2517
2518 2006-06-30  Raja R Harinath  <rharinath@novell.com>
2519
2520         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
2521         slightly: remove a shadow local variable.
2522
2523 2006-06-29  Raja R Harinath  <rharinath@novell.com>
2524
2525         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
2526         definition that introduces the virtual function slot.
2527         Also fix Coverity #105.
2528
2529 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
2530
2531         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
2532         for dynamic assemblies. Fixes #78724.
2533
2534 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
2535
2536         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
2537         Fixes #78722.
2538
2539 2006-06-21  Martin Baulig  <martin@ximian.com>
2540
2541         * reflection.c
2542         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
2543         fixes #76484.
2544
2545 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
2546
2547         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
2548
2549 2006-06-20  Raja R Harinath  <rharinath@novell.com>
2550
2551         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
2552         nor TYPEREFs.
2553         * class.c (mono_class_create_from_typespec): Add 'context' argument.
2554         Inflate result if necessary.
2555         (mono_class_get_full): Remove old version.  Rename from
2556         'mono_class_get' and add 'context' argument.  Pass it to
2557         ..._create_from_typespec.
2558         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
2559         (mono_ldtoken): Revert change below.
2560
2561 2006-06-20  Martin Baulig  <martin@ximian.com>
2562
2563         * class.c (mono_ldtoken): Don't pass the generic context to
2564         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
2565
2566 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
2567
2568         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
2569         and later freeing it. Fixes #78638.
2570
2571 2006-06-15  Miguel de Icaza  <miguel@novell.com>
2572
2573         * icall.c (mono_class_get_throw): Revert over-zealous error
2574         throwing, the caller for mono_class_get_throw will cope with
2575         errors when classes are not properly initialized already.
2576
2577         The code still copes with loader exceptions though.
2578
2579         Fixes the regression in reftype1 and reftype3 from the CAS tests.
2580         
2581 2006-06-14  Miguel de Icaza  <miguel@novell.com>
2582
2583         Fixes the `make run1' version of RuntimeAbort (to be commited,
2584         source is in Bugzilla).
2585         
2586         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
2587         FALSE on class loading failure instead of returning true.
2588
2589         * class.c (mono_class_create_from_typedef): It is possible for
2590         mono_metadata_interfaces_from_typedef_full to fail if a class is
2591         not found, cope with this.
2592         
2593
2594 2006-06-14  Dick Porter  <dick@ximian.com>
2595
2596         * socket-io.c: 
2597         * process.c: Fix a bunch of signed/unsigned warnings from gcc
2598         4.1.1
2599
2600 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
2601
2602         * culture-info-table.h : oops, forgot to make it nsync with r61548.
2603
2604 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2605
2606         * icall.c: Another fix for building mono in Visual Studio.
2607
2608 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
2609
2610         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
2611         
2612 2006-06-09  Martin Baulig  <martin@ximian.com>
2613
2614         * debug-mono-symfile.c: Put this back and really fix it this
2615         time. Sorry for all the trouble.
2616
2617 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
2618
2619         * icall.c (mono_class_get_throw): Fix a warning.
2620         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
2621         ReflectionTypeLoadException if needed. Fixes #78606.
2622
2623         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
2624         (mono_class_init): Ditto.
2625
2626         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
2627         ref_only exceptions.
2628         (mono_loader_clear_error): Make this work even if there is no error.
2629
2630 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
2631
2632         * object-internals.h marshal.c marshal.h icall.c: Implement method 
2633         Marshal.GetComSlotForMethodInfo using internal call.
2634
2635 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
2636
2637         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
2638         a function for signalling it.
2639
2640         * class.c (mono_class_from_typeref): Use the new kind of loader error when
2641         a referenced assembly is not found.
2642
2643         * loader.c (mono_loader_error_prepare_exception): Add support for 
2644         LOADER_ERROR_ASSEMBLY. Fix formatting.
2645
2646 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
2647
2648         * domain.c appdomain.c class-internals.h marshal.c: Add support 
2649         for VARIANT marshalling on windows and increment corlib version
2650         since Variant struct was added.
2651
2652 2006-06-03  Miguel de Icaza  <miguel@novell.com>
2653
2654         * debug-mono-symfile.c: Revert Martin's previous patch which broke
2655         stack trace line information:
2656
2657         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
2658         (Martin) when looking up B which is between A and C, return A not C.
2659
2660         Bug is #78573.
2661
2662         Thanks to Alexander Olk for tracking this down.
2663
2664 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
2665
2666         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
2667         
2668         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
2669         avoid clobbering its value.
2670         (mono_string_to_lpstr): Fix a warning on windows.
2671
2672 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2673
2674         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
2675
2676         * reflection.c loader.c: Removed references to 'dummy' flag.
2677
2678         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
2679
2680         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
2681         it gets GC tracking.
2682
2683         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
2684         GC tracking.
2685         
2686         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
2687
2688         * marshal.c threadpool.c: Update callers of mono_async_result_new.
2689
2690         * appdomain.c: Bump corlib version.
2691
2692 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2693
2694         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2695         CEE_STIND_REF when working with object references.
2696
2697 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
2698
2699         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
2700         Fixes #78539.
2701
2702 2006-05-30  Miguel de Icaza  <miguel@novell.com>
2703
2704         * loader.c (method_from_memberref): Fix argument value for
2705         mono_loader_set_error_method_load (I was passing the MonoClass
2706         instead of the class name char *).
2707
2708 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
2709
2710         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
2711         CEE_STIND_REF when working with object references.
2712
2713 2006-05-30  Martin Baulig  <martin@ximian.com>
2714
2715         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
2716         mono_method_full_name() change and replace the ':' with a '.'
2717         here.
2718
2719 2006-05-30  Martin Baulig  <martin@ximian.com>
2720
2721         * debug-mono-symfile.c
2722         (mono_debug_symfile_lookup_location): Fix the algorithm:
2723         when looking up B which is between A and C, return A not C.
2724
2725 2006-05-29  Martin Baulig  <martin@ximian.com>
2726
2727         * mono-debug.h
2728         (MonoDebugMethodInfo): Make the typedef public.
2729         (MonoDebugSourceLocation): New public struct.
2730
2731         * mono-debug.c
2732         (mono_debug_source_location_from_address): Removed.
2733         (mono_debug_source_location_from_il_offset): Removed.
2734         (mono_debug_il_offset_from_address): Removed.
2735         (mono_debug_address_from_il_offset): Removed.
2736         (mono_debug_lookup_method): New public function.
2737         (mono_debug_lookup_source_location): New public function; replaces
2738         the old mono_debug_source_location_from_*() functions; see the
2739         inline documentation.
2740         (mono_debug_free_source_location): New public function.
2741         (mono_debug_print_stack_frame): New public function; see the
2742         inline documentation.
2743
2744         * debug-mono-symfile.c
2745         (mono_debug_find_source_location): Renamed into
2746         mono_debug_symfile_lookup_location(); only take a
2747         `MonoDebugMethodInfo *' and an `offset' argument; added inline
2748         documentation.
2749         (mono_debug_find_method): Renamed into
2750         mono_debug_symfile_lookup_method().
2751
2752 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
2753
2754         * assembly.c (mono_assembly_open_full): Dont overwrite the status
2755         returned by mono_image_open_full ().
2756
2757         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
2758         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
2759         #78517.
2760
2761         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
2762         #78518.
2763
2764 2006-05-27  Miguel de Icaza  <miguel@novell.com>
2765
2766         * class.c (mono_class_from_typeref): handle missing images
2767         earlier, deals with bug #78418.   Refactor code; 
2768
2769         Fix a warning introduced in my previous commit (some stale code
2770         from before I revisited my patch).
2771
2772         * class.c (mono_class_create_from_typedef): On failure, remove the
2773         class from the MonoImage->class_cache as the class is not
2774         initialized;   Fixes the leak pointed out by Paolo.
2775
2776 2006-05-25  Dick Porter  <dick@ximian.com>
2777
2778         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
2779         DeleteCriticalSections until I figure out which one may still be
2780         sometimes locked when mono_thread_cleanup is called.
2781
2782 2006-05-24  Dick Porter  <dick@ximian.com>
2783
2784         * threads.c (mono_thread_cleanup): Move the threading cleanup out
2785         of mono_thread_manage and back into its own function, so it can be
2786         called after the finalizer thread has finished.
2787
2788         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
2789
2790 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
2791
2792         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
2793         Fixes #78495.
2794
2795         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
2796         with non-blittable elements.
2797         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
2798
2799 2006-05-24  Martin Baulig  <martin@ximian.com>
2800
2801         * mono-debug-debugger.h (MonoDebuggerEvent): Added
2802         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
2803
2804         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
2805         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
2806         `mono_debugger_event_handler' to NULL.
2807
2808 2006-05-24  Martin Baulig  <martin@ximian.com>
2809
2810         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
2811
2812 2006-05-24  Martin Baulig  <martin@ximian.com>
2813
2814         * mono-debug-debugger.h
2815         (mono_debugger_create_notification_function): Added
2816         `MonoCodeManager *' argument.
2817
2818 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
2819
2820         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
2821
2822 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
2823
2824         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
2825         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
2826         implementation.
2827
2828 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
2829
2830         * icall.c: precise GC support: objects can't be stored in unmanaged
2831         memory anymore, even if they are kept alive by other references: since
2832         they can move the GC needs to be able to always find them.
2833
2834 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
2835
2836         * object.c: precise GC support for static fields. Support
2837         for moving GCs: write barriers and pinned allocation for interned
2838         strings.
2839
2840 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
2841
2842         * domain.c, domain-internals.h: precise GC support for the MonoDomain
2843         structure.
2844
2845 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
2846
2847         * class.c, gc.c: sgen and precise GC updates.
2848
2849 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
2850
2851         * marshal.h, marshal.c: added write barrier wrapper and precise type
2852         fixes.
2853
2854 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
2855
2856         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
2857         support.
2858
2859 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
2860
2861         * reflection.c: precise and sgen GC updates.
2862
2863 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
2864
2865         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
2866
2867 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
2868
2869         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
2870
2871 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
2872
2873         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
2874         MONO_TYPE_OBJECT. Fixes #78462.
2875
2876 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
2877
2878         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
2879         and blittable types.
2880
2881 2006-05-17  Miguel de Icaza  <miguel@novell.com>
2882
2883         * class.c (mono_class_get_exception_for_failure): Implement parts
2884         of a TODO: if the loader error is set (instead of the class
2885         error), we return a Loader exception that can be properly thrown
2886         elsewhere.
2887
2888         This was exposed by some Winforms 2.0 code that I tried to run
2889         (Atsushi pointed me to it).
2890
2891 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
2892
2893         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
2894         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
2895         
2896         * marshal.c (emit_marshal_vtype): Add limited support for 
2897         UnmanagedType.LPStruct. Fixes #78427.
2898
2899         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
2900         Applied a patch from kangaroo to fix #77523.
2901
2902 2006-05-17  Martin Baulig  <martin@ximian.com>
2903
2904         * threads.c
2905         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
2906         (debugger_thread_created): Removed.
2907         (debugger_thread_exited): Removed.
2908
2909 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
2910
2911         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
2912
2913         * object-internals.h (MonoReflectionResource): Sync with managed version.
2914
2915 2006-05-12  Wade Berrier <wberrier@novell.com>
2916
2917         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
2918
2919 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
2920
2921         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
2922         functions try to allocate from the image mempool.
2923
2924 2006-05-12  Dick Porter  <dick@ximian.com>
2925
2926         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
2927
2928 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
2929
2930         * object.c: The FieldGetter and FieldSetter methods require the full
2931         name of the class, not only the name. Fixes bug #78277.
2932
2933 2006-05-11  Miguel de Icaza  <miguel@novell.com>
2934
2935         * loader.c (method_from_memberref): Do not pass the NULL klass to
2936         mono_loader_set_error_() methods.  Pass the non-NULL value
2937         (class). 
2938
2939 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
2940
2941         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
2942         (mono_assembly_close): Null out assembly->image->references after freeing it.
2943
2944         * image.c (mono_image_close): Free image->references.
2945         
2946         * reflection.c (mono_image_basic_init): Fix a small memory leak.
2947
2948 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2949
2950         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
2951         before checking if it's NULL (g_assert).
2952
2953 2006-05-10  Martin Baulig  <martin@ximian.com>
2954
2955         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
2956         I thought I already killed that two months ago, but now it somehow reappeared.
2957
2958 2006-05-10  Martin Baulig  <martin@ximian.com>
2959
2960         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
2961
2962 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
2963
2964         * reflection.c: Allocate memory for dynamically created methods in the image
2965         mempools.
2966
2967 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
2968
2969         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
2970         don't use the ad pointer before checking if it's NULL (g_assert).
2971
2972 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
2973
2974         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
2975         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
2976
2977         * marshal.c: Allocate all signatures from mempools.
2978
2979         * marshal.c: Allocate some more signatures from mempools.
2980
2981 2006-05-09  Miguel de Icaza  <miguel@novell.com>
2982
2983         * object.c (mono_load_remote_field): The code used to provide a
2984         temporary variable for returning results if the user did not
2985         provide a result pointer.  But our temporary variable was allocted
2986         on the satck.
2987
2988         Fix calling code to always pass a result area.   Coverity ID 103.
2989
2990 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
2991
2992         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
2993         value, not the old. Fixes #78312.
2994         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
2995
2996         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
2997         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
2998         per-image cache.
2999
3000         * assembly.c (mono_assembly_close): Free image->references.
3001
3002         * assembly.c (mono_assembly_names_equal): Fix a warning.
3003         (mono_assemblies_cleanup): Cleanup more global data.
3004
3005         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
3006
3007         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
3008         ptr_cache and image->modules.
3009
3010         * image.c (mono_image_init): Allocate array_cache lazily.
3011         
3012 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3013
3014         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
3015         behavior was changed recently and has bad side effects.
3016
3017 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
3018
3019         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
3020         
3021         * assembly.c (mono_assembly_close): Remove a debug printf.
3022
3023         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
3024
3025         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
3026         to also allow for temporary references between mono_image_open ()/close ().
3027
3028         * domain.c (get_runtimes_from_exe): Add a FIXME.        
3029
3030 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
3031
3032         * marshal.c: Fix support for dynamic methods.
3033
3034         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
3035
3036         * marshal.c (mono_marshal_cleanup): New cleanup function.
3037
3038         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
3039         image mempools.
3040
3041         * class.c (mono_class_init): Fix leaking class->nested_classes.
3042
3043         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
3044
3045         * image.c (mono_image_init): Initialize the new cashes.
3046
3047         * image.c (mono_image_close): Destroy the new cashes.
3048
3049         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
3050
3051         * mempool.c (mono_mempool_strdup): New helper function.
3052
3053         * class-internals.h: Add prototype for mono_loader_unlock ().
3054
3055         * domain.c (mono_jit_info_table_find): Fix a warning.
3056         (mono_debugger_check_runtime_version): Ditto.
3057
3058         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
3059         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
3060         functions to these modules.
3061
3062         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
3063         metadata modules.
3064         
3065         * marshal.c (mono_free_bstr): Fix a warning.
3066
3067         * assembly.c (mono_assembly_open_full): Fix another small leak.
3068
3069         * object.c: Fix some unload leaks in the remoting code.
3070
3071         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
3072         function.
3073
3074         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
3075
3076         * reflection.c: Fix some unload leaks in dynamic assemblies.
3077
3078 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
3079
3080         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
3081         * marshal.h: Add BSTR support on Win32
3082         * icall.c: Add BSTR icalls
3083         * metadata.h: Add BSTR enums
3084
3085 2006-04-28  Miguel de Icaza  <miguel@novell.com>
3086
3087         Work to catch the crash from #76795 and turn it into an
3088         exception.   As I stubbed out pieces of the VisualBasic support,
3089         I found a number of places where the code was failing and I added
3090         checks to those places. 
3091         
3092         * metadata.c (do_mono_metadata_parse_generic_class): Make this
3093         function return a status code.  If we fail to parse the signature
3094         from mono_metadata_parse_generic_inst, return FALSE.
3095
3096         * loader.c (mono_get_method_from_token): If we fail to load the
3097         method (mono_class_get) return NULL.   
3098
3099         * (method_from_memberref): Return NULL if we are unable to parse
3100         the method signature
3101
3102         (mono_loader_error_prepare_exception): Since we now use the
3103         loader_error flag internally to stop processing, and obtaining
3104         exceptions that might be thrown will walk this code path the
3105         proper way of going from a MonoLoaderError into a
3106         MonoException was convoluted.   This new routine encapsulates the
3107         process of turning the error into an exception and *clearing* the
3108         error afterwards.
3109         
3110 2006-04-27  Miguel de Icaza  <miguel@novell.com>
3111
3112         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
3113         with missing assemblies), and to cope with:
3114
3115                 * Missing fieldref from a non-existing assembly.
3116                 * Missing methodref from a non-existing assembly.
3117
3118         The first batch of work to address *some* of the issues from 76661.
3119         
3120         * object.c (mono_class_create_runtime_vtable): If we fail to
3121         initialize the class raise the exception here. 
3122
3123         * metadata.c (mono_class_get_overrides_full): If any methods fail
3124         to load return the failure to the caller.
3125
3126         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
3127         flagging assemblies that failed to load.   
3128
3129         Do not crash if we are unable to load the assembly.
3130
3131         (mono_assembly_close): Do nothing with REFERENCE_MISSING
3132         assemblies. 
3133
3134         * loader.c (mono_loader_set_error_type_load): Change the
3135         convention to always pass unallocated strings, so we make our own
3136         copies (I know our own code had duplicated strings before, but
3137         this keeps the normal conventions).
3138         (method_from_memberref): Call mono_loader_set_error_method_load
3139         for all possible failures of loading the class. 
3140         Remove assert, turn into a loader error.
3141
3142         (mono_loader_error_to_exception): Move this routine from mini
3143         (mini_loader_error_to_exception) there was no need to have that in
3144         mini. 
3145
3146         * class.c (mono_class_from_typeref): If we were not able to load
3147         the assembly with mono_assembly_load_reference, call the
3148         mono_loader_set_error_type_load to register the problem.
3149
3150         (mono_class_setup_fields): If we fail to load the type from
3151         mono_metadata_parse_type_full, call mono_class_set_failure and
3152         break from the loop.
3153
3154         If class->exception_type is set, we do not layout the fields as
3155         that might crash the runtime, and instead return (from breaking
3156         from the previous loop).
3157
3158         (mono_class_setup_vtable): This now returns a boolean indicating
3159         whether the table was properly setup.   The decision is driven by
3160         mono_class_get_overrides_full which might run into non-existing
3161         methods. 
3162         
3163         (mono_class_init): Returns TRUE on success or FALSE if there was a
3164         problem in loading the type (incorrect assemblies, missing
3165         assemblies, methods, etc).
3166
3167         When we call mono_class_setup_fields we also check for a potential
3168         error inside this call (either a class exception or a general
3169         loader exception).
3170
3171         (mono_class_create_from_typedef): If the parent fails to load
3172         (calling mono_class_get_full) return NULL.
3173         
3174         ** Important **
3175
3176         calls to mono_metadata_parse_type_full should be checked
3177         everywhere and set the mono_class_set_failure
3178         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
3179
3180         The current patch checks the places where my manually constructed
3181         tests show the errors are showing up, but we should do it
3182         everywhere. 
3183
3184         ** Important2 **
3185
3186         mono_class_init return values should be tested everywhere, like
3187         the previous case this is something that we should audit
3188         everywhere and not only on the cases exposed by the tests I
3189         created. 
3190
3191 2006-04-26  Miguel de Icaza  <miguel@novell.com>
3192
3193         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
3194         boolean parameter and instead pass the information on `options'
3195         parameter (FileOptions).
3196
3197         * icall.c: Register the new signature for MonoIO.Open.
3198
3199         * debug-helpers.c (dis_one): Trying to understand how coverity
3200         works.  Fix Run 5, item 78.
3201
3202 2006-04-26  Dick Porter  <dick@ximian.com>
3203
3204         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
3205         dereference.
3206
3207 2006-04-25  Martin Baulig  <martin@ximian.com>
3208
3209         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
3210
3211         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
3212         debugger_thread_created().
3213         (debugger_gc_push_all_stacks): Don't handle the main thread in any
3214         special way.
3215         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
3216         (mono_debugger_finalize_threads): New function; undo the effects
3217         of mono_debugger_init_threads().
3218         (mono_debugger_create_all_threads): Removed.
3219
3220 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
3221
3222         * image.c (mono_image_close): Tidy up trace messages.
3223
3224         * assembly.c (mono_assembly_close): Ditto.
3225
3226         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
3227         no longer references an already freed assembly. Fixes #78168.
3228
3229 2006-04-21  Dick Porter  <dick@ximian.com>
3230
3231         * threads.c (mono_thread_detach): Fix reference counting when
3232         detaching threads.
3233
3234 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
3235
3236         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
3237         #78155.
3238
3239 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
3240
3241         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
3242         (mono_type_to_stind): Ditto.
3243
3244         * marshal.c: Use the new helper functions to simplify code.
3245
3246         * image.c (mono_image_close): Add some code for help debug assembly unloading
3247         problems.
3248
3249         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
3250         image mempool.
3251
3252         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
3253         assembly was already loaded in another appdomain. Fixes #78083.
3254
3255 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
3256
3257         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
3258         referenced assemblies.
3259         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
3260
3261         * domain.c (mono_domain_free): Add a trace message.
3262
3263         * appdomain.c (add_assemblies_to_domain): Ditto.        
3264
3265         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
3266         field.  
3267
3268 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3269
3270         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
3271
3272 2006-04-12  Martin Baulig  <martin@ximian.com>
3273
3274         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
3275         `USE_INCLUDED_LIBGC'.   
3276
3277 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
3278
3279         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
3280         the patch contains ../ and a small directory name later. Hopefully fixes
3281         #78035.
3282
3283 2006-04-10  Martin Baulig  <martin@ximian.com>
3284
3285         Clean up the debugger's thread-handling code.
3286
3287         The debugger's thread-handling code has been moved from
3288         ../mini/debug-debugger.c to threads.c.  We now iterate directly
3289         over the `threads' hash, keep track of exiting threads and also
3290         use proper locking.
3291
3292         We can now debug XSP and XSP based applications with the debugger.
3293
3294         * object-internals.h (MonoThread): Added `gpointer end_stack'.
3295
3296         * threads.h
3297         (MonoThreadCallbacks): Removed; this was only used by the debugger.
3298         (mono_install_thread_callbacks): Likewise.      
3299
3300         * threads.c (mono_thread_callbacks): Removed.
3301         (debugger_thread_created, debugger_thread_exited): New static functions.
3302         (start_wrapper): Call debugger_thread_created().
3303         (thread_cleanup): Call debugger_thread_exited().
3304         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
3305         (mono_debugger_init_threads): New public function.
3306         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
3307         iterate directly over the `threads' hash and also use proper locking.
3308
3309         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
3310
3311         * mono-debug-debugger.h
3312         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
3313
3314 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
3315
3316         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
3317         argument type=array. Fixes #78057.
3318
3319 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
3320
3321         * culture-info-table.h : regenerated. Fixed bug #69652.
3322
3323 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
3324
3325         * loader.c metadata.c: Reapply a variant r59116.
3326         
3327         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
3328
3329         * class.c (mono_class_setup_interface_offsets): New internal function.
3330
3331         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
3332         interfaces too. Fixes #77398.
3333
3334         * reflection.c (encode_cattr_value): Add support for 
3335         parameter type=object, argument type=array.
3336         (load_cattr_value): Ditto. Fixes #77916.
3337
3338         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
3339         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
3340
3341         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
3342         a byval char array and CharSet is Ansi.
3343
3344         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
3345
3346 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
3347
3348         * metadata.c: Add some locking comments.
3349         
3350         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
3351         mempool.
3352         (mono_metadata_free_method_signature): Don't free the signature itself.
3353
3354         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
3355
3356         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
3357         reference the same MonoImage.
3358         (mono_assembly_load_from_full): Add an assert.
3359
3360 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
3361
3362         * image.c (mono_image_close): Don't put the image we are about to free into the
3363         loaded_images_guid_hash.
3364
3365         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
3366         to reduce code duplication.
3367
3368         * marshal.c: Register the native functions called by this module as icalls, to
3369         somewhat centralize the creation of MonoMethodSignature's.
3370
3371         * loader.c (mono_method_signature): Add a cache for method signatures.
3372
3373         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
3374         the parameter attributes of a method.
3375         (mono_metadata_parse_method_signature_full): Refactored the computation of
3376         parameter attributes into a separate function. Also avoid one allocation in
3377         most cases.
3378
3379         * assembly.c (mono_assembly_close): Ditto.
3380
3381         * image.c (mono_image_close): Log trace messages with INFO level.
3382
3383         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
3384
3385         * image.c reflection.c: Correct reference counting of image modules.
3386         
3387         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
3388         of this function from the image mempool.
3389         
3390         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
3391         to allow more cached types to be used.
3392
3393         * mono-debug.c (mono_debug_add_method): Appled patch from
3394         David S. Miller  <davem@sunset.davemloft.net>: Access 
3395         minfo->lexical_blocks[] entry elements using read32().
3396
3397 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
3398
3399         * loader.c (mono_free_method): No longer free the method header for non-dynamic
3400         methods as it is allocated from the mempool.
3401
3402         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
3403         image mempool.
3404
3405         * metadata-internals.h: Add comments describing the reference counting scheme
3406         used for MonoImage and MonoAssembly.
3407
3408         * image.c assembly.c reflection.c: Rework reference counting of images and 
3409         assemblies so they are freed when the runtime is shut down. Free some 
3410         additional memory structures when an image is unloaded.
3411         
3412 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
3413
3414         * class.c loader.c reflection.c: Allocate more data structures in
3415         the image mempool.
3416
3417 2006-03-31  Miguel de Icaza  <miguel@novell.com>
3418
3419         * icall.c
3420         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
3421         build on pre glib 2.4 systems.
3422
3423 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
3424
3425         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
3426
3427         * icall.c: Fix some warnings.
3428
3429 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
3430
3431         * culture-info-table.h : regenerated.
3432
3433 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
3434
3435         * threads.c, object-internals.h, verify.c: changed the culture caching
3436         code to use a normal MonoArray for storage so the GC can keep track of
3437         them easily. Fixed bits of the cache logic, too and simplified the
3438         code.
3439
3440 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
3441
3442         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
3443         thread for non-Boehm GCs.
3444
3445 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
3446
3447         * domain.c, object.c, domain-internals.h: reduce the amount of memory
3448         needed to keep track of the data for static fields.
3449
3450 2006-03-29  Raja R Harinath  <rharinath@novell.com>
3451
3452         Fix #75172
3453         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
3454         for interface classes.  Use 'num_methods' instead.
3455         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
3456         before using '->vtable_size' field.
3457
3458 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
3459
3460         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
3461         doesn't contain managed pointers, so use a normal hashtable.
3462
3463 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
3464
3465         * reflection.c, class-internals.h, domain.c: fixed handling of types
3466         used as values for objects in custom attributes (bug #77915):
3467
3468 2006-03-24  Martin Baulig  <martin@ximian.com>
3469
3470         * class.c (mono_class_setup_fields): Added support for generic
3471         instances; fixes #77580.
3472
3473 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3474
3475         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
3476
3477 2006-03-24  Dick Porter  <dick@ximian.com>
3478
3479         * file-io.c (get_file_attributes): More stat macro breakage.
3480         Fixes bug 77759.
3481
3482 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
3483
3484         * profiler.c: added the file=filename option in the default profiler
3485         to output the profile data to filename.
3486
3487 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3488
3489         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
3490         bug #77877.
3491
3492 2006-03-22  Martin Baulig  <martin@ximian.com>
3493
3494         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
3495         allocated `MonoClassField *' in `fb->handle'.
3496
3497 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
3498
3499         * class.c, image.c, metadata-internals.h: implemented new mechanism to
3500         allocate interface ID to save memory and allow better ID reuse on
3501         appdomain unload. setup_generic_vtable () removal from Martin.
3502
3503 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3504
3505         * object.h, appdomain.c, domain.c, exception.c, icall.c,
3506         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
3507         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
3508         write barriers for reference stores with managed objects accessed with
3509         C structures in the runtime and in embedding programs.
3510
3511 2006-03-20  Raja R Harinath  <rharinath@novell.com>
3512
3513         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
3514         'interface_id' and 'max_interface_id' fields of MonoClasses
3515         representing open generic types.
3516
3517 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
3518
3519         * object.h, object.c, icall.c: added functions to deal with
3520         storing valuetypes that contain references in managed objects.
3521         * reflection.c, string-icalls.c, threads.c, marshal.c: small
3522         fixes and comments around uses of mono_array_addr ().
3523
3524 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
3525
3526         * object.h, icall.c, monitor.c: object.GetHashCode ()
3527         implementation that supports the moving garbage collector.
3528
3529 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
3530
3531         * icall.c, threads-types.h, threads.c: implemented finalizer for
3532         LocalDataStoreSlot.
3533
3534 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
3535
3536         * metadata.c (mono_type_size): Add a fixme.
3537         (mono_type_stack_size): Ditto.
3538
3539         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
3540         'type_forwarders' field.
3541
3542         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
3543         attribute from net 2.0.
3544
3545         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
3546         from class.c.
3547
3548         * class.c (mono_class_setup_fields): Fix a warning.
3549         
3550         * class.c (mono_class_from_name): Add support for assemblyref entries
3551         in the EXPORTEDTYPE table.
3552
3553         * reflection.c: Add support for handling type forwarders under net 2.0.
3554
3555         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
3556         
3557 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
3558
3559         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
3560         overwriting entries in ModuleBuild->types, also clean up the code
3561         a little. Fixes #77774.
3562
3563 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
3564
3565         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
3566         load friend assembly info when present.
3567
3568 2006-03-14  Raja R Harinath  <rharinath@novell.com>
3569
3570         Fix crasher on gtest-158.cs.
3571         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
3572         the return value if the MonoClass we want is yet in an
3573         inconsistent state.
3574         * class.c (mono_class_create_from_typedef): Add an comment
3575         explaining an order dependency between mono_class_setup_parent and
3576         mono_class_setup_mono_type.
3577
3578 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
3579
3580         * class.c: documentation updates and events bug fix.
3581
3582 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
3583
3584         * class.c: some cleanup, locking fixes.
3585
3586 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
3587
3588         * class.c: fix the generics code to setup nested
3589         type info to the instantiated type (bug #77770).
3590
3591 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
3592
3593         * marshal.c: fixed a few type correctness issues.
3594
3595 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3596
3597         * loader.c: the Set/Get/Addrtess array methods should be public.
3598
3599 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
3600
3601         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
3602         
3603         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
3604         info->wrapper.
3605
3606 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
3607
3608         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
3609
3610         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
3611
3612         * mempool.c (mono_mempool_alloc): Speed this up a bit.
3613         (mono_mempool_alloc0): Ditto.
3614
3615 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3616
3617         * socket-io.c:
3618         (create_object_from_sockaddr): it was allocating 4 extra bytes
3619         for the AF_UNIX data. Fixes bug #77747.
3620
3621 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
3622
3623         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
3624
3625 2006-03-09  Dick Porter  <dick@ximian.com>
3626
3627         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
3628         Fixes bug 76966 again.
3629
3630 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
3631
3632         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
3633         names from r57532
3634         * appdomain.c: Bumped corlib version to 48 (due to r57532)
3635
3636 2006-03-07  Martin Baulig  <martin@ximian.com>
3637
3638         * object.c
3639         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
3640
3641 2006-03-07  Martin Baulig  <martin@ximian.com>
3642
3643         * class.c
3644         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
3645         regression introduced in r56970; see gtest-252.cs.
3646
3647         * loader.c (mono_get_method_constrained): Correctly handle generic
3648         methods; see gtest-253.cs.
3649
3650 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
3651
3652         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
3653
3654 2006-03-04  Martin Baulig  <martin@ximian.com>
3655
3656         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
3657         compute the parent type at runtime, just like we're already doing
3658         it for interfaces.
3659
3660         * reflection.c
3661         (mono_reflection_bind_generic_parameters): Don't compute the
3662         parent type anymore.
3663
3664         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
3665
3666 2006-03-04  Martin Baulig  <martin@ximian.com>
3667
3668         * mono-debug-debugger.h
3669         (mono_debugger_create_notification_function): Allocate memory at
3670         runtime and return a pointer to it.
3671
3672 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
3673
3674         * assembly.c: Fix windows build.
3675         
3676         * assembly.c: Fix build.
3677
3678         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
3679
3680         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
3681         
3682 2006-03-03  Dick Porter  <dick@ximian.com>
3683
3684         * process.c
3685         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
3686         Check parameters before dereferencing them.  Fixes Aaron's part of
3687         bug 77393.
3688
3689 2006-03-03  Raja R Harinath  <rharinath@novell.com>
3690
3691         Fix performance regression.
3692         * loader.c (find_method_in_class): Add 'from_class' argument.
3693         Rename 'klass' argument to 'in_class'.  The signature is compared
3694         against the method in 'in_class', and the corresponding method is
3695         returned from 'from_class'.
3696         (find_method): Walk both 'in_class' and 'from_class' in parallel.
3697         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
3698         type definition and generic instantiation in parallel.
3699         (mono_get_method_constrained): Update to changes.
3700
3701 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
3702
3703         * threads.c: make sure the domain is correct, too when doing
3704         mono_thread_attach ().
3705
3706 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
3707
3708         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
3709         windows. Fixes #77683.
3710
3711 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
3712
3713         * object.h, *: introduced specific way to set elements of an array
3714         of references to be used as write barrier. Still need to audit the
3715         uses of mono_array_addr.
3716
3717 2006-03-01  Miguel de Icaza  <miguel@novell.com>
3718
3719         * object-internals.h: New field to cache the assmebly name, patch
3720         from Tambet Ingo (tambet@ximian.com)
3721
3722 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
3723
3724         * decimal.h, class-internals.h, metadata-internals.h,
3725         file-io.h: mark a few function declarations as internal, to
3726         reduce the number of PLT entries.
3727
3728 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3729
3730         * file-io.c: fix typo in warning message.
3731
3732 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
3733
3734         * loader.c: on unix, lookup the "*A" version of a function
3735         if charset is auto as a second option before failing.
3736
3737 2006-02-28  Raja R Harinath  <rharinath@novell.com>
3738
3739         * class.h (mono_class_inflate_generic_method): Revert to two
3740         argument version.
3741         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
3742         (mono_class_inflate_generic_method_full): Add.
3743         * class.c (mono_class_inflate_generic_method_full): Rename from
3744         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
3745         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
3746         * loader.c, reflection.c: Update to changes.
3747
3748 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
3749
3750         * icall.c: const fixes and small improvements.
3751
3752 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3753
3754         * threadpool.c: for asynchronous connect(), enable the same workaround
3755         for BSD 6 as for the Mac. Fixes bug #77637.
3756
3757 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
3758
3759         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
3760         formatted classes. Fixes #77524.
3761
3762 2006-02-24  Raja R Harinath  <rharinath@novell.com>
3763
3764         * class.c (inflate_generic_type): Add a couple more
3765         micro-optimizations.
3766         (inflate_generic_context): Don't use the 'gmethod' from
3767         'inflate_with'.
3768         (mono_class_inflate_generic_method): If the method has generic
3769         parameters, but the passed-in context doesn't have a 'gmethod',
3770         create one.  Use the possibly simplified generic instantiation
3771         from the declaring class instead of the one passed in.
3772
3773 2006-02-24  Raja R Harinath  <harinath@gmail.com>
3774
3775         Make generic method signature and method header handling lazy.
3776         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
3777         (inflate_generic_header): Likewise.
3778         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
3779         parameter to avoid inflating types.
3780         (mono_get_inflated_method): Empty out.
3781         * class.h (mono_class_inflate_generic_method): Update to changes.
3782         * loader.c (mono_get_method_from_token): Don't parse signature for
3783         generic methods, nor methods of generic classes.
3784         (mono_method_signature): Rename from 'mono_method_signature'.
3785         Inflate signature on demand.
3786         (mono_method_get_header): Inflate method header on demand.
3787         * reflection.c: Update to changes.
3788
3789 2006-02-23  Raja R Harinath  <rharinath@novell.com>
3790
3791         * metadata.c (mono_metadata_inflate_generic_inst): If the
3792         instantiation is closed, don't bother expanding it in the new
3793         context.
3794         * class.c (inflate_generic_class): If the generic instantiation
3795         doesn't change after inflation, return the argument itself.
3796         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
3797         Add bounds checks.
3798         (inflate_generic_context): If neither the generic class nor the
3799         generic method instantiations change, return the original context.
3800         * reflection.c (mono_method_get_object): Do
3801         'mono_get_inflated_method' before accessing the ->klass field.
3802         (inflate_mono_method): Don't create a MonoGenericMethod unless
3803         necessary.
3804         (inflate_method): Don't pass a constructed type as the declaring
3805         type of a methodbuilder.
3806
3807 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
3808
3809         * object.c: fix memory overwrite.
3810
3811 2006-02-22  Dick Porter  <dick@ximian.com>
3812
3813         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
3814         it doesn't work any more.
3815         (mono_threads_request_thread_dump): Fix unused variable warnings.
3816
3817 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
3818
3819         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
3820         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
3821         the public header file.
3822
3823 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
3824
3825         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
3826
3827 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
3828
3829         * class-internals.h, object.c: reduce the size of MonoVTable
3830         and store the interface_offsets array at negative offsets.
3831
3832 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
3833
3834         * metadata.c: tweak table descriptors data structures to reduce
3835         size and runtime relocations.
3836
3837 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3838
3839         * marshal.c: fix some types and opcodes to be type-safe
3840         in marshaling wrappers.
3841
3842 2006-02-21  Ankit Jain  <jankit@novell.com>
3843
3844         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
3845
3846 2006-02-21  Raja R Harinath  <rharinath@novell.com>
3847
3848         * metadata.c (get_constraints): Relax debugging checks for monodis.
3849
3850 2006-02-21  Ankit Jain  <jankit@novell.com>
3851
3852         * metadata.c (mono_metadata_load_generic_params): Move the code
3853         checking for ambiguous generic params from here to mono/dis/get.c
3854         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
3855
3856 2006-02-21  Raja R Harinath  <harinath@gmail.com>
3857
3858         Fix assertion triggered when compiling nemerle.
3859         * class.c (mono_get_shared_generic_inst): Rename from
3860         get_shared_inst and make non-static.
3861         * loader.c (mono_get_shared_generic_method): New.  Used to create
3862         the MonoGenericContext-equivalent of a MonoGenericContainer.
3863         (mono_get_method_from_token): Initialize the 'context' field of
3864         the created MonoGenericContainer.
3865         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
3866         * metadata.c (get_constraints): Add sanity check.
3867         * class-internals.h: Add new internal methods.
3868
3869         * reflection.c (verify_safe_for_managed_space): New sanity check.
3870         Currently checks that owner-less generic parameters aren't allowed
3871         in managed space.
3872         (mono_type_get_object): Use it.
3873         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
3874         that are now in mono_type_get_object.
3875         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
3876
3877 2006-02-19  Raja R Harinath  <harinath@gmail.com>
3878
3879         * metadata.c (mono_type_create_from_typespec): Rename from
3880         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
3881         argument and caching of types in the generic container.
3882         (unwrap_arrays, find_generic_param): Remove.
3883         * metadata-internals.h: Update.
3884         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
3885
3886 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
3887
3888         * class.c (mono_class_get_exception_for_failure): Fix a warning.
3889
3890         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
3891         return values. Fixes #77581.
3892
3893         * class.c (mono_fnptr_class_get): Switch name and name_space.
3894
3895         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
3896         classes and add support for [In, Out] attributes.
3897         (mono_marshal_free_asany): Ditto. Fixes #77524.
3898
3899 2006-02-18  Raja R Harinath  <harinath@gmail.com>
3900
3901         * class.c (mono_class_from_generic_parameter): Make more robust to
3902         incomplete MonoGenericContainers from monodis.
3903
3904 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
3905
3906         * class-internals.h: added some more exception types.
3907         * class.c, metadata.c: added a few checks to handle missing
3908         types.
3909
3910 2006-02-17  Raja R Harinath  <rharinath@novell.com>
3911
3912         Use owner-less generic-params some more.
3913         * class.c (my_mono_class_from_generic_parameter): Remove.
3914         (mono_class_from_generic_parameter): Handle null image,
3915         param->name and param->owner.
3916         (mono_class_from_mono_type): Update.
3917         (mono_class_create_from_typespec): Remove 'container' parameter.
3918         If that parameter is non-null, the result is always inflated by
3919         'mono_class_get_full' anyway.
3920         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
3921         parameter.
3922         (mono_class_get_full): Update.
3923
3924         * class.c (inflate_generic_type) [GENERICINST]: If the generic
3925         instance is not open, don't bother inflating.
3926         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
3927         parse metadata for inflated classes.
3928         (_mono_class_get): Change GenericContext* parameter to
3929         GenericContainer*.
3930         (mono_class_create_from_typespec): Likewise.  Simplify, and
3931         implement trivially.  All the cases are handled in
3932         mono_class_from_mono_type.  Don't inflate returned class.
3933         (mono_class_get_full): Delegate GENERICINST optimization to
3934         inflate_generic_type.
3935         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
3936
3937 2006-02-16  Dick Porter  <dick@ximian.com>
3938
3939         * socket-io.c (create_object_from_sockaddr): Fix typo.
3940         (create_sockaddr_from_object): Check array lengths before
3941         potentially accessing items off the end.
3942         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
3943         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
3944         (ves_icall_System_Net_Sockets_Socket_Send_internal)
3945         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
3946         length checks to avoid wraparound overflows.
3947         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
3948         contents of the array of sockets
3949         (hostent_to_IPHostEntry2)
3950         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
3951         Check return value of inet_ntop ().
3952         (addrinfo_to_IPHostEntry): Fix typo
3953
3954 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3955
3956         Type metadata parsing doesn't use generic-instantiation information.
3957         * metadata.c (mono_metadata_parse_array_full): Change
3958         MonoGenericContext* parameter to MonoGenericContainer*.
3959         (mono_metadata_parse_type_full): Likewise.
3960         (mono_type_create_from_typespec_full): Likewise.
3961         (mono_metadata_parse_mh_full): Likewise.
3962         (mono_metadata_parse_generic_inst): Likewise.
3963         (do_mono_metadata_parse_generic_class): Likewise.
3964         (do_mono_metadata_parse_type): Likewise.
3965         * metadata-internals.h: Update to changes.
3966         * class.c (mono_class_find_enum_basetype): Likewise.
3967         (mono_class_setup_fields): Likewise.
3968         (mono_class_create_from_typespec): Likewise.
3969         * loader.c (method_from_methodspec): Likewise.
3970         (mono_get_method_from_token): Likewise.
3971         (mono_method_get_header): Likewise.
3972
3973 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
3974
3975         * marshal.c: handle additional GENERICINST case (patch from
3976         Thong Nguyen <tum@veridicus.com>).
3977         Fix a few cases where LDIND_I/STIND_I was used for references.
3978
3979 2006-02-16  Raja R Harinath  <rharinath@novell.com>
3980
3981         * reflection.c (mono_reflection_get_token): Remove unused variable.
3982
3983 2006-02-16  Martin Baulig  <martin@ximian.com>
3984
3985         * reflection.c (mono_reflection_get_token): Add support for fields
3986         in instantiated generic types.
3987
3988         * icall.c
3989         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
3990
3991 2006-02-15  Martin Baulig  <martin@ximian.com>
3992
3993         * icall.c
3994         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
3995         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
3996         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
3997         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
3998
3999 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
4000
4001         * class.c, metadata.c, metadata.h, object.c, icall.c,
4002         marshal.c: changed mono_type_get_underlying_type () to do
4003         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
4004         Fixed handling of instantiated generic valuetypes (bug #75479).
4005
4006 2006-02-15  Raja R Harinath  <rharinath@novell.com>
4007
4008         * metadata.c (mono_metadata_decode_signed_value): Simplify.
4009         Delegate to mono_metadata_decode_value, and work on the returned value.
4010
4011         * icall.c (ves_icall_MonoType_GetGenericArguments):
4012         Add consistency check here too.
4013         
4014 2006-02-15  Ankit Jain  <jankit@novell.com>
4015
4016         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
4017         char/short etc.
4018
4019 2006-02-15  Ankit Jain  <jankit@novell.com>
4020
4021         * metadata.c (mono_metadata_decode_signed_value): New function to decode
4022         signed values, used only for representing lower bounds of arrays.
4023         (mono_metadata_parse_array_full): Use new
4024         mono_metadata_decode_signed_value to decode lower bounds.
4025
4026 2006-02-14  Martin Baulig  <martin@ximian.com>
4027
4028         * reflection.c
4029         (mono_reflection_get_token): Support "MonoGenericMethod" and
4030         "MonoGenericCMethod" and allow generic instances / methods.
4031
4032 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
4033
4034         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
4035         to obtain the terminal size using an ioctl.
4036
4037         * object.c (mono_nullable_init): Revert this as nullable reference
4038         types are not valid.
4039         (mono_nullable_box): Ditto.
4040
4041 2006-02-09  Dick Porter  <dick@ximian.com>
4042
4043         * threads.c (mono_thread_detach): Drop a reference to the thread
4044         we're detaching.
4045
4046 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
4047
4048         * object.c (mono_nullable_init): Handle nullable reference types.
4049         (mono_nullable_box): Ditto. Fixes #77446.
4050
4051 2006-02-07  Martin Baulig  <martin@ximian.com>
4052
4053         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
4054
4055 2006-02-07  Ankit Jain  <jankit@novell.com>
4056
4057         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
4058         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
4059         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
4060         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
4061         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
4062         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
4063
4064 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
4065
4066         * class.c (mono_class_create_generic): Set type_token as well.
4067
4068         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
4069         compatible with MS.
4070
4071 2006-02-02  Martin Baulig  <martin@ximian.com>
4072
4073         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
4074         has never been used so far.
4075
4076 2006-02-02  Martin Baulig  <martin@ximian.com>
4077
4078         * mono-debug-debugger.h: Changed comment at the top of this file;
4079         the header is not installed, but it's safe to #include it from
4080         within the JIT.
4081
4082         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
4083         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
4084
4085 2006-02-02  Martin Baulig  <martin@ximian.com>
4086
4087         * mono-debug.h
4088         (MonoSymbolTable): Removed the `metadata_info' field.
4089
4090         * mono-debug.c
4091         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
4092
4093         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4094         (mono_debugger_add_builtin_types): Removed.
4095         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
4096         (mono_debugger_create_notification_function): We now operate on a
4097         pre-allocated area; take a `gpointer' and return `void'.
4098
4099         * mono-debug-debugger.c
4100         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
4101         (mono_debugger_add_builtin_types): Removed.
4102
4103 2006-02-02  Martin Baulig  <martin@ximian.com>
4104
4105         * threads.c (mono_debugger_create_all_threads): New public method.
4106
4107 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
4108
4109         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
4110         breaks on several platforms.
4111
4112 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
4113
4114         * assembly.c: the VS.NET build doesn't supply default values for
4115         MONO_ASSEMBLIES and MONO_CFG_DIR.
4116
4117 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
4118
4119         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
4120         helper function.
4121
4122         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
4123
4124         * loader.c (method_from_memberref): Fix a warning.
4125
4126         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
4127
4128         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
4129         with explicit layout. Fixes #77433.
4130
4131 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
4132
4133         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
4134         max_interface_id is initialized before using it. Fixes #77398.
4135         (ves_icall_Type_GetInterfaces): Ditto.
4136
4137 2006-01-30  Raja R Harinath  <rharinath@novell.com>
4138
4139         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4140         allocate memory for parameter attributes when parsing memberref
4141         signatures.
4142         * loader.c (mono_loader_set_error_method_load): Don't warn.
4143         (method_from_memberref): Ensure MissingMethodException gets thrown
4144         if method is not found.  Make warning more informative.
4145
4146 2006-01-29  Raja R Harinath  <harinath@gmail.com>
4147
4148         Fix #77397
4149         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
4150         return true if is byref.
4151         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
4152         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
4153         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
4154
4155 2006-01-27  Raja R Harinath  <rharinath@novell.com>
4156
4157         Fix tests/find-method.2.il
4158         * loader.c (find_method, find_method_in_class): Remove is_inflated
4159         argument.  Revert 2006-01-18 change.
4160         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
4161         is generic, search for method in its generic definition.
4162         * class.c (mono_class_setup_vtable_general): Print generic
4163         arguments of generic types in debugging printf.
4164
4165 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
4166
4167         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
4168
4169         * threads.c (mono_threads_request_thread_dump): New helper function.
4170
4171 2006-01-25  Raja R Harinath  <rharinath@novell.com>
4172
4173         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
4174
4175 2006-01-25  Ankit Jain  <jankit@novell.com>
4176
4177         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
4178         move definition to ..
4179         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
4180         
4181 2006-01-25  Ankit Jain  <jankit@novell.com>
4182             Raja R Harinath  <rharinath@novell.com>
4183
4184         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
4185         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
4186         as necessary.
4187
4188 2006-01-25  Martin Baulig  <martin@ximian.com>
4189
4190         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
4191         `MonoDebuggerThread' into debug-debugger.c.
4192
4193 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
4194
4195         * profiler.c: fix printing of data.
4196
4197 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
4198
4199         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
4200           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
4201
4202 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
4203
4204         * object.c: fix deadlock related to string interning.
4205
4206 2006-01-23  Martin Baulig  <martin@ximian.com>
4207
4208         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
4209
4210         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
4211
4212 2006-01-23  Martin Baulig  <martin@ximian.com>
4213
4214         * mono-debug.h: Moved the prototypes of some functions which are
4215         used by the JIT here from mono-debug-debugger.h.
4216
4217 2006-01-21  Martin Baulig  <martin@ximian.com>
4218
4219         * Makefile.am: Don't install mono-debug-debugger.h.
4220
4221 2006-01-21  Martin Baulig  <martin@ximian.com>
4222
4223         * mono-debug-debugger.h: Enforce the private status of this header
4224         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
4225         Moved some stuff from mono-debugger-jit-wrapper.h here.
4226
4227 2006-01-20  Raja R Harinath  <rharinath@novell.com>
4228
4229         * class.c (mono_class_from_typeref): Add a sanity test to help
4230         catch lack of assembly load/search hooks.
4231
4232 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
4233
4234         * marshal.c (emit_struct_conv): Relax the fields with same offset
4235         check even more. Fixes #77230.
4236
4237 2006-01-18  Martin Baulig  <martin@ximian.com>
4238
4239         * loader.c (find_method_in_class): Added `gboolean is_inflated'
4240         argument; if false, we compare the uninstantiated signatures.
4241         (method_from_memberref): Compare the uninstantiated signatures;
4242         fixes #76417.
4243
4244 2006-01-18  Robert Jordan  <robertj@gmx.net>
4245
4246         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
4247         Clear the weak link. Fixes bug #77170.
4248
4249         * gc.c (mono_gchandle_free):
4250         Reflect *-gc.c changes (tiny optimization).
4251
4252 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
4253
4254         * metadata.c (mono_metadata_signature_dup): Applied patch from
4255         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
4256         Fixes #77288.
4257
4258 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
4259
4260         * marshal.c (emit_struct_conv): Allow fields with the same offset when
4261         marshalling from native to managed code. Fixes #77230.
4262
4263 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4264
4265         * threadpool.c: fix problem (Mac only) when more than one asynchronous
4266         connect. Fixes bug #77020.
4267
4268 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
4269
4270         * class.c: fixed id assignement for nested interfaces (bug #77275).
4271         Added also better info for --print-vtable debugging.
4272
4273 2006-01-12  Martin Baulig  <martin@ximian.com>
4274
4275         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
4276         interfaces on-the-fly; fixes #76625.
4277
4278         * class-internals.h
4279         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
4280         don't need that anymore.
4281
4282 2006-01-12  Miguel de Icaza  <miguel@novell.com>
4283
4284         * socket-io.c
4285         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4286         To avoid initing the nested_classes when not needed I turned the
4287         PeerCredData as a toplevel internal class, as it has to be shared
4288         anyways. 
4289
4290         Fixes the CASA issue.
4291
4292 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
4293
4294         * domain.c: Accessors for MonoJitInfo
4295
4296         * profiler-private.h: Add jitinfo to the end jit hook
4297
4298         * profiler.[ch]: Define new hooks, called after jitting which give
4299         the MonoJitInfo that was compiled
4300
4301 2006-01-10  Martin Baulig  <martin@ximian.com>
4302
4303         * class.c (mono_class_setup_events): Add support for generic
4304         classes; fixes #76440.
4305
4306 2006-01-06  Raja R Harinath  <rharinath@novell.com>
4307
4308         Fix #77160.
4309         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
4310         on passed-in method.
4311
4312 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4313
4314         * object.c (mono_runtime_invoke_array): Add Nullable support.
4315
4316         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
4317
4318 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
4319
4320         * file-io.c: Don't consider sockets as directory and avoid an endless
4321         loop. Fix bug #76966.
4322
4323 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
4324
4325         * object.c (mono_nullable_init): New helper function.
4326         (mono_nullable_box): Ditto.
4327
4328         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
4329
4330         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
4331
4332         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
4333         
4334 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
4335
4336         * class.c (mono_class_is_assignable_from): Make T assignable to 
4337         Nullable<T>.
4338
4339 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
4340
4341         * appdomain.c: Bump corlib version to 46.
4342         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
4343         serialization purpose) and changed ves_icall_System_Reflection_
4344         Assembly_get_code_base signature to accept a boolean (to escape, or 
4345         not, the assembly code base).
4346
4347 2005-12-23  Dick Porter  <dick@ximian.com>
4348
4349         * icall.c: 
4350         * threads-types.h: 
4351         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
4352         CreateEvent icall now returns "created" boolean parameter.
4353
4354 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
4355
4356         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
4357         #76967.
4358
4359         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
4360         when attr_klass is an interface. Fixes #77045.
4361
4362 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
4363
4364         * marshal.c (emit_struct_conv): Fix previous patch.
4365         
4366         * marshal.c (emit_struct_conv): Add a check for fields with the same
4367         offset.
4368
4369 2005-12-20  Raja R Harinath  <rharinath@novell.com>
4370
4371         Fix regression in Mono.C5.
4372         * class.c (mono_class_create_generic): If 'klass' is an interface
4373         set up the interface offsets.
4374         (mono_class_is_assignable_from): Don't throw away generic arguments.
4375
4376 2005-12-19  Raja R Harinath  <rharinath@novell.com>
4377
4378         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
4379         type parameters.
4380
4381 2005-12-15  Raja R Harinath  <rharinath@novell.com>
4382
4383         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
4384         dead store.
4385         (do_mono_metadata_parse_generic_class): Don't pass the current
4386         generic context when parsing the type being instantiated: it
4387         cannot use it, anyway.
4388
4389         * loader.c (method_from_memberref): Don't inflate a signature if
4390         it doesn't contain any type parameters.
4391
4392 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
4393
4394         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
4395
4396 2005-12-14  Martin Baulig  <martin@ximian.com>
4397
4398         * class.c
4399         (mono_type_get_name_recurse): Don't return null for type
4400         parameters and open generic classes.
4401         (mono_class_setup_methods): Don't exclude generic instances.
4402         (mono_get_unique_iid): Use different IDs for different
4403         instantiations of the same generic type.
4404         (mono_class_setup_vtable): Only use setup_generic_vtable() for
4405         open generic instances; create a normal vtable for closed generic
4406         instances.
4407         (mono_class_setup_vtable_general): We're now also called for
4408         closed generic instances.
4409
4410         * reflection.c
4411         (mono_reflection_bind_generic_parameters): Correctly use
4412         mono_metadata_lookup_generic_inst() everywhere.
4413
4414 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
4415
4416         * object.c (mono_class_create_runtime_vtable): Call 
4417         mono_class_setup_vtable ().
4418
4419         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
4420         function.
4421         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
4422         #76959.
4423
4424         * loader.c (mono_loader_set_error_type_load): Print the type load
4425         warnings to the console so they are more visible to the user.
4426         (mono_loader_set_error_method_load): Ditto.
4427
4428         * reflection.c (ensure_runtime_vtable): Revert the last change as it
4429         is still broken.
4430         
4431         * reflection.c (ensure_runtime_vtable): Fix build.
4432
4433         * reflection.c (ensure_runtime_vtable): Disable an optimization which
4434         doesn't work in all cases.
4435
4436 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
4437
4438         * object.c (mono_array_new_full): Treat a single dimensional array
4439         with 0 lower bounds as an szarray. Fixes #76973.
4440
4441         * reflection.c (custom_attr_visible): Really fix this.
4442
4443 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
4444
4445         * reflection.c (custom_attr_visible): Allow nested public attributes
4446         as well.
4447
4448         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
4449         interface check.
4450
4451 2005-12-12  Raja R Harinath  <harinath@gmail.com>
4452
4453         * class.c (set_generic_param_owner): Delete.
4454         (mono_class_create_from_typedef): Don't set ->owner field of
4455         generic parameters to "param containers" of enclosing classes.
4456         * reflection.c (mono_reflection_initialize_generic_parameter):
4457         Likewise.
4458
4459 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
4460
4461         * reflection.c (custom_attr_visible): Fix build.
4462
4463 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
4464
4465         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
4466         private attributes.
4467         
4468         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
4469         handling of null parameter defaults.
4470
4471 2005-12-09  Raja R Harinath  <rharinath@novell.com>
4472
4473         * class.c (mono_class_from_generic_parameter): Don't set
4474         klass->generic_container.
4475         (my_mono_class_from_generic_parameter): Likewise.
4476
4477 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
4478
4479         * reflection.c (load_public_key): Fix a warning.
4480         (method_encode_code): Fix unaligned accesses.
4481
4482 2005-12-07  Martin Baulig  <martin@ximian.com>
4483
4484         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
4485
4486         * reflection.c
4487         (write_generic_param_entry): Encode our custom attrs.
4488
4489         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
4490
4491 2005-12-07  Martin Baulig  <martin@ximian.com>
4492
4493         * reflection.c (encode_new_constraint): Removed; we don't use the
4494         `NewConstraintAttribute' anymore.
4495
4496 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
4497
4498         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
4499         not fire a TypeResolve event when Assembly.GetType () is called.
4500
4501 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
4502
4503         Beginning of support for nullable types in the runtime. Parts of
4504         this patch are from Martin.
4505
4506         * appdomain.c (MONO_CORLIB_VERSION): Bump
4507
4508         * domain.c (mono_init_internal): get the nullable type
4509
4510         * class.c (mono_class_is_nullable): New method
4511         (mono_class_get_nullable_param): New mehod
4512         (mono_class_create_generic): In types T? set cast_class to T
4513
4514         * class-internals.h (MonoDefaults): new nullable default class
4515         (mono_class_get_nullable_param, mono_class_get_nullable_param):
4516         new methods.
4517
4518 2005-12-05  Raja R Harinath  <rharinath@novell.com>
4519
4520         * metadata.c (select_container): New.  Refactor code to select the
4521         appropriate GenericContainer given the type of generic parameter
4522         we are looking for.
4523         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
4524         not a MonoGenericContext.  Use select_container.  Update parameters.
4525         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
4526         and MONO_TYPE_MVAR.
4527         (unwrap_arrays): Remove duplicate tests.
4528         (find_generic_param): Rename from 'has_same_context'.  Now walks a
4529         generic instantiated class to find any arguments that are generic
4530         parameters.
4531         (mono_type_create_from_typespec_full): Use find_generic_param to
4532         avoid evicting some generic instantiations from the typespec
4533         cache.
4534
4535 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
4536
4537         * reflection.c: fixed writing of doubles on ARM FPA.
4538
4539 2005-12-02  Robert Jordan  <robertj@gmx.net>
4540
4541         * icall.c: Fixed EventInfo.ReflectedType (#76829).
4542
4543 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4544
4545         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
4546         least on SUSE 10 they are not the same (on debian, they are just the
4547         same thing).
4548
4549 2005-12-01  Raja R Harinath  <rharinath@novell.com>
4550
4551         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
4552         DeclaringType for VARs and MVARs.
4553         * class.c (set_generic_param_owner): Fix initialization of owner
4554         fields.
4555
4556 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
4557
4558         * icall.c: fixed Enum.ToObject() to correctly convert the values.
4559
4560 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4561
4562         * threadpool.c: workaround for a bug that shows up on the Mac:
4563         select()+connect() on a blocking socket is not like it should
4564         be, so we proceed to connect() in that case, wasting the I/O
4565         threadpool thread until connect succeedes. Fixes bug #75436.
4566
4567 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4568
4569         * threadpool.c: fix typo when setting file descriptor states.
4570
4571 2005-11-28  Raja R Harinath  <rharinath@novell.com>
4572
4573         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
4574         * metadata.c (mono_metadata_parse_method_signature_full): Don't
4575         create a temporary signature container.
4576         (mono_metadata_parse_generic_param): Update to changes.
4577         (mono_type_create_from_typespec_full): Update to changes.
4578         * loader.c (method_from_memberref): Don't use a
4579         MonoGenericContainer while parsing a memberref signature.
4580         (method_from_methodspec): Remove dead-store of the 'container'
4581         variable.  It's overwritten before use.
4582
4583         * metadata.c (mono_type_create_from_typespec_full): Make debugging
4584         checks tighter.
4585         (mono_metadata_parse_generic_param): Likewise.
4586         * loader.c (find_method_in_class): Does not need a
4587         MonoGenericContainer.  Use 'mono_method_signature' rather than
4588         'mono_method_signature_full'.
4589         (find_method, mono_get_method_constrained, method_from_memberref):
4590         Update to changes.
4591
4592         * metadata.c (mono_type_create_from_typespec_full): Ensure that
4593         owner-less generic-parameters are never evicted from the typespec
4594         cache.
4595
4596         * loader.c (method_from_memberref): Don't use the current context
4597         when parsing signatures.
4598         (method_from_methodspec, mono_get_method_from_token): Update to changes.
4599
4600         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
4601         side-effects in g_assert.
4602         * loader.c (mono_get_method_from_token): Resolve klass earlier so
4603         that we don't potentially lose information.
4604
4605 2005-11-26  Dick Porter  <dick@ximian.com>
4606
4607         * icall.c:
4608         * threads.c: icalls to implement basic (ie, not named)
4609         System.Threading.Semaphore.
4610
4611 2005-11-24  Dick Porter  <dick@ximian.com>
4612
4613         * process.c
4614         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
4615         Use GetProcessId() if it's available.
4616
4617 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
4618
4619         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
4620
4621 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4622             Ankit Jain  <jankit@novell.com>
4623
4624         * loader.c (mono_get_method_from_token): Initialize 'method' field
4625         of all generic parameters before parsing the signature.  Remove
4626         code that "fixed"-up MVAR references.
4627
4628 2005-11-23  Ankit Jain  <jankit@novell.com>
4629
4630         * metadata.c (mono_metadata_has_generic_params):
4631         (mono_metadata_load_generic_param_constraints):
4632         (mono_metadata_load_generic_params): Move duplicate code ...
4633         (mono_metadata_get_generic_param_row): ... here. Returns the
4634         first row-id in GenericParam table for a given owner (token).
4635         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
4636         prototype.
4637
4638 2005-11-23  Raja R Harinath  <rharinath@novell.com>
4639             Ankit Jain  <jankit@novell.com>
4640
4641         * metadata.c (mono_metadata_class_equal): Pass signature_only when
4642         comparing VARs too.
4643         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
4644         type->data.generic_param only if the type is an MVAR.
4645         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
4646         leak owner-less VARs and MVARs into managed space.
4647
4648 2005-11-21  Martin Baulig  <martin@ximian.com>
4649
4650         * class-internals.h
4651         (MonoMethod): Moved the `generic_container' here from
4652         `MonoMethodNormal' since we now also need it for
4653         `MonoMethodPInvoke';
4654         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
4655         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
4656         an union containing both `MonoMethodNormal' and
4657         `MonoMethodPInvoke'.
4658
4659         * loader.c
4660         (mono_get_method_from_token): Allow implementing generic methods
4661         as interncalls.
4662
4663         * threads.c
4664         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
4665         icall.
4666
4667 2005-11-17  Dick Porter  <dick@ximian.com>
4668
4669         * icall.c: 
4670         * process.h: 
4671         * process.c: Split the Process Start_internal icall into
4672         ShellExecuteEx_internal and CreateProcess_internal, which are
4673         called depending on whether UseShellExecute is true.  Fixes bug
4674         76670.
4675
4676         * appdomain.c (MONO_CORLIB_VERSION): Incremented
4677
4678 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
4679
4680         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
4681         'msize' parameters, use the information in 'mspec' instead.
4682         (emit_object_to_ptr_conv): Ditto.
4683
4684         * marshal.c (emit_struct_conv): Handle explicit layout structs with
4685         fields out of order. Fixes #76733.
4686
4687 2005-11-17  Ankit Jain  <jankit@novell.com>
4688
4689         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
4690
4691 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
4692
4693         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
4694           bug #76575.
4695
4696 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4697
4698         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
4699         for types with non-auto layout. Fixes #76717.
4700
4701 2005-11-16  Ankit Jain  <jankit@novell.com>
4702
4703         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
4704         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
4705         if generic_context is null.
4706           (mono_metadata_generic_param_equal): param->owner can be null.
4707           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
4708         null.
4709
4710 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
4711
4712         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
4713         the correct value.
4714
4715 2005-11-15  Martin Baulig  <martin@ximian.com>
4716
4717         * object.c (set_value): Use mono_class_from_mono_type() instead of
4718         the hack for generic instances; fixes #76136.
4719
4720 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
4721
4722         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
4723         fields.
4724
4725         * image.c (load_metadata_ptrs): Initialize the new fields.
4726
4727         * reflection.c (create_dynamic_mono_image): Ditto.
4728
4729         * reflection.c (build_compressed_metadata): Use the new fields.
4730
4731         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
4732         icall.
4733
4734         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
4735         icall.
4736         
4737 2005-11-15  Ankit Jain  <jankit@novell.com>
4738             Raja R Harinath  <harinath@gmail.com>
4739
4740         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
4741         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
4742         new per-generic_container cache if the cached MonoType's context matches
4743         the current context.
4744           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
4745         to the expected context.
4746           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
4747
4748 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4749
4750         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
4751         we changed the signature of an icall.
4752         * icall.c: Modify to mono_double_ParseImpl return true/false 
4753         depending on the success, instead of throwing the exception. This will
4754         help us in Double.TryParse methods.
4755         
4756 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
4757
4758         * marshal.c (emit_marshal_object): Throw an exception when
4759         marshalling 'object' instead of crashing. Fixes #76696.
4760
4761 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4762
4763         * class-internals.h: Add prototype for mono_type_get_full_name ().
4764
4765 2005-11-11  Dick Porter  <dick@ximian.com>
4766
4767         * threads.c (mono_thread_manage): Make sure the main thread has
4768         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
4769
4770 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
4771
4772         * loader.c (mono_loader_set_error_type_load): Log a warning to the
4773         console about the missing type.
4774         (mono_loader_set_error_method_load): Ditto.
4775
4776 2005-11-09  Miguel de Icaza  <miguel@novell.com>
4777
4778         * mono-config.c (mono_get_config_dir): Set the system defaults if
4779         none is specified.
4780
4781         * assembly.c (mono_set_dirs): New API entry point to set the
4782         assembly and the config directory in one call
4783
4784 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
4785
4786         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
4787         the ftnptr was created from a delegate in a domain other than the
4788         current domain. Fixes #75377.
4789
4790         * exception.h exception.c: Add mono_get_exception_not_supported ().
4791
4792 2005-11-08  Martin Baulig  <martin@ximian.com>
4793
4794         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
4795
4796 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
4797
4798         * security-manager.h: Added definitions to deal with strongname key 
4799         pairs bigger (and smaller) than 1024 bits.
4800         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
4801         adjust wrt the public key length being used.
4802
4803 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
4804
4805         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
4806           Windows build (r51396-51397).
4807
4808 2005-11-03  Martin Baulig  <martin@ximian.com>
4809
4810         * class.c (mono_class_setup_vtable_general): Also add generic
4811         methods to the vtable; fixes #76581.
4812
4813 2005-11-01  Miguel de Icaza  <miguel@novell.com>
4814
4815         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
4816         sure that we lookup GetString method from the System.Text.Encoding
4817         class, not the derived class or we get an empty method.
4818
4819         Fixed class #76612.
4820
4821 2005-10-25  Miguel de Icaza  <miguel@novell.com>
4822
4823         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
4824         if it has been previously set (embedders). 
4825
4826         Make mono_set_rootdir available also on Unix.
4827
4828 005-10-24  Robert Jordan  <robertj@gmx.net>
4829
4830         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
4831
4832 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
4833
4834         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
4835         only calls which are made to native code use this flag.
4836
4837         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
4838
4839 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
4840
4841         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
4842         Add support for FieldBuilders.
4843
4844 2005-10-29  Martin Baulig  <martin@ximian.com>
4845
4846         * mono-debug.c
4847         (mono_debug_using_mono_debugger): New public method; returns
4848         whether we're running inside the debugger.
4849
4850 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
4851
4852         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
4853         for Method/Constructor/FieldBuilders.
4854
4855 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
4856
4857         * reflection.c (module_add_cattrs): Save custom attributes for global methods
4858         and fields as well.
4859
4860 2005-10-26  Martin Baulig  <martin@ximian.com>
4861
4862         * mono-debug-debugger.c
4863         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
4864
4865 2005-10-24  Raja R Harinath  <harinath@gmail.com>
4866
4867         * icall.c (base64_to_byte_array): Don't pass an out-of-range
4868         integer to isspace.
4869
4870 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
4871
4872         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
4873         when passing valuetypes byref. Fixes #76502.
4874
4875 2005-10-19  Jackson Harper  <jackson@ximian.com>
4876
4877         * profiler.c: Don't put a . in front of types that are not in a
4878         namespace.
4879
4880 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
4881
4882         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
4883
4884 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
4885
4886         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
4887         #76436.
4888         (mono_marshal_get_ldflda_wrapper): Fix a warning.
4889
4890 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4891
4892         * assembly.c metadata-internals.h icall.c: Define an additional
4893         parameter for mono_assembly_name_parse_full, so we can avoid creating
4894         S.R.AssemblyName.Version when no version info wasn't passed.
4895         
4896 2005-10-09  Miguel de Icaza  <miguel@novell.com>
4897
4898         * class.c (mono_type_get_full_name): Reimplement method that was
4899         removed. 
4900
4901         * image.c: Some docs
4902
4903 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
4904
4905         * profiler.c (output_newobj_profile): Fix printing of Total memory
4906         on x86.
4907
4908 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4909
4910         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
4911
4912 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
4913
4914         * threads.c: remove debug output.
4915
4916 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
4917
4918         * threads.c (mono_thread_manage): Fix crashes if more than 64
4919         threads need to be aborted. Hopefully fixes #75899.
4920
4921         * assembly.c (mono_stringify_assembly_name): New helper function.
4922
4923         * class.c: Use mono_stringify_assembly_name instead of the similar
4924         static function.
4925
4926         * assembly.h assembly.c: Add support for calling a postload search 
4927         hook if an assembly cannot be loaded.
4928
4929         * appdomain.c: Register new search hooks which call the AssemblyResolve
4930         events in AppDomain. Fixes #75231
4931
4932 2005-10-07  Martin Baulig  <martin@ximian.com>
4933
4934         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
4935         methods without debug info.
4936
4937 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
4938
4939         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
4940         wrappers.
4941
4942 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4943
4944         * file-io.c: now that we return symlinks, use lstat and, when the file
4945         is a symbolic link, stat, to get the file attributes. Also avoid the
4946         conversion to/from utf16/external.
4947
4948 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
4949
4950         * class.c (mono_class_layout_fields): Compute klass->has_references
4951         correctly if an embedded valuetype is not yet initialized. Fixes
4952         #76331.
4953
4954 2005-10-04  Martin Baulig  <martin@ximian.com>
4955
4956         * metadata.c
4957         (mono_metadata_load_generic_param_constraints): New public
4958         function; splitted the constraints loading out from
4959         mono_metadata_load_generic_params().
4960
4961         * class.c (mono_class_create_from_typedef): Call
4962         mono_metadata_load_generic_param_constraints() after setting up
4963         the type and creating our parent; fixes #75329.
4964
4965 2005-10-04  Martin Baulig  <martin@ximian.com>
4966
4967         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
4968         non-dynamic parent classes.
4969
4970 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
4971
4972         * file-io.c : win32 build fix (ETXTBSY seems not found).
4973
4974 2005-10-04  Martin Baulig  <martin@ximian.com>
4975
4976         * reflection.c
4977         (mono_image_get_methodspec_token): Make the cache actually work;
4978         fixes #75974.
4979
4980 2005-10-04  Martin Baulig  <martin@ximian.com>
4981
4982         * class.c (mono_class_name_from_token): Removed the unneccessary
4983         `MonoGenericContext *' argument.
4984
4985 2005-10-04  Martin Baulig  <martin@ximian.com>
4986
4987         * loader.c
4988         (method_from_methodspec): Make the caching work again; fixes the
4989         performance regression from #76262.
4990
4991 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4992
4993         * file-io.c:
4994         * file-io.h:
4995         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
4996         GetFileSystemEntries that performs the same work but without going
4997         into io-layer, locking, etc.
4998
4999 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
5000
5001         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
5002         ThreadState_Stopped as well. Fixes #76047.
5003
5004 2005-09-29  Martin Baulig  <martin@ximian.com>
5005
5006         * class.c
5007         (inflate_generic_context): If the new context has a `gmethod', set
5008         its `container' that that gmethod's `container'.
5009
5010         * metadata.c
5011         (mono_metadata_parse_generic_param): Simplify things;
5012         `generic_container = generic_context->container;' is just fine.
5013
5014         * loader.c (method_from_methodspec): Code cleanups.
5015
5016 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
5017
5018         * decimal.c: fix warning (and let gcc generate correct
5019         code on ARM with optimizations).
5020
5021 2005-09-28  Martin Baulig  <martin@ximian.com>
5022
5023         * loader.c
5024         (method_from_memberref): Added `MonoGenericContext *class_context'
5025         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
5026         (method_from_methodspec): If we're a memberref, use the enclosing
5027         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
5028
5029 2005-09-28  Martin Baulig  <martin@ximian.com>
5030
5031         * object.c (mono_runtime_invoke_array): Added support for
5032         MONO_TYPE_GENERICINST; fixes #75917.
5033
5034 2005-09-27  Martin Baulig  <martin@ximian.com>
5035
5036         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
5037         `k->byval_arg.type' to determine the actual type.
5038
5039         * loader.c (method_from_methodspec): Removed some hacks.
5040
5041 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
5042
5043         * class-internals.h (mono_field_is_deleted): Do the test for
5044         rtspecialname before we check the actual name of the field. This
5045         prevents us from dereferencing a pointer into the string table,
5046         saving us from accessing a few pages
5047
5048         * *.c: Replace the use of {Enter,Leave}CriticalSection with
5049         macros. This will allow a deadlock debugger to easily be plugged
5050         in.
5051
5052 2005-09-27  Martin Baulig  <martin@ximian.com>
5053
5054         * loader.c (method_from_methodspec): Create a "signature"
5055         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
5056
5057 2005-09-27  Martin Baulig  <martin@ximian.com>
5058
5059         * class.c
5060         (inflate_generic_class): Correctly set the new context's
5061         container.
5062
5063         * loader.c
5064         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
5065         instead of a `MonoGenericContext *'.
5066         (mono_method_signature_full): Take a `MonoGenericContainer *'
5067         instead of a `MonoGenericContext *'.
5068
5069         * metadata.c
5070         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
5071         instead of a `MonoGenericContext *'.
5072         (mono_metadata_parse_method_signature_full): Likewise.
5073
5074 2005-09-26  Martin Baulig  <martin@ximian.com>
5075
5076         * class.c
5077         (mono_class_from_generic_parameter): Set `klass->generic_container'
5078         (mono_class_from_generic_parameter): Likewise.
5079         (mono_bounded_array_class_get): We inherit the generic container
5080         from the element class.
5081
5082         * loader.c
5083         (find_method, find_method_in_class): Take a `MonoGenericContext *'
5084         argument rather than computing it here.
5085         (method_from_memberref): Correctly set the generic context before
5086         parsing the signature.  Fixes #75681.
5087
5088 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
5089
5090         * object.c (mono_class_has_special_static_fields): Fix warnings.
5091
5092 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5093
5094         * assembly.c: Add parse_public_key function, to
5095         par the public keys. Also added mono_assembly_name_parse_full,
5096         to define it the parsed key should be freed or not.
5097         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
5098         to parse a long format assembly name.
5099         * metadata-internals.h: Keep mono_assembly_name_parse_full as
5100         private, since calling it to preserve the key requires
5101         freeing it manually.
5102         
5103 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
5104
5105         * locales.c : removed HAVE_ICU part.
5106
5107 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
5108
5109         * object.c (mono_class_create_runtime_vtable): Avoid calling 
5110         field_is_special_static if the klass has no special static fields.
5111
5112         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
5113         (MonoCachedClassInfo): Likewise.
5114
5115         * object.c (mono_class_has_special_static_fields): New helper function.
5116
5117 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5118
5119         * class.c (mono_class_create_from_typedef): Don't call 
5120         interfaces_from_typedef_full for enums.
5121         (mono_class_create_from_typedef): Compute the base types of enums directly
5122         without calling mono_class_setup_fields ().
5123         (mono_class_find_enum_basetype): New helper function.
5124
5125         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
5126         one place inside the string heap.
5127         
5128 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
5129
5130         * class.c: locking fixes, code cleanups, some docs added.
5131         Allocate some data structures in the image mempool.
5132
5133 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5134
5135         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5136         the example code.
5137         
5138 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
5139
5140         * class-internals.h, class.c, reflection.c: reduce memory taken by
5141         MonoClass.
5142
5143 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
5144
5145         * metadata.c, metadata.h, loader.h: documentation updates, code and
5146         API cleanups.
5147
5148 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
5149
5150         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
5151         the example code.
5152
5153         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
5154         page faults caused by the runtime while reading metadata.
5155
5156 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5157
5158         * socket-io.c: the field names were changed 3 months ago and no one
5159         realized until bug #76077 got filed!
5160
5161 2005-09-20  Martin Baulig  <martin@ximian.com>
5162
5163         * icall.c (assembly_icalls): Removed some unused debugger icalls.
5164
5165 2005-09-20  Martin Baulig  <martin@ximian.com>
5166
5167         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
5168         write the rank into the class entry.
5169
5170 2005-09-20  Martin Baulig  <martin@ximian.com>
5171
5172         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
5173
5174 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
5175
5176         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5177
5178         * icall.c (custom_attrs_defined_internal): New icall.
5179
5180         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
5181         function.
5182         (mono_custom_attrs_construct_by_type): New helper function.
5183
5184 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
5185
5186         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
5187         terminate the resulting string. Fixes #76123.
5188
5189 2005-09-16  Martin Baulig  <martin@ximian.com>
5190
5191         * mono-debug.c
5192         (mono_debug_add_method): Ignore inflated methods for the moment.
5193
5194 2005-09-14  Martin Baulig  <martin@ximian.com>
5195
5196         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
5197
5198 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
5199
5200         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
5201         return a success/failure indication.
5202         (mono_metadata_interfaces_from_typedef_full): Ditto.
5203         (get_constraints): Ditto.
5204
5205 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
5206
5207         * marshal.c (emit_marshal_array): Fix handling of null arrays.
5208         
5209         * marshal.c (emit_marshal_array): Add support for returning string
5210         arrays from delegates. Fixes #76063.
5211
5212         * marshal.c: Use the emit_ldloc/stloc macros where possible.
5213
5214 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
5215
5216         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
5217         icall.
5218
5219 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
5220
5221         * reflection.c icall.c: Fix after mono_get_exception_type_load
5222         signature change.
5223
5224         * assembly.c (mono_assembly_get_assemblyref): New helper function.
5225         (mono_assembly_load_reference): Use the new helper.
5226
5227         * class-internals.h (MonoLoaderError): New structure containing 
5228         information about type loading errors.
5229
5230         * class-internals.h loader.c: Add APIs to store per-thread loader
5231         error information.
5232
5233         * loader.c class.c: Set the loader error if needed.
5234
5235         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
5236
5237 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
5238
5239         * decimal.c: fixed to handle the broken ARM fp format.
5240
5241 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
5242
5243         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
5244         broken.
5245
5246 2005-09-06  Martin Baulig  <martin@ximian.com>
5247
5248         * domain.c (supported_runtimes): Added v2.0.50727.
5249
5250 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
5251
5252         * culture-info.h: reduce the size of some structures.
5253
5254 2005-09-05  Martin Baulig  <martin@ximian.com>
5255
5256         Reflect latest API changes in the August CTP.
5257
5258         * icall.c
5259         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
5260         ("MonoType.HasGenericArguments"): Removed.
5261         ("MonoMethod.BindGenericParameters"): Renamed to
5262         "MakeGenericMethod".
5263         ("MethodBuilder.BindGenericParameters"): Renamed to
5264         "MakeGenericMethod".    
5265
5266 2005-09-05  Martin Baulig  <martin@ximian.com>
5267
5268         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
5269
5270 2005-09-05  Martin Baulig  <martin@ximian.com>
5271
5272         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5273
5274         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
5275         generic_container is non-NULL.
5276
5277 2005-09-05  Martin Baulig  <martin@ximian.com>
5278
5279         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5280
5281         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
5282
5283 2005-08-29  Michal Moskal  <malekith@nemerle.org>
5284
5285         * reflection.c (encode_locals,
5286         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
5287         for large generic types.
5288
5289 2005-09-05  Martin Baulig  <martin@ximian.com>
5290
5291         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5292
5293         * class.c (mono_dup_array_type): New public method.
5294         (mono_metadata_signature_deep_dup): New public method.
5295         (dup_type): Correctly duplicate array and function types.
5296
5297 2005-09-05  Martin Baulig  <martin@ximian.com>
5298
5299         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5300
5301         * reflection.c (get_default_param_value_blobs): Handle generic types
5302         and generic methods.
5303
5304 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
5305
5306         * class.c: Fixed error reporting (method/class were inversed) for 
5307         inheritance demands.
5308         * security-manager.c|h: Added the AppDomain when calling the managed
5309         System.Security.SecurityManager.InheritanceDemand method.
5310
5311 2005-09-01  Raja R Harinath  <rharinath@novell.com>
5312
5313         * reflection.c (encode_marshal_blob): 'marshaltype' and
5314         'marshaltyperef' are alternate sources for the custom marshaler
5315         name.
5316
5317 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
5318
5319         * class.c: fix creation of array classes with rank == 1
5320         (patch by Ankit Jain <jankit@novell.com>).
5321
5322 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
5323
5324         * object.c: fix check for creating the bound data for arrays vs
5325         szarrays.
5326
5327 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5328
5329         * object.c: configuration file name is now based on the executable name,
5330         not the image name. Fixes bug #75931.
5331
5332 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
5333
5334         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
5335         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
5336
5337 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
5338
5339         * rand.c: Use wincrypt.h instead of WinCrypt.h.
5340
5341 2005-08-24  Ankit Jain  <jankit@novell.com>
5342             Raja R Harinath  <rharinath@novell.com>
5343
5344         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
5345           called by it recursively.
5346           (mono_class_init): Remove special case in pending_init handling, since it's
5347           superseded by the fix to mono_class_from_typeref.
5348
5349 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
5350
5351         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
5352         BROKEN_THREAD_START stuff.
5353
5354 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
5355
5356         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
5357         trampoline.
5358
5359         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
5360         
5361         * object.c (mono_delegate_ctor): Replace the original function address with
5362         a delegate trampoline.
5363
5364 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
5365
5366         * icall.c: add boolean argument to base64_to_byte_array and 
5367         InternalFromBase64String to control whether a whitespace-only string
5368         is allowed (or should casue a FormatException to be thrown). We need
5369         this as the behavior has changed between MS.NET 1.x and 2.0, and we
5370         to match the MS behaviour in both profiles.
5371         * appdomain.c: Bump corlib version.
5372
5373 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5374
5375         This patch implements a big portion of publisher policy
5376         support, used to bind assembly versions and redirect
5377         one assembly from version A to version B.
5378
5379         * assembly.c:
5380         New GSList loaded_assembly_bindings, for storing the cached
5381         assembly bindings.
5382         (assembly_binding_maps_name): New static function for checking if a 
5383         assembly binding information maps an assembly name.
5384         (mono_assembly_binding_info_free): New function for freeing
5385         assembly binding information resources.
5386         (get_publisher_policy_info): New static function for retrieving 
5387         assembly binding information from a MonoImage.
5388         (compare_versions): New static function for comparing an assembly
5389         binding information data and the version of an assembly name.
5390         (check_policy_versions): New static function for checking if an
5391         assembly binding info mapping an assembly name is valid for it.
5392         (mono_assembly_load_publisher_policy): New static function for
5393         loading the 'policy.major.minor.MyAssembly' image for an assembly
5394         with an assembly name 'aname'.
5395         (mono_assembly_bind_version): New static function for updating
5396         assembly redirection.
5397         (mono_assembly_apply_binding): New static function for applying
5398         assembly binding.
5399         (search_binding_loaded): New static function for searching 
5400         loaded assembly binding infos in the cache domain.
5401         (mono_assembly_load_full): Don't apply assembly binding for
5402         reflection only assemblies.
5403
5404         * metadata-internals.h: Add MonoAssemblyBindingInfo,
5405         which contains information about assembly binding. Also
5406         declare signature for mono_config_parse_publisher_policy ()
5407         function, used to retrieve pub policy info.
5408         
5409         * mono-config.c:
5410         (publisher_policy_start): New static function used to parse publisher 
5411         policy config files.
5412         (publisher_policy_parser): New static MonoParseHandler containing 
5413         the functions used when parsing config files.
5414         (mono_config_parse_publisher_policy): New function for parsing
5415         publisher policy files.
5416         
5417 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
5418
5419         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
5420
5421         * marshal.c (mono_delegate_free_ftnptr): Ditto.
5422
5423         * object.c (mono_get_addr_from_ftnptr): New helper function.
5424
5425         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
5426
5427         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
5428
5429 2005-08-19  Dick Porter  <dick@ximian.com>
5430
5431         * threads.c, threads.h, appdomain.c, appdomain.h,
5432         profiler-private.h, monitor.c, object.c, object-internals.h,
5433         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
5434         store the thread ID, so it can hold a 64 bit value if needed.
5435
5436 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
5437
5438         * reflection.c (mono_reflection_create_dynamic_method): Store the
5439         handle class into the method references as well so ldtoken works in
5440         dynamic methods.
5441
5442         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
5443         types.
5444
5445 2005-08-19  Ankit Jain <jankit@novell.com>
5446
5447         Fix #75847.
5448         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
5449           here rather than using the method signature of a arbitrary function
5450           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
5451           two arguments.
5452           Hack done with Harinath.
5453
5454 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5455
5456         * threadpool.c: disable printing stack traces when we get a exception
5457         in a threadpool thread. I need to do more testing to figure out which
5458         cases actually print this. Fixes bug #75828.
5459
5460 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5461
5462         * icall.c: there might be ignored whitespace after the last '='. This
5463         fixes length computation and bug #75840.
5464
5465 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
5466
5467         * assembly.c (mono_assembly_load_full): Consider .exe extension as
5468         well. Fixes #75809.
5469
5470         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
5471         #75784.
5472         
5473         * reflection.c (create_custom_attr_data): Ditto.
5474
5475 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
5476
5477         * locales.c, culture-info.h : removed RegionLCIDMap.
5478         * culture-info-tables.h : regenerated.
5479
5480 2005-08-16  Martin Baulig  <martin@ximian.com>
5481
5482         * class.c (mono_type_get_name_recurse): Small fix.
5483
5484 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
5485
5486         * locales.c : indentation fixie.
5487
5488 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
5489
5490         * object-internals.h,
5491           locales.h,
5492           locales.c,
5493           culture-info.h,
5494           icall.c : added RegionInfo table support.
5495         * culture-info-table.h : regenerated for region support.
5496
5497 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
5498
5499         * reflection.c (resolve_object): handle all kinds of MonoMethod
5500         including generic ones
5501
5502 2005-08-12  Ankit Jain <jankit@novell.com>
5503
5504         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
5505           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
5506
5507 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
5508
5509         * process.c: Don't close a thread handle when it's NULL. This is a
5510         workaround for bug #75733.
5511
5512 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
5513
5514         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
5515
5516 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
5517
5518         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
5519
5520 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5521
5522         * threadpool.c: if a work item in the thread pool has a callback that
5523         catches a exception, don't propagate it after invoking the callback.
5524         Fixes bug #75336.
5525
5526 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
5527
5528         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
5529
5530         * class-internals.h (MonoCachedClassInfo): Add some new fields.
5531
5532         * class.c (mono_class_init): Load field info lazily in the AOT case.    
5533
5534         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
5535
5536 2005-08-03  Ankit Jain  <jankit@novell.com>
5537
5538         Fix #75683.
5539         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
5540           PInvoke calling convention is 0.
5541
5542 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
5543
5544         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
5545         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
5546
5547 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
5548
5549         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
5550         to handle threads not started by the GC (patch by Michael Meeks
5551         <michael.meeks@novell.com>).
5552
5553 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
5554
5555         * reflection.c: Make buffer used in emitting types larger for some
5556         big generic types (patch by Michal Moskal).
5557
5558 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
5559
5560         * mono-debug.c: Fix some (not all) alignment problems.
5561
5562 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5563
5564         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
5565         Invoke mono_image_load_from_data_full passing the refonly
5566         parameter.
5567
5568         * assembly.c
5569         (mono_assembly_open_from_bundle): Add the refonly argument, 
5570         in order to pass it to other methods it calls to.
5571         (do_mono_assembly_open): Add the refonly argument, in order 
5572         to pass it to other methods it calls to.
5573         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
5574         the refonly parameter to it.
5575
5576         * image.c: Add loaded_images_refonly_hash and
5577         loaded_images_refonly_guid_hash to cache the reflection
5578         only loaded images.
5579         (mono_images_init): Initialize the hash tables used for
5580         caching the reflection only images.
5581         (load_modules): Invoke mono_image_open_full passing the refonly
5582         parameter to load the modules the correct way.
5583         (build_guid_table): Add the refonly argument, to re-build the 
5584         correct hash table.
5585         (do_mono_image_open): Added the refonly argument, in order to
5586         define it for the loaded image.
5587         (mono_image_loaded_full): New function, which receives an
5588         additional parameter to look for the image in the refonly or
5589         non-refonly section.
5590         (mono_image_loaded): Updated, using mono_image_loaded_full.
5591         (mono_image_loaded_by_guid_full): The same case that happens
5592         with mono_image_loaded_full.
5593         (mono_image_loaded_by_guid): Likewise.
5594         (register_image): Use the ref_only variable inside MonoImage
5595         to decide in which hash table store the current image.
5596         (mono_image_open_from_data_full): Rename
5597         mono_image_open_from_data to mono_image_open_from_data_full,
5598         adding the refonly argument, to define the ref_only variable 
5599         inside MonoImage.
5600         (mono_image_open_from_data): Return 
5601         mono_image_open_from_data_full.
5602         (mono_image_open_full): Rename mono_image_open to
5603         mono_image_open_full, receiving the new refonly argument,
5604         to pass it to inner methods.
5605         (mono_pe_file_open): Update this function, to open
5606         a MonoImage as a non-refonly image.
5607         (mono_image_close): Use the refonly variable inside
5608         MonoImage to remove the image from the correct caches.
5609
5610         * image.h: Add the signatures of mono_image_open_full,
5611         mono_image_open_from_data_full, mono_image_loaded_full,
5612         mono_image_loaded_by_guid_full.
5613
5614         * metadata-internals.h: Add the ref_only field to 
5615         MonoImage.
5616         
5617 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5618
5619         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
5620         Fix the last behavior, which used to load the assemblies and
5621         extract MonoReflectionAssemblyName information, instead of
5622         extract it from the metadata tables. Needed for Reflection
5623         Only assemblies.
5624         
5625 2005-07-29  Martin Baulig  <martin@ximian.com>
5626
5627         * mono-debug-debugger.c
5628         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
5629         not initialized.
5630
5631         * mono-debug.c
5632         (mono_debug_address_from_il_offset): Check whether we have
5633         debugging support before attempting to take the lock.
5634         (mono_debug_source_location_from_address): Likewise.
5635         (mono_debug_source_location_from_il_offset): Likewise.
5636         (mono_debug_il_offset_from_address): Likewise.
5637         (mono_debug_address_from_il_offset): Likewise.
5638
5639 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
5640
5641         * class.c (mono_class_from_name_case): Add support for dynamic images.
5642         Fixes #75650.
5643
5644         * object.c (mono_class_compute_gc_descriptor): Add a workaround
5645         for #75479.
5646
5647 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5648         
5649         * reflection.c (mono_method_get_object): Fix warning.
5650
5651 2005-07-28  Martin Baulig  <martin@ximian.com>
5652
5653         * mono-debug.c
5654         (mono_debug_add_wrapper): Also write the wrapper type.
5655
5656 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
5657
5658         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
5659         
5660         * class.c (mono_class_init): Avoid reading nested classes if the AOT
5661         data indicates the class has none.
5662
5663 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
5664
5665         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
5666         loader lock with the debugger lock. Prevents deadlocks for beagle.
5667
5668         Beagle can now run on an smp box for a weekend without any
5669         issues. Woohoo!
5670
5671 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
5672
5673         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
5674         in a module. Fixes #75629.
5675
5676 2005-07-26  Martin Baulig  <martin@ximian.com>
5677
5678         * mono-debug.c (mono_debug_add_wrapper): New static method.
5679         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
5680         interncall or a wrapper.
5681
5682         * mono-debug.h (MonoDebugWrapperData): New public typedef.
5683         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
5684         (MONO_DEBUGGER_VERSION): Bump to 51.
5685
5686         * mono-debug-debugger.c
5687         (mono_debugger_add_type): Removed this empty function.
5688         (mono_debugger_add_method): Likewise.
5689
5690 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
5691
5692         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
5693         before accessing method->slot.
5694
5695 2005-07-21  Jb Evain  <jbevain@gmail.com>
5696
5697         * reflection.c (method_encode_clauses/class): Handle filters clauses.
5698         Fixes #75010.
5699
5700 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
5701
5702         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
5703         #75587.
5704
5705 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
5706
5707         * image.h image.c: Add mono_image_get_guid () API function.
5708
5709 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
5710
5711         There were issues when multiple threads tried to load
5712         assemblies. A deadlock was created between assemblies_mutex and
5713         mono_domain_assemblies_lock. This fixes the issue by making the
5714         assembly ref counting be lock free. See bug 75586.
5715         
5716         * image.c (mono_image_close): The add ref function here was using
5717         Interlocked operations while the unref was using a mutex and a
5718         --. I don't think this was ever a bug that would be exposed in a
5719         non-pendantic way (ie, by an embedder doing a ref on one thread
5720         and an unref on another), but for the sake of correctness, this is
5721         now Interlocked.
5722
5723         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
5724         (mono_assembly_load_reference): Call mono_assembly_addref rather
5725         than touching the refcount ourselves.
5726         (mono_assembly_close): Use InterlockedDecrement to unref the
5727         assembly. Don't acquire the lock unless it is actually needed.
5728
5729 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5730
5731         * class.c (mono_class_layout_fields): Fix calculation of has_references
5732         for generic types.
5733
5734 2005-07-12  Martin Baulig  <martin@ximian.com>
5735
5736         Applying a patch from Michal Moskal <malekith@nemerle.org>.
5737
5738         * metadata.c
5739         (mono_type_hash): Provide better hashing for generic instances.
5740         (mono_generic_inst_hash): Improve hashing.
5741         (mono_generic_class_hash): Likewise.
5742
5743         * reflection.c (mymono_metadata_type_hash): Improve hashing for
5744         generic instances.
5745
5746 2005-07-12  Martin Baulig  <martin@ximian.com>
5747
5748         * reflection.c (mono_reflection_create_runtime_class): Remove the
5749         hack for generic type definitions and non-`Run' assemblies.
5750         (mono_reflection_bind_generic_parameters): Also use
5751         `klass->wastypebuilder' to check for TypeBuilders.
5752
5753 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
5754
5755         * class.c (mono_class_layout_fields): Fix calculation of has_references
5756         for generic types.
5757
5758         * class.c (inflate_generic_class): Fix a leak.
5759         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
5760         for generic types.
5761
5762 2005-07-11  Martin Baulig  <martin@ximian.com>
5763
5764         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
5765         on error.
5766
5767 2005-07-11  Martin Baulig  <martin@ximian.com>
5768
5769         * loader.c (find_method): Also lookup in
5770         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
5771
5772 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5773
5774         * appdomain.c (mono_domain_unload): Don't free the error message
5775         before passing it to mono_get_exception_...
5776
5777         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
5778         
5779 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
5780
5781         * threads.c: try to better guess an available RT signal (bug #75387).
5782
5783 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5784
5785         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
5786         and CACHE_OBJECT.
5787
5788 2005-07-07  Martin Baulig  <martin@ximian.com>
5789
5790         * class.c (mono_type_get_name_full): Return NULL for
5791         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
5792         fixes #75408.
5793
5794 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
5795
5796         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
5797         exit the appdomain as well being aborted.
5798
5799         * threadpool.c: Create all threadpool threads inside the root appdomain, and
5800         change back to the root domain after calling managed code. This enables
5801         appdomains using threadpools to be unloaded.
5802
5803 2005-07-07  Martin Baulig  <martin@ximian.com>
5804
5805         * class-internals.h
5806         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
5807         into `MonoDynamicGenericClass' since we only need it for dynamic
5808         types.
5809
5810         * reflection.c (mono_class_bind_generic_parameters): We don't need
5811         to compute the `parent' here.
5812
5813 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
5814
5815         * culture-info-table.h : regenerated.
5816
5817 2005-07-06  Martin Baulig  <martin@ximian.com>
5818
5819         * icall.c
5820         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
5821
5822         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
5823
5824 2005-07-06  Martin Baulig  <martin@ximian.com>
5825
5826         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
5827         we're doing a signature-only comparision; fixes #74945.
5828
5829 2005-07-06  Martin Baulig  <martin@ximian.com>
5830
5831         * class-internals.h (MonoGenericClass): Moved some things out into
5832         a new `MonoInflatedGenericClass' type.  
5833         (MonoInflatedGenericClass): New type; the `klass' of a
5834         `MonoGenericClass' is now computed lazyly in
5835         mono_get_inflated_generic_class().      
5836
5837         * class.c (mono_get_inflated_generic_class): New public function.
5838         (mono_class_inflate_generic_method): Removed the unused
5839         `MonoClass *' argument.
5840         (setup_generic_vtable): Don't call mono_get_inflated_method() on
5841         all the methods.
5842         (mono_class_create_generic): Make this static and merge it with
5843         mono_class_create_generic_2(); we're now called automatically from
5844         mono_get_inflated_generic_class().
5845
5846         * loader.c (mono_method_signature): Call
5847         mono_get_inflated_method() here.
5848
5849 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
5850
5851         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
5852         type of fields with RVA.
5853
5854         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
5855         for this pseudo class.
5856         (my_mono_class_from_generic_parameter): Likewise.
5857         (mono_class_init): Allow interfaces to have cctors.
5858
5859 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5860
5861         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
5862         lazily for AOT methods.
5863
5864 2005-07-05  Martin Baulig  <martin@ximian.com>
5865
5866         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
5867         returns FALSE for a successful match, not TRUE.
5868
5869 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
5870
5871         * loader.c (mono_method_get_index): Optimize this a bit.
5872
5873 2005-07-04  Martin Baulig  <martin@ximian.com>
5874
5875         * class.c
5876         (class_compute_field_layout): Move the check for generic type
5877         definitions into mono_class_layout_fields().  Fixes #74684.
5878         (mono_class_from_generic_parameter): Correctly compute
5879         `klass->parent'; fixes #75457.
5880
5881         * reflection.c (register_assembly, register_module): Make sure
5882         `domain->rejobject_hash' is already created.
5883
5884 2005-07-02  Martin Baulig  <martin@ximian.com>
5885
5886         * class-internals.h
5887         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
5888         `MonoDynamicGenericClass'.      
5889
5890 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
5891
5892         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
5893         returned by a field getter is null, since null is a valid value.
5894
5895 2005-07-01  Martin Baulig  <martin@ximian.com>
5896
5897         * reflection.c (mono_reflection_generic_class_initialize): Update
5898         the `dgclass->fields [i].parent' to the correct class.
5899         (mono_image_get_fieldref_token): Use the declaring type, not the
5900         reflected type.
5901
5902 2005-07-01  Martin Baulig  <martin@ximian.com>
5903
5904         * loader.c (find_method): Also look in the interfaces; fixes #75429.
5905
5906 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
5907
5908         * threads.c (thread_cleanup): assert that thread != NULL
5909         (wait_for_tids_or_state_change): We were using the wrong variable
5910         when accessing wait->threads. `i' was always out of the bounds of
5911         the array.
5912
5913 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5914
5915         * loader.c: map user32 and kernel32 to libMonoSupportW
5916
5917 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
5918
5919         * appdomain.c (unload_thread_main): Mark this as WINAPI.
5920
5921 2005-06-28  Martin Baulig  <martin@ximian.com>
5922
5923         * loader.c (method_from_methodspec): Fix #75334.
5924
5925 2005-06-28  Martin Baulig  <martin@ximian.com>
5926
5927         Fix #74953 - Arrays now implement the generic IList<T> interface
5928         on the 2.0 platform.
5929
5930         * class-internals.h (MonoDefaults): Added `generic_array_class'.
5931
5932         * reflection.c (mono_class_bind_generic_parameters): New public
5933         function; similar to mono_reflection_bind_generic_parameters(),
5934         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
5935
5936         * domain.c (mono_init_internal): Try to initialize.
5937         `mono_defaults.generic_array_class' here; this'll only succeed if
5938         we're using the 2.0 corlib.
5939
5940         * icall.c
5941         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
5942         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
5943         (mono_lookup_internal_call): Added support for nested classes.
5944
5945         * loader.c
5946         (mono_get_method_from_token): Set `result->signature->pinvoke' if
5947         we're an interncall and have generic arguments.
5948
5949         * class.c
5950         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
5951         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
5952         instance of System.Array.InternalArray<T> for arrays, so they
5953         implement the generic IList<T> interface.
5954
5955 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
5956
5957         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
5958         (chastamar@yahoo.com). Fixes #75374.    
5959
5960 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
5961
5962         * culture-info-table.h: regenerated.
5963
5964 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5965
5966         * icall.c: handle spaces correctly for base64 strings.
5967
5968 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
5969
5970         * *.c: Kill some warnings.
5971
5972 2005-06-23  Duncan Mak  <duncan@novell.com>
5973
5974         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
5975         that this builds on Solaris 10 (x86).
5976
5977 2005-06-23  Martin Baulig  <martin@ximian.com>
5978
5979         * class.c
5980         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
5981         generic type definitions.
5982
5983 2005-06-23  Martin Baulig  <martin@ximian.com>
5984
5985         Fix #75331.
5986
5987         * metadata.c (mono_class_get_overrides): Renamed to
5988         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
5989         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
5990         pass it to mono_get_method_full().
5991
5992 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
5993
5994         * reflection.c (mono_reflection_create_runtime_class): take the
5995         mono_domain_lock in this method. Prevents deadlocks
5996
5997 2005-06-22  Martin Baulig  <martin@ximian.com>
5998
5999         * loader.c (method_from_methodspec): Fix #75330.
6000
6001 2005-06-22  Martin Baulig  <martin@ximian.com>
6002
6003         * reflection.c (type_get_qualified_name): Use
6004         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
6005         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
6006         argument; use it if we don't have an assembly name.
6007
6008 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
6009
6010         * object.c: In mono_message_init, set "copy out" flag for in
6011         parameters with the [Out] flag.
6012
6013 2005-06-21  Martin Baulig  <martin@ximian.com>
6014
6015         * class.c
6016         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
6017         and MONO_TYPE_PTR.
6018
6019 2005-06-21  Martin Baulig  <martin@ximian.com>
6020
6021         * class.c (mono_class_init): Don't initialize `class->fields' for
6022         generic instances since they're initialized again in
6023         compute_field_layout(). 
6024         (compute_field_layout): Set the field's `generic_info' here; fix
6025         #75320. 
6026
6027 2005-06-21  Martin Baulig  <martin@ximian.com>
6028
6029         * class-internals.h
6030         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
6031
6032         * metadata.c (mono_metadata_generic_method_equal): Also
6033         distinguish the `generic_class'; fixes #75334.
6034
6035 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6036
6037         * domain.c:
6038         * appdomain.c:
6039         * domain-internals.h:
6040         * reflection.c: 'domain_assemblies' field is now protected by its own
6041         lock. Don't call into managed code to run the AssemblyLoad event if we
6042         now there are no registered delegates for it.
6043
6044 2005-06-20  Martin Baulig  <martin@ximian.com>
6045
6046         * class.c (mono_class_is_assignable_from): Use a custom version of
6047         mono_class_has_parent() to make things work for generic instances;
6048         fix #75300.
6049
6050 2005-06-20  Martin Baulig  <martin@ximian.com>
6051
6052         * loader.c (method_from_methodspec): Apply a patch from
6053         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
6054
6055 2005-06-20  Martin Baulig  <martin@ximian.com>
6056
6057         * class.c (mono_class_init): Reverted Zoltan's last change; it
6058         breaks generics.
6059
6060 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
6061
6062         * threads.c (wait_for_tids_or_state_change): Add missing locking.
6063
6064 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6065
6066         * socket-io.c: fix the index in the socket array for writable/error
6067         sockets. Fixes bug #75306.
6068
6069 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
6070
6071         * class.c (mono_class_init): Allow interfaces to have static ctors.
6072
6073 2005-06-17  Martin Baulig  <martin@ximian.com>
6074
6075         * loader.c (method_from_methodspec): Use `context->container' when
6076         parsing the `gmethod->inst'.
6077
6078 2005-06-17  Martin Baulig  <martin@ximian.com>
6079
6080         * class.c (mono_type_get_name_recurse): Don't add the assembly
6081         name for type arguments.
6082
6083 2005-06-15  Martin Baulig  <martin@ximian.com>
6084
6085         * reflection.c (mono_image_get_inflated_method_token): Encode
6086         correct klass; fixes #75260.
6087
6088 2005-06-13 Michal Moskal <malekith@nemerle.org>
6089
6090         * icall.c: Make GetCorrespondingMethod/Constructor take
6091         MonoReflectionMethod method not MonoMethod. Removed
6092         MonoType.GetCorrespondingField, and make
6093         MonoGenericType.GetCorrespondingField take name not
6094         MonoClassField.
6095
6096 2005-06-13  Michal Moskal <malekith@nemerle.org>
6097
6098         * reflection.c (field_encode_signature, encode_locals):
6099          Make sizes of buffers for types larger (for big generic types).
6100          (create_generic_typespec,
6101          mono_reflection_sighelper_get_signature_local,
6102          mono_reflection_sighelper_get_signature_field):
6103          Add asserts for too small buffers.
6104
6105 2005-06-15  Martin Baulig  <martin@ximian.com>
6106
6107         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
6108         if our parent is not a dynamic type.
6109
6110 2005-06-15  Martin Baulig  <martin@ximian.com>
6111
6112         * class-internals.h (MonoTypeNameFormat): New enum.
6113
6114         * class.c
6115         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
6116         (mono_type_get_full_name): Removed.
6117         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
6118         argument instead of the boolean's.
6119
6120         * icall.c (ves_icall_System_MonoType_getFullName):
6121         Added `gboolean assembly_qualified'.    
6122
6123         * reflection.h
6124         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
6125
6126         * reflection.c (mono_reflection_parse_type): Parse the new type
6127         name format.
6128
6129 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6130
6131         * icall.c: no need to convert from utf16 to utf8 and then back again
6132         after the call to GetLogicalDrives.
6133
6134 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6135
6136         * icall.c: frombase64. Fix problems exposed by new tests.
6137
6138 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6139
6140         * icall.c: added internal calls for converting char [] and strings in
6141         base64 into byte [].
6142
6143 2005-06-10  Martin Baulig  <martin@ximian.com>
6144
6145         * class.c (mono_class_create_generic_2): Read the nested classes
6146         from the metadata rather than from `gklass->nested_classes' since
6147         `gklass' might not be initialized yet.
6148
6149 2005-06-09  Duncan Mak  <duncan@novell.com>
6150
6151         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
6152         all public headers. Fixes #74919.
6153
6154 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
6155
6156         * domain.c: The key for proxy_vtable_hash is now a pointer
6157         array. Added new GHashFunc and GCompareFunc functions for this.
6158
6159         * class.h: The list of interfaces in MonoRemoteClass is known in
6160         advance and can't grow (we create a new MonoRemoteClass if needed),
6161         so now the interface array can be allocated together with
6162         MonoRemoteClass.
6163         
6164         * object.c: Added a new method create_remote_class_key.
6165         Fixed mono_remote_class so it does not depend on
6166         mono_upgrade_remote_class.
6167         Removed extend_interface_array.
6168         Added new method clone_remote_class(), which makes a copy of a remote
6169         class and adds a new interface or class to it.
6170         mono_upgrade_remote_class() now creates a new remote class (or gets
6171         it from the cache) if an vtable upgrade is needed. In this way
6172         we make sure that other objects sharing the same remote class
6173         don't get the new vtable with unwanted interfaces.
6174         
6175         * object-internals.h:
6176         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
6177         
6178         * marshal.c: Track changes in mono_upgrade_remote_class().
6179
6180 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
6181         * icall.c: Add runtime methods for obtaining members of inflated
6182         class, which were created from supplied non-inflated members. It
6183         is used in internal Get{Method,Constructor,Field} methods in
6184         System.Type
6185
6186 2005-06-09  Martin Baulig  <martin@ximian.com>
6187
6188         * reflection.c
6189         (mono_reflection_bind_generic_method_parameters): Fix #75169.
6190
6191 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6192         * reflection.c (mono_image_basic_init): Define
6193         Version in MonoDynamicAssembly. 
6194         
6195 2005-06-08  Martin Baulig  <martin@ximian.com>
6196
6197         Fix #75136.
6198
6199         * loader.c
6200         (mono_method_signature_full): New public method; takes a
6201         `MonoGenericContext *'.
6202         (find_method): Use mono_method_signature_full() and pass the
6203         klass'es context to it.
6204
6205         * class.c (mono_class_is_inflated_method): Use
6206         mono_method_signature_full() and pass the context to it.
6207
6208 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
6209
6210         * object.c: add proper locking in mono_remote_class_vtable(),
6211         fixes possible memory corruption.
6212
6213 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
6214
6215         * marshal.c (mono_remoting_marshal_init): set
6216         initialized after initialization.
6217
6218 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
6219
6220         * locales.c : hush.
6221
6222 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
6223
6224         * object.c (extend_interface_array): fix really silly
6225         memory corrupting / comparison bug.
6226
6227 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6228
6229         * reflection.c: Functions added to support the creation
6230         of CustomAttributeData, which includes Attribute data
6231         used by ReflectionOnly methods.
6232
6233         * reflection.h:  mono_reflection_get_custom_attrs_data and
6234          mono_custom_attrs_data_construct added (functions exposed).
6235
6236          * icall.c: Added mono_reflection_get_custom_attrs_data
6237          as icall.
6238         
6239 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
6240
6241         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
6242         lupus's request.
6243
6244 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
6245
6246         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
6247
6248         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
6249         dynamic DllImportAttribute.
6250
6251         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
6252         dynamic DllImportAttribute.
6253
6254         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
6255         Fixes #75162.
6256
6257 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6258
6259         * threads.c: avoid segfault when an unstarted thread is aborted.
6260
6261 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
6262
6263         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
6264         Returns the name and version of the runtime for reporting.
6265
6266 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6267
6268         * appdomain.c: bump corlib version.
6269         * object-internals.h: new field in MonoReflectionAssembly.
6270
6271 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6272
6273         * object-internals.h: Carlos forgot to add this field.
6274
6275 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6276
6277         * icall.c: Added create_version to create instances
6278         of Version of MonoReflectionAssemblyName. This change helps
6279         the AssemblyName tests to keep running fine.
6280         
6281 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
6282   
6283         * object.c (mono_method_return_message_restore): A somehow less
6284         intrusive fix for #75138.
6285
6286 2005-06-03  Raja R Harinath  <rharinath@novell.com>
6287
6288         * object.c (mono_method_return_message_restore): Fix computation
6289         of expected number of out args.
6290
6291 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6292
6293         * reflection.c (mono_image_get_method_info): Fix the case when the
6294         charset is empty.
6295
6296 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
6297
6298         * object.c: Added missing null check in
6299           mono_method_return_message_restore.
6300
6301 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
6302
6303         * reflection.c (mono_image_get_method_info): Handle the case when
6304         dllentry is empty.
6305
6306 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
6307
6308         * object.c: When creating the vtable for a proxy, take into account
6309         all inherited interfaces, not only the ones registered in
6310         iclass->interfaces. This fixs bug #74996.
6311         Also, in mono_method_return_message_restore, verify that the array
6312         of out args has the expected lengh.
6313
6314 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6315
6316         * socket-io.c: update the timeout in Poll when the call is interrupte.
6317
6318 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6319
6320         * socket-io.c: support abort/suspend in Select_internal after last
6321         change.
6322
6323 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6324
6325         * threadpool.c: remove warning.
6326
6327 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6328
6329         * icall.c:
6330         * socket-io.[ch]: Select_internal uses poll() now when available, thus
6331         removing the 1024 limit from select(). Runtime part of the fix for
6332         bug #71203.
6333
6334 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6335
6336         * socket-io.c: when resolving the addresses for the same
6337         host returned by gethostname(), get the local IPs from the interface
6338         list. Loopback addresses are discarded if the are interfaces up with
6339         non-loopback ones. Fixes bug #63265.
6340
6341 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
6342
6343         * appdomain.c, verify.c, object-internals.h, reflection.c:
6344         bumped corlib number to 36, and added new extra_flags field
6345         to ReflectionMethodBuilder and friends.  Fixes #75060.
6346
6347 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
6348
6349         * gc.c: register a new weak link only if the object is non-null
6350         (fixes bug#75047).
6351
6352 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6353
6354         * culture-info.h : short time pattern too.
6355
6356 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
6357
6358         * culture-info.h : expand long time pattern string length.
6359
6360 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6361
6362         * culture-info-table.h : update (more French date format; #72788).
6363
6364 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
6365
6366         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
6367         the method is static. Fixes #75029.
6368
6369 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
6370
6371         * reflection.c: Update the table_idx field of method builders after
6372         saving the module, since it can change. This is a workaround for
6373         bug #74914. 
6374
6375 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
6376
6377         * culture-info-table.h : update (additional French date format).
6378
6379 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
6380
6381         * icall.c (ves_icall_type_Equals): Revert last change.
6382         
6383         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
6384
6385         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
6386
6387 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
6388
6389         * class-internals.h: Added executioncontext_class field to 
6390         MonoDefaults structure.
6391         * domain.c: Cache System.Threading.ExecutionContext class in 
6392         mono_defaults.
6393         * object.c: Capture the ExecutionContext for asynchroneous calls in
6394          mono_async_result_new.
6395         * object-internals.h: Added execution_context and original_context 
6396         fields to MonoAsyncResult. Added execution_context to MonoThread.
6397         * security-manager.c|.h: Added mono_get_context_capture_method to 
6398         return the capture method (if required by the security manager or by
6399         the framework version used).
6400         * threadpool.c: Apply capture (if present) ExecutionContext in 
6401         mono_async_invoke and revert to original context after it completes.
6402
6403 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
6404
6405         * culture-info-table.h : updated (real hacky solution for zh-CHT).
6406
6407 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
6408
6409         * culture-info-table.h : zh-CHT related workaround.
6410
6411 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6412
6413         * marshal.c (emit_marshal_custom): Add some error checking and call the
6414         methods in the ICustomMarshaler interface. Fixes #74875.
6415         
6416         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
6417         native->managed wrappers.
6418
6419 2005-05-12  Martin Baulig  <martin@ximian.com>
6420
6421         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
6422         here and use the loader lock.
6423
6424         * mono-debug.c: Properly lock when the debugger is not attached.
6425         (mono_debug_init): Release the initial lock if we're not running
6426         in the debugger.
6427
6428 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
6429
6430         * marshal.c (emit_marshal_custom): Pass through NULL values without
6431         calling the custom marshalling routines.
6432
6433         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
6434         conversion in structures. Fixes #74882.
6435
6436 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
6437
6438         * culture-info-table.h : zh-* cultures were missing.
6439
6440 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
6441
6442         * threads.c: Added a new event background_change_event which is signaled
6443         when a thread changes its background mode.
6444         Moved here several checks previously done in managed code. The checks
6445         require the thread lock, and using the thread lock in managed code
6446         can result in deadlocks.
6447         Merged Start_internal and Thread_internal into a single method. Now 
6448         Thread_internal does all work of creating and starting a thread.
6449         Added icalls for setting and getting the state of the object. Moved from
6450         managed code to avoid locking there.
6451         Added wait_for_tids_or_state_change() which is called instad of
6452         wait_for_tids when waiting for non-backround threads to end. This method
6453         will return if one of the threads ends or the background_change_event
6454         is signaled.
6455         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
6456         the background mode. This method signals the background_change_event
6457         event.
6458         * icall.c:
6459         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
6460         removed Start_internal.
6461         
6462 2005-05-11  Martin Baulig  <martin@ximian.com>
6463
6464         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
6465         to order of some fields to get proper alignment on 64-bit machines.
6466
6467 2005-05-11  Martin Baulig  <martin@ximian.com>
6468
6469         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
6470         changes as they're broken and completely fuck up the debugger.
6471
6472         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
6473
6474 2005-05-10  Martin Baulig  <martin@ximian.com>
6475
6476         * reflection.c (mono_reflection_generic_class_initialize): Don't
6477         call mono_class_setup_parent() here.
6478
6479 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6480
6481         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
6482         send/receive timeout use an integer in milliseconds. We were using a
6483         struct timeval.
6484
6485 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6486
6487         * locales.c:
6488         (internal_get_cultures): reserve the first slot of the array for the
6489         InvariantCulture, which will be filled in managed code.
6490
6491 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
6492
6493         * reflection.c (mono_image_fill_module_table): Initialize the
6494         GENERATION field as well.
6495
6496 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6497
6498         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
6499         Monitor.Enter on the object.
6500
6501 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
6502
6503         * threads.c: Enable the wait for running threads when exiting.
6504         * icall.c: Suspend all threads before exiting.
6505
6506 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
6507
6508         * assembly.c (mono_assembly_load_reference): Fix warning.
6509
6510 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6511
6512         * threadpool.c: changed the default number of threads per cpu. From now
6513         on, the default will be 20 + (5 * number of cpus) instead of 50.
6514
6515 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
6516
6517         * loader.c (mono_method_get_signature_full): Add locking here.
6518
6519 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
6520
6521         * appdomain.c: Moved methods for parsing and freeing assembly
6522         names to assembly.c.
6523         * assembly.c, domain-internals.h: Created public methods for parsing
6524         assembly names. Fixed mono_assembly_load_with_partial_name:
6525         it now finds the best match, taking into account the version,
6526         token and culture specified in the partial name. Also return
6527         the latest version if no version information is specified.
6528
6529 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
6530
6531         * threadpool.c: replace check for SocketAsyncCall class.
6532
6533 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6534
6535         * threadpool-internals.h:
6536         * Makefile.am: added threadpool-internals.h
6537
6538         * threadpool.c: call mono_unhandled_exception on exceptions not handled
6539         that happen in threadpool threads (tested on MS).
6540         (mono_thread_pool_remove_socket): new function that dispatch any pending
6541         AIO call on a socket that is closing. By now only epoll really needs it,
6542         as select/poll wake up when the socket closes.
6543
6544
6545         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
6546
6547 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
6548
6549         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
6550
6551 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
6552
6553         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
6554
6555 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
6556
6557         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
6558         has an abort request, convert it into a suspend request.
6559
6560 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
6561
6562         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
6563         warning for the usage of `UnmanagedFunctionPointerAttribute' which
6564         is not supported yet.
6565
6566 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6567
6568         * image.c: register assemblies loaded from data (bundles) in the loaded
6569         assemblies hash. Fixes bug #74772.
6570
6571 2005-04-29  Martin Baulig  <martin@ximian.com>
6572
6573         * class.c (mono_type_get_name_recurse): Update to the new naming
6574         schema from the latest .NET 2.x beta2.
6575         (mono_class_setup_vtable_general): If we're a generic instance,
6576         copy the vtable from our generic type definition and inflate all
6577         the methods in it.
6578
6579         * loader.c (find_method): Update to the new naming schema from the
6580         latest .NET 2.x beta2.
6581
6582 2005-04-29  Raja R Harinath  <harinath@gmail.com>
6583
6584         * class.c (mono_class_init): Add a mono_loader_unlock to the
6585         #74734 fix.
6586
6587 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
6588
6589         * icall.c (ves_icall_System_Environment_Exit): Remove the 
6590         suspend_all_other_threads () call for the time being, since it can hang.
6591
6592         * threads.c (mono_thread_manage): Similarly, disable the waiting for
6593         the background threads to exit, since it can also hang.
6594
6595         * class.c (mono_class_init): Applied patch from Ankit Jain 
6596         (radical@gmail.com). Avoid pending init errors when a field refers
6597         to a nested class using a typeref. Fixes #74734.
6598
6599         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
6600         this for dynamic modules.
6601
6602 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6603
6604         * threads.c: don't wait for threads that are in the process of aborting
6605         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
6606         and waiting for background threads to finish. This makes xsp and
6607         mod-mono-server exit without random length delays and/or hangs.
6608
6609 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6610
6611         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
6612
6613 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
6614
6615         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
6616         dynamic types to prevent infinite loops. Fixes #74727.
6617
6618         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
6619         ..._is_assignable_to.
6620
6621 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
6622
6623         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
6624
6625 2005-04-25  Martin Baulig  <martin@ximian.com>
6626
6627         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
6628
6629         * domain.c
6630         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
6631
6632         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
6633
6634         * reflection.c (build_compressed_metadata): Set metadata header
6635         version to 2.0.
6636
6637 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
6638
6639         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
6640         number into an integral and a decimal part. Fixes #70473.
6641
6642         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
6643
6644 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
6645
6646         * culture-info-table.h : reflected the latest locale-builder output.
6647
6648 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6649
6650         * threadpool.c: check for SuspendRequested too when deciding if
6651         mono_thread_interruption_checkpoint should be called.
6652
6653 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6654
6655         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
6656         * threads.c: remove interruption_mutex and use Interlocked instead. When
6657         suspending all the threads, wait for all the suspended events at once.
6658         If we're shutting down and get an APC that is going to be queued,
6659         call mono_thread_execute_interruption immediately, as the thread might
6660         be sleeping on a pthread condition or mutex.
6661
6662         * icall.c: call mono_runtime_set_shutting_down before suspending the
6663         threads.
6664
6665         Fixes bug #74693. And now xsp is happier when exiting.
6666
6667 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
6668
6669         * loader.c (mono_stack_walk): Fix #74690.
6670
6671 2005-04-22  Martin Baulig  <martin@ximian.com>
6672
6673         * mono-debug.h (MonoDebugMethodJitInfo): Added
6674         `MonoDebugMethodJitInfo *jit'.
6675
6676         * mono-debug.c (mono_debug_read_method): Cache the
6677         MonoDebugMethodJitInfo in `address->jit'.
6678         (mono_debug_free_method_jit_info): New public method.
6679
6680 2005-04-22  Martin Baulig  <martin@ximian.com>
6681
6682         * class.c (mono_class_is_assignable_from): Disallow
6683         type parameter -> interface.
6684
6685 2005-04-21  Dick Porter  <dick@ximian.com>
6686
6687         * threads.c (mono_thread_create): Turn an assertion into an error.
6688
6689 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
6690
6691         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
6692         
6693         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
6694         Fix some gcc 4.0 warnings.
6695
6696 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
6697
6698         * file-io.c: fix alt dir separator char on unix systems
6699         and cleanup (fixes bug #71214).
6700
6701 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
6702
6703         * marshal.c: Use CALLVIRT instead of CALL when dispatching
6704         a call to a remote domain, since the method may be an
6705         interface method in the client domain. This fixes bug #74192.
6706
6707 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6708
6709         * threadpool.c: recv/send are now performed before going back to managed
6710         code to save one transition.
6711
6712 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6713
6714         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
6715
6716         * metadata/threadpool.c: removed hack to workaround the bug above.
6717
6718         Fixes bug #74618.
6719
6720 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
6721
6722         * reflection.c reflection.h: Fix handling of parameter defaults in
6723         dynamic methods. Also fixes handling of parameter attributes.
6724         Fixes #74609.
6725
6726         * mono-debug.c (mono_debug_close_image): Fix warning.
6727
6728 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6729
6730         * socket-io.h: replaced old unused field with new 'blocking'.
6731         * threadpool.c: restore socket blocking state on windows(tm).
6732
6733 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6734
6735         * icall.c: don't return the codebase in the AssemblyName[] returned by
6736         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
6737         * object-internals.h: Removed FIXME (fields were presents) and fixed
6738         versioncompat declaration.
6739
6740 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6741
6742         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
6743         not closed, so don't cleanup when it happens.
6744
6745 2005-04-13  Chris Toshok  <toshok@ximian.com>
6746
6747         * mono-debug-debugger.h: change prototype for
6748         mono_debugger_lookup_type.
6749
6750         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
6751         this function, although it should probably be named
6752         mono_debugger_init_type.
6753
6754 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6755
6756         * threadpool.c: fix non-AIO case.
6757
6758 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
6759
6760         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
6761         the built-in profiler to measure just JIT compilation times.
6762
6763 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6764
6765         * threadpool.c: the epollfd might be closed by another thread at
6766         any time, so ignore EBADF at treat it as a "we're closing" sign.
6767
6768 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6769
6770         * threadpool.c: release the semaphores with a count equals to the number
6771         of working threads in both IO and regular pools. Fixed typo that messed
6772         up the count of IO pool threads. Don't initialize the pipe handles if
6773         we're using epoll.
6774
6775 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6776
6777         * threadpool.c: some systems don't like a NULL when deleting the socket
6778         from epoll.
6779
6780 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6781
6782         * threadpool.c: fix semaphore allocation.
6783
6784 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6785
6786         * threadpool.c: added epoll() based implementation for asynchronous IO
6787         that is used instead of the default poll() when available.
6788         It can be disabled by setting MONO_DISABLE_AIO.
6789
6790 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6791
6792         * threadpool.c: windows needs 'closesocket' and instead of returning
6793         0 when the stream is closed while in select, it returns -1. Fixes bug
6794         #74573.
6795
6796 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
6797
6798         * class.c (class_compute_field_layout): Fix the regression caused by
6799         the previous try.
6800
6801 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6802
6803         * threadpool.c: separate pool for socket async. IO.
6804         * threadpool.h: mono_max_worker_threads is not a global any more.
6805
6806 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
6807
6808         * class.c (class_compute_field_layout): Fix #74549.
6809
6810 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6811
6812         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
6813         use 2 connected sockets instead.
6814
6815 2005-04-08  Miguel de Icaza  <miguel@novell.com>
6816
6817         * mono-config.c: Add new entry point for mkbundle
6818         mono_config_parse_memory. 
6819
6820 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6821
6822         * threadpool.c: removed another unused function.
6823
6824 2005-04-08  Ankit Jain  <radical@corewars.org>
6825
6826         * reflection.c (get_default_param_value_blobs): Add 'types'
6827         parameter to get the types encoded in the constant table.
6828         (mono_param_get_objects): Use the type from the constant table,
6829         not the type of the parameter, when creating default values.
6830         Handle null default values correctly.
6831
6832 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6833
6834         * file-io.c:
6835         * file-io.h:
6836         * threadpool.c:
6837         * threadpool.h:
6838         * icall.c:
6839         * socket-io.c: removed dead code for async IO.
6840
6841 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6842
6843         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
6844
6845         * threadpool.c: intercept socket async. calls and pass them to a thread
6846         that is polling and dispatching the job items to the threadpool as
6847         socket become ready. Fixes bugs #71217, #71933.
6848
6849         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
6850         between char and short/ushort arrays.
6851
6852         * socket-io.c: remove dead code.
6853
6854 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6855
6856         * locales.c,
6857           icall.c : removed InternalToUpper_Comp() and
6858           InternalToLower_Comp().
6859
6860 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
6861
6862         * char-conversions.h : The tables were incorrectly generated. Should
6863           be generated against invariant culture.
6864
6865 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
6866
6867         * object.c (mono_runtime_invoke_array): Fix return value when 
6868         passing pre-created valuetype objects to ctors.
6869
6870         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
6871         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
6872         Fixes #74338.
6873
6874 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
6875
6876         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
6877         only used with --security and hides the wrong corlib version error.
6878
6879 2005-03-30  Joshua Tauberer  <tauberer@for.net>
6880
6881         * class.c: Changed mono_class_name_from_token so that types
6882         outside of a namespace don't have an initial period.  Improved
6883         the g_warning message used in _mono_class_get when loading
6884         fails.
6885         * assembly.c: In mono_assembly_load_reference, when an assembly
6886         can't be found, "No such file or directory" is misleading and
6887         unhelpful because a few paths were checked for the presence of
6888         the assembly.  When that happens (ENOENT), display a nicer
6889         message indicating the directories that were searched.  In all
6890         cases, the warning is made easier to read for non-hackers.
6891
6892 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
6893
6894         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
6895         project/solution.
6896         * appdomain.h|domain.c: Removed inline from functions.
6897         * appdomain.c: Reduced warnings when compiling on windows.
6898         * icall.c: Fixed output_debug declaration to gunichar2*.
6899         * mono-config.c: Reduced warnings when compiling on windows.
6900         * rand.c: Added missing "windows.h". Added missing return value.
6901         * rawbuffer.c: Added missing winsock2.h for windows.
6902         * sysmath.h: Added mono-compiler.h header to allow/ease 
6903         compilation with non-GCC compilers.
6904         * threads.c: Fixed declarations to compile with VS.NET C compiler.
6905         Removed cast warnings.
6906
6907         Adapted from the work of J Lothian (for VC6).
6908
6909 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
6910
6911         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
6912         from default_path.
6913
6914 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
6915
6916         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
6917         the 2.0 profile.
6918
6919 2005-03-27  Raja R Harinath  <harinath@gmail.com>
6920
6921         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
6922         has to be in $(exec_prefix).  $(prefix) is for arch-independent
6923         stuff, and it would probably use $(prefix)/share rather than
6924         $(prefix)/lib.
6925
6926 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6927
6928         * console-io.c: added 2 includes that might be missing.
6929
6930 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
6931
6932         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
6933         profile.
6934
6935         * reflection.c (create_custom_attr): Allocate the params array using
6936         alloca so it gets GC tracking.
6937
6938 2005-03-23  Chris Toshok  <toshok@ximian.com>
6939
6940         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
6941         out some spew.
6942
6943 2005-03-24  Raja R Harinath  <rharinath@novell.com>
6944
6945         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
6946         changes to pick up any changes in prefix, etc.
6947
6948 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6949
6950         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
6951         
6952         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
6953         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
6954
6955 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
6956
6957         * class-internals.h object-internals.h class.c reflection.c: Extend the
6958         mono_lookup_dynamic_token () function to return the class of the
6959         token as well. 
6960
6961         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
6962         well. Fixes #73848.
6963
6964 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
6965
6966         * security-manager.c: Skip inheritance checks for intra-corlib
6967         class inheritance and method overrides. This skips a lot of checks
6968         and (anyway) permissions cannot work until corlib is loaded.
6969
6970 2005-03-23  Martin Baulig  <martin@ximian.com>
6971
6972         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
6973         MONO_TYPE_GENERICINST.  
6974
6975 2005-03-23  Martin Baulig  <martin@ximian.com>
6976
6977         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
6978
6979 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
6980
6981         * class.c: added locking comments to some functions.
6982         Cache the interface offsets arrays (saves about 20 KB
6983         of runtime memory in a typical app).
6984         Reduce the time overhead in mono_class_setup_supertypes ().
6985
6986 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
6987
6988         * icall.c: speedup and fix leaks in GetMethodsByName and
6989         GetPropertiesByName.
6990
6991 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
6992
6993         * reflection.c: some locking fixes.
6994
6995 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
6996
6997         * metadata.c: added missing break in case statement.
6998
6999 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
7000
7001         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7002         typedbyref return values. Fixes #73941.
7003
7004 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7005
7006         * security-manager.c|h: Added demandunmanaged method and 
7007         suppressunmanagedcodesecurity class to MonoSecurityManager.
7008         Renamed aptc class to allowpartiallytrustedcallers.
7009
7010 2005-03-17  Martin Baulig  <martin@ximian.com>
7011
7012         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
7013
7014 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7015
7016         * file-io.c: disabled file async. IO using aio_*. It uses the
7017         threadpool now. Workaround for bug #73718.
7018
7019 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7020
7021         * assembly.h, mono-config.c: added code to deal with bundled configs
7022         for bundled assemblies.
7023
7024 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
7025
7026         * *.c, private.h: cleanup, removing old private.h header file.
7027
7028 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
7029
7030         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
7031         and throw_on_unmappable_char attributes.
7032
7033 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
7034
7035         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
7036         _ProcessName_internal.
7037
7038 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
7039
7040         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
7041         #73631.
7042
7043         * icall.c threads.c threads-types.h: Remove slothash icalls as they
7044         are no longer used.
7045
7046 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
7047
7048         * object.c (compute_class_bitmap): Add support for generics. Fixes
7049         #73527.
7050
7051 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7052
7053         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
7054
7055 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7056
7057         * filewatcher.c: commented out the code for windows watcher, as we don't
7058         use it (we use the managed implementation instead).
7059
7060 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
7061
7062         * object-internals.h (MonoThread): Remove 'unused1' field.
7063
7064         * appdomain.c: Bump corlib version.
7065
7066         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
7067
7068         * reflection.c (mono_reflection_create_runtime_class): Remove the
7069         AssemblyBuilder.Save optimization since it causes too many problems.
7070
7071 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
7072
7073         * exception.c|h: Added mono_get_exception_reflection_type_load to
7074         create a ReflectionTypeLoadException object.
7075         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
7076         to return NULL is a InheritanceDemand fails during reflection. Updated
7077         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
7078         ReflectionTypeLoadException if an InheritanceDemand fails during 
7079         reflection. Added icall mapping for GetLinkDemandSecurity.
7080         * security-manager.c|h: Added ves_icall_System_Security_
7081         SecurityManager_GetLinkDemandSecurity internal call to return the
7082         class and methods permissions set for a LinkDemand. Removed unused
7083         fields in MonoSecurityManager.
7084
7085 2005-03-10  Martin Baulig  <martin@ximian.com>
7086
7087         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
7088         it's a generic instance.
7089
7090 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
7091
7092         * reflection.c (mono_get_object_from_blob): Applied patch from
7093         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
7094
7095         * class.c (mono_class_is_assignable_from): Another try at fixing 
7096         #73469 without breaking anything.
7097
7098 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
7099
7100         * class.c: (mono_class_is_assignable_from): Revert the last changes
7101         since they don't work with generics.
7102         
7103         * class.c (mono_class_is_assignable_from): Fix build bustage.
7104
7105         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
7106         the managed IsAssignableFrom method. Fixes #73469.
7107
7108         * reflection.c (mono_reflection_call_is_assignable_from): New helper
7109         function.
7110
7111 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
7112
7113         * object.c (mono_load_remote_field_new): Fix returning uninitialized
7114         memory when the remoting callback does not sets the out arguments.
7115         Fixes #73007.
7116
7117         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
7118         by mistake.
7119
7120         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
7121
7122         * object-internals.h (MonoStackFrame): Sync with managed object layout.
7123
7124         * appdomain.c: Bump corlib version.
7125
7126 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
7127
7128         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
7129         function.
7130
7131         * threads.c (mono_thread_attach): Detect threads which are not started
7132         by the GC pthread wrappers.
7133
7134 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
7135
7136         * icall.c: Added new icall for RNG.
7137         * rand.c|h: Added new icall to open the RNG. This allows to share a 
7138         single handle on Linux to access /dev/urandom and fix #73183.
7139
7140 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
7141
7142         * object.c: setting the new vtable in a transparent proxy object must
7143         not change the GC descriptor.
7144
7145 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7146
7147         * object.c: fixed compilation without GCJ support.
7148         * reflection.c: for runtime-created types ensure klass->has_references
7149         is correct (bug #73215).
7150
7151 2005-03-02  Martin Baulig  <martin@ximian.com>
7152
7153         * class.c (mono_class_is_assignable_from): Make this work if
7154         `oklass' is a generic instance; fixes #72831.
7155
7156 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7157
7158         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
7159         with hasthis set.
7160         
7161         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
7162
7163         * marshal.c: Reorganize native->managed marshalling code to also use
7164         the emit_marshal_... functions.
7165
7166 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7167
7168         * object.c: typed allocs have issues with bitmap sizes > 30,
7169         so check for max_set >= 30.
7170
7171 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
7172
7173         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
7174         managed code. Fixes #73012.
7175
7176         * metadata.h (MonoMarshalSpec): Add elem_mult field.
7177
7178         * metadata.c reflection.c: Load/Emit elem_mult as well.
7179         
7180         * metadata.h (MonoMarshalSpec): Add comment.
7181
7182         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
7183
7184         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
7185         num_elem to -1 if not given.
7186
7187         * object-internals.h (MonoReflectionMarshal): Add has_size field.
7188
7189         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
7190         given values.
7191
7192 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
7193
7194         * null-gc.c (mono_gc_free_fixed): Was not compilable.
7195
7196 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
7197
7198         * reflection.c (encode_marshal_blob): Encode param_num field as well.
7199
7200         * object-internals.h (MonoReflectionMarshal): Add param_num field.
7201
7202 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
7203
7204         * object.c: generalized the reference bitmap creation
7205         and added hooks for the new GC.
7206         * class-internals.c: removed the gc_bitmap field from MonoClass.
7207
7208 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7209
7210         * domain.c: help the compiler to produce better code
7211         in mono_jit_info_table_find ().
7212
7213 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7214
7215         * object.c: make all allocations look typed.
7216
7217 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7218
7219         * socket-io.c: load Mono.Posix if it's not loaded already
7220         (fixes bug#73033).
7221
7222 2005-02-24  Martin Baulig  <martin@ximian.com>
7223
7224         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
7225         * reflection.c (dup_type): Likewise.
7226
7227 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
7228
7229         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
7230         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
7231
7232 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7233
7234         * domain.c, threads.c, object-internals.h: make the critical thread
7235         local vars use the fast access mode (even when we're compiled in
7236         a lib). Provide accessors to be used by the jit during codegen.
7237
7238 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7239
7240         * appdomain.c: Changed hook functios behavior to include
7241         support for the reflection only assemblies. Some icalls were changed
7242         to support the mentioned assemblies too. Signatures of static methods
7243         try_assembly_resolve and real_load now have an additional parameter:
7244         refonly.
7245
7246         * assembly.c: General changes to mono_assembly_ methods to support
7247         reflection only api. Functions mono_assembly_open, mono_assembly_load,
7248         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
7249         suffix, to support an additional gbool parameter to specify whether
7250         the assembli is reflection only or not. Created some new hook functions 
7251         to add support for reflection only assemblies. Signatures of static 
7252         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
7253         have now an additional parameter: refonly.
7254
7255         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
7256         indicating whether the assembly is reflection only or not.
7257
7258         * exception.c: Add mono_get_exception_invalid_operation.
7259
7260         * icall.c: Throw an InvalidOperationException when trying to invoke
7261         a property/method/event, or trying to set/get the value of a field.
7262         Also add an icall to retrieve the ref_only flag to the
7263         MonoReflectionAssembly.
7264
7265 2005-02-23  Chris Toshok  <toshok@ximian.com>
7266
7267         Part of fix for #72827.
7268         * mono-debug.c (mono_debug_add_method): add lexical block data to
7269         the info we write.  Kind of a hack at the moment - we copy the
7270         lexical block info from the MonoDebugMethodInfo to the
7271         MonoDebugMethodJitInfo here, before writing it.
7272         (mono_debug_read_method): read the lexical block info.
7273
7274         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
7275
7276         * debug-mono-symfile.h: add lexical block support.
7277
7278         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
7279         support.
7280
7281 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7282
7283         * loader.c (mono_lookup_pinvoke_call): Fix warning.
7284
7285         * object.c (mono_runtime_free_method): Call mono_free_method () and
7286         put the TODOs there.
7287
7288         * loader.c (mono_free_method): Free up most memory allocated for 
7289         dynamic methods.
7290
7291 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
7292
7293         * reflection.c: properly flag a Type argument to a
7294         named custom attr value (bug #72248).
7295
7296 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
7297
7298         * reflection.c: reduce code duplication in named custom
7299         attribute encoding.
7300
7301 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
7302
7303         * reflection.c: properly encode custom attrs of type object
7304         (bug #72649).
7305
7306 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
7307
7308         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
7309
7310 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
7311
7312         * socket-io.c: load System.dll if it's not loaded already
7313         (bug #72850 and #70477).
7314
7315 2005-02-21  Martin Baulig  <martin@ximian.com>
7316
7317         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
7318         generic instances.
7319
7320 2005-02-21  Martin Baulig  <martin@ximian.com>
7321
7322         * reflection.c (mono_image_build_metadata): We also need to
7323         "fixup" the MethodImpl table after we computed the final method
7324         indices.  Call fixup_methodimpl() to do that.
7325         (fixup_methodimpl): New private method.
7326
7327 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
7328
7329         * assembly.c: special case mscorlib.dll (bug#72536),
7330         patch from Carlos Alberto Cortez.
7331
7332 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
7333
7334         * threads-types.h threads.c: Fix build bustage.
7335
7336         * threads.c: Use a union for long<->double conversions.
7337
7338         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
7339         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
7340
7341         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
7342         containing the checkpoint call with NOT_TAKEN.
7343         
7344         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
7345         checkpoint before pushing the arguments, so they won't have to be
7346         spilled to stack.
7347
7348 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7349
7350         * domain.c, assembly.c, domain-internals.h: make some data
7351         const and relocation-free.
7352
7353 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
7354
7355         * object.c, appdomain.c, class-internals.h: introduce the
7356         MonoClassRuntimeInfo structure to hold the info needed to
7357         use a class at runtime. Made mono_class_vtable() lock-free
7358         for all the appdomains.
7359
7360 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
7361
7362         * metadata-internals.h, image.c: introduce a per-image mempool to
7363         be used for memory that has the same lifetime as the image.
7364
7365 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
7366
7367         * domain.c: In mono_init_internal(), instead of selecting the first
7368         runtime version supported by an executable, get a list of all
7369         supported versions and select the one for which an mscorlib exists
7370         (since even if the runtime supports a given version, it doesn't mean
7371         that the framework for that version is installed).
7372         Modified get_runtimes_from_exe to support this behavior.
7373         In supported_runtimes, added information about additional system
7374         assembly versions.
7375         
7376         * assembly.c: Added support for more than one system assembly version
7377         per runtime version. Updated the assembly list.
7378         In mono_assembly_remap_version, removed the initial version check,
7379         since we don't know to which version we need to compare until we
7380         get the version set on which the assembly is based.
7381         Moved the code for loading corlib into the new method
7382         mono_assembly_load_corlib(), so it can be used by the initialization
7383         code.
7384         
7385         * domain-internals.h: Updated data structures and added declaration
7386         for mono_assembly_load_corlib.
7387
7388 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7389
7390         * reflection.c (resolve_object): Fix the creation of the signature in 
7391         the SignatureHelper case.
7392
7393         * assembly.c (mono_assembly_remap_version): Fix binary search.
7394         
7395 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
7396  
7397         * class.c: Added inheritance check when a method is overloaded (from a
7398         virtual method or when implementing an interface) and when a class is
7399         inherited. Added functions to set a failure for a class and to 
7400         retreive the exception from a failure.
7401         * class-internals.h: Added fields to MonoClass to keep the exception
7402         information status for inheritance (or other exceptions) to be thrown
7403         later (i.e. not at load time).
7404         * object.c: Throw the inheritance SecurityException when a type is to 
7405         be created with either class or method inheritance violations.
7406         * reflection.c|h: Fix when getting declsec from a class. Removed 
7407         unrequired code for class. Improved sanity in parameter naming.
7408         * security-manager.c|h: Added functions to check for class and method
7409         inheritance.
7410
7411 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
7412
7413         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
7414         and has_finalize in dynamic types as well.
7415
7416 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
7417
7418         * culture-info-table.h : fixed currency format for en-GB (and so on).
7419
7420 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
7421
7422         * gc.c: ensure the GC handles never have 0 as a value.
7423
7424 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7425
7426         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
7427         a pointer to a struct to unmanaged code. Fixes #72625.
7428
7429 2005-02-16  Martin Baulig  <martin@ximian.com>
7430
7431         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
7432
7433 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
7434
7435         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
7436
7437 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7438
7439         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
7440
7441         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
7442         UnmanagedFunctionPointerAttribute, use it for determining calling convention
7443         etc. Fixes #71471.
7444
7445         * reflection.c (mono_custom_attrs_get_attr): New helper function.
7446
7447         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
7448
7449 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
7450
7451         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
7452         changes to make the current context a field in MonoThread.
7453
7454 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
7455
7456         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
7457         the last change.
7458         
7459         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
7460         extracted from mono_marshal_get_native_wrapper.
7461
7462         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
7463         to create wrappers around native functions.
7464
7465         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
7466         delegates for arbitrary function pointers. Fixes #71472.
7467
7468 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7469
7470         * threads.c: cleaned up the code a little.
7471
7472 2005-02-15  Martin Baulig  <martin@ximian.com>
7473
7474         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
7475         the data table.
7476
7477         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
7478         allocate larger chunks if needed.
7479
7480 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7481
7482         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
7483         in by mistake.
7484
7485 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
7486
7487         * domain.c: keep the domains in an array and ensure the domain ids
7488         are kept small, so they can be used as indexes to domain-specific data
7489         with a small memory overhead.
7490
7491 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
7492
7493         * icall.c: Handle byref types in Type icalls. Fixes #72544.
7494
7495 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
7496
7497         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
7498
7499 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
7500
7501         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
7502
7503         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
7504         values.
7505
7506         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
7507         
7508 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
7509
7510         * domain-internals.h: add the hashtable here.
7511
7512         * class-internals.h: Remove `info' from MonoMethod
7513
7514         * domain.c: Add a new hashtable, jit_trampoline_hash
7515
7516 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
7517
7518         * object.c: don't set the value of static fields
7519         (fixes bug#72494).
7520
7521 2005-02-11  Martin Baulig  <martin@ximian.com>
7522
7523         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
7524         (mono_debug_add_method): Silently ignore the method if it's too big.
7525         (mono_debug_add_type): Likewise.
7526
7527 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
7528
7529         * threads.c, appdomain.c: remove #ifdefs from the code.
7530
7531 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
7532
7533         * metadata-internals.h: Added flags to MonoAssembly to cache the most
7534         common security informations. This allows us to stay in unmanaged code
7535         when doing LinkDemand and it's special cases (except for the first 
7536         time for initialization). The flags a very much used with --security.
7537         * reflection.c|h: Added code to get declarative security attributes 
7538         for LinkDemand and InheritanceDemand. This required to refactor the
7539         existing code for Demand.
7540         * security-manager.c|h: Added new method fields for the special cases
7541         of LinkDemand.
7542
7543 2005-02-10  Martin Baulig  <martin@ximian.com>
7544
7545         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
7546         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
7547
7548 2005-02-10  Martin Baulig  <martin@ximian.com>
7549
7550         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
7551         debugging code; this is almost a complete rewrite.
7552
7553         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
7554
7555 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7556
7557         * domain.c, object.h: expose mono_string_equal () and 
7558         mono_string_hash ().
7559         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
7560         it's implemented in managed code.
7561
7562 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7563
7564         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
7565         lo leak objects between appdomains.
7566
7567 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7568
7569         * assembly.c: old compilers compilation fix from 
7570         robertj@gmx.net (Robert Jordan).
7571
7572 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
7573
7574         * class-internals.h: Little reminder for the future.
7575
7576         * debug-helpers.c: Fix up wrapper_type_names
7577
7578 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7579
7580         * image.c, metadata-internals.h: when loading an image from a file,
7581         mmap all of it and use the same codepaths as when using a
7582         in-memory image: the code is simpler and we use less memory
7583         (both writable and readonly).
7584
7585 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7586
7587         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
7588         API to alloc runtime data structures that need to be tracked by the
7589         GC and contain pointers.
7590         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
7591         make the code more readable and eventually use a different GC.
7592
7593 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
7594
7595         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
7596         for out arguments.
7597         
7598 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
7599
7600         * object.c: In release_type_locks(), don't release the cctor lock
7601         if it has already been released. This fixes a crash in the
7602         thread5 test.
7603
7604 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
7605
7606         * gc.c, marshal.c, icall.c: register a delegate for finalization
7607         only when the native function pointer has been allocated for it.
7608
7609 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7610
7611         * object.c: cleaned up some code, allocate objects that are
7612         pointer free with the atomic malloc variant. Allocate memory
7613         for static data from the mempool if it's pointer-free.
7614         Allocate the bounds array at the end of the array data, when needed.
7615         * object-internals.h, object.h: move a private function in a private
7616         header.
7617         * class.c: handle missing case in tracking references in fields.
7618
7619 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
7620
7621         * class.c, class-internals.h: keep track if a type has
7622         reference fields in either the instance or static fields.
7623
7624 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
7625
7626         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
7627         and renamed to MonoRuntimeInfo. Added fields to store the expected
7628         framework assembly version. Changed mono_get_framework_version and
7629         mono_get_runtime_version for a single mono_get_runtime_info method.
7630         
7631         * assembly.c: Added method to remap system assembly versions to the
7632         current executing runtime version. Removed old mapping code.
7633         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
7634         
7635         * icall.c, reflection.c: Track api changes.
7636
7637 2005-02-06  Miguel de Icaza  <miguel@novell.com>
7638
7639         * loader.c (method_from_memberref): Improve error reporting,
7640         produce the class name instead of the typeref/typedef index. 
7641
7642 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
7643
7644         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
7645
7646 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7647
7648         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
7649         stdcall and charset name mangling.  Reorganize the code and add
7650         some tracing stuff.
7651
7652 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7653
7654         * monodiet.c: More iters!
7655
7656         * marshal.c: Iter usage.
7657
7658         * icall.c: Iter usage.
7659
7660         * object.c: Use iters.
7661
7662         * debug-helpers.c: More iters
7663
7664 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7665
7666         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
7667         under win32.
7668
7669 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
7670
7671         * mono-debug-debugger.c: use iters
7672
7673         * class.c, class-internals.h: mono_class_setup_events is static
7674         now
7675
7676         * All callers: use iters
7677
7678 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
7679
7680         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
7681         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
7682
7683 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7684
7685         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
7686
7687         * marshal.h: Add prototypes for ldfld/stfld_remote.
7688
7689         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
7690         this is called during startup.
7691         
7692 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
7693
7694         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
7695         MonoThreadsSync struct private in monitor.c. Changed the way
7696         MonoThreadsSync is allocated so it's faster and there is no
7697         need to keep track of it with a finalizer and it uses less memory.
7698         This also finally allows us to allocate mono objects as ptrfree when
7699         there are no reference fields.
7700
7701 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
7702
7703         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
7704         disappearing link to the GC interface and use them to simplify
7705         the gchandles code.
7706
7707 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
7708
7709         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
7710         stfld_remote which call mono_load/store_field_new. This allows methods
7711         calling ldfld/stfld wrappers to be AOTed.
7712
7713         * console-io.c: Include sys/filio.h under solaris.
7714         
7715         * console-io.c: Include curses.h if needed correctly.
7716
7717 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7718         
7719         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
7720         method->klass as well.
7721
7722         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
7723
7724         * class.c (mono_class_init): Switch on lazy initialization of 
7725         methods.
7726
7727         * class.c (mono_class_get_finalizer): Handle the case when the 
7728         finalizer is inherited.
7729
7730 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7731
7732         * console-io.c: <curses.h> is needed by term.h on solaris.
7733
7734 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
7735
7736         * icall.c, class-internals.h, monodiet.c, class.c: Remove
7737         mono_class_setup_properties where possible. Remove this ftn from
7738         the header file, and make it static.
7739
7740 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
7741
7742         * loader.c: Add missing setup_... call.
7743
7744         * class.c: Add missing setup_... calls.
7745
7746         * class.c (mono_class_init): Switch on lazy initialization of 
7747         the generic vtable.
7748         
7749         * class.c (mono_class_init): Fix generics broken by the recent changes.
7750
7751         * monodiet.c (handle_type): Add missing setup_... calls.
7752
7753         * class.c: Back out garbage in previous patch.
7754         
7755         * class.c: Add missing setup_... calls.
7756
7757         * class.c (mono_class_get_method_from_name_flags): Avoid calling
7758         mono_class_setup_methods () if possible.
7759
7760         * class-internals.h (MonoClass): Add 'has_cctor' flag.
7761
7762         * class-internals.h (MonoCachedClassInfo): New structure.
7763
7764         * class.c: Initialize properties and events fields of MonoClass lazily.
7765
7766         * class.c: Add infrastructure for lazily initializing the methods and
7767         vtable fields of MonoClass. Not yet used.
7768
7769         * class.c (mono_class_get_finalizer): New helper function.
7770
7771         * class.c: Add infrastructure for loading some class related data from
7772         an AOT file.
7773
7774         * object.c: Add infrastructure for initializing the vtable from data
7775         in the AOT file.
7776
7777         * gc.c (run_finalize): Use mono_class_get_finalizer ().
7778
7779         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
7780         appropriate initialization function before accessing parts of the
7781         MonoClass structure.
7782
7783         * marshal.c: Fix warnings.
7784         
7785         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
7786
7787         * mono-debug-debugger.c (get_exception_message): Use 
7788         mono_class_get_method_from_name_flags ().
7789
7790 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
7791
7792         * reflection.c, appdomain.c: Replace a few manual searches that
7793         Zoltan missed. (Paolo approved this part of my initial patch).
7794
7795 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
7796
7797         * profiler.c: disable recording statistical events at report time.
7798
7799 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7800
7801         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
7802         to byteswap arrays of enum values, too (bug #72080).
7803
7804 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
7805
7806         * appdomain.c (set_domain_search_path): Allow this to be called if
7807         domain->setup is not yet set.
7808
7809         * loader.c (mono_method_get_index): New helper function.
7810
7811         * loader.c reflection.c: Use mono_method_get_index ().
7812
7813         * class.c (mono_class_get_method_from_name_flags): New helper method.
7814
7815         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
7816         this.
7817
7818         * class.c (mono_class_get_cctor): New helper method.
7819
7820         * string-icalls.c object.c class.c marshal.c reflection.c: Use
7821         mono_class_get_method () to look up methods.
7822
7823 2005-02-01  Miguel de Icaza  <miguel@novell.com>
7824
7825         * console-io.c: Fix the build, this should work on Windows.
7826
7827 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
7828
7829         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
7830         be set to null to keep things valid
7831
7832 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7833
7834         * icall.c: added Console 2.0 icalls.
7835         * Makefile.am: added console-io.[ch]
7836         * console-io.[ch]: internal calls for Console 2.0 API.
7837
7838 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7839
7840         * class.c: make sure we consider all the interfaces
7841         when calculating max_interface_id (bug found by
7842         Jeroen Frijters running ikvm).
7843
7844 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
7845
7846         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
7847         valuetype fields to null.
7848
7849         * object.c (set_value): Ditto. Fixes #71669.    
7850
7851 2005-01-31  Martin Baulig  <martin@ximian.com>
7852
7853         * metadata.c (mono_metadata_has_generic_params): New public
7854         function; checks whether something is a generic method.
7855
7856 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
7857
7858         * appdomain.c: fix infinite recursion when adding assemblies.
7859
7860 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
7861
7862         * object.c: Fix small typo to return all items for Environment.
7863         GetCommandLineArgs.
7864
7865 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
7866
7867         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
7868         reflection.c: more domain and assembly-unload related fixes
7869         and memory leaks plugs.
7870
7871 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
7872
7873         * 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.
7874
7875 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
7876
7877         * loader.c (mono_method_signature): Make this method lazy
7878         (mono_get_method_from_token): Don't computate the signature here.
7879
7880         Doing this saves quite a bit of memory. I got 90 kb on starting up
7881         monodoc. It should also save some disk reads on startup.
7882
7883         * *: MonoMethod->signature might be NULL now. You *MUST* use
7884         mono_method_signature.
7885
7886 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
7887
7888         * object.c (mono_runtime_get_main_args): Return an array from the
7889         current domain here. Fixes #71938.
7890
7891 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
7892
7893         * monitor.c: formatting changes to comply with the
7894         mono coding style and remove #ifdefs from the code.
7895
7896 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7897
7898         * metadata.c, private.h: remove some unneeded data
7899         and use a more compact representation for table schemas.
7900
7901 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
7902
7903         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
7904         to get a better distribution in hash tables.
7905         * *.c: use mono_aligned_addr_hash() where appropriate.
7906         * assembly.c: make var static.
7907
7908 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
7909
7910         * domain-internals.h: Put MonoJitInfo on a diet.
7911
7912         * domain.c: Fix a warning.
7913
7914 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
7915
7916         * gc.c: rework the gc handles code to reuse handles
7917         when freed.
7918
7919 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
7920
7921         * domain.c: fixed long standing bug in mono_string_equal() which
7922         was brought to light with the ldstr changes.
7923
7924 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
7925
7926         * reflection.c: Remove warning by adding missing include for marshal.h
7927
7928 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
7929
7930         * domain.c, object.c: change the ldstr_table to hold
7931         MonoString* as keys: makes the runtime isinterned lookup
7932         faster and simplifies memory management.
7933
7934 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
7935  
7936         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
7937         possible to add imperative security checks before calling the icall.
7938         * reflection.c: Return security attributes on the original MonoMethod
7939         (and not the wrapped one). This fix permissions on icalls.
7940
7941 2005-01-25  Dick Porter  <dick@ximian.com>
7942
7943         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
7944         the check for mktime() support actually test the mktime() return
7945         value.  "Fixes" bug 71682, though the output is still different to
7946         MS.
7947
7948 2005-01-25  Martin Baulig  <martin@ximian.com>
7949
7950         * class.c (mono_class_is_assignable_from): Make this work for
7951         generic instances.
7952
7953 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
7954
7955         * marshal.c (mono_string_utf8_to_builder)
7956         (mono_string_builder_to_utf16): We might not have ownership of the
7957         string. In thise case, we need to create a new buffer.
7958
7959         * object-internals.h (mono_stringbuilder_capacity): sb->str might
7960         be null, in which case, use the default capacity.
7961
7962 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
7963
7964         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
7965         GC events to the profiler.
7966
7967 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
7968
7969         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
7970         if you don't want the GC to run.
7971
7972 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
7973
7974         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
7975         start providing a GC API and keeping different implementations in
7976         their own file.
7977         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
7978
7979 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
7980
7981         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
7982         mmap rather than allocating a huge buffer.
7983         (mono_debug_close_mono_symbol_file): Free the buffer allocated
7984         above.
7985
7986 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
7987
7988         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
7989         and CheckExecutionRights.
7990         * reflection.c|h: Keep the index of the declarative security to be 
7991         used, instead of the pointer, when AOT compiler is used. Also add 
7992         class initialization when requesting demands.
7993         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
7994         CheckExecutionRights. Both properties are now FALSE by default, and
7995         unmodifiable, unless the --security option is used.
7996
7997 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
7998
7999         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
8000         reflection.c: properly refcount images and assemblies, many leaks fixed.
8001
8002 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8003
8004         * threadpool.c: increase the timeout for threads in the thread pool to
8005         10s.  Fixes bug #67159.
8006
8007 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
8008
8009         * class-internals.h: Sun's compiler insists on explicit
8010         signed on bit fields to handle then correctly.
8011
8012 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
8013
8014         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
8015         Make the size of the array fit only the number of invalid path
8016         chars that we have.
8017
8018         * class.c (_mono_class_get): Improve the error reporting when a
8019         class referenced is not found, to assist debugging. 
8020
8021 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
8022
8023         * threads.c: fix off-by-one error.
8024         * domain.c: free data allocated in the domain.
8025
8026 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8027
8028         * reflection.c (mono_method_body_get_object): Fill out exception info
8029         as well.
8030
8031         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
8032         structure.
8033         
8034 2005-01-19  Martin Baulig  <martin@ximian.com>
8035
8036         * loader.c (mono_get_method_constrained): Make this work again.
8037
8038 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
8039
8040         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
8041         guint16 to match the managed side.
8042
8043         * reflection.c (mono_reflection_body_get_object): Fill out local
8044         variables array.
8045
8046         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
8047         as well.
8048
8049         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
8050         'local_var_sig_token'.
8051
8052 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
8053
8054         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
8055         System.Drawing.
8056
8057         * reflection.c (mono_method_body_get_object): Handle abstract and
8058         runtime methods.
8059
8060 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
8061
8062         * marshal.c, loader.c, class-internals.h, reflection.c:
8063         store the emthod data for a wrapper in an array instead of a list.
8064
8065 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
8066
8067         * marshal.c: change the code to allocate memory more
8068         conservatively for method wrappers.
8069
8070 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
8071
8072         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
8073         fields from MonoClass to the marshal info structure where they belong.
8074
8075 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
8076
8077         * class.c, object.c, class-internals.h, marshal.c: rearrange
8078         some fields and tweak some types to lower memory usage.
8079
8080 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
8081
8082         * threads.c (signal_thread_state_change): Handle the case when the
8083         target thread is the current thread.
8084
8085         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
8086
8087         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
8088         emit_ptr_to_object_conv. 
8089
8090         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
8091         marshalling. Fixes #71352.
8092
8093 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
8094
8095         * metadata.h, blob.h: move table enum to blob.h so it can be included
8096         in any header.
8097         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
8098         cut the size of MonoImage/MonoDynamicImage.
8099
8100 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
8101
8102         * profiler.c (mono_profiler_install_simple): Fix default arguments.
8103
8104 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8105
8106         * reflection.c, reflection.h, icall.c: add a function to check
8107         if an attribute type is defined for a metadata object.
8108
8109 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
8110
8111         * object-internals.h: Added some needed fields from StringBuilder class.
8112         * marshal.c: Set the maxCapacity when creating a StringBuilder.
8113
8114 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
8115
8116         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
8117         threads before shutting down the runtime.
8118
8119         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
8120
8121 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
8122
8123         * object-internal.h, threads.c: implement stacksize and 
8124         parameterized thread start functionality (requires
8125         matching corlib). Marked broken code for later removal.
8126
8127 2005-01-12  Martin Baulig  <martin@ximian.com>
8128
8129         * class-internals.h (MonoGenericClass): Moved the `initialized'
8130         flag to MonoDynamicGenericClass, removed `init_pending'.
8131         (MonoGenericInst): Added `is_reference' flag.
8132
8133 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
8134
8135         * reflection.c (mono_image_create_pefile): Only set the pe_offset
8136         inside the MSDOS header. Fixes #71201.
8137
8138         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
8139         gc thread.
8140         (mono_domain_finalize): Ditto.
8141
8142 2005-01-12  Martin Baulig  <martin@ximian.com>
8143
8144         * class.c (mono_get_shared_generic_class): Use the cache for
8145         non-dynamic generic classes.
8146
8147         * class-internals.h (mono_class_create_generic_2): Removed
8148         function prototype, this function is now static inside class.c.
8149
8150         * class.c (mono_class_create_generic_2): Made this static, only
8151         call it from mono_class_init() and mono_class_setup_parent().
8152         (collect_implemented_interfaces_aux): Call mono_class_init() on
8153         the interfaces we collect.
8154         (mono_class_setup_vtable): Call mono_class_init (class->parent).
8155
8156 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8157
8158         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
8159         it a real thread handle.
8160
8161         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
8162         MonoJitExceptionInfo, since each catch clause needs its own variable.
8163         
8164 2005-01-11  Dick Porter  <dick@ximian.com>
8165
8166         * image.c (mono_pe_file_open): New variant on mono_image_open()
8167         that does not set up the CLI metadata; used for FileVersionInfo so
8168         it can get the data for windows binaries too.
8169         
8170         * process.c (process_read_string_block): Don't read off the end of
8171         the StringTable block.
8172
8173         These both fix bug 70766.
8174
8175 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
8176
8177         * gc.c: set some fields to NULL at GC cleanup time.
8178         * threads.c: if we quit the main thread, call exit ().
8179
8180 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
8181
8182         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
8183
8184 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
8185
8186         * threads.h, threads.c, object.c: added accessor and settor for
8187         main_thread. Handle it specially when exiting from it: wait
8188         for other foreground threads to exit.
8189
8190 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
8191
8192         * process.c, verify.c: remove some bloat.
8193
8194 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
8195
8196         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
8197         the calling convention to cdecl under win32.
8198
8199 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
8200
8201         * object.c (mono_object_get_size): New function to get the size of
8202         an object instance.
8203
8204         * profiler.c (simple_allocation): Use above.
8205
8206 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
8207
8208         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
8209         ves_icall_System_AppDomain_getRootDomain (as it's not required to
8210         get an appdomain by it's id and we can't assume the root's id is 0).
8211         * domain-internals.h: Change the function prototype to match.
8212         * icall.c: Change the icall table for AppDomain.
8213
8214 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
8215
8216         * locales.c (string_invariant_compare_char): Only compute
8217         GUnicodeTypes in the case where we need them.  Test for ordinality
8218         first and return if so.
8219
8220         From the commit:
8221
8222                 /*
8223                  * FIXME: here we must use the information from c1type and c2type
8224                  * to find out the proper collation, even on the InvariantCulture, the
8225                  * sorting is not done by computing the unicode values, but their
8226                  * actual sort order.
8227                  */
8228
8229 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
8230
8231         * loader.c: for P/Invoke methods, allow the "Internal" shared
8232         library name to refer to the calling process symbol namespace.
8233
8234 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
8235
8236         * Makefile.am: Add the security manager to the build.
8237         * security-manager.c|h: New. Initialization of the security manager.
8238
8239 2005-01-07  Dick Porter  <dick@ximian.com>
8240
8241         * threads.c: 
8242         * monitor.c: Update thread state during Monitor and WaitHandle
8243         waits.  Fixes bug 71031.
8244
8245 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
8246
8247         * reflection.c (property_encode_signature): Correctly handle when the
8248         property has no methods.
8249
8250 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
8251
8252         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
8253         
8254         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
8255         fields from mb, not rmb. Fixes #71017.
8256
8257         * marshal.c (emit_ptr_to_str_conv): Add support for 
8258         ByValTStr -> string conversion. Fixes #71015.
8259
8260         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
8261
8262         * mempool.c (mono_mempool_contains_addr): New helper function.
8263
8264 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8265
8266         * metadata.c (mono_metadata_compute_size): Fix size calculation of
8267         HasSematics encoded fields.
8268         
8269         * metadata.c (mono_type_to_unmanaged): Improve error message for 
8270         invalid string marshalling.
8271
8272         * metadata.c: Fix warnings.
8273         
8274 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
8275
8276         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
8277         profiler support.
8278
8279 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
8280
8281         * domain.c object.c domain-internals.h: Revert part of r38077 since the
8282         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
8283         tests.
8284
8285 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
8286
8287         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
8288         so methods containing these can be AOTed.
8289
8290 2005-01-03  Martin Baulig  <martin@ximian.com>
8291
8292         * loader.c (find_method): Removed the hack for generic instances.
8293         (method_from_memberref): If our parent is a generic instance, pass
8294         its generic type definition to find_method() and then inflate the
8295         method.
8296         (mono_get_method_constrained): Pass the generic type definition to
8297         find_method() and inflate the method later.
8298
8299         * class-internals.h (MonoStats): Added `generic_class_count'.
8300
8301         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
8302         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
8303
8304         * reflection.c (mono_custom_attrs_from_params): Don't ignore
8305         generic type definitions.
8306
8307 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
8308
8309         * loader.c icall.c: Fix warnings.
8310
8311 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
8312
8313         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
8314         blittable types. Fixes #70864.
8315
8316 2004-12-29  Martin Baulig  <martin@ximian.com>
8317
8318         * icall.c
8319         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
8320
8321         * reflection.c (mono_method_get_object): Create a
8322         "System.Reflection.MonoGenericMethod" for inflated methods; don't
8323         call mono_get_inflated_method().
8324
8325         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
8326
8327 2004-12-27  Martin Baulig  <martin@ximian.com>
8328
8329         * class-internals.h (MonoMethod): Added `is_inflated' flag.
8330         (MonoMethodInflated): Added `inflated' field.
8331
8332         * class.c (mono_class_inflate_generic_method): Don't really
8333         inflate the method here; just set the `is_inflated' flag in the
8334         MonoMethod.
8335         (mono_class_get_inflated_method): Actually inflate the method here
8336         if it's not already inflated; we use the MonoMethodInflated's new
8337         `inflated' field as a cache.
8338
8339 2004-12-26  Martin Baulig  <martin@ximian.com>
8340
8341         * class.c
8342         (inflate_generic_class): Moved some code out of inflate_generic_type().
8343         (mono_class_inflate_generic_method): If we're already inflated,
8344         inflate the context and use the declaring method; ie. make sure
8345         the declaring method of an inflated method is always the generic
8346         method definition.
8347         (mono_class_create_from_typedef): Create
8348         `class->generic_container->context->gclass'.
8349
8350 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
8351
8352         * metadata-internals.h, marshal.c, reflection.c: More
8353         MonoGHashTable->GHashTable.
8354
8355         * domain-internals.h, class.c: Change MonoGHashTable's into
8356         GHashTables for some cases where no gc stuff is used
8357
8358         All users: update apis
8359
8360 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
8361
8362         * metadata.c (builtin_types): Make this `const'. Makes this get
8363         put into the shareable section.
8364         (mono_metadata_init): Casts to make gcc happy.
8365
8366 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
8367
8368         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
8369
8370 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
8371
8372         * icall.c: Added an internal call to retrieve the position and length
8373         of assembly-level declarative security attributes (RequestMinimum, 
8374         RequestOptional and RequestRefuse). This is used by the Assembly class
8375         to re-create the corresponding permission sets.
8376
8377 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
8378
8379         * marshal.c: fix the stelemref wrapper to be type correct
8380         (and faster).
8381
8382 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
8383
8384         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
8385         to do key & 0x7fffffff. Hashtable already does this. It just
8386         results in longer code.
8387
8388 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
8389
8390         * appdomain.c: Bump corlib version.
8391         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
8392         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
8393         * reflection.c|h: Add functions to get declarative security infos
8394         (blob position and length) for assemblies, classes and methods.
8395
8396 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
8397
8398         * reflection.c: sort the constant table (bug #70693).
8399
8400 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
8401
8402         * object-internals.h, threads.c, domain.c: add accessors for
8403         the MonoThread and MonoDomain tls keys.
8404
8405 2004-12-18  Martin Baulig  <martin@ximian.com>
8406
8407         * class.c (inflate_generic_type): If we're inflating a generic
8408         instance, set `ngclass->context->container = context->container';
8409         ie. the container we inflated into.
8410
8411         * metadata.c (mono_metadata_parse_generic_param): Reflect above
8412         inflate_generic_type() changes.
8413
8414 2004-12-17  Martin Baulig  <martin@ximian.com>
8415
8416         * class-internals.h
8417         (MonoGenericClass): Replaced `MonoType *generic_type' with
8418         `MonoClass *generic_class'.  Removed `dynamic_info'; if
8419         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
8420         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
8421
8422 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
8423
8424         * exception.c (mono_exception_from_token): New helper function.
8425
8426 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
8427
8428         * assembly.c (mono_assembly_load_with_partial_name): Call 
8429         mono_assembly_loaded before invoking the preload hooks. Fixes
8430         #70564.
8431
8432         * object-internals.h (MonoThread): Change culture_info and 
8433         ui_culture_info into an array.
8434
8435         * threads.c: Cache culture info objects from more than one appdomain.
8436
8437         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
8438         current UI culture.
8439
8440 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
8441
8442         * threads.h threads.c appdomain.c: Clear the culture_info field of
8443         all threads during unloading if they point to an object in the dying
8444         appdomain.
8445
8446 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
8447
8448         * culture-info.h (TextInfoEntry): New struct
8449         * object-internals.h: sync with managed
8450         * locales.c: fill the `text_info_data' field
8451         * culture-info-tables.h: update
8452
8453 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
8454
8455         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
8456         collector.
8457
8458 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
8459
8460         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
8461         (ves_icall_ModuleBuilder_getMethodToken): Ditto
8462
8463 2004-12-12  Martin Baulig  <martin@ximian.com>
8464
8465         * mono-debug-debugger.c (write_type): If we're an enum and the
8466         builtin types have already been initialized, call mono_class_init().
8467
8468 2004-12-11  Martin Baulig  <martin@ximian.com>
8469
8470         * metadata.c (mono_metadata_load_generic_params): Added
8471         `MonoGenericContainer *parent_container' argument; automatically
8472         compute `container->is_method'; pass the correct owner to
8473         get_constraints().      
8474
8475         * reflection.c (compare_genericparam): Sort the GenericParam table
8476         according to increasing owners. 
8477
8478 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
8479
8480         * profiler.c: allow disabling the default profiler.
8481
8482 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
8483
8484         * decimal.c, icall.c: allow disabling System.Decimal support.
8485
8486 2004-12-09  Marek Safar <marek.safar@seznam.cz>
8487
8488         * reflection.c: Add support for null attribute arguments.
8489
8490 2004-12-09  Martin Baulig  <martin@ximian.com>
8491
8492         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
8493         names to get rid of compiler warnings.
8494
8495 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8496
8497         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
8498         mono_marshal_load_type_info (). Fixes #69625.
8499         (mono_marshal_get_ptr_to_struct): Likewise.
8500
8501 2004-12-08  Martin Baulig  <martin@ximian.com>
8502
8503         * mono-debug.h: Bumped version number to 47.
8504
8505         * mono-debug-debugger.c
8506         (mono_debugger_event_handler, mono_debugger_event): Take two
8507         guint64 arguments insteed of a gpointer and a guint32.  
8508
8509 2004-12-08  Martin Baulig  <martin@ximian.com>
8510
8511         * debug-mono-symfile.h
8512         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
8513         `address' to `native_offset'.
8514
8515 2004-12-08  Martin Baulig  <martin@ximian.com>
8516
8517         * class.c (mono_class_create_from_typespec): Only inflate if we
8518         either have `context->gclass' or `context->gmethod'.
8519
8520 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
8521
8522         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
8523
8524         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
8525
8526         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
8527
8528         * reflection.c (mono_assembly_get_object): Remove the workaround put
8529         in for the release.
8530         
8531         * appdomain.c: Use the corlib_internal field from MonoAssembly.
8532
8533         * appdomain.c: Bump corlib version.
8534
8535         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
8536         be visible in other appdomains.
8537
8538 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
8539
8540         * threads.c: Interlocked inc and dec for longs were messed up,
8541         use a KISS based impl for this. Fixes 70234
8542
8543 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
8544
8545         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
8546
8547 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
8548
8549         * icall.c: fix to follow policy not to allow struct
8550         arguments in icalls.
8551
8552 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8553
8554         * process.c: make the patch that handles spaces in file paths work
8555         on mono/windows too.
8556
8557 2004-12-06  Martin Baulig  <martin@ximian.com>
8558
8559         * class.c (mono_class_create_generic): Call
8560         mono_class_setup_supertypes() if we're dynamic.
8561         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
8562
8563 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
8564
8565         * object-internals.h: Add new fields to MonoThread.
8566
8567         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
8568
8569         * icall.c threads-types.h threads.c: Add new icalls.
8570
8571         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
8572
8573         * object-internals.h (MonoReflectionAssembly): Sync object layout with
8574         managed side.
8575
8576         * appdomain.c: Bump corlib version.
8577
8578         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
8579         internal assemblies. Fixes #69181.
8580
8581 2004-12-05  Martin Baulig  <martin@ximian.com>
8582
8583         * class.c (mono_class_inflate_generic_signature): Make this a
8584         no-op if `context' is NULL or we don't have any type parameters;
8585         also copy `sentinelpos'.        
8586
8587 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
8588
8589         * image.c: Add unbox_wrapper_cache.
8590
8591         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
8592
8593         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
8594         function generator.
8595         
8596         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
8597         Fixes #70173.
8598
8599         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
8600         
8601 2004-12-04  Martin Baulig  <martin@ximian.com>
8602
8603         * loader.c (mono_method_get_signature_full): New public function;
8604         like mono_method_get_signature(), but with an additional
8605         `MonoGenericContext *' argument.
8606
8607         * class.c (mono_class_inflate_generic_signature): Formerly known
8608         as inflate_generic_signature(); make this public.
8609
8610 2004-12-04  Martin Baulig  <martin@ximian.com>
8611
8612         * metadata.c
8613         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
8614         instead of a `MonoGenericContainer *'.  
8615         (mono_metadata_parse_array_full): Likewise.
8616         (mono_metadata_parse_signature_full): Likewise.
8617         (mono_metadata_parse_method_signature_full): Likewise.
8618         (mono_metadata_parse_generic_inst): Likewise.
8619         (mono_metadata_parse_generic_param): Likewise.
8620         (mono_metadata_parse_mh_full): Likewise.
8621         (mono_type_create_from_typespec_full): Likewise.
8622
8623 2004-12-03  Martin Baulig  <martin@ximian.com>
8624
8625         * class-internals.h (MonoGenericContainer): Replaced the
8626         `MonoGenericContext * pointer with a `MonoGenericContext'
8627         structure and made it the first element.
8628
8629 2004-12-03  Martin Baulig  <martin@ximian.com>
8630
8631         * class.c
8632         (inflate_generic_type): Set the `context->container' when creating
8633         a new MonoGenericContext.
8634         (mono_class_inflate_generic_method): Likewise.
8635         (mono_class_create_from_typespec): Just use `context->container'
8636         to get the container.
8637
8638         * loader.c (method_from_methodspec): Set `context->parent' from
8639         `context->container' - and if that's a method container, use its
8640         parent.  Also set the `context->container' when creating a new
8641         MonoGenericContext.
8642         (mono_get_method_from_token): Use just `context->container' to get
8643         the container.
8644
8645         * metadata.c (do_mono_metadata_parse_generic_class): Also set
8646         `gclass->context->container'.
8647
8648         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
8649         the `context->container' when creating a new MonoGenericContext.
8650
8651 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
8652
8653         * reflection.c (compare_genericparam): Sort params with identical
8654         owner by their number. Fixes gen-111 on sparc.
8655
8656 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8657
8658         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
8659         around the domain changes.
8660
8661         * appdomain.c (mono_domain_unload): Handle the case when the thread
8662         calling Unload is itself being aborted during unloading. Fixes #70022.
8663
8664         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
8665
8666         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
8667         checkpoint_func as an icall so it gets a wrapper.
8668         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
8669         in the cross-appdomain wrappers too.
8670
8671         * threads.c (mono_thread_has_appdomain_ref): Make this public.
8672
8673         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
8674
8675         * reflection.c: Fix some memory leaks.
8676         
8677 2004-12-02  Martin Baulig  <martin@ximian.com>
8678
8679         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
8680
8681         * metadata.c (generic_class_cache): New static hashtable.
8682         (mono_metadata_lookup_generic_class): New public method.
8683
8684 2004-12-02  Martin Baulig  <martin@ximian.com>
8685
8686         * class.c (mono_class_create_from_typedef): Call
8687         mono_class_setup_parent() and mono_class_create_mono_type() before
8688         parsing the interfaces.
8689
8690 2004-12-02  Martin Baulig  <martin@ximian.com>
8691
8692         * metadata.c (generic_inst_cache): New static hashtable.
8693         (mono_metadata_lookup_generic_inst): New public function.
8694         (mono_metadata_inflate_generic_inst): New public function.
8695         (mono_metadata_parse_generic_inst): New public function.
8696         (do_mono_metadata_parse_generic_class): Use the new
8697         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
8698         since this'll also use the cache.
8699
8700         * reflection.c (mono_reflection_bind_generic_method_parameters):
8701         Use mono_metadata_lookup_generic_inst() to use the new cache.
8702
8703         * class.c (inflate_mono_type): Use
8704         mono_metadata_inflate_generic_inst() to inflate a generic
8705         instance; this'll also use the new cache.
8706
8707         * loader.c (method_from_methodspec): Use
8708         mono_metadata_parse_generic_inst() and
8709         mono_metadata_inflate_generic_inst() rather than parsing it
8710         manually, so we can use the new cache.
8711
8712 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
8713
8714         * threads.c (wait_for_tids): Do not incorrectly free threads when 
8715         the wait times out.
8716
8717 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
8718
8719         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
8720         iter->args based on whether parameters are passed in registers (i.e.
8721         MONO_ARCH_REGPARMS is defined)
8722
8723 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
8724
8725         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
8726         the exception message. Fixes #70070.
8727         (method_from_methodspec): Fix warnings.
8728
8729 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8730
8731         * process.c: (complete_path) return the path quoted
8732
8733 2004-12-01  Martin Baulig  <martin@ximian.com>
8734
8735         * class-internals.h (MonoGenericInst): New structure.
8736         (MonoGenericClass): Replaced `type_argc', `type_argv' and
8737         `is_open' with `MonoGenericInst *inst'.
8738         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
8739         `is_open' with `MonoGenericInst *inst'.
8740
8741 2004-11-30  Martin Baulig  <martin@ximian.com>
8742
8743         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
8744
8745         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
8746         to `generic_class_cache'.
8747
8748         * metadata.c
8749         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
8750         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
8751         (mono_generic_inst_is_valuetype): Renamed to
8752         mono_generic_class_is_valuetype().
8753
8754         * class-internals.h
8755         (MonoGenericInst): Renamed to MonoGenericClass.
8756         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
8757         (MonoClass): Renamed `generic_inst' to `generic_class'.
8758         (MonoGenericContext): Renamed `ginst' to `gclass'.
8759
8760         * object-internals.h
8761         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
8762
8763         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
8764         mono_reflection_generic_class_initialize().
8765
8766         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
8767         now known as "System.Reflection.MonoGenericClass".
8768         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
8769
8770 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
8771
8772         * class-internals.h: Added a flag field to MonoClass to cache the
8773         declarative security attributes actions associated with the class.
8774         * domain-internals.h: Added booleans to MonoJitInfo to cache the
8775         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
8776         applicable to the JITted method.
8777         * reflection.c|h: Added functions to extract (as flags) which security
8778         actions are available (declaratively) for a method, class or assembly.
8779         * metadata.c|h: Added functions to search the declarative security
8780         table in the metadata.
8781         
8782 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
8783
8784         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
8785         EXPORTEDTYPES are already in the class name cache, so there is no
8786         need to add extra code here to look at them. Just removes a bit of
8787         cruft.
8788
8789         (ves_icall_System_Environment_get_TickCount): No need for #if
8790         WINDOWS. We already have the code in io-layer.
8791
8792 2004-11-28  Martin Baulig  <martin@ximian.com>
8793
8794         * loader.c
8795         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
8796         Fixes gen-112.cs.
8797
8798 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
8799
8800         * assembly.c (do_mono_assembly_open): Instead of having a
8801         conditional WITH_BUNDLE, incorporate support for bundles here, by
8802         having a global `bundles' variable holding a pointer to the actual
8803         bundles. 
8804
8805         (mono_register_bundled_assemblies): New API call used by the
8806         bundle code. 
8807
8808         See mkbundle.1 for details.
8809         
8810 2004-11-27  Martin Baulig  <martin@ximian.com>
8811
8812         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
8813         the vtable for generic methods.
8814
8815 2004-11-26  Martin Baulig  <martin@ximian.com>
8816
8817         * metadata.c
8818         (mono_metadata_generic_method_hash): New public function.
8819         (mono_metadata_generic_method_equal): Likewise.
8820
8821         * class-internals.h
8822         (MonoGenericContainer): Added `GHashTable *method_hash'.
8823
8824         * reflection.c (ReflectionMethodBuilder): Added
8825         `MonoGenericContainer *generic_container'.
8826         (reflection_methodbuilder_to_mono_method): Don't create a new
8827         MonoGenericContainer each time we're called.
8828         (mono_reflection_bind_generic_method_parameters): Use
8829         `container->method_hash' to cache the results so we don't create a
8830         different method if we're called several times with the same
8831         arguments.
8832
8833         * loader.c (method_from_methodspec): Use the new
8834         `container->method_hash' here, too.
8835
8836 2004-11-26  Martin Baulig  <martin@ximian.com>
8837
8838         * class.c (inflate_generic_signature): Correctly compute
8839         `res->has_type_parameters'.
8840         (mono_class_vtable): Use the `has_type_parameters' flag to
8841         determine whether we're a generic method.
8842
8843         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
8844
8845 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
8846
8847         * object.c (mono_runtime_run_main): Fix a small memory leak.
8848
8849 2004-11-25  Martin Baulig  <martin@ximian.com>
8850
8851         * class.c (set_generic_param_owner): Fixed the loop.
8852
8853 2004-11-25  Martin Baulig  <martin@ximian.com>
8854
8855         * object.c (mono_class_vtable): Don't create any JIT wrappers for
8856         generic methods.
8857
8858 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
8859
8860         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
8861         names. Fixes #69787.
8862
8863 2004-11-24  Martin Baulig  <martin@ximian.com>
8864
8865         * class.c (mono_class_create_generic_2): If we don't have a
8866         `ginst->parent', inflate `gklass->parent' to get our parent.
8867
8868 2004-11-24  Martin Baulig  <martin@ximian.com>
8869
8870         * reflection.c (compare_genericparam): Correctly sort the
8871         GenericParam table; fixes #69779.
8872
8873 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
8874
8875         * reflection.c: When writing a PE file, don't create a huge
8876         buffer in memory. Just write the arrays we have to the file.
8877         This reduces memory usage.
8878
8879         * metadata-internals.h: MonoDynamicStream pefile is no longer used
8880         globally.
8881
8882 2004-11-17  Martin Baulig  <martin@ximian.com>
8883
8884         * class.c (mono_class_init): Don't setup `class->parent' for
8885         dynamic instances; moved this to mono_class_generic_2().
8886         (mono_class_create_generic): Also set `klass->inited' for dynamic
8887         generic instances.
8888         (mono_class_create_generic_2): Don't do anything for dynamic
8889         generic instances.  Set `klass->parent' here and also call
8890         mono_class_setup_parent() here. 
8891
8892         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
8893         `MonoType *parent' argument; set `ginst->parent' before calling
8894         mono_class_create_generic_2(), so we set the correct parent.
8895
8896 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
8897
8898         * reflection.c: allow getting attributes from ModuleBuilder
8899         (used by ikvm).
8900
8901 2004-11-17  Martin Baulig  <martin@ximian.com>
8902
8903         * class.c (mono_class_create_from_typedef): If a type parameter is
8904         inherited from an outer class, set its owner to that class.
8905
8906 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
8907
8908         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
8909           for (int*) written size. This fixes bug #69592.
8910
8911 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
8912
8913         * icall.c: Added IsAuthenticodePresnet internal call.
8914         * image.c|h: New function that check a MonoImage for an Authenticode
8915         signature in the certificate PE data directory.
8916         * security.c|h: New internal call to ask the runtime if an 
8917         Authenticode signature seems referenced in the PE header.
8918
8919 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
8920
8921         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
8922
8923         * reflection.c (mono_image_create_pefile): Free the assembly streams
8924         after writing out the assembly file.
8925
8926         * object.c (mono_runtime_run_main): Fix small memory leak.
8927
8928         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
8929         property access modifiers. Fixes #69389.
8930
8931 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
8932
8933         * domain.c, object.c, object-internals.h, domain-internals.h,
8934         object.h, marshal.c: keep dynamic code info per domain.
8935
8936 2004-11-15  Martin Baulig  <martin@ximian.com>
8937
8938         * class.c (mono_type_get_name_recurse): Put type arguments in
8939         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
8940         see bug #68387.
8941
8942 2004-11-15  Martin Baulig  <martin@ximian.com>
8943
8944         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
8945         (mono_class_setup_vtable): When computing `the_cname' for a
8946         generic instance, don't include the namespace since we'd otherwise
8947         add it twice.
8948
8949 2004-11-15  Martin Baulig  <martin@ximian.com>
8950
8951         * class.c (mono_class_create_generic): Changed return type to void.
8952         (mono_class_create_generic_2): New public function; setup
8953         `class->method', `class->field' and `class->interfaces' here
8954         instead of in mono_class_init().
8955
8956         * class.h (mono_class_create_generic): Moved to class-internals.h.
8957
8958 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
8959
8960         * reflection.c (mono_image_create_pefile): take a file HANDLE.
8961         rather than writing to memory, write to this file. Right now,
8962         we are just writting into a buffer, and copying that. However
8963         we can avoid the buffer later.
8964
8965         (mono_dynamic_stream_reset): new function
8966
8967         * icall.c, object-internals.h: update for the above.
8968
8969 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
8970
8971         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
8972         have been using gc'd memory. First it is slower, unlikely
8973         the comment in the source code said, secondly, it increases
8974         our footprint to do it in the gc.
8975
8976         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
8977         the method so that it does not have to copy to managed code.
8978
8979 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
8980
8981         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
8982
8983 2004-11-12  Martin Baulig  <martin@localhost>
8984
8985         * reflection.c (mono_image_create_token): Allow generic method
8986         definitions here, since they may appear in an `.override'; see
8987         gen-98/gen-99 for an example.
8988
8989 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
8990
8991         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
8992         #69365.
8993
8994         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
8995         descriptive.
8996
8997 2004-11-11  Martin Baulig  <martin@ximian.com>
8998
8999         * class.c (mono_class_setup_vtable): In an explicit interface
9000         implementation, the method name now includes the arity.
9001
9002 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
9003
9004         * object.c (mono_array_full_copy): Fix warning.
9005
9006 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
9007
9008         * appdomain.c: Removed look_for_method_by_name(). Use the new method
9009         mono_class_get_method_from_name() instead.
9010         
9011         * class-internals.h: Added two new types of wrappers. 
9012         Added MonoRemotingTarget enum. Added new trampoline function type, which
9013         takes an additional MonoRemotingTarget value as parameter, so it is
9014         possible to request a trampoline for a specific target.
9015         
9016         * class.c: Added new mono_class_get_method_from_name() method.
9017         
9018         * class.h: In MonoRemoteClass, we can have now to vtables, one for
9019         general remoting sinks and one specific for cross domain calls.
9020         
9021         * debug-helpers.c: Added new wrapper names.
9022         
9023         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
9024         of a remote class.
9025         
9026         * image.c: Porperly delete value objects form the remoting invoke hashtable.
9027         
9028         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
9029         with several other methods (mono_marshal_get_xappdomain_dispatch,
9030         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
9031         and others) can generate a fast remoting wrapper for cross domain calls.
9032         More information can be found in docs/remoting.
9033         Other changes: Removed mono_find_method_by_name, and used
9034         mono_class_get_method_from_name instead.
9035         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
9036         is stored in the remoting invoke hashtable.
9037         
9038         * marshal.h: published the new method for getting the xdomain wrapper,
9039         and also added a method for getting the adequate wrapper for a given
9040         method and target.
9041         
9042         * object-internals.h, object.c: Added a couple of methods for capying and
9043         cloning arrays.
9044         Modified mono_install_remoting_trampoline, which takes the new remoting
9045         trampoline that has a remoting target as parameter.
9046         mono_class_proxy_vtable now also takes a remoting target as parameter, and
9047         will return the most suitable vtable for the target.
9048         Added mono_remote_class_vtable, which returns the vtable of a remote class
9049         (which can be the normal remoting vtable or the xdomain vtable).
9050         
9051         * threads.c: the xdomain invoke and dispatch wrappers must also be
9052         protected against interruptions.
9053
9054 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9055
9056         * icall.c: use memmove in BlockCopyInternal when the source and
9057         destination arrays are the same.
9058
9059 2004-11-09  Martin Baulig  <martin@ximian.com>
9060
9061         * class-internals.h (MonoGenericContainer): Removed `method' and
9062         `signature', replaced them with `is_method' and `is_signature'
9063         flags.  Added `context'.
9064
9065         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
9066         instead of a `MonoGenericContainer *'.
9067
9068         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
9069         for dynamic type parameters.
9070         (mono_metadata_load_generic_params): Setup `container->context'.
9071
9072         * reflection.c (mono_reflection_setup_generic_class): Setup
9073         `tb->generic_container->context'.
9074         (do_mono_reflection_bind_generic_parameters): Use
9075         mono_class_inflate_generic_type() to correctly inflate types,
9076         rather than using our own hack just for MONO_TYPE_VAR.
9077
9078 2004-11-09  Martin Baulig  <martin@ximian.com>
9079
9080         * class.c (mono_class_inflate_generic_method): Small fix; don't
9081         crash here.
9082
9083         * icall.c
9084         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
9085         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
9086         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
9087         (ves_icall_Type_BindGenericParameters): Likewise.
9088         (ves_icall_Type_get_IsGenericInstance): Likewise.
9089         (ves_icall_Type_GetGenericParameterPosition): Likewise.
9090         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
9091         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
9092         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
9093
9094 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
9095
9096         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
9097         assembly versions and public key tokens. Fixes #69113.
9098
9099 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
9100
9101         * metadata.c: fix bug introduced with the type cache changes
9102         on 2004-11-06.
9103
9104 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
9105
9106         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
9107         the MonoClass pointer instead of the token in exception clauses.
9108         * reflection.c: updates for the above and make the code not depend
9109         on the structure of MonoExceptionClause.
9110
9111 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
9112
9113         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9114         Add support for dynamic assemblies. Fixes #69114.
9115
9116         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
9117
9118 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
9119
9120         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
9121         since most only those methods use it. the code member of
9122         MonoMethodPInvoke was dead, so that can be removed too. Also,
9123         remove inline_count (again, not used), and move slot so that it
9124         can share bits with some other flags. This saves 8 bytes in the
9125         structure and gives us about 50 kb back for mcs helloworld.cs
9126
9127         * *.[ch]: Do naming changes for the above.
9128
9129         * loader.c (mono_method_get_header): Lazily init the header
9130         on first access.
9131         (mono_get_method_from_token): don't init the header here
9132         (mono_free_method): the header may never be allocated
9133
9134         Overall, this saves 150 kb of unmanaged allocations
9135         for mcs helloworld.cs. That accounts for 10% of the unmanaged
9136         memory at runtime.
9137         
9138         * loader.c, loader.h (mono_method_get_header): new accessor.
9139
9140         * *.[ch]: use the above method. Prepares us to lazily load
9141         the header.
9142
9143         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
9144         three warnings, which are actual bugs (see 69206).
9145
9146         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
9147         unused. Saves a cool 4 bytes / method.
9148
9149 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
9150
9151         * metadata.c (builtin_types): Add types for System.Object here.
9152         (mono_metadata_parse_type_full): Cache MonoType*'s that are
9153         for a class or valuetype from klass->this_arg or klass->byval_arg.
9154
9155         On mcs for a hello world, this gets us down from 21836 MonoType's
9156         to 14560.
9157
9158         (mono_metadata_free_type): Account for the above change.
9159
9160 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
9161
9162         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
9163         exception instead of asserting if name is null.
9164         (ves_icall_System_AppDomain_GetData): Ditto.
9165
9166 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
9167
9168         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
9169         EnumBuilder.
9170
9171         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
9172         Return NULL when the domain does not have entry_assembly set.
9173
9174         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
9175         Add a 'resource_modules' argument.
9176         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
9177
9178         * reflection.c (mono_reflection_create_runtime_class): Move setting
9179         of wastypebuilder here, so mono_get_type_object () returns a MonoType
9180         for enums too.
9181
9182         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
9183         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
9184         Throw an ArgumentNullException if 'ptr' is null.
9185
9186         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
9187         assemblies here. Fixes #69020.
9188
9189 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
9190
9191         * reflection.c (build_compressed_metadata): Fix the previous patch for
9192         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
9193         the stack.
9194
9195 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
9196
9197         * assembly.c (mono_assembly_names_equal): Allow a match if one of
9198         the cultures is false. Fixes #69090.
9199
9200         * reflection.c (build_compressed_metadata): Fix invalid memory read 
9201         detected by valgrind.
9202         
9203         * reflection.c (mono_reflection_get_type): Avoid triggering a 
9204         TypeResolve multiple times for the same type. Fixes #65577.
9205
9206 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
9207
9208         * marshal.c: Avoid using ldftn to call managed functions. It is
9209         much slower than just a call.
9210
9211         * reflection.c (mono_module_get_object): free the basename we
9212         allocate here from glib.
9213         
9214         * reflection.c (ensure_runtime_vtable): make sure to free
9215         overrides.  Also, we were allocating an array of MonoMethod not an
9216         array of MonoMethod*.
9217
9218         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
9219
9220         * image.c (mono_image_close): free image->guid here.
9221
9222 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
9223
9224         * reflection.c: Fix some spec conformance issues with the PE file
9225         structures so mcs compiled apps run on the Net 2.0 beta.
9226
9227 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
9228
9229         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
9230         Implement this. Fixes #67264.
9231
9232         * debug-helpers.h debug-helpers.c marshal.c: Move 
9233         mono_find_method_by_name to debug-helpers.c.
9234
9235 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
9236
9237         * object.c (mono_release_type_locks): type_initialization_hash is
9238         a GHashTable.
9239
9240         * reflection.c object.c object-internals.h: Fix warnings.
9241
9242         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
9243         without accessors. Fixes #61561.
9244
9245         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
9246         application base from the root domain if not set. Fixes #65641.
9247         (mono_runtime_init): Fix warning.
9248
9249 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9250
9251         * appdomain.c: call mono_thread_pool_init.
9252         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
9253         of worker threads based on the number of CPUs and the environment
9254         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
9255         for non-windows (windows) systems.
9256
9257 2004-10-27  Chris Toshok  <toshok@ximian.com>
9258
9259         * mono-debug-debugger.c (write_class): don't call mono_class_init
9260         here, as even with the check for (!klass->init_pending), we get
9261         into a situation where we're hitting cycles in class
9262         initialization.  Fixes #68816.
9263
9264 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
9265
9266         * image.c: Avoid overwriting values in the loaded_images_hash when an
9267         assembly is loaded multiple times. Fixes #61152.
9268
9269         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
9270         so multiple satellite assemblies for the same name can be loaded.
9271         Fixes #68259.
9272
9273         * mono_domain_assembly_preload: Actually return the loaded assembly, 
9274         not NULL.
9275
9276         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
9277         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
9278
9279         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
9280         pending finalizers are not invoked after the appdomain has been 
9281         unloaded. Fixes #67862.
9282
9283 2004-10-22  Martin Baulig  <martin@ximian.com>
9284
9285         * mono-debug-debugger.c
9286         (mono_debugger_runtime_invoke): Don't box valuetypes.
9287
9288 2004-10-22  Chris Toshok  <toshok@ximian.com>
9289
9290         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
9291         don't hide private methods.
9292
9293 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
9294
9295         * icall.c: Allows the runtime to "share" (when known) the public key
9296         token of an assembly. This avoid the need to recalculate the token 
9297         (from the public key) in managed code.
9298
9299 2004-10-21  Chris Toshok  <toshok@ximian.com>
9300
9301         * debug-helpers.c (append_class_name): argh, revert last patch.
9302         
9303 2004-10-21  Chris Toshok  <toshok@ximian.com>
9304
9305         * debug-helpers.c (append_class_name): use '+' as the delimiter,
9306         not '/', so that it matches what the debugger uses to look up
9307         methods.
9308
9309 2004-10-21  Martin Baulig  <martin@ximian.com>
9310
9311         * mono-debug-debugger.c (mono_debugger_throw_exception): New
9312         public method; this is called each time an exception is thrown and
9313         allows the debugger to use exception catch points.
9314
9315 2004-10-21  Martin Baulig  <martin@ximian.com>
9316
9317         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
9318         the stack pointer and the exception object in some struct and pass
9319         that to the debugger.
9320
9321 2004-10-21  Chris Toshok  <toshok@ximian.com>
9322
9323         * mono-debug-debugger.c (do_write_class): add instance/static
9324         event support.  We don't expose "raise" or "other" yet.
9325         (event_is_static): new method.
9326
9327 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
9328
9329         * mono-debug-debugger.c
9330         (mono_debugger_handle_exception): Remove
9331         bogus return value for fussy compilers.
9332
9333 2004-10-20  Martin Baulig  <martin@ximian.com>
9334
9335         * mono-debug-debugger.c
9336         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
9337         (mono_debugger_handled_exception): Likewise.
9338
9339 2004-10-20  Martin Baulig  <martin@ximian.com>
9340
9341         * mono-debug-debugger.h (MonoDebuggerEvent): Added
9342         MONO_DEBUGGER_EVENT_EXCEPTION.
9343
9344         * mono-debug-debugger.c (mono_debugger_handle_exception): New
9345         public function to send the debugger a notification for an
9346         exception and inform it about a catch/finally clause.
9347
9348 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
9349
9350         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
9351         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
9352         fix 2.95 build. 
9353
9354         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
9355
9356 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
9357
9358         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
9359         marshalled as [In,Out]. Fixes #58325.
9360
9361 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
9362
9363         * reflection.c (mono_method_body_get_object): Implement some fields.
9364
9365 2004-10-12  Martin Baulig  <martin@ximian.com>
9366
9367         * reflection.c (mono_reflection_bind_generic_parameters): Small
9368         fix, correctly retrieve our parent from a generic instance.
9369
9370 2004-10-12  Martin Baulig  <martin@ximian.com>
9371
9372         * metadata.c (mono_metadata_generic_param_equal): We always have
9373         an owner.
9374
9375         * class.c
9376         (mono_class_from_generic_parameter): We need to have an owner.
9377         (my_mono_class_from_generic_parameter): Likewise.
9378
9379         * reflection.c (mono_reflection_setup_generic_class): Renamed to
9380         mono_reflection_create_generic_class() and added a new
9381         mono_reflection_setup_generic_class().  
9382         (mono_reflection_initialize_generic_param): If we're a nested
9383         generic type and inherited from the containing class, set our
9384         owner to the outer class.
9385
9386 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
9387
9388         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
9389
9390         * reflection.c (mono_method_body_get_object): New function to create
9391         a MethodBody object.
9392
9393         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
9394
9395 2004-10-11  Martin Baulig  <martin@ximian.com>
9396
9397         * metadata.c (_mono_metadata_type_equal): Renamed to
9398         do_mono_metadata_type_equal() and made static.
9399
9400 2004-10-11  Martin Baulig  <martin@ximian.com>
9401
9402         * appdomain.c: Bump corlib version number to 28.
9403
9404 2004-10-10  Martin Baulig  <martin@ximian.com>
9405
9406         * class-internals.h
9407         (MonoGenericInst): Added `MonoGenericContainer *container'.
9408         (MonoGenericMethod): Likewise.
9409         (MonoGenericContext): Likewise.
9410         (MonoGenericParam): Added `MonoGenericContainer *owner'.
9411
9412         * metadata.c
9413         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
9414         (do_mono_metadata_parse_generic_inst): Likewise.
9415         (mono_metadata_parse_type_full): New public method.  This is the actual
9416         mono_metadata_parse_type() implementation - with an additional
9417         `MonoGenericContainer *' argument.
9418         (mono_metadata_parse_array_full): Likewise.
9419         (mono_metadata_parse_signature_full): Likewise.
9420         (mono_metadata_parse_method_signature_full): Likewise.
9421         (mono_metadata_parse_mh_full): Likewise.
9422         (mono_type_create_from_typespec): Likewise.
9423         (mono_metadata_interfaces_from_typedef_full): New public method;
9424         this is similar to the other _full() methods, but we take a
9425         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
9426         (mono_metadata_parse_generic_param): Take an additional
9427         `MonoGenericContainer *' argument and lookup the MonoGenericParam
9428         from that container.
9429         (mono_metadata_generic_param_equal): New static method to compare
9430         two type parameters.
9431         (_mono_metadata_type_equal): New static method; takes an
9432         additional `gboolean signature_only' argument - if true, we don't
9433         compare the owners of generic parameters.
9434         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
9435         with a TRUE argument - do a signature-only comparision.
9436
9437         * loader.c: Use the new _full() methods and pass the
9438         MonoGenericContainer to them.
9439
9440         * object-internals.h (MonoReflectionTypeBuilder): Added
9441         `MonoGenericContainer *generic_container' field.
9442         (MonoReflectionMethodBuilder): Likewise.
9443
9444 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
9445
9446         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
9447         case initial images of dynamic assemblies.
9448
9449         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
9450
9451         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
9452
9453         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
9454         length of event->other array.
9455         (typebuilder_setup_events): Ditto.
9456
9457         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
9458         'assembly_by_name' and add an 'assemblies' list.
9459
9460         * assembly.h assembly.c: Add a new search hook for determining whenever
9461         an assembly is already loaded. Use this instead of searching in the
9462         loaded_assemblies list.
9463
9464         * domain.c appdomain.c: Implement the new search hook so loaded 
9465         assemblies are now scoped by appdomain. Fixes #67727.
9466
9467 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
9468
9469         * threads.c (mono_thread_attach): Initialize synch_lock field so
9470         mono_thread_detach works again.
9471
9472         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
9473         'lib' too. Fixes #63130.
9474
9475 2004-10-06  Jackson Harper  <jackson@ximian.com>
9476
9477         * culture-info-tables.h: regenerated.
9478
9479 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
9480
9481         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
9482         implemented by other interfaces in the result. Fixes #65764.
9483         
9484         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9485         Handle unloadable modules without crashing.
9486
9487         * image.c (load_modules): Revert the previous patch since modules must
9488         have a fixed index inside the array.
9489         
9490         * image.c (load_modules): Don't include native modules in the modules
9491         array.
9492
9493 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
9494
9495         * reflection.h: Add param_defaults field.
9496
9497         * reflection.c: Add support for parameter defaults in dynamic methods.
9498         Fixes #64595.
9499
9500         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
9501         an empty string when a type has no namespace. Fixes #64230.
9502
9503 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
9504
9505         * tabledefs.h: Added "internal" security actions to support non-CAS
9506         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
9507         Note: they do not seems to be used anymore in 2.0 (new metadata format)
9508
9509 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
9510
9511         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
9512         constructor of abstract class. Fixes #61689.
9513
9514 2004-10-04  Martin Baulig  <martin@ximian.com>
9515
9516         * class-internals.h (MonoGenericContainer): New type.
9517         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
9518         `MonoGenericContainer *generic_container'.
9519         (MonoClass): Replaced `gen_params' and `num_gen_params' with
9520         `MonoGenericContainer *generic_container'.
9521
9522         * metadata.c (mono_metadata_load_generic_params): Return a
9523         `MonoGenericContainer *' instead of a `MonoGenericParam *';
9524         removed the `num' argument.
9525
9526 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
9527
9528         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
9529         for dynamic images.
9530
9531         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
9532         machine fields.
9533
9534         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
9535
9536         * reflection.c: Save pe_kind and machine values into the generated
9537         image file.
9538
9539         * appdomain.c: Bump corlib version number.
9540
9541         * object-internals.h: Reorganize layout of LocalBuilder.
9542
9543         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
9544         New helper function.
9545
9546         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
9547         created MonoType for dynamic types. Fixes #66180.
9548
9549 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
9550
9551         * threadpool.c: the ares hashtable needs a critical section around it.
9552         this prevents some nasty segfaults
9553
9554 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
9555
9556         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
9557         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
9558         bug 67324).
9559         
9560 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9561
9562         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
9563         
9564 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
9565
9566         * image.c: Always canonicalize image file names, to avoid loading
9567         the same assembly twice when referenced using a relative path.
9568
9569 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
9570
9571         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
9572
9573         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
9574
9575         * marshal.c: Fix warnings.
9576
9577 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
9578
9579         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
9580         attempting to marshal the delegate_trampoline as the method_addr.
9581         This patch has a static hashtable of marshalled delegates so that 
9582         we can map delegate_trampoline addresses back to delegates.  This
9583         allows a delegate passed to managed code to be passed back into native
9584         code.  Fixes #67039
9585
9586 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9587
9588         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
9589
9590         * reflection.c (method_encode_code): Align method headers properly.
9591         Fixes #66025.
9592
9593 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9594
9595         * marshal.c: In the runtime invoke wrapper, reset the abort
9596         exception if it is cached. This avoids the automatic rethrowal of 
9597         the exception after the catch of the wrapper. Also check for pending
9598         interruptions before calling the managed method. This is done using
9599         the new method emit_thread_force_interrupt_checkpoint, since the
9600         normal checkpoint method is ignored when running the invoke wrapper.
9601         * object.c: If the abort exception is rethrown, set the abort_exc
9602         field of the thread, so it will be rethrown aftere every catch.
9603         * threadpool.c: Only run an interruption checkpoint if what has been
9604         requested is a stop of the thread (aborts will be ignored).
9605         * threads.c: By default, a thread will now never be interrumped while
9606         running the runtime invoke wrapper (this ensures that runtime_invoke
9607         will always return to the caller if an exception pointer is provided).
9608         There is a new special method mono_thread_force_interruption_checkpoint()
9609         to force an interruption checkpoint even if running a protected
9610         wrapper, which is used by the same runtime invoke wrapper to do a check
9611         at a safe point.
9612
9613 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
9614
9615         * object.c, object-internals.h: Implemented mono_release_type_locks,
9616         which releases the cctor locks held by a thread.
9617         * threads.c, threads.h: In thread_cleanup, release cctor locks held
9618         by a thread. Added mono_thread_exit() method to be used to safely stop
9619         a thread.
9620
9621 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9622
9623         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
9624         Move null check before dereference.  Avoid indexing beyond the end
9625         of the 'modules' array.
9626
9627 2004-09-28  Raja R Harinath  <rharinath@novell.com>
9628
9629         * metadata-internals.h (MonoImage): Add module_count field.
9630         * image.c (load_modules): Set image->module_count.
9631         (mono_image_load_file_for_image): Use image->module_count.
9632         * reflection.c (mono_image_load_module): Append to image->modules array 
9633         of dynamic assembly.
9634         (mono_module_get_object): Fix loop to actually increment index.
9635         Use image->module_count.
9636         * assembly.c (mono_assembly_load_references): Use image->module_count.
9637         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
9638         Likewise.
9639
9640 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
9641
9642         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
9643         Avoid assert on generic types.
9644
9645 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
9646
9647         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
9648
9649         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
9650
9651         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
9652         function to convert a MarshalSpec structure to its managed counterpart.
9653
9654         * reflection.c: Fix warnings.
9655         
9656         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
9657         field.
9658
9659         * icall.c (mono_create_icall_signature): Fix build.
9660
9661 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
9662
9663         * icall.c: Add MakePointType icall.
9664
9665         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
9666         warnings.
9667
9668 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9669
9670         * threadpool.c: reuse allocated slots in the queue.
9671
9672 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
9673
9674         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
9675
9676         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
9677
9678         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
9679         previous change.
9680
9681         * tabledefs.h: Add constants for pinvoke attributes BestFit and
9682         ThrowOnUnmappableChar.
9683
9684         * icall.c (ves_icall_Type_GetPacking): New icall.
9685
9686 2004-09-24  Martin Baulig  <martin@ximian.com>
9687
9688         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
9689
9690 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9691
9692         * appdomain.c:
9693         (mono_domain_set): allow setting a domain that is being unloaded.
9694         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
9695         being unloaded.
9696
9697 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9698
9699         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
9700         the GetCustomAttributes icall.
9701
9702 2004-09-23  Martin Baulig  <martin@ximian.com>
9703
9704         * object-internals.h (MonoReflectionGenericParam): Replaced
9705         'has_ctor_constraint', `has_reference_type' and `has_value_type'
9706         with `guint32 attrs'.
9707
9708 2004-09-23  Martin Baulig  <martin@ximian.com>
9709
9710         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
9711
9712 2004-09-23  Martin Baulig  <martin@ximian.com>
9713
9714         * object-internals.h (GenericParameterAttributes): New enum.
9715
9716 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
9717
9718         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
9719         
9720         * class.c (init_events): Fill out event->other field.
9721
9722         * class.c: Fix warnings.
9723
9724         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
9725
9726 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
9727
9728         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
9729         walk which doesn't supply the IL offset.
9730
9731 2004-09-22  Martin Baulig  <martin@ximian.com>
9732
9733         * reflection.c (mono_reflection_setup_internal_class): If we're
9734         System.ValueType, System.Object or System.Enum, set
9735         `klass->instance_size' and create the vtable.
9736         (mono_reflection_create_internal_class): If we're an enum type,
9737         get the base class from our current corlib.
9738
9739 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
9740
9741         * reflection.h (MonoResolveTokenError): New type.
9742
9743         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
9744         icall.
9745
9746         * icall.c: Add an 'error' argument to the ResolveToken icalls.
9747
9748 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
9749
9750         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
9751         Support also calling constructors, but only for already allocated objects.
9752
9753 2004-09-17  Geoff Norton <gnorton@customerdna.com>
9754
9755         * reflection.c (type_get_qualified_name): If the klass is null
9756         return the typename to avoid a NullRefEx.
9757         (encode_cattr_value): Get the qualified name of the boxed type,
9758         not the underlying enumtype.  Fixes #62984.
9759
9760 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
9761
9762         * marshal.c: Fix problems with previous checkin.
9763
9764 2004-09-21    <vargaz@freemail.hu>
9765
9766         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
9767         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
9768
9769         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
9770
9771 2004-09-21  Geoff Norton <gnorton@customerdna.com>
9772
9773         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
9774         should only return a type for pointers, arrays, and passbyref types.
9775         Fixes bug #63841.
9776
9777 2004-09-21  Martin Baulig  <martin@ximian.com>
9778
9779         * domain.c (mono_debugger_check_runtime_version): New public
9780         function.
9781
9782         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
9783
9784 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
9785
9786         * reflection.c: Added missing sort to the declarative security 
9787         attributes table. MS implementation stops seeing the attributes if the
9788         token number regress in the table (as shown by ildasm and permview).
9789
9790 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
9791
9792         * object-internals.h (MonoReflectionModule): Add 'token' field.
9793         
9794         * reflection.c (mono_reflection_get_token): Add support for Module
9795         and Assembly.
9796         (mono_module_get_object): Set 'token' field.
9797         (mono_module_file_get_object): Set 'token' field.
9798
9799         * icall.c: Add new Assembly and Module icalls.
9800
9801         * appdomain.c: Bump corlib version.
9802
9803 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
9804
9805         * loader.h loader.c class.h class.c: Add helper functions for obtaining
9806         tokens of metadata objects.
9807
9808         * reflection.h reflection.c (mono_reflection_get_token): New function
9809         to obtain the token of a metadata object.
9810
9811         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
9812
9813 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
9814
9815         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
9816         
9817         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
9818
9819 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
9820
9821         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
9822         * object-internals.h: Added 3 MonoArray* members to MonoReflection
9823         AssemblyBuilder to access the permissions set in the class lib.
9824         * reflection.c: Added security attributes encoding step in 
9825         mono_image_build_metadata.
9826         * tabledefs.h: Added new security actions defined in 2.0:
9827         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
9828
9829 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9830
9831         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
9832         macro parameter.
9833
9834 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
9835  
9836         * locales.c: nullify the ICU_collator member of CompareInfo when it is
9837           finalized. There where random SIGSEVs at program termination, when
9838           an object being finalized was trying to do a string comparison and
9839           the current culture was already finalized.
9840  
9841 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9842
9843         * threads.c: call thread_cleanup before finishing the thread if we get
9844         there.
9845
9846 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
9847
9848         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
9849         assemblies from the parent. Fixes #65665.
9850
9851 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
9852
9853         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
9854         modifiers.
9855
9856 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
9857
9858         * reflection.h: add prototype for mono_get_dbnull_object
9859         * reflection.c: add prototypes for get_default_param_value_blobs 
9860         and mono_get_object_from_blob for fussier compilers
9861
9862 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
9863  
9864         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
9865         false deadlock checks in class initialization.
9866  
9867 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
9868
9869         * image.c (mono_image_addref): Fix comment.
9870
9871         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
9872         possible.
9873
9874 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
9875
9876         * reflection.c (mono_param_get_objects): Modified to return
9877         ParameterInfo.DefaultValue object.
9878
9879         (get_default_param_value_blobs):
9880         (mono_get_object_from_blob):
9881         (mono_get_dbnull_object): New helper routines. 
9882
9883         * object.c (mono_get_constant_value_from_blob): New helper routine
9884         carved out from get_default_field_value ()
9885
9886         * object-internals.h (mono_get_constant_value_from_blob): Added
9887         function declaration.
9888
9889 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
9890
9891         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
9892         referenced assemblies. Fixes #62135.
9893
9894         * exception.h exception.c (mono_get_exception_file_not_found2): New
9895         helper function.
9896
9897 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
9898
9899         * class.h class.c: Add mono_type_get_underlying_type ().
9900
9901 2004-09-09  Geoff Norton <gnorton@customerndna.com>
9902
9903         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
9904         Fix GetTypes() to support dynamically created assemblies.
9905
9906 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
9907
9908         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
9909         
9910         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
9911         previous patch.
9912
9913         * reflection.h reflection.c loader.c: Allow dynamic construction of
9914         pinvoke methods. Fixes #65571.
9915         
9916         * reflection.c (mono_reflection_get_type): Revert previous change since
9917         it causes regressions.
9918
9919 2004-09-08  Martin Baulig  <martin@ximian.com>
9920
9921         * class.c (class_compute_field_layout): Don't call
9922         mono_class_layout_fields() for open generic instances.
9923
9924 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
9925         * threads.c appdomain.c: fix typo in GC macro
9926
9927 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9928
9929         * threads.c: don't call mono_thread_detach() in start_wrapper(),
9930         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
9931
9932 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
9933
9934         * image.c (mono_image_close): Applied patch from 
9935         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
9936         assembly is loaded multiple times from data.
9937         
9938         * image.c (mono_image_open): Fix warning.
9939
9940 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9941
9942         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
9943         once. Fixes #58334.
9944         
9945         * reflection.c (mono_reflection_create_runtime_class): Initialize
9946         klass->nested_classes. Fixes #61224.
9947
9948 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
9949
9950         * threads.c: sched_yield() on exit, to allow threads to quit.
9951
9952 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9953
9954         * object.c (mono_unhandled_exception): Remove leftover debug code.
9955
9956 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
9957
9958         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
9959
9960 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
9961
9962         * marshal.c (emit_marshal_array): Really null terminate string arrays.
9963         
9964         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
9965
9966 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9967
9968         * marshal.c (emit_marshal_array): Null terminate string arrays.
9969         
9970         * marshal.c (raise_auto_layout_exception): Fix warning.
9971
9972         * reflection.c (mono_param_get_objects): Initialize the default value
9973         with DBNull.Value, not null. Fixes #62123.
9974
9975 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
9976
9977         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
9978         throw an exception with a cute explanation.
9979
9980 2004-09-06  Dick Porter  <dick@ximian.com>
9981
9982         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
9983         Close the new process's thread handle, as we don't use it.  The
9984         handle stays around forever otherwise.
9985
9986 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
9987
9988         * object.c (arith_overflow): Fix warning.
9989
9990         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
9991         calling conventions in method refs. Fixes #65352.
9992
9993         * reflection.c: Fix warnings.
9994
9995 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
9996
9997         * icall.c: Add a new icall for Array.Clear
9998
9999 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
10000
10001         * object.c: When allocating an array, we have to throw
10002         an overflow exception if any of the lengths are < 0.
10003
10004 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
10005
10006         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
10007         properly. Also move implementation of string array marshalling to 
10008         managed code. Fixes #42316.
10009
10010 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10011
10012         * assembly.c: provide more information when loading an assembly fails.
10013
10014 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10015
10016         * filewatcher.c: don't expect the development fam package to be
10017         installed.
10018
10019 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
10020
10021         * marshal.c: Make a copy of the signature cookie since it will be
10022         freed by the caller.
10023         
10024         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
10025
10026         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
10027
10028         * metadata.c (mono_metadata_free_marshal_spec): New function to free
10029         marshal specs.
10030
10031         * marshal.c: More refactoring.
10032         
10033         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
10034         smaller functions.
10035
10036 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
10037
10038         * object.c: In mono_message_invoke, fill the output parameter array after
10039           calling the managed method (it was done before the call). This fixes
10040           bug #59299.
10041
10042 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10043
10044         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
10045         as well.
10046
10047 2004-09-02  Martin Baulig  <martin@ximian.com>
10048
10049         * class.c (mono_class_instance_size): Don't allow generic type
10050         definitions or open generic instances.
10051         (mono_class_array_element_size): If we're a value type, call
10052         mono_class_instance_size() on the original class.
10053
10054         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
10055         handle generic instances.
10056
10057         * mono-debug-debugger.c (write_type): Handle generic instances
10058         like classes.
10059
10060 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
10061
10062         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
10063         the allocation request fails. Fixes #65089.
10064
10065         * object.c (mono_runtime_free_method): Do not call mono_free_method.
10066         
10067         * object.c (mono_runtime_free_method): New function to free a dynamic
10068         method.
10069
10070         * marshal.c (mono_delegate_free_ftnptr): New function to free the
10071         delegate trampoline.
10072
10073         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
10074         with hasthis as dynamic,
10075
10076         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
10077
10078         * domain.c (mono_jit_info_table_remove): New function to remove an
10079         entry from the jit info table.
10080
10081         * class-internals.h (MonoMethod): Add 'dynamic' field.
10082
10083         * loader.c: Fix warnings.
10084
10085 2004-09-01  Martin Baulig  <martin@ximian.com>
10086
10087         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
10088         instead of mono_debugger_lock() because the latter one is a no-op
10089         unless running in the debugger.
10090
10091 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10092
10093         * class.c (class_compute_field_layout): Classes with auto-layout or
10094         reference fields are not blittable.
10095         
10096 2004-09-01  Dick Porter  <dick@ximian.com>
10097
10098         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
10099         mono_image_get_filename() to get the assembly location.
10100
10101         * icall.c:
10102         * metadata.h: Fix compile warnings
10103
10104 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
10105
10106         * class.c (class_compute_field_layout): System.Object is blittable.
10107
10108         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
10109         as in/out. Fixes #59909.
10110
10111 2004-09-01  Martin Baulig  <martin@ximian.com>
10112
10113         * metadata.h (MONO_TYPE_ISREFERENCE): Call
10114         mono_metadata_generic_inst_is_valuetype() if we're a generic
10115         instance to check whether our underlying type is a reference type.
10116
10117 2004-09-01  Martin Baulig  <martin@ximian.com>
10118
10119         * metadata.c (mono_type_size): If we're a generic instance, call
10120         mono_class_value_size() for value types.
10121
10122 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
10123
10124         * marshal.c: Implement more custom marshalling functionality. Fixes
10125         #64915.
10126
10127 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10128
10129         * mono-debug.c, debug-mono-symfile.c: add some locking love.
10130
10131 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
10132
10133         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
10134
10135         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
10136
10137         * icall.c: Fix some warnings.
10138
10139         * threads.c (abort_appdomain_thread): Fix unref errors.
10140         (mono_thread_current): Fix THREAD_DEBUG define.
10141
10142 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
10143
10144         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
10145
10146         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
10147
10148 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
10149
10150         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
10151         string arrays.
10152
10153 2004-08-28  Martin Baulig  <martin@ximian.com>
10154
10155         * metadata.c
10156         (mono_metadata_generic_inst_is_valuetype): New public function.
10157
10158         * metadata.h (MONO_TYPE_ISSTRUCT): Call
10159         mono_metadata_generic_inst_is_valuetype() if we're a generic
10160         instance to check whether our underlying type is a valuetype.
10161
10162 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
10163
10164         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
10165         #63768.
10166
10167 2004-08-25  Martin Baulig  <martin@ximian.com>
10168
10169         * loader.c (mono_get_method_from_token): Abstract methods can also
10170         be generic and thus have type parameters.
10171
10172         * metadata-internals.h
10173         (MonoDynamicImage): Added `GPtrArray *gen_params'.
10174
10175         * reflection.c (mono_image_get_generic_param_info): Don't create a
10176         metadata row, just add an entry to the `gen_params' array.
10177         (build_compressed_metadata): Sort the `gen_params' array and then
10178         actually create the metadata.
10179
10180 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10181
10182         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
10183
10184 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
10185
10186         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
10187
10188 2004-08-24  Martin Baulig  <martin@ximian.com>
10189
10190         * class.cs (mono_class_is_subclass_of): Like an interface, a
10191         generic instance also derives from System.Object.
10192
10193 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
10194
10195         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
10196         custom modifiers to be in any order. Fixes #61990.
10197
10198 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
10199
10200         * object.c: Register mono_object_new_fast icall.
10201         
10202         * object.c (mono_class_get_allocation_ftn): Return to calling
10203         mono_object_new_fast, since it seems faster to compute the object 
10204         size in unmanaged code than passing it as a parameter.
10205
10206         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
10207
10208         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
10209         this function with Boehm as the oom handler, so we don't have to check
10210         the result of GC_malloc.
10211
10212         * object.c: Remove checks for oom.
10213
10214         * object.h object.c (mono_class_get_allocation_ftn): New function to
10215         return the icall which can be used to allocate an instance of a given
10216         class. 
10217
10218         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
10219
10220         * class-internals.h: Add 'enabled' field.
10221
10222 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
10223
10224         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
10225
10226 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
10227         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
10228         value 0x0010.
10229
10230 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
10231
10232         * appdomain.c: use the Tls function for appdomain too,
10233         at Zoltan's request. Actually return in mono_context_get
10234
10235         * appdomain.c, profiler.c, threads.c: use __thread
10236
10237 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
10238
10239         * appdomain.c threads.c: Call GC_CreateThread on windows.
10240
10241         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
10242         multiple libraries since this don't work on windows.
10243
10244 2004-08-18  Martin Baulig  <martin@ximian.com>
10245
10246         * class-internals.h
10247         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
10248         MonoMethodHeader.
10249
10250         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
10251         MonoMethodNormal since we also need it for abstract and interface
10252         methods.
10253
10254         * reflection.c
10255         (build_compressed_metadata): Sort the GenericParam table.
10256         (mono_image_create_token): Added `gboolean create_methodspec'
10257         argument; this is false when generating a MethodImpl token.
10258         (reflection_methodbuilder_to_mono_method): Abstract and interface
10259         methods may also have generic parameters.
10260
10261 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
10262
10263         * appdomain.c: thread local alloc
10264
10265 2004-08-17  Martin Baulig  <martin@ximian.com>
10266
10267         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
10268
10269         * icall.c
10270         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
10271         argument.
10272
10273         * class.c (mono_type_get_full_name): New public function.
10274         (mono_type_get_name): Don't include the type arguments.
10275
10276 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
10277
10278         * Makefile.am: Build static versions of libmetadata and libmonoruntime
10279         for inclusion into the mono executable.
10280
10281 2004-08-16  Martin Baulig  <martin@ximian.com>
10282
10283         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
10284         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
10285
10286 2004-08-14  Martin Baulig  <martin@ximian.com>
10287
10288         * class.c (dup_type): Also copy the `byref' field.
10289
10290 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
10291
10292         * reflection.c (create_dynamic_mono_image): Revert the last change 
10293         since it breaks bootstrap.
10294
10295 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
10296
10297         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
10298
10299         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
10300         not free them with g_free.
10301
10302 2004-08-11  Martin Baulig  <martin@ximian.com>
10303
10304         * reflection.c (mono_reflection_setup_internal_class): Also call
10305         mono_class_setup_mono_type() if we already have a `tb->type.type'.
10306
10307 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
10308
10309         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
10310         called during default (first) AppDomain creation. Keep track of
10311         Evidence when loading assemblies.
10312
10313 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10314
10315         * opcodes.c, opcodes.h: reduce runtime relocations.
10316
10317 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
10318
10319         * culture-info.h, locales.c: fixes and chages to sue the new
10320         optimized format of the locale data.
10321         * culture-info-tables.h: regenerated.
10322
10323 2004-08-06  Geoff Norton <gnorton@customerdna.com>
10324         
10325         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
10326
10327 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
10328
10329         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
10330         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
10331         * domain-internals.h: icall declaration.
10332         * icall.c: icall registration.
10333         * object-internals.h: New fields in MonoAssembly for CAS.
10334
10335 2004-08-05  Duncan Mak  <duncan@ximian.com>
10336
10337         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
10338         CEE_LDELEM_ANY.
10339
10340 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10341
10342         * reflection.c: fix to deal with object[] arrays in custom ctors
10343         (bug #62550).
10344
10345 2004-08-05  Martin Baulig  <martin@ximian.com>
10346
10347         * class.c (mono_class_array_element_size): Added support for
10348         generic instances and correctly handle "recursive" types.
10349
10350 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
10351
10352         * assembly.c: Fix warnings.
10353
10354 2004-08-04  Martin Baulig  <martin@ximian.com>
10355
10356         * class.c
10357         (mono_type_get_name_recurse): Added `gboolean include_arity'
10358         argument specifying whether or not we should include the generic
10359         arity in the type name.
10360         (_mono_type_get_name): New static function.
10361         (mono_class_setup_vtable): If we're a generic instance, don't
10362         include the generic arity in the names of explicit method
10363         implementations.        
10364
10365 2004-08-03  Martin Baulig  <martin@ximian.com>
10366
10367         * class.c (mono_type_get_name_recurse): Enclose the generic type
10368         arguments in `<', '>'.
10369
10370 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10371
10372         * gc.c: make GC warning messages use the trace API, they are just
10373         noise to most of the users.
10374
10375 2004-08-03  Martin Baulig  <martin@ximian.com>
10376
10377         * debug-mono-symfile.c (read_string): Correctly read the string.
10378
10379 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
10380
10381         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
10382         
10383         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
10384         icalls.
10385         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
10386
10387 2004-07-30  Martin Baulig  <martin@ximian.com>
10388
10389         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
10390         Reflect latest symbol writer changes.   
10391
10392 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10393
10394         * object.c: always create an object if null is passed
10395         to Invoke() where a valuetype is expected.
10396
10397 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
10398
10399         * marshal.c (mono_marshal_init): make managed
10400         signatures match native ones better for 64bits.
10401
10402 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10403
10404         * appdomain.c: hack to build correctly the private bin path on windows.
10405         Fixes bug #61991.
10406
10407 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
10408
10409         * assembly.c: Load mscorlib from the correct framework directory
10410           (mono/<version>/mscorlib.dll).
10411         * appdomain.h: Added prototypes for new functions.
10412         * internals.h: Added some prototypes.
10413         * domain.c: When initializing the runtime, get from the executable and
10414           the configuration files the runtime version that the app supports.
10415           Added support methods for reading app.exe.config. Added list of versions
10416           supported by the JIT. Added two new methods: mono_init_from_assembly,
10417           which initializes the runtime and determines the required version from
10418           the provided exe file, and mono_init_version, which initializes
10419           the runtime using the provided version.
10420         * icall.c: Get machine.config from version-specific directory.
10421         * reflection.c: When generating an image, embed the version number
10422           of the current runtime.
10423
10424 2004-07-28  Dick Porter  <dick@ximian.com>
10425
10426         * socket-io.c
10427         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
10428         returned sockaddr size before creating the remote address object.
10429         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
10430         61608.
10431
10432 2004-07-28  Dick Porter  <dick@ximian.com>
10433
10434         * locales.c (string_invariant_compare_char): Fix invariant char
10435         compares between upper and lower cases.  Fixes bug 61458.
10436
10437 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
10438         
10439         * marshal.c: actually cache stelem.ref wrappers.
10440         
10441 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
10442
10443         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
10444         sections and remove the mono_cli_rva_map () function.
10445
10446 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10447
10448         * debug-mono-symfile.c: fix one more endianess issue, from a patch
10449         by Geoff Norton (<gnorton@customerdna.com>).
10450
10451 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
10452
10453         * class.c: fix class loads for pointer types (typeof(int) !=
10454         typeof(int*)).
10455
10456 2004-07-27  Martin Baulig  <martin@ximian.com>
10457
10458         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
10459         reading the debugging information from an external ".mdb" file.
10460
10461 2004-07-24  Martin Baulig  <martin@ximian.com>
10462
10463         * reflection.c (mono_image_get_type_info): Only write a class
10464         layout entry if we actually have a size or a packing size.
10465
10466 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10467
10468         * reflection.c (type_get_fully_qualified_name): 
10469         insert cast to get type checking of ?: with non-gcc compilers
10470
10471 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
10472
10473         * rand.c: use g_getenv for both lookups of
10474         MONO_EGD_SOCKET
10475
10476 2004-07-17  Martin Baulig  <martin@ximian.com>
10477
10478         * reflection.c (mono_reflection_bind_generic_method_parameters):
10479         Set `gmethod->reflection_info'.
10480
10481 2004-07-17  Martin Baulig  <martin@ximian.com>
10482
10483         * class.c (mono_class_create_from_typedef): Insert the newly
10484         created class into the hash table before computing the interfaces
10485         since we could be called recursively.
10486
10487 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
10488
10489         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
10490         function to implement stelem.ref in managed code
10491         * class-internals.h, debug-helpers.c: a new wrapper type
10492         for the above.
10493
10494 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
10495
10496         * gc.c: allow GC handles to work even when no GC is compiled in.
10497         Fix part of bug #61134 (GetAddrOfPinnedObject).
10498
10499 2004-07-13  Peter Williams  <peter@newton.cx>
10500  
10501         * process.c (complete_path): Make sure we don't attempt to execute
10502         directories.
10503  
10504 2004-07-12  Geoff Norton <gnorton@customerdna.com>
10505
10506         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
10507           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
10508           and will add/subtract the hour if needed
10509
10510 2004-07-12  Martin Baulig  <martin@ximian.com>
10511
10512         * reflection.c (mono_field_get_object): If we have
10513         `field->generic_info', take the attributes from
10514         `field->generic_info->generic_type'.    
10515
10516 2004-07-12  Martin Baulig  <martin@ximian.com>
10517
10518         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
10519         This function must be called before initializing the runtime.
10520         (mono_debug_init_1): New function; call this after initializing
10521         the runtime, but before loading the assembly.  It tells the
10522         debugger to load corlib and the builtin types.
10523
10524         * mono-debug-debugger.c: Did some larger changes in the debugging
10525         code; support recursive class declarations, make sure we actually
10526         add all classes.
10527
10528 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10529
10530         * debug-helpers.c: undo my previous patch and fixed the real issue in
10531         ../mini/exceptions-x86.c
10532
10533 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10534
10535         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
10536         when no HOME env. variable was set and a NullRef was thrown in a .cctor
10537         called from other .cctors.
10538
10539 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
10540
10541         * loader.c: Removed the mono_loader_wine_init hack now that we are
10542         doing a managed version of Windows.Forms.
10543
10544 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
10545
10546         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
10547         threadpool.c, threads.c: remove static data from rootset.
10548
10549 2004-07-09  Dick Porter  <dick@ximian.com>
10550
10551         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
10552         Don't do any more processing if the matched length was 0.  It was
10553         increasing the size of the string before.  Fixes bug 61167.
10554
10555 2004-07-09  Dick Porter  <dick@ximian.com>
10556
10557         * socket-io.h:
10558         * socket-io.c
10559         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
10560         Add support for SO_PEERCRED if its available.
10561
10562 2004-07-09  Peter Bartok <pbartok@novell.com>
10563         * loader.c: winelib.exe.so error message is now only displayed if
10564         MONO_DEBUG is set. To help us avoid questions when people are trying
10565         out the new Managed.Windows.Forms.
10566
10567 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
10568
10569         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
10570         for isinst and castclass wrappers.
10571
10572         * class-internals.h icall.c: Move registration and lookup of JIT icalls
10573         to libmetadata from the JIT, so they could be used by the marshalling
10574         code and the interpreter.
10575
10576         * marshal.c: Register marshalling related JIT icalls here instead of
10577         in mini.c. Use CEE_MONO_ICALL instead of the family of 
10578         CEE_MONO_PROC<x> opcodes to call marshalling functions.
10579
10580         * metadata.h: Remove unneeded marshalling conversions.
10581
10582         * opcodes.c: Update for new opcodes.
10583         
10584 2004-07-08  Martin Baulig  <martin@ximian.com>
10585
10586         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
10587         (mono_debug_get_domain_data): Make this function static.
10588
10589 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10590
10591         * gc.c, object.h: add nice GC handle API for embedders.
10592
10593 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
10594
10595         * reflection.c: more changes for the new api
10596
10597         * object.c: When we reflect on a field w/ a constant value, it
10598         will not have a memory location, so we must access metadata. Also,
10599         allow easier reading of strings so that we can read them from
10600         the constant data.
10601
10602         * class.c (mono_class_layout_fields): no need for literal fields here.
10603
10604         * class-internals.h: api changes for const fields
10605
10606         * icall.c (ves_icall_get_enum_info): use new apis for const fields
10607
10608 2004-07-06  Martin Baulig  <martin@ximian.com>
10609
10610         * mono-debug.h: Increment version number to 44.
10611
10612         * mono-debug.c (mono_debug_add_wrapper): The second argument is
10613         now a gpointer, rewrote this whole method.
10614
10615         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
10616         function.  Add information about the wrapper in a new "misc table".
10617
10618         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
10619         for the new misc table.
10620
10621 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
10622
10623         * metadata-internals.h image.c: Add a cache for helper signatures.
10624
10625         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
10626
10627 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
10628
10629         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
10630         delegates from a delegate. Fixes #61033.
10631         
10632         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
10633         marshalling of stringbuilder arrays. Fixes #59900.
10634
10635 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
10636
10637         * icall.c: Add EnumBuilder:setup_enum_type icall.
10638
10639 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
10640
10641         * icall.c: Added a new icall for the property version of
10642         OffsetOfStringData.
10643
10644 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
10645
10646         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
10647         it has a constant size across platforms.
10648
10649         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
10650         stack trace.
10651
10652 2004-06-29  Martin Baulig  <martin@ximian.com>
10653
10654         * mono-debug.c (mono_debug_add_method): Protect the whole function
10655         in mono_debugger_lock(), not just parts of it.
10656
10657 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
10658
10659         * reflection.c: make sure padding bytes in heaps are zeroed.
10660
10661 2004-06-24  David Waite  <mass@akuma.org>
10662
10663         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
10664         image.c, loader.c, locales.c, marshal.c, metadata.c,
10665         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
10666         string-icalls.c, threads.c: change to C90-style comments from C99 /
10667         C++ -style
10668
10669 2004-06-24  Dick Porter  <dick@ximian.com>
10670
10671         * threads.c
10672         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
10673         return createdNew.  Fixes bug 60412.
10674
10675         * threads-types.h: 
10676         * icall.c: Add createdNew parameter to CreateMutex icall
10677
10678 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10679
10680         * reflection.c, object-internals.h: save default value in params.
10681
10682 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10683
10684         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
10685         no need to build a new path combining that with the application base.
10686         Fixes bug #60442.
10687
10688 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
10689
10690         * reflection.c: fixed minor standard compliance issues.
10691
10692 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
10693
10694         * reflection.c: fixed issue with encoding some custom attributes
10695         (arrays in properties and fields, bug #60411).
10696
10697 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10698
10699         * reflection.c: fix start address when copying the public key token.
10700
10701 2004-06-23  Martin Baulig  <martin@ximian.com>
10702
10703         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
10704         the `exc' object in a static object to put it into the GC's root set.
10705
10706 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
10707
10708         * reflection.c: make mono_reflection_setup_internal_class ()
10709         callable a second time to setup a new parent class.
10710
10711 2004-06-23  Dick Porter  <dick@ximian.com>
10712
10713         * threads.c: Check for WAIT_IO_COMPLETION return values.
10714
10715 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
10716
10717         * appdomain.c: Removed the g_free on the public key token. Now copy 
10718         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
10719         * assembly.c: Added public key token string value when loading 
10720         assemblies. Fix bug #60439.
10721         * icall.c: Added missing informations (like public key) in 
10722         GetReferencedAssemblies. Fix #60519.
10723         * image.h: Changed definition for public key token from const char*
10724         public_tok_value to guchar public_key_token [17];
10725         * reflection.c: Updated for changes to public key token.
10726
10727 2004-06-22  Lluis Sanchez Gual
10728
10729         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
10730         for the field in base classes.
10731
10732 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10733
10734         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
10735         mark headers as not supported, they are installed only for use by the
10736         debugger.
10737
10738 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
10739
10740         * *.c, *.h: avoid namespace pollution in public headers.
10741
10742 2004-06-21  Martin Baulig  <martin@ximian.com>
10743
10744         * exception.c (mono_get_exception_security): It's in
10745         "System.Security", not in "System".
10746
10747         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
10748         the exception classes.
10749
10750 2004-06-21  Martin Baulig  <martin@ximian.com>
10751
10752         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
10753         Protect the exception object from being finalized.
10754
10755 2004-06-21  Martin Baulig  <martin@ximian.com>
10756
10757         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
10758         public function.
10759
10760 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
10761
10762         * reflection.c: Load the assembly in mono_reflection_type_from_name,
10763         if it was not loaded before. Fix parts of #60439.
10764
10765 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
10766
10767         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
10768         code that was broken since Ben's change: wrappers are now
10769         dependent on the method signature only again.
10770
10771 2004-06-21  Martin Baulig  <martin@ximian.com>
10772
10773         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
10774         added interface support.
10775
10776 2004-06-21  Martin Baulig  <martin@ximian.com>
10777
10778         * class.c (mono_vtable_get_static_field_data): New public method.
10779
10780 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
10781
10782         * filewatcher.c : Windows build fix to be compliant with API changes.
10783
10784 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10785
10786         * class.h, class.c: more accessors.
10787         * metadata.h, metadata.c: prepare for hiding MonoType and
10788         MonoMethodSignature: people should use the accessors from now on
10789         outside of the tree.
10790
10791 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
10792
10793         * *.c, *.h: more API cleanups.
10794
10795 2004-06-18  Jackson Harper  <jackson@ximian.com>
10796
10797         * assembly.c: Trace loading assemblies.
10798         * loader.c: Trace loading native libraries.
10799         * mono-config.c: Trace loading config files.
10800         
10801 2004-06-18  Dick Porter  <dick@ximian.com>
10802
10803         * locales.c: Tell ICU the lengths of strings, it can cope with
10804         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
10805
10806 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
10807
10808         * image.c: swapped name/filename;
10809
10810 2004-06-18  Martin Baulig  <martin@ximian.com>
10811
10812         * mono-debug-debugger.c (write_class): Write the parent class at
10813         the end of the header.
10814
10815 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
10816
10817         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
10818
10819 2004-06-17  Raja R Harinath  <rharinath@novell.com>
10820
10821         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
10822         (bundle_obj): New conditional define.
10823         (BUILT_SOURCES): Remove.
10824         ($(bundle_srcs)): Make parallel-make safe.
10825         (libmonoruntime_la_LIBADD): Make unconditional.
10826         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
10827         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
10828
10829 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
10830
10831         * culture-info-tables.h: It was inconsistent with the latest
10832           supp info files.
10833
10834 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
10835
10836         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
10837         be loaded.
10838
10839         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
10840         with gcc 2.95.
10841
10842 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
10843
10844         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
10845         cleaned up public header threads.h.
10846
10847 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
10848
10849         * Makefile.am, *.c, *.h: more API cleanups.
10850
10851 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
10852
10853         * Makefile.am: removed monosn from compilation.
10854         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
10855         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
10856         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
10857         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
10858         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
10859         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
10860
10861 2004-06-15  Jackson Harper  <jackson@ximian.com>
10862
10863         * assembly.c: Make locales lower case when searching the GAC for
10864         assemblies. gacutil will always make locales lowercase when
10865         installing so this effectively makes them case insensitive.
10866         
10867 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
10868
10869         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
10870         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
10871           parameter which allows to choose whether the wait can be interrupted or 
10872           not. Also added the method mono_monitor_enter(), which locks the monitor
10873           using an infinite wait and without allowing interruption.
10874           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
10875           interrupted.
10876         * object.h: Added new fields in MonoThread. suspend_event holds the event
10877           used to susped/resume the thread. synch_lock is the lock object to use for
10878           modifying the thread state.
10879         * threads.c: Use the new synch_lock object for locking, instead of "this",
10880           which can generate deadlocks.
10881           Moved thread state change in Thread.Sleep and Thread.Join from managed
10882           to unmanaged code. This avoids a deadlock when the thread was suspended
10883           just after acquiring the thread lock.
10884           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
10885           Implemented Thread.Suspend using an event instead of ThreadSuspend,
10886           which is not fully implemented in the io-layer.
10887         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
10888
10889 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
10890
10891         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
10892         threads-types.h: more API cleanups.
10893
10894 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
10895
10896         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
10897         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
10898         threadpool.c, threads.c: first pass at the exported API cleanup.
10899
10900 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
10901
10902         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
10903
10904 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10905
10906         * icall.c: added internalGetHome.
10907
10908 2004-06-14  Dick Porter  <dick@ximian.com>
10909
10910         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
10911         possible to return successfully when '.' or '..' were the only
10912         entries in a directory, but were skipped.  The MonoIOStat was not
10913         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
10914         Fixes bug 59574.
10915
10916 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
10917
10918         * reflection.c: make binaries run on .Net 1.1 by default.
10919
10920 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
10921
10922         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
10923
10924 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
10925
10926         * marshal.c: keep track of struct size with explicit layout
10927         (bug #59979).
10928
10929 2004-06-12  Martin Baulig  <martin@ximian.com>
10930
10931         * mono-debug-debugger.c: Comment out a debugging g_message().
10932
10933 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
10934
10935         * reflection.c, reflection.h: do not free custom attrs that are cached.
10936         * icall.c: use braces to make code clearer.
10937
10938 2004-06-11  Martin Baulig  <martin@ximian.com>
10939
10940         * class.h (MonoInflatedField): New type.
10941         (MonoClassField): Replaced `MonoType *generic_type' with
10942         `MonoInflatedField *generic_info'.
10943
10944         * icall.c
10945         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
10946
10947 2004-06-11  Martin Baulig  <martin@ximian.com>
10948
10949         * reflection.c (mono_image_create_method_token): Correctly encode
10950         varargs methods.
10951
10952 2004-06-11  Martin Baulig  <martin@ximian.com>
10953
10954         * metadata.c (mono_metadata_parse_method_signature): When parsing
10955         a MethodDef which has VarArgs, also set sentinelpos if we don't
10956         have any parameters.
10957
10958 2004-06-11  Martin Baulig  <martin@ximian.com>
10959
10960         * verify.c (mono_method_verify): In CEE_CALL, use
10961         mono_method_get_signature() to get the method's signature, unless
10962         we're a PInvoke method.
10963
10964 2004-06-10  Jackson Harper  <jackson@ximian.com>
10965
10966         * assembly.c: Use <path>/lib/mono/gac for the extra paths
10967         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
10968         logical name as the supplied path is just a prefix to the gac not
10969         the direct path to it.
10970         
10971 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
10972
10973         * reflection.c: make the token for a created method match
10974         the token of the MethodBuilder it was created from
10975         (IKVM requires this behaviour now).
10976
10977 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
10978
10979         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
10980         reflection.c, socket-io.c: leak fixes.
10981
10982 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
10983
10984         * icall.c: handle sentinel pos in vararg methods in position different
10985         from 0.
10986
10987 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
10988
10989         * culture-info-tables.h: freshly generated.
10990
10991 2004-06-09  Martin Baulig  <martin@ximian.com>
10992
10993         * loader.c (mono_get_method_constrained): Call `mono_class_init
10994         (constrained_class)'.   
10995
10996 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
10997
10998         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
10999         any methods. Fixes #59629.
11000
11001 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11002
11003         * culture-info-tables.h: reflecting locale-builder updates.
11004
11005 2004-06-08  Dick Porter  <dick@ximian.com>
11006
11007         * object.h:
11008         * locales.c: Fixed compile warnings, including a real bug in
11009         CompareInfo_internal_compare.
11010         
11011 2004-06-08  Dick Porter  <dick@ximian.com>
11012
11013         * locales.c
11014         (ves_icall_System_Globalization_CompareInfo_internal_index):
11015         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11016         Double-check the resuls of usearches, because ICU currently
11017         ignores most of the collator settings here.  Fixes bug 59720.
11018         
11019 2004-06-08  Dick Porter  <dick@ximian.com>
11020
11021         * locales.c
11022         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
11023         Fix memory leak and segfault-causing typo.  No idea how this one
11024         lasted so long without being noticed.
11025
11026 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
11027
11028         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
11029         any methods. Fixes #59629.
11030
11031 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11032
11033         * assembly.c:
11034         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
11035         own the critical section before). Removed dead code (that's done
11036         in the preload hook).
11037
11038         (mono_assembly_load_with_partial_name): call the preload hook.
11039
11040 2004-06-08  Martin Baulig  <martin@ximian.com>
11041
11042         * metadata.c (mono_metadata_signature_alloc): Default
11043         `sentinelpos' to -1.
11044
11045         * reflection.c (mono_image_get_array_token): Likewise.
11046
11047 2004-06-08  Martin Baulig  <martin@ximian.com>
11048
11049         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
11050
11051         * metadata.c (mono_metadata_parse_method_signature): When parsing
11052         a MethodDef which has VarArgs, set sentinelpos.
11053
11054         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
11055         `gint16' since we're using -1 for non-varargs methods.
11056
11057         * reflection.c
11058         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
11059         (method_encode_signature): Added varargs support.
11060         (method_builder_encode_signature): Likewise.
11061         (mono_image_get_varargs_method_token): New static method.
11062         (mono_image_create_method_token): New public method; this is
11063         called via an icall instead of mono_image_create_token() when
11064         calling a varargs method.       
11065
11066 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
11067
11068         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
11069
11070 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11071
11072         * culture-info-tables.h : Reflecting the latest locale-builder that
11073           fixed empty array representation ({} to {0}).
11074
11075 2004-06-07  Jackson Harper  <jackson@ximian.com>
11076
11077         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
11078         looking up extra gac paths. This allows MONO_GAC_PATH to act
11079         exactly like a prefix.
11080         
11081 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11082
11083         * reflection.c (mono_reflection_type_from_name): Make a copy of the
11084         type name before modifying it. Fixes #59405.
11085
11086 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
11087
11088         * culture-info.h: added fields for "all datetime patterns".
11089         * locales.c: (  ves_icall_System_Globalization_CultureInfo
11090           _construct_datetime_format ()): fill xxx_patterns fields.
11091         * object.h: added fields for "all datetime patterns" to
11092           MonoDateTimeFormatInfo.
11093         * culture-info-tables.h: reflecting locale-builder updates.
11094
11095 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
11096
11097         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
11098         the event has no add and remove methods. Fixes #59629.
11099
11100 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
11101
11102         * object.c: Fixed possible integer overflow when allocating large
11103         strings.
11104
11105 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11106
11107         * culture-info-tables.h: reflecting locale-builder updates.
11108
11109 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
11110
11111         * culture-info-tables.h: reflecting locale-builder updates.
11112
11113 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
11114
11115         * culture-info-tables.h: reflecting locale-builder updates.
11116
11117 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
11118
11119         * threads.c: Made Thread.Sleep abortable.
11120
11121 2004-06-02  Martin Baulig  <martin@ximian.com>
11122
11123         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
11124
11125         * debug-mono-symfile.h: Bumped symbol file version number to 37.
11126
11127 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
11128
11129         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
11130
11131 2004-05-30  Jackson Harper  <jackson@ximian.com>
11132
11133         * reflection.c: Do not hardcode assembly versions or public key
11134         tokens anymore. All of this except the corlib section was dead
11135         code anyways.
11136         
11137 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
11138
11139         * object.c (mono_runtime_invoke_array): Automatically create boxed
11140         objects for byref valuetypes if needed. Fixes #59300.
11141         
11142         * object.c (mono_method_return_message_restore): Handle 
11143         MONO_TYPE_OBJECT as well.
11144
11145 2004-05-28  Jackson Harper  <jackson@ximian.com>
11146
11147         * reflection.c: The modified type encoding was causing build
11148         problems. Reverted for now.
11149         
11150 2004-05-28  Jackson Harper  <jackson@ximian.com>
11151
11152         * reflection.c/h: Take an assembly ref so that we dont create
11153         fully qualified names when encoding types in the same assembly as
11154         the custom attribute being emitted.
11155         * appdomain.c: Increment version number.
11156         
11157 2004-05-26  Duncan Mak  <duncan@ximian.com>
11158
11159         * icall.c
11160         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
11161         Set the full version number (major, minor, build, revision).
11162
11163 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
11164
11165         * marshal.c (emit_struct_conv): increment src/dst after blit
11166         (mono_marshal_get_managed_wrapper,
11167         mono_marshal_get_native_wrapper): make sure we have marshalling
11168         info before marshalling params (info computation affects
11169         blittable)
11170
11171         * class.c (class_compute_field_layout): correctly deal with
11172         blittable
11173         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
11174         value types (as per what windows dows by default)
11175         (mono_class_setup_mono_type): System.ValueType is blittable
11176         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
11177         blittable
11178
11179         * marshal.c (mono_marshal_load_type_info): flag types  as
11180         non-blittable if the native layout doesn't match the managed
11181         layout
11182
11183 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11184
11185         * appdomain.c: don't add stuff in the private search path that is
11186         above the application base. If application base is not set, there's
11187         no private search path.
11188
11189 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
11190
11191         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
11192         byref struct arguments in native->managed marshalling.
11193
11194 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
11195
11196         * marshal.c (mono_marshal_get_runtime_invoke): correctly
11197         cache methods using signature (special case for methods
11198         that are value type or string class)
11199         
11200         * image.c (mono_image_close): clean up allocated GSList's
11201         in runtime_invoke_cache.
11202
11203 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11204
11205         * mono-config.c: set the correct path for mono_cfg_dir on windows when
11206         there's no MONO_CFG_DIR environment variable defined.
11207
11208 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11209
11210         * threads.c: windows version must be >= 0x0500 to include OpenThread.
11211
11212 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
11213
11214         * threadpool.c: Really wait for 500ms after the async call, even if the wait
11215           is interrumped.
11216         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
11217           before waiting for it, and call CloseHandle after the wait to unref it.
11218           This will make sure that handles are not disposed too early.
11219
11220 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11221
11222         * appdomain.c:
11223         * appdomain.h:
11224         * icall.c: removed
11225         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
11226         needed now.
11227
11228         * object.c: se the application_base only for the domain that runs
11229         Main. Fixes bug #59216,
11230
11231 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11232
11233         * appdomain.c:
11234         * object.c: only the domain in which Main is run have
11235         SetupInformation.ConfigurationFile set, so moved a few lines from
11236         appdomain.c to object.c.
11237
11238 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11239
11240         * appdomain.c: we tried to load [name].(dll|exe), but according
11241         to bug #57710, we must also try [culture]/[name].(dll|exe) and
11242         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
11243         There's a test case attached to bug #58922.
11244
11245 2004-05-27  Dick Porter  <dick@ximian.com>
11246
11247         * icall.c:
11248         * file-io.c: Implemented icalls for locking and unlocking regions
11249         in a file.
11250         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
11251         FALSE on error (fixes both compiler warning and real bug.)
11252
11253 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
11254
11255         * culture-info-tables.h: reflecting locale-builder updates.
11256
11257           (Added missing ChangeLog entry for 05/26)
11258
11259 2004-05-27  Jackson Harper  <jackson@ximian.com>
11260
11261         * locales.c: Fix some cut and paste errors.
11262         
11263 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11264
11265         * mono-config.c: set the correct path for config. directory on windows.
11266
11267 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11268
11269         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
11270           on win32.
11271
11272 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11273
11274         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
11275         from pinvoke functions.
11276         
11277         * marshal.c (mono_ftnptr_to_delegate): Implement this.
11278
11279 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
11280
11281         * culture-info-tables.h: reflecting locale-builder updates.
11282
11283 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
11284
11285         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
11286         #59086.
11287
11288 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
11289
11290         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
11291         * icall.c: Modified icalls for RNG.
11292         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
11293         Windows (CryptoAPI).
11294
11295 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11296
11297         * locales.c: Fix build.
11298
11299 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
11300
11301         * culture-info-tables.h: reflecting locale-builder updates.
11302
11303 2004-05-25  Jackson Harper  <jackson@ximian.com>
11304
11305         * locales.c: When creating the current culture use the $LANGs
11306         specific culture. So DateTimeFormat and NumberFormat entries are created.
11307         
11308 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
11309
11310         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
11311         a char array as parameter.
11312
11313 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
11314
11315         * image.c: In mono_image_open(), always use an absolute path name to
11316           look for already loaded images.
11317
11318 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
11319
11320         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
11321         missing in the windows build (like older cygwin include files).
11322
11323 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
11324
11325         * icall.c: Fixed check for possible integer overflow in Buffer_
11326         BlockCopy icall. Replaced comments style // by /* */.
11327
11328 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
11329
11330         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
11331         
11332         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
11333         check after MONO_VTADDR. Fixes pinvoke2.exe.
11334
11335         * marshal.h marshal.c metadata.h: Add beginnings of support for
11336         ftnptr -> delegate marshalling.
11337
11338 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
11339
11340         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
11341         * threads.c: Fix warnings.
11342
11343 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
11344
11345         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
11346         * icall.c: Registered icalls for Suspend and Resume.
11347         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
11348           Thread.Abort.
11349         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
11350         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
11351         * process.c: Use WaitForSingleObjectEx.
11352         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
11353           checkpoints.
11354         * threads.c, threads.h: Make use of new Ex wait methods. Improved
11355           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
11356           for Suspend and Resume. Added new mono_thread_stop, used for stoping
11357           background threads. Added basic support for Abort in Windows.
11358           Start new threads using a managed delegate invoke wrapper. This wrapper
11359           has an interruption checkpoint that is needed since an interruption
11360           can be requested before the thread leaves the unmanaged code that starts 
11361           the thread.
11362         * marshal.c: Added interruption checkpoint after every native call, and
11363           also before managed calls for wrappers called from unmanaged code to
11364           go into managed code.
11365         * object.h: Added new field in MonoThread to keep track of interruption
11366           requests.
11367
11368 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
11369
11370         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
11371         calls.
11372
11373 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11374
11375         * appdomain.c:
11376         * assembly.c:
11377         * gc.c:
11378         * locales.c:
11379         * mono-config.c:
11380         * rand.c: getenv -> g_getenv (windows!)
11381
11382         * process.c: complete_path is also used on non-windows platforms.
11383
11384 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11385
11386         * icall.c: new signature for Process_Start.
11387
11388         * process.[ch]: new signature for Process_Start. If we're on windows
11389         and UseShellExecute is false, we have to search for the program by
11390         ourselves if we don't get a full path.
11391
11392 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
11393
11394         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
11395         marshalling and call CleanUpNativeData if needed. Fixes #58646.
11396
11397 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11398
11399         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
11400         Fixes bug #58373.
11401
11402 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11403
11404         * process.c: use double quotes to quote program name and arguments on
11405         windows. Fixes bug #58575.
11406
11407 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11408
11409         * file-io.c: don't return "." and ".." when using windows Find*File.
11410
11411 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
11412
11413         * marshal.c: Don't pass wrappers to message init because method 
11414         addressed used to lookup metadata. part of remoting[2|3] fix.
11415
11416 2004-05-15  Jackson Harper  <jackson@ximian.com>
11417
11418         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
11419         path is essentially the same as MONO_PATH except that it points to
11420         GACs instead of lib directories.
11421         * loader.h: The user gac is gone so we dont need function to
11422         enable/disable it.
11423         * mono-config.c: user gac option is now gone.
11424         
11425 2004-05-15  Jackson Harper  <jackson@ximian.com>
11426
11427         * culture-info.h: Make defines more consistent, add calendar data
11428         to the culture info table.
11429         * culture-info-tables.h: Add basic calendar data. Basically
11430         everyone gets default gregorian until all the data is
11431         updated.
11432         * locales.c: Use the new consistent defines. Set calendar data for
11433         culture info objects.
11434         * object.h: add a field for calendar data to CultureInfo
11435         
11436 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
11437
11438         * image.c: image->runtime_invoke_cache is keyed on signatures now.
11439         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
11440         a signature.
11441         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
11442         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
11443         an extra param that is the pointer of the method to invoke. The IL for
11444         the invoke method is no longer specific to the method, but to the
11445         signature of the method. Thus, we can share the same code for multiple
11446         methods. This reduces the number of methods that have to be compiled.
11447
11448 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
11449
11450         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
11451
11452         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11453
11454         * icall.c: Optimize Buffer.BlockCopy.
11455
11456 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11457
11458         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
11459         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
11460         quote). Changed them to "MMMM yyyy".
11461
11462 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
11463
11464         * rand.c
11465         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
11466
11467 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
11468
11469         * reflection.h: Updated after changes to managed structures.
11470
11471         * appdomain.c: Bump corlib version.
11472
11473 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11474
11475         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
11476         windows.
11477
11478 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11479
11480         * Makefile.am: link to ../os/libmonoos.la on windows.
11481
11482         * assembly.c:
11483                 -If MONO_DEBUG, warn about non-existing directories in
11484                 MONO_PATH.
11485                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
11486                 compile time variable.
11487                 -Removed init_default_path and call mono_set_rootdir from
11488                 libmonoos.a instead (windows only).
11489
11490         * assembly.h: declare mono_assembly_getrootdir().
11491
11492         * domain.c:
11493         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
11494
11495         * loader.c: s/getenv/g_getenv/
11496
11497 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
11498
11499         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
11500
11501         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
11502
11503         * metadata.h: Add new marshalling conversions.
11504
11505         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
11506         function.
11507
11508         * reflection.c (mono_reflection_get_type): Lookup the type in all
11509         modules of a multi-module assembly. Fixes #58291.
11510
11511 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
11512
11513         * threads.c: Before aborting a background, set the StopRequested
11514         state.  This avoids throwing the Abort exception.
11515         In mono_thread_manage, don't continue with the shutdown until all
11516         aborted threads have actually stopped.
11517
11518 2004-05-10  Jackson Harper  <jackson@ximian.com>
11519
11520         * locales.c: Remove the modifier from culture names.
11521         
11522 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11523
11524         * Makefile.am: monosn is not installed any more. It has been deprecated
11525         in favor of sn.
11526
11527 2004-05-07  Jackson Harper  <jackson@ximian.com>
11528
11529         * locales.c
11530         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
11531         Fix array construction, add bailout if the length is 0.
11532
11533 2004-05-07  Dick Porter  <dick@ximian.com>
11534
11535         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
11536         machine doesn't have a DNS entry.  Patch by Urs Muff
11537         (umuff@quark.com), fixes bug 57928.
11538
11539 2004-05-06  Jackson Harper  <jackson@ximian.com>
11540
11541         * reflection.c: Handle null PublicTokens properly. alloc mem for
11542         assembly names culture so we dont crash when freeing it.
11543         
11544 2004-05-06  Jackson Harper  <jackson@ximian.com>
11545
11546         * assembly.c: Check the usergac when loading with partial names.
11547         
11548 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11549
11550         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
11551         does nothing for now (not required for Linux/Windows) but the class
11552         library can call it (and a newer or modified runtime could need it).
11553         * icall.c: Registred icall.
11554
11555 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11556
11557         * loader.c: prints a message on module loading error we set MONO_DEBUG
11558         environment variable.
11559
11560 2004-05-05  Jackson Harper  <jackson@ximian.com>
11561
11562         * appdomain.c: Handle PublicKeyToken=null properly.
11563         
11564 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
11565
11566         * environment.c|h: Added icall ves_icall_System_Environment_
11567         GetOSVersionString to get the current OS version as a string.
11568         * icall.c: Registred icall.
11569
11570 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
11571
11572         * object.c: in mono_object_get_virtual_method(), take into account that
11573         non-virtual methods don't have a slot in the vtable. Check needed when
11574         the object is a proxy.
11575
11576 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
11577
11578         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
11579         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
11580
11581         * object.c (mono_class_compute_gc_descriptor): Fix warning.
11582
11583         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
11584         passed when a valuetype is expected.
11585
11586         * object.c (mono_unhandled_exception): Only set the exit code if the
11587         exception happens in the main thread. Fixes thread5.exe.
11588
11589         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
11590         invalid names. Fixes #58047.
11591
11592 2004-05-03  Jackson Harper  <jackson@ximian.com>
11593
11594         * assembly.c: This line was committed accidently and is unneeded.
11595         
11596 2004-05-03  Jackson Harper  <jackson@ximian.com>
11597
11598         * icall.c: Add new icall for Assembly::LoadWithPartialName
11599         * assembly.c/.h: new function that probes the GAC to load partial
11600         assembly names by Paolo Molaro.
11601         
11602 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11603
11604         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
11605         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
11606         (type_get_fully_qualified_name): Added PublicKeyToken when building a
11607         full type name.
11608
11609 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11610
11611         * appdomain.c: fixed check for 'neutral' culture and removed warning.
11612         * reflection.c: fix bug when parsing a full type name and Version is not
11613         the last thing in the string.
11614
11615 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
11616
11617         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
11618         crashes when it is freed.
11619
11620 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11621
11622         * assembly.c: print the compat warning to stderr.
11623
11624 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
11625
11626         * assembly.c (mono_assembly_load_references): Add a compatibility
11627         hack to run old applications that might be still referencing the
11628         3300-based assemblies, only do this for System.xxx.
11629
11630 2004-05-01  Jackson Harper  <jackson@ximian.com>
11631
11632         * appdomain.c: If the culture is neutral we set it to "".
11633         
11634 2004-04-29  Jackson Harper  <jackson@ximian.com>
11635
11636         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
11637
11638 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
11639  
11640         * string-icalls.c: added low overhead function for copying chars
11641         * icall.c: added needed icall for the above function
11642  
11643 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11644
11645         * icall.c: fix return value of get_global_assembly_cache.  Implemented
11646         Environment.GetLogicalDrives.
11647
11648 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
11649
11650         * rand.c: try and talk to egd or prngd
11651         for random bytes if opening devices fail.
11652
11653 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
11654
11655         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
11656         alignment for the type using the native alignment of its members 
11657         instead of using klass->min_align.
11658
11659         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
11660
11661 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11662
11663         * file-io.c:
11664         * socket-io.c: added check for sys/aio.h.
11665
11666 2004-04-28  Dick Porter  <dick@ximian.com>
11667
11668         * threads.c: Don't abort a thread thats already aborting, when
11669         terminating everything.
11670
11671 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11672
11673         * icall.c: added 2 new async calls for Socket.
11674
11675         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
11676         IO on *nix systems.
11677
11678         * threadpool.c: removed unused variable.
11679
11680 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
11681
11682         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
11683
11684 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
11685
11686         * locales.c: put back string_invariant_tolower () and
11687         string_invariant_toupper ().
11688
11689 2004-04-26 David Waite <mass@akuma.org>
11690
11691         * file-io.h:
11692         * socket-io.h:
11693         * threads.h:
11694         * unicode.h: remove comma from end of enumeration declarations
11695
11696 2004-04-26 David Waite <mass@akuma.org>
11697
11698         * debug-mono-symfile.h:
11699         * decimal.c:
11700         * mono_debug.h:
11701         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
11702
11703
11704 2004-04-26  Jackson Harper  <jackson@ximian.com>
11705
11706         * appdomain.c: Increment version number.
11707         
11708 2004-04-26  Jackson Harper  <jackson@ximian.com>
11709
11710         * appdomain.c: Set assembly references public token value when
11711         PublicKeyToken is specified, not the hash_value. Free public token
11712         values when free assembly name data. Previously the public key
11713         token was hex decoded, however we are using hex encoded public key
11714         tokens, so this is not neccasary.
11715         * assembly.c: Lookup assemblies in the gac if their public token
11716         value is set. Add function to allow enabling user gac
11717         lookups. Specify whether or not the assembly was loaded from the
11718         GAC. Compare full assembly names when checking the cache for
11719         assemblies (Temporarily disabled see comment in code). Remove
11720         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
11721         specifies trace-loader they get extra info to stdout on the
11722         loading of assemblies.
11723         * image.h: Add a field for an assembly references public token
11724         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
11725         whether an assembly has been loaded from the GAC.
11726         * image.c: Remove a corlib -> mscorlib name mapping.
11727         * loader.h: Add function to enable/disable the user gac.
11728         * mono-config.c: Check if the usergac is enabled in the config
11729         file.
11730         * icall.c: New icall to determine whether or not an assembly has
11731         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
11732         * tabldefs.h: Add constant for assemblyref flag that specifies a
11733         full public key is used instead of a public token.
11734         * reflection.c: Remove mscorlib -> corlib mappings. Set
11735         PublicTokenValue instead of hash value. This value is a hex
11736         string so it does not need to be expanded.
11737
11738 2004-04-26  Martin Baulig  <martin@ximian.com>
11739
11740         * mono-debug-debugger.c (mono_debugger_initialize): Set
11741         `mono_debugger_initialized' before calling mono_debug_lock().
11742
11743 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
11744
11745         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
11746           InternalToUpper/InternalToLower.
11747         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
11748           removed invariant culture shortcut.  This is now done in managed code.
11749         * locales.c: (string_invariant_toupper/tolower) removed.
11750
11751 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11752
11753         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
11754         Added Poll internal call.
11755
11756         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
11757         call for Poll. Select was too heavy for polling a single socket.
11758
11759         * threadpool.[ch]: added mono_threadpool_cleanup.
11760         * threads.c: use it. Don't use Thread_Abort on windows.
11761
11762 2004-04-23  Martin Baulig  <martin@ximian.com>
11763
11764         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
11765
11766 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
11767
11768         * icall.c: Registred new icalls for key pair protection and added an
11769         icall for Environment.GetFolderPath on Windows.
11770         * security.c|h: Added new icalls for key pair protection.
11771
11772 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11773
11774         * socket-io.c: don't display the non-supported family warning for known
11775         families. Now this is not displayed on windows when checking support
11776         for IPv4/IPv6.
11777
11778 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11779
11780         * class.c: don't display the layout warning for static fields.
11781
11782 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
11783
11784         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
11785         * locales.c, locales.h: Added new icalls for culture-specific
11786         Char.ToLower and Char.ToUpper.
11787
11788 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11789
11790         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
11791         by David Waite.
11792
11793 2004-04-20  Martin Baulig  <martin@ximian.com>
11794
11795         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
11796         of the type name before passing it to mono_reflection_type_from_name().
11797
11798 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
11799
11800         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
11801         encodings here. Fixes #56965.
11802
11803 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
11804
11805         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11806         fix test on strstr result not that I can see anything that
11807         relies on the result.
11808
11809 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
11810
11811         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
11812         Fixes #57081.
11813
11814         * marshal.c (mono_marshal_get_string_encoding): New helper function.
11815
11816         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
11817         function to determine which marshalling to use for strings. Fixes
11818         #56965.
11819
11820         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
11821
11822         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
11823
11824 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
11825
11826         * icall.c: #include mono-config.h
11827
11828 2004-04-15  Jackson Harper  <jackson@ximian.com>
11829
11830         * culture-info-tables.h: Fix date formats for en-US culture.
11831         
11832 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
11833
11834         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
11835         ThreadPool.SetMinThreads.
11836         * threadpool.c: Implemented ThreadPool.GetMinThreads and
11837         ThreadPool.SetMinThreads.
11838
11839 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
11840
11841         * mono-config.c: also load the .config file in the directory
11842         where the assembly was found.
11843
11844 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
11845
11846         * assembly.c: load per-assembly config files.
11847         * icall.c: decrapified code to get the config dir and moved to
11848         mono-config.c.
11849         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
11850         per-assembly config files. When doing a dll map lookup give precedence
11851         to the per-assembly data.
11852
11853 2004-04-14  Martin Baulig  <martin@ximian.com>
11854
11855         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
11856         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
11857         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
11858
11859         * mono-debugger-debugger.c: While the debugger is locked, remember
11860         whether the symbol tables have changes and send one single
11861         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
11862
11863 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
11864
11865         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
11866
11867         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
11868         function.
11869
11870         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
11871         account when marshalling string arrays. Fixes #56965.
11872
11873 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
11874
11875         * icall.c: Add new icalls mapping for security.
11876         * security.c|h: Add internal calls for WindowsIdentity,
11877         WindowsImpersonationContext and WindowsPrincipal.
11878
11879 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
11880
11881         * class.c: Added comment to ensure the System.MonoDummy class
11882         is removed when no longer necessary
11883
11884 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
11885
11886         * appdomain.c: Pass arguments to the bootstraping exceptions to
11887         minimize JITed methods at boot
11888
11889         * metadata.c (mono_exception_from_name_two_strings): Allow for the
11890         second string to be null.
11891
11892         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
11893         Change the protocol to minimize the JIT methods at startup.  Now
11894         it Returns the internal codepage, if the value of "int_code_page"
11895         is 1 at entry, and we can not compute a suitable code page
11896         number, returns the code page as a string.
11897
11898 2004-04-13  Jackson Harper  <jackson@ximian.com>
11899
11900         * culture-info-tables.h: Fix number of decimal digits for all
11901         english locales.
11902
11903 2004-04-13  Jackson Harper  <jackson@ximian.com>
11904
11905         * icall.c: Clairfy out of sync error message. It is not always
11906         your corlib that is out of sync.
11907
11908 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
11909
11910         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
11911         properties when only the set accessor is overriden. Fixes #55874.
11912
11913 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
11914
11915         * assembly.c (mono_assembly_load_references): Make this thread safe.
11916         Fixes #56327.
11917
11918 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
11919
11920         * monosn.c: Add missing initialization calls.
11921
11922 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
11923
11924         * locales.c:
11925         ves_icall_System_Globalization_CultureInfo_construct_number_format
11926         Fix g_assert so it compiles on fussier compilers re int/ptr
11927         mismatch
11928
11929 2004-04-08  Dick Porter  <dick@ximian.com>
11930
11931         * socket-io.h:
11932         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
11933         53992.  Also rearrange the code so that the internal calls return
11934         an error value and exceptions are thrown from managed code.
11935
11936         * icall.c: Add type info to the socket icalls.
11937
11938 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11939
11940         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
11941         owes me a beer.
11942
11943 2004-04-07  Martin Baulig  <martin@ximian.com>
11944
11945         * class.c (mono_class_from_generic_parameter): Don't default
11946         `klass->parent' to `mono_defaults.object_type'.
11947
11948 2004-04-07  Martin Baulig  <martin@ximian.com>
11949
11950         * reflection.c (mono_reflection_initialize_generic_parameter): Set
11951         `param->pklass->reflection_info'.       
11952
11953 2004-04-07  Jackson Harper  <jackson@ximian.com>
11954
11955         * culture-info-tables.h: Fix date separator symbol.
11956         
11957 2004-04-07  Martin Baulig  <martin@ximian.com>
11958
11959         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
11960         from System.Type to System.MonoType.
11961
11962 2004-04-07  Martin Baulig  <martin@ximian.com>
11963
11964         * reflection.h
11965         (MonoReflectionGenericParam): Added `has_reference_type' and
11966         `has_value_type' fields.
11967
11968         * reflection.c (mono_image_get_generic_param_info): Encode the
11969         correct flags if we have the `class' or `struct' constraint.
11970
11971 2004-04-07  Martin Baulig  <martin@ximian.com>
11972
11973         * reflection.h
11974         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
11975
11976 2004-04-07  Jackson Harper  <jackson@ximian.com>
11977
11978         * appdomain.c: Revert extra patches, just wanted to bump the
11979         version number.
11980         
11981 2004-04-07  Jackson Harper  <jackson@ximian.com>
11982
11983         * Makefile.am: Add culture-info private headers.
11984         * icall.c: Add new icalls for contructing locales.
11985         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
11986         * locales.h: Declare new culture info construction methods.
11987         * object.h: Add new fields used to avoid the CultureMap to
11988         MonoCultureInfo.
11989         * culture-info.h: Definition of structs used in the culture info
11990         tables.
11991         * culture-info-tables.h: Autogenerated tables that contain culture
11992         info data. This file was generated with the locale-builder tool.
11993         * appdomain.c: Incement corlib version number.
11994         
11995 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
11996
11997         * appdomain.c: (mono_runtime_init) move mono_thread_init
11998         to before mono_object_new calls so critical sections
11999         are initialized before use.
12000
12001 2004-04-07  Martin Baulig  <martin@ximian.com>
12002
12003         * icall.c
12004         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
12005         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
12006         (ves_icall_MonoGenericParam_initialize): Removed.
12007         (monogenericparam_icalls): Removed.
12008         (generictypeparambuilder_icalls): Added new table for
12009         System.Reflection.Emit.GenericTypeParameterBuilder.
12010
12011         * reflection.c
12012         (mono_reflection_define_generic_parameter): Removed.
12013         (mono_reflection_initialize_generic_parameter): This is now called
12014         from GenericTypeParameterBuilder's .ctor.
12015
12016 2004-04-06  Martin Baulig  <martin@ximian.com>
12017
12018         * class.c (mono_class_init): Don't inflate nested classes in a
12019         generic instance.
12020         (mono_type_get_name_recurse): Include the generic arguments for
12021         generic instances and generic type declarations.
12022         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
12023         (_mono_class_get_instantiation_name): Removed.
12024         (mono_class_create_generic): Always use `gklass->name' as our name.
12025
12026         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
12027
12028         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
12029         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
12030         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
12031         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
12032         closed generic methods here.
12033
12034         * reflection.c
12035         (mono_reflection_generic_inst_get_nested_types): Removed.
12036         (inflate_mono_method): Copy the generic parameters from the
12037         MonoMethodHeader into out MonoGenericMethod.
12038
12039 2004-04-06  Martin Baulig  <martin@ximian.com>
12040
12041         * row-indexes.h
12042         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
12043
12044         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
12045
12046         * reflection.c (build_compressed_metadata): If we have any entries
12047         in the GenericParam, MethodSpec or GenericParamConstraint tables,
12048         set the header version to 1.1.
12049
12050 2004-04-06  Martin Baulig  <martin@ximian.com>
12051
12052         * class.c (mono_class_init): If we're a generic instance,
12053         initialize our nested classes, too.
12054         (_mono_class_get_instantiation_name): Deal with the new `!%d'
12055         suffix. 
12056
12057 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12058
12059         * process.c: quote the argument passed to the shell on windows.
12060
12061 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
12062
12063         * threads.c (mono_alloc_special_static_data): Allow this to be
12064         called during startup.
12065
12066 2004-04-02  Martin Baulig  <martin@ximian.com>
12067
12068         * icall.c
12069         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
12070
12071 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
12072
12073         * icall.c: Fix build.
12074
12075 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
12076
12077         * Makefile.am: Added security.c|h.
12078         * icall.c: Added icall for get_UserName;
12079         * security.c: New file for security related icalls. Added function
12080         get_UserName for System.Environment (fix #56144).
12081         * security.h: New. Header file for security.c
12082
12083 2004-04-02  Dick Porter  <dick@ximian.com>
12084
12085         * icall.c: Deleted the icalls that were obsoleted some time ago
12086         by the ICU string code, and which were mixed into the icall
12087         rearranging.  Fixes bug 55969.
12088
12089         * string-icalls.h: 
12090         * string-icalls.c: Deleted the code that those icalls reference.
12091
12092 2004-04-01  Martin Baulig  <martin@ximian.com>
12093
12094         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
12095
12096         * class.c (mono_class_from_generic_parameter): Don't set 
12097         TYPE_ATTRIBUTE_INTERFACE.
12098         (my_mono_class_from_generic_parameter): Likewise.
12099
12100 2004-04-01  Martin Baulig  <martin@ximian.com>
12101
12102         * loader.c (find_method): Added an optional `MonoClass *ic'
12103         argument to search in a specific interface.
12104         (mono_get_method_constrained): New public function.
12105
12106 2004-04-01  Martin Baulig  <martin@ximian.com>
12107
12108         * reflection.c (mono_image_get_generic_field_token): Use the
12109         `handleref' cache here.
12110
12111 2004-04-01  Martin Baulig  <martin@ximian.com>
12112
12113         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
12114
12115         * reflection.c (create_generic_typespec): Use the `typespec' hash
12116         here, not the `typeref' one.    
12117
12118 2004-04-01  Martin Baulig  <martin@ximian.com>
12119
12120         * class.c (mono_class_inflate_generic_type): Moved the
12121         functionality into a new static inflate_generic_type() which
12122         returns NULL if it didn't do anything.  Only increment the
12123         `mono_stats.inflated_type_count' if we actually inflated
12124         something.
12125         (mono_class_get_full): Check the classes type to see whether we
12126         need to inflate it; also inflate MONO_TYPE_(M)VAR.
12127
12128 2004-04-01  Jackson Harper  <jackson@ximian.com>
12129
12130         * reflection.c: Set culture for assembly references.
12131         
12132 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
12133
12134         * reflection.[ch], icall.[ch], Fix support for pinning variables.
12135
12136 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12137
12138         * assembly.c:
12139         (do_mono_assembly_open): the critical section also covers
12140         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
12141
12142 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12143
12144         * threads.c:
12145         (mono_manage_threads): abort the background threads when finishing.
12146         Fixes bug #47232.
12147
12148 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12149
12150         * gc.c: only close the done_event handle if there was no timeout.
12151         C-ified comments.
12152
12153 2004-03-30  Martin Baulig  <martin@ximian.com>
12154
12155         * icall.c (icall_entries): It's called "System.Activator", not
12156         "System.Activation".    
12157
12158 2004-03-30  Martin Baulig  <martin@ximian.com>
12159
12160         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
12161         (mono_class_create_from_typespec): Likewise.
12162
12163 2004-03-30  Martin Baulig  <martin@ximian.com>
12164
12165         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
12166         `has_ctor_constraint' and `initialized'.
12167
12168 2004-03-30  Martin Baulig  <martin@ximian.com>
12169
12170         * reflection.c (encode_new_constraint): New static function to add
12171         the constructor constraint attribute to a type parameter.
12172         (encode_constraints): Call encode_new_constraint() if necessary.
12173
12174         * reflection.h
12175         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
12176
12177         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
12178         
12179 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
12180
12181         * reflection.c, icall.c: add support for pinning variables. 
12182
12183 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
12184
12185         * marshal.c (mono_marshal_get_managed_wrapper):
12186         init bool local with zero rather than null.
12187
12188 2004-03-29  Martin Baulig  <martin@ximian.com>
12189
12190         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
12191         the "official" behavior here.
12192         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
12193
12194 2004-03-29  Martin Baulig  <martin@ximian.com>
12195
12196         * icall.c: Reflect latest API changes.
12197
12198 2004-03-29  Martin Baulig  <martin@ximian.com>
12199
12200         * loader.c (mono_get_method_from_token): Also call
12201         mono_metadata_load_generic_params () for abstract and interface
12202         methods; replace the type arguments in the method signature with
12203         the ones which are loaded from the metadata.
12204
12205 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
12206
12207         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
12208         of the lock is not the current thread. MS.NET don't do it, in spite of
12209         what the documentation says. See bug #56157.
12210
12211 2004-03-28  Martin Baulig  <martin@ximian.com>
12212
12213         * class.c (mono_class_init): Don't call init_properties() and
12214         init_events() for generic instances; set `prop->parent' when
12215         inflating properties.
12216
12217         * reflection.c (mono_generic_inst_get_object): Call
12218         `mono_class_init (ginst->klass)'.
12219         (mono_type_get_object): Only create a MonoGenericInst if your
12220         generic type is a TypeBuilder.
12221         (do_mono_reflection_bind_generic_parameters): Only set
12222         `ginst->is_dynamic' if our generic type is a TypeBuilder.
12223
12224 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
12225
12226         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
12227         Fixes #56091.
12228
12229 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12230
12231         * icall.c: added Kill_internal icall.
12232         * process.[ch]: added Kill_internal icall.
12233
12234 2004-03-25  Martin Baulig  <martin@ximian.com>
12235
12236         * class.h (MonoStats): Added `generic_instance_count',
12237         `inflated_method_count', `inflated_type_count' and
12238         `generics_metadata_size'.       
12239
12240 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12241
12242         * reflection.c: no warnings now.
12243
12244 2004-03-25  Martin Baulig  <martin@ximian.com>
12245
12246         * class.c (mono_class_get_full): New public function; does a
12247         mono_class_get(), but also takes a `MonoGenericContext *'.
12248
12249         * loader.c (mono_field_from_memberref): Renamed to
12250         `field_from_memberref', made static and added `MonoGenericContext *'
12251         argument.
12252         (mono_field_from_token): Added `MonoGenericInst *' argument.
12253         (method_from_memberef): Likewise.
12254         (mono_get_method_from_token): Likewise.
12255         (mono_get_method_full): New public function; does a
12256         mono_get_method(), but also takes a `MonoGenericContext *'.
12257
12258         * verify.c (mono_method_verify): Get the method's generic context
12259         and pass it to mono_field_from_token(), mono_get_method_full() and
12260         mono_class_get_full().
12261
12262 2004-03-25  Martin Baulig  <martin@ximian.com>
12263
12264         * class.c (mono_class_inflate_generic_type): Take a
12265         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
12266         `MonoGenericMethod *'.
12267
12268 2004-03-25  Martin Baulig  <martin@ximian.com>
12269
12270         * loader.h (MonoMethodInflated): Store the MonoGenericContext
12271         instead of the MonoGenericMethod here.
12272
12273 2004-03-25  Martin Baulig  <martin@ximian.com>
12274
12275         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
12276         each time we create a new MonoGenericInst, we also create a new
12277         context which points back to us.
12278
12279         * class.c (inflate_method): Use `ginst->context' instead of
12280         creating a new context.
12281
12282         * loader.c (method_from_memberref): Use
12283         `klass->generic_inst->context' instead of creating a new context.
12284
12285 2004-03-25  Martin Baulig  <martin@ximian.com>
12286
12287         * class.h (MonoGenericContext): New struct.
12288         (MonoGenericMethod): Removed `generic_inst'.
12289
12290         * class.c (mono_class_inflate_generic_method): Take a
12291         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
12292
12293 2004-03-25  Martin Baulig  <martin@ximian.com>
12294
12295         * loader.h (MonoMethodInflated): New typedef.
12296
12297         * metadata.h (MonoMethodSignature): Removed `gen_method', make
12298         `generic_param_count' consume just 30 bits, added `is_inflated'
12299         and `has_type_parameters' flags (one bit each).
12300
12301         * class.c (mono_class_inflate_generic_method): Create a
12302         MonoMethodInflated instead of a MonoMethodNormal and set
12303         `is_inflated' in the method signature.
12304
12305         * class.h (MonoGenericMethod): Removed `generic_method'.
12306
12307 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
12308
12309         * image.c: Make sure the name of a MonoImage is always an absolute path.
12310           This fixes bug #54415.
12311
12312 2004-03-24  Martin Baulig  <martin@ximian.com>
12313
12314         * class.c (mono_class_setup_vtable): If we're a generic instance,
12315         use our generic type's vtable size.
12316
12317 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
12318
12319         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
12320         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
12321         problems.
12322
12323 2004-03-23  Martin Baulig  <martin@ximian.com>
12324
12325         * class.h (MonoDynamicGenericInst): Added `int count_events' and
12326         `MonoEvent *events'.
12327
12328         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
12329         (typebuilder_icalls): Added "get_event_info"; calls
12330         mono_reflection_event_builder_get_event_info(). 
12331
12332         * reflection.c (mono_reflection_generic_inst_initialize): Added
12333         `MonoArray *events'.
12334         (mono_reflection_event_builder_get_event_info): New function.
12335
12336 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
12337
12338         * object.h: add mono_type_initialization_init
12339
12340         * object.c (mono_runtime_class_init): 
12341         implement class constructor synchronization rules
12342         to cope with threading issues.  
12343         add mono_type_initialization_init
12344
12345         * appdomain.c (mono_runtime_init): call 
12346         mono_type_initialization_init
12347
12348         * class.h: removing initializing field from MonoVTable
12349
12350 2004-03-23  Martin Baulig  <martin@ximian.com>
12351
12352         * class.c (my_mono_class_from_generic_parameter): Use
12353         `param->name' if it's not NULL. 
12354
12355 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
12356
12357         * class.c: do not insert non-virtual methods in the vtable.
12358         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
12359         that means the method is non-virtual. This never would have
12360         happened before.
12361
12362 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
12363
12364         * profiler.c: Added lock for accessing coverage_hash.
12365
12366 2004-03-22  Martin Baulig  <martin@ximian.com>
12367
12368         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
12369         `method->method->signature->generic_param_count != 0' to make it
12370         work for interface methods.
12371
12372 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12373
12374         * process.c: quote the string passed to the shell using g_shell_quote.
12375
12376 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12377
12378         * threads.c:
12379         (mono_threads_manage): don't remove the finalizer thread and self
12380         from the threads hash table so that mono_thread_manage can be called
12381         more than once.
12382
12383 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12384
12385         * process.c: quote the arguments when UseShellExecute is true. Fixes
12386         bug #55790.
12387
12388 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12389
12390         * threads.c: set mono_thread_detach as a cleanup routine for every
12391         thread. This way it's always executed upon thread termination, either
12392         aborted or finished normally. No more xsp hangs!
12393
12394 2004-03-17  Martin Baulig  <martin@ximian.com>
12395
12396         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
12397         `int count_nested' and a `MonoType **nested'.
12398
12399         * reflection.c (mono_reflection_bind_generic_parameters): Moved
12400         most of the functionality into a new static
12401         do_mono_reflection_bind_generic_parameters() and don't take a
12402         `MonoType *nested_in' argument any more.  Don't compute nested
12403         types here.
12404         (mono_reflection_generic_inst_get_nested_types): New public method
12405         to get nested types.
12406
12407         * class.c (mono_class_create_generic): Set `klass->nested_in' if
12408         we're a nested class.
12409
12410         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
12411         mono_reflection_generic_inst_get_nested_types() to compute the
12412         nested types.
12413
12414 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12415
12416         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
12417         descriptive error message under windows.
12418         
12419 2004-03-17  Martin Baulig  <martin@ximian.com>
12420
12421         * class.c (dup_type): Added `const MonoType *original' argument;
12422         copy the attrs from the original type.
12423
12424 2004-03-17  Martin Baulig  <martin@ximian.com>
12425
12426         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
12427         `m->generic_inst_cache' here.
12428
12429 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
12430
12431         * exception.h exception.c: Add stack_overflow_exception.
12432
12433 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12434
12435         * threadpool.c:
12436         (overlapped_callback): call SetEvent *after* invoking the callback.
12437         No need to call CloseHandle.
12438
12439 2004-03-16  Martin Baulig  <martin@ximian.com>
12440
12441         * reflection.c (mono_image_get_fieldref_token): Take a
12442         `MonoReflectionField *' instead of a `MonoClassField *' and a
12443         `MonoClass *'; store the `MonoReflectionField *' in the hash.
12444
12445 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12446
12447         * appdomain.c: don't add the culture to the filename we're looking for
12448         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
12449
12450 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12451
12452         * locales.c: don't ignore symbols when doing case insensitive compares.
12453         Thanks Dick! Fixes bug #54046.
12454
12455         * threads.c: surround 'threads' usage with enter/leave in
12456         mono_thread_manage.
12457
12458 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
12459
12460         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
12461         implicitly marshalled as [Out]. Fixes #55450.
12462
12463         (mono_marshal_get_runtime_invoke): Zero out the result if there is
12464         an exception.
12465
12466 2004-03-16  Martin Baulig  <martin@ximian.com>
12467
12468         * class.c (mono_class_from_generic_parameter): Use the actual
12469         parameter name. 
12470
12471 2004-03-16  Martin Baulig  <martin@ximian.com>
12472
12473         * reflection.c (type_get_signature_size): New static function.
12474         Compues the size of the type in a method signature.
12475         (method_get_signature_size): New static function; calls
12476         type_get_signature_size() to compute the actual size of the
12477         method's signature.
12478         (method_encode_signature): Use method_get_signature_size() to get
12479         the signature's size rather than using `nparams * 10'.
12480
12481 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12482
12483         * file-io.h: define here WapiOverlapped on windows. I don't want the
12484         regular OVERLAPPED one.
12485
12486         * file-io.c:
12487         * threadpool.c: somehow, BindIoCompletionCallback is not found.
12488         Disabling AIO on windows.
12489
12490 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12491
12492         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
12493         bug #55385.
12494
12495 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12496
12497         * appdomain.c: upgraded corlib version.
12498
12499         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
12500         and BeginWrite. Allow opening files for asynchrnous operations.
12501
12502         * file-io.h: new struct that maps FileStreamAsyncResult.
12503         * icall.c: added new icalls.
12504         * process.[ch]: support setting child process environment variables
12505         and use the SHELL or COMSPEC when UseShellExecute is true.
12506
12507         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
12508         callback for async. IO is here and also BindHandle.
12509
12510         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
12511         from here.
12512
12513 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
12514
12515         * reflection.c (create_custom_attr): Allow len == 0.
12516
12517         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
12518         computation on big-endian machines.
12519
12520 2004-03-13  Martin Baulig  <martin@ximian.com>
12521
12522         * class.h (MonoGenericInst): Added `int count_ifaces'.
12523
12524         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
12525         `ginst->count_ifaces' instead `klass->interface_count' since we
12526         may get called before the vtable is created.
12527
12528         * loader.c (mono_method_get_param_names): If we're a generic
12529         instance, return and don't initialize the class.
12530
12531         * reflection.c (mono_reflection_setup_generic_class): Don't call
12532         ensure_runtime_vtable().
12533         (mono_reflection_bind_generic_parameters): Set
12534         `ginst->count_ifaces'.
12535
12536 2004-03-11  Jackson Harper <jackson@ximian.com>
12537
12538         * icall.c:
12539         * unicode.c:
12540         * unicode.h: Remove unused System.Char icalls.
12541         
12542 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
12543
12544         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
12545         code when we P/Invoke the first library in Windows.Forms, instead
12546         of when we first open the assembly.
12547
12548         * assembly.c: Drop the lookup from here.
12549
12550 2004-03-10  Martin Baulig  <martin@ximian.com>
12551
12552         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
12553         class for properties, fields and events.  Finally fixes #54945.
12554
12555 2004-03-10  Martin Baulig  <martin@ximian.com>
12556
12557         * metadata.c (mono_metadata_class_equal): New static function;
12558         checks whether two generic instances or two generic parameters are
12559         equal.
12560         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
12561         compare classes.        
12562
12563 2004-03-10  Martin Baulig  <martin@ximian.com>
12564
12565         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
12566
12567         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
12568         argument and write it into the `reflection_info' field.
12569
12570         * icall.c
12571         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
12572         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
12573
12574 2004-03-09  Jackson Harper  <jackson@ximian.com>
12575
12576         * char-conversions.h: use 8 bits for numeric data its all we need
12577         * icall.c: numeric data is only 8 bits now.
12578
12579 2004-03-09  Martin Baulig  <martin@ximian.com>
12580
12581         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
12582
12583         * class.c (init_properties, init_events): Initialize the new
12584         `parent' field.
12585
12586         * reflection.c (typebuilder_setup_properties): Likewise.
12587         (typebuilder_setup_events): Likewise.
12588
12589         * reflection.h (MonoEventInfo): Replaced `parent with
12590         `declaring_type' and `reflected_type'.
12591
12592         * icall.c (ves_icall_get_property_info): Distinguish between
12593         declaring and reflected type.
12594         (ves_icall_get_event_info): Likewise.
12595
12596 2004-03-09  Martin Baulig  <martin@ximian.com>
12597
12598         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
12599         (ves_icall_Type_GetField): Correctly set field->klass.
12600
12601 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
12602
12603         * loader.h: Fix warning.
12604
12605 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
12606
12607         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
12608         library routine if present.  Notice that it will still continue
12609         executing even if its missing, for those working on the Gtk#
12610         edition of Windows.Forms.
12611
12612         * assembly.c (do_mono_assembly_open): If loading the
12613         System.Windows.Forms call mono_loader_wini_init.
12614
12615 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
12616
12617         * class.h: Added MonoRemoteClass struct.
12618         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
12619         function for MonoStrings.
12620         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
12621         Added internal call for getting the proxy type.
12622         * marshal.c: Get the type of transparent proxies from its remote_class.
12623         Added methods that generate the IL for type checks and casts:
12624         mono_marshal_get_isinst, mono_marshal_get_castclass, 
12625         mono_marshal_get_proxy_cancast.
12626         * marshal.h: Declaration of the previous new methods.
12627         * object.c: Added new moethods for creating and updating MonoRemoteClass
12628         instances: mono_remote_class, mono_upgrade_remote_class, 
12629         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
12630         * verify.c: FIx transparent_proxy_fields layout.
12631         * appdomain.c: Bump corlib version.
12632
12633 2004-03-04  Jackson Harper  <jackson@ximian.com>
12634
12635         * icall.c: Add icall to access char conversion tables.
12636         * char-conversions.h: Character conversion tables.
12637         * Makefile.am: Add char-conversions.h private header file.
12638         
12639 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
12640
12641         * appdomain.c (unload_thread_main): Increase unloading timeout to
12642         10 sec as a temporary workaround for Nant problems.
12643
12644 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
12645
12646         * gc.c: Add checks for GC_enable and GC_disable.
12647
12648         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
12649         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
12650         (bug #54988).
12651         
12652 2004-02-27  Martin Baulig  <martin@ximian.com>
12653
12654         * reflection.c (mono_reflection_bind_generic_parameters): Take a
12655         `MonoReflectionType *' instead of a `MonoType *'.
12656
12657 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
12658
12659         * gc.c (run_finalize): Avoid finalizing the object representing the
12660         finalizer thread.
12661         (finalizer_thread): Fix warning.
12662
12663 2004-02-25  Martin Baulig  <martin@ximian.com>
12664
12665         * class.c (_mono_class_get_instantiation_name): Added `int offset'
12666         argument for nested types.
12667         (mono_class_create_generic): Added support for nested generictypes.
12668
12669         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
12670         `GList *nested'.
12671
12672         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
12673
12674         * reflection.c (method_encode_signature): Increase the minimum
12675         value of `size' from 10 to 11.
12676         (mono_reflection_bind_generic_parameters): Take `int type_argc'
12677         and `MonoType **types' arguments instead of the `MonoArray
12678         *types'; added `MonoType *nested_in'.  Recursively instantiate
12679         nested classes. 
12680
12681 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
12682
12683         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
12684         stack_overflow_ex members which are used by exception handling.
12685
12686         * appdomain.c (mono_runtime_init): Initialize the new members.
12687
12688         * gc.c (mono_gc_enable): New helper function.
12689         * gc.c (mono_gc_disable): New helper function.
12690
12691 2004-02-23  Martin Baulig  <martin@ximian.com>
12692
12693         * icall.c: I must have been really stupid - make it actually work
12694         this time ;-)
12695
12696 2004-02-23  Martin Baulig  <martin@ximian.com>
12697
12698         * loader.c (method_from_memberref): Only inflate the method if
12699         it's in another klass.
12700
12701 2004-02-23  Martin Baulig  <martin@ximian.com>
12702
12703         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
12704         (mono_class_init): If we're a generic instance and an interface,
12705         compute `class->interface_id'; also create `class->interfaces'
12706         here and inflate them.
12707
12708         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
12709         `ginst->is_open'.
12710         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
12711
12712         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
12713
12714 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
12715
12716         * reflection.c (method_encode_code): Improved the error message
12717         generated by the exception.
12718
12719 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12720
12721         * icall.c: Martin did not do what he said in the ChangeLog for
12722         2004-02-18, but put back the changes for properties and events.
12723         Commenting those changes out again and adding comment to bug #54518.
12724         
12725         * process.c: removed warning.
12726
12727 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
12728
12729         * marshal.c (emit_struct_conv): Print an error message instead of
12730         asserting when a type does not have the StructLayout attribute.
12731
12732 2004-02-20  Martin Baulig  <martin@ximian.com>
12733
12734         * reflection.c (mono_type_get_object): Also use the cache for
12735         generic instances.
12736         (mono_reflection_bind_generic_parameters): Always compute
12737         `ginst->ifaces'.        
12738
12739 2004-02-20  Martin Baulig  <martin@ximian.com>
12740
12741         * class.h (MonoGenericMethod): Removed `klass'.
12742
12743         * class.c (mono_class_inflate_generic_method): Added `MonoClass
12744         *klass' argument.
12745
12746 2004-02-20  Martin Baulig  <martin@ximian.com>
12747
12748         * reflection.c (method_encode_methodspec): Actually use the
12749         uninflated signature for the memberref.
12750
12751 2004-02-20  Martin Baulig  <martin@ximian.com>
12752
12753         * class.h (MonoGenericMethod): Removed `declaring'.
12754
12755         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
12756         is NULL, compute it here.
12757
12758 2004-02-20  Martin Baulig  <martin@ximian.com>
12759
12760         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
12761
12762         * metadata.c (mono_metadata_generic_inst_hash): New method.
12763         (mono_metadata_generic_inst_equal): New method.
12764
12765         * reflection.c (mono_reflection_bind_generic_parameters): Use the
12766         `klass->image->generic_inst_cache' cache to avoid creating
12767         duplicate MonoGenericInst's.
12768
12769         * class.c (mono_class_inflate_generic_type): Use the cache.
12770
12771 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12772
12773         * object.c: fixed gc descriptor calculation for embedded valuetypes.
12774
12775 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12776
12777         * icall.c: added Socket.WSAIoctl icall.
12778
12779         * socket-io.[ch]: implemented
12780         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
12781
12782 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
12783
12784         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
12785
12786 2004-02-18  Urs C Muff  <umuff@quark.com>
12787
12788         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
12789         this work on PPC and other big-endian architectures.
12790
12791         * debug-mono-symfile.h: Prepended the names of all the `guint32'
12792         fields with an underscore to make sure they're only accessed by
12793         the read32() macro.
12794
12795 2004-02-18  Martin Baulig  <martin@ximian.com>
12796
12797         * icall.c: Put the klass->refclass changes back for methods and
12798         fields, but not for properties and events.  We're currently not
12799         distinguishing between DeclaringType and ReflectedType for
12800         properties and events, that's what caused the regressions.
12801
12802 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12803
12804         * object.c:
12805         (mono_async_result_new): the handle can be NULL.
12806
12807         * threadpool.c: Use an event instead of a semaphore, don't initialize
12808         it until needed. This saves quite a few semaphores from being created
12809         when using the threadpool.
12810
12811 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
12812
12813         * object.c (mono_string_is_interned_lookup): Fix interning of long
12814         strings. Fixes #54473.
12815
12816         * domain.c (ldstr_equal): Optimize if the two strings are equal.
12817
12818         * icall.c: Revert the klass->refclass changes since they introduce
12819         regressions (bug #54518).
12820
12821 2004-02-18  Martin Baulig  <martin@ximian.com>
12822
12823         * class.c (mono_class_init): If we're a generic instance and don't
12824         come from a TypeBuilder, inflate our members here.
12825         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
12826         (mono_class_create_generic): New public method.
12827         (mono_class_initialize_generic): Removed.
12828         (get_instantiation_name): Renamed to
12829         _mono_class_get_instantiation_name() and made it public.
12830
12831 2004-02-18  Martin Baulig  <martin@ximian.com>
12832
12833         * class.c (mono_class_inflate_generic_type): Clear the new
12834         instance's `nginst->klass' when inflating a generic instance.
12835         (mono_class_is_subclass_of): Added (basic) support for generic
12836         instances.
12837
12838 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
12839
12840         * appdomain.h, domain.c: use a MonoCodeManager instead of a
12841         MonoMempool to hold compiled native code.
12842
12843 2004-02-17  Martin Baulig  <martin@ximian.com>
12844
12845         * class.h (MonoDynamicGenericInst): Added `count_properties' and
12846         `properties'.
12847
12848         * reflection.c (mono_reflection_generic_inst_initialize): Added
12849         `MonoArray *properties' argument.
12850
12851         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
12852
12853 2004-02-17  Martin Baulig  <martin@ximian.com>
12854
12855         * icall.c (ves_icall_Type_GetFields): Renamed to
12856         ves_icall_Type_GetFields_internal() and added a
12857         `MonoReflectionType *rtype' argument; pass it to
12858         mono_field_get_object() to set the field's "reflected" type.
12859         (ves_icall_Type_GetConstructors): Likewise.
12860         (ves_icall_Type_GetEvents): Likewise.
12861         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
12862         argument; pass it to mono_method_get_object() to set the method's
12863         "reflected" type.       
12864
12865 2004-02-17  Martin Baulig  <martin@ximian.com>
12866
12867         * class.h (MonoDynamicGenericInst): New type.
12868         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
12869
12870         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
12871         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
12872         (ves_icall_MonoGenericInst_GetFields): New interncall.
12873
12874         * class.c (mono_class_from_generic): Don't call
12875         mono_class_initialize_generic() if this is a dynamic instance;
12876         ie. it's being created from a TypeBuilder.
12877         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
12878         `class->byval_arg.type'.
12879
12880         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
12881         to `inflate_method' and made static.
12882         (mono_reflection_inflate_field): Removed.
12883         (mono_reflection_generic_inst_initialize): New public method.
12884
12885         * reflection.h (MonoReflectionGenericInst): Removed `methods',
12886         `ctors' and `fields'; added `initialized'.
12887
12888 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
12889
12890         * debug-helpers.c (mono_method_full_name): Fix output for empty
12891         namespaces.
12892
12893 2004-02-12  Martin Baulig  <martin@ximian.com>
12894
12895         * class.h (MonoClassField): Added `MonoType *generic_type'.
12896
12897         * reflection.c (mono_image_get_fieldref_token): Added support for
12898         instantiated generic types.
12899         (field_encode_inflated_field): Removed.
12900         (mono_image_get_inflated_field_token): Removed.
12901         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
12902
12903         * reflection.h (MonoReflectionInflatedField): Removed.
12904
12905 2004-02-12  Martin Baulig  <martin@ximian.com>
12906
12907         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
12908         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
12909
12910         * reflection.c (mono_image_get_methodspec_token): Take a
12911         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
12912         (mono_image_create_token): Check whether we have a
12913         `method->signature->gen_method' and call
12914         mono_image_get_methodspec_token() if appropriate.
12915         (inflated_method_get_object): Removed.
12916         (mono_reflection_bind_generic_method_parameters): Return a
12917         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
12918         (mono_reflection_inflate_method_or_ctor): Likewise.
12919
12920         * reflection.h (MonoReflectionInflatedMethod): Removed.
12921
12922 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
12923
12924         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
12925         for custom valuetype marshalling.
12926
12927         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
12928
12929 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
12930
12931         * icall.c: fixed WSAGetLastError_internal name.
12932
12933 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
12934
12935         * threads.c (mono_thread_attach): Allow this to be called multiple
12936         times for a thread.
12937         
12938         * threads.c (build_wait_tids): Do not wait for ourselves.
12939
12940         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
12941         appdomain list is empty.
12942
12943         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
12944         memory returned by mono_string_builder_to_utf16, since it points into
12945         managed memory. Thanks to Bernie Solomon for noticing this.
12946
12947         * icall.c: Add AppDomainSetup icalls.
12948
12949         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
12950
12951         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
12952         types.
12953
12954         * reflection.c (reflection_methodbuilder_to_mono_method): Save
12955         custom attributes to the method_aux struct. Also fix array indexes etc.
12956
12957         * loader.c (mono_method_get_param_names): Make dynamic case work again.
12958         
12959 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
12960
12961         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
12962         (both static and runtime) and reduce startup time.
12963
12964 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
12965
12966         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
12967         AsAny marshalling conversion instead of crashing.
12968
12969         * marshal.c: Fix warnings.
12970
12971 2004-02-09  Martin Baulig  <martin@ximian.com>
12972
12973         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
12974
12975         * reflection.h (MonoReflectionInflatedMethod): Removed the
12976         `declaring' field, it's now in the unmanaged MonoGenericMethod.
12977
12978         * reflection.c (method_encode_methodspec): Removed the `method'
12979         argument; we get it from `gmethod->declaring'.
12980         (inflated_method_get_object): Removed the `declaring' argument.
12981
12982 2004-02-09  Martin Baulig  <martin@ximian.com>
12983
12984         * class.h (MonoGenericMethod): New type.
12985         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
12986         `generic_method'.
12987
12988         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
12989         a `MonoGenericMethod *gen_method' one.
12990
12991         * class.c (mono_class_inflate_generic_type): Take an additional
12992         `MonoGenericMethod * argument.  This is only non-NULL if we're
12993         inflating types for a generic method.   
12994         (mono_class_inflate_generic_signature): Renamed to
12995         inflate_generic_signature() and made static; take a
12996         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
12997         (inflate_generic_header): Take a `MonoGenericMethod *' argument
12998         instead of a `MonoGenericInst *' one.
12999         (mono_class_inflate_generic_method): Likewise.
13000
13001         * reflection.c (encode_generic_method_sig): Take a
13002         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
13003         (method_encode_methodspec): Likewise.
13004         (inflated_method_get_object): Likewise. 
13005
13006         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
13007         field with a `MonoGenericMethod *gmethod' one.  
13008
13009 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
13010
13011         * class.h (mono_class_has_parent): add parens to expansion
13012         so you can ! this.
13013
13014 2004-02-08  Martin Baulig  <martin@ximian.com>
13015
13016         * image.h (MonoImage): Removed `generics_cache'.
13017
13018         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
13019         instead of a `MonoType *' argument; removed the `inflate_methods'
13020         argument.  Don't inflate methods here.
13021
13022         * loader.c (find_method): If it's a generic instance, call
13023         mono_class_init() on the `sclass->generic_inst->generic_type'.
13024
13025         * metadata.c (mono_type_size): Make this work on uninitialized
13026         generic instances; call it on the `ginst->generic_type's class.
13027
13028         * reflection.c (mono_reflection_bind_generic_parameters): Call
13029         mono_class_from_generic() to create the `ginst->klass'.
13030
13031 2004-02-08  Martin Baulig  <martin@ximian.com>
13032
13033         * class.h (MonoClass): Changed type of `generic_inst' from
13034         `MonoType *' to `MonoGenericInst *'.
13035
13036 2004-02-08  Martin Baulig  <martin@ximian.com>
13037
13038         * icall.c (ves_icall_Type_BindGenericParameters): Just call
13039         mono_type_get_object(), this is now creating a `MonoGenericInst'
13040         for MONO_TYPE_GENERICINST.
13041         (ves_icall_MonoGenericInst_GetParentType): Likewise.
13042         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
13043
13044         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
13045         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
13046         (inflated_method_get_object): Added `MonoClass *refclass' argument.
13047         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
13048         and reflected type.
13049
13050         * reflection.h (MonoReflectionInflatedMethod): Removed
13051         `declaring_type' and `reflected_type'.
13052
13053 2004-02-08  Martin Baulig  <martin@ximian.com>
13054
13055         * class.h (MonoGenericInst): Added `MonoType *parent' and
13056         `MonoType **ifaces'.
13057
13058         * reflection.h (MonoReflectionGenericInst): Removed `klass',
13059         `parent' and `interfaces'.
13060
13061         * reflection.c (mono_reflection_bind_generic_parameters): Take a
13062         `MonoType *' argument and return a `MonoType *'.
13063
13064         * icall.c
13065         (ves_icall_MonoGenericInst_GetParentType): New interncall.
13066         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
13067
13068 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13069
13070         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
13071         valuetype marshalling.
13072
13073 2004-02-06  Martin Baulig  <martin@ximian.com>
13074
13075         * class.c
13076         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
13077         (my_mono_class_from_generic_parameter): Likewise.
13078
13079 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
13080
13081         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
13082         contents of the symbol files lazily.
13083
13084         * object.h (MonoThread): Add 'name' and 'name_len' fields.
13085
13086         * threads.h threads.c icall.c: New icalls for getting and setting the
13087         threads name.
13088
13089 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
13090
13091         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
13092         Raise an exception when the domain is not found.
13093
13094 2004-02-03  Martin Baulig  <martin@ximian.com>
13095
13096         * reflection.c (mono_image_get_methodspec_token): Use the
13097         uninflated signature; fixes gen-33.
13098
13099 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
13100
13101         * gc.c threads.c: Make the finalizer thread a normal managed thread so
13102         the finalizer code can use thread functionality.
13103
13104         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
13105         the finalizer thread.
13106
13107         * threads.c: Make some functions more robust.
13108
13109         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
13110
13111         * metadata.h: Add new marshalling conventions.
13112
13113         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
13114         stringbuilder marshalling. Fixes #53700.
13115
13116         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
13117
13118         * reflection.c (mono_image_get_type_info): Save declarative security
13119         info.
13120
13121         * reflection.c (mono_image_get_field_info): Handle uninitialized 
13122         unmanaged fields as well.
13123
13124         * appdomain.c: Bump corlib version.
13125
13126 2004-02-01  Martin Baulig  <martin@ximian.com>
13127
13128         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
13129         method type arguments.  
13130
13131 2004-01-30  Duncan Mak  <duncan@ximian.com>
13132
13133         * marshal.h: Add prototype for
13134         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
13135         and
13136         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
13137         fix the build.
13138
13139 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
13140
13141         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
13142         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
13143
13144 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13145
13146         * marshal.c (mono_marshal_get_native_wrapper): Add support for
13147         custom marshalling of valuetypes.
13148
13149         * marshal.c: Fix some warnings.
13150
13151 2004-01-29  Martin Baulig  <martin@ximian.com>
13152
13153         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
13154         for generic method parameters.
13155
13156         * reflection.c (method_encode_methodspec): Write the uninflated
13157         signature into the methodspec table.
13158         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
13159         is always the uninflated method.
13160         (reflection_methodbuilder_to_mono_method): Copy the generic
13161         parameters from the MethodBuilder into `header->gen_params'.
13162
13163 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
13164
13165         * class.c (mono_class_from_generic_parameter): Fix warning.
13166
13167 2004-01-27  Martin Baulig  <martin@ximian.com>
13168
13169         * class.c (mono_class_from_generic_parameter): Don't create
13170         `klass->methods' here.  
13171
13172 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
13173
13174         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
13175         extension since it does not work with libraries named lib<FOO>.dll.so.
13176
13177 2004-01-25  Martin Baulig  <martin@ximian.com>
13178
13179         * class.c (mono_class_inflate_generic_type): Added support for
13180         MONO_TYPE_GENERICINST.
13181
13182         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
13183         inflate methods on open constructed types.      
13184
13185 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13186
13187         * object.c: fire ProcessExit event in the root AppDomain after running
13188         Main. Fixes bug #53299.
13189
13190 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
13191
13192         * socket-io.c: include the new socket-wrappers.h header.
13193         Use the wrappers instead of the unix socket functions to make the code
13194         more clear.
13195
13196 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
13197
13198         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
13199
13200         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13201         Fixes #22532.
13202
13203 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
13204
13205         * reflection.c (mono_image_create_pefile): Handle the case when the
13206         entry point is not a MethodBuilder.
13207
13208         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13209         field to ReflectionMethod since it is not allways a builder.
13210
13211         * reflection.c (type_get_fully_qualified_name): New helper function to
13212         return the fully qualified name of a type.
13213
13214         * reflection.c (encode_marshal_blob): Always emit the fully qualified
13215         type name for custom marshallers.
13216
13217         * reflection.c (mono_marshal_spec_from_builder): Ditto.
13218
13219         * class.c (mono_class_setup_vtable): If a parent class already 
13220         implements an interface, use the implementing methods from that class.
13221         Fixes #53148.
13222
13223 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13224
13225         * threadpool.c: just return instead of ExitThread to allow for thread
13226         clean up earlier.
13227
13228 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
13229
13230         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
13231         when closing resource modules.
13232
13233         * reflection.c (mono_image_create_pefile): Handle the case when the
13234         entry point is not a MethodBuilder.
13235
13236         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
13237         field to ReflectionMethod since it is not allways a builder.
13238
13239 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
13240
13241         * marshal.c (mono_marshal_get_managed_wrapper): 
13242         mono_marshal_alloc takes native int so CONV_I
13243         the arg for 64bits.
13244
13245 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
13246
13247         * reflection.c (fixup_cattrs): New function to fixup the methoddef
13248         tokens in the cattr table. Fixes #53108.
13249
13250 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13251
13252         * loader.c: don't trim ".dll" before looking up in the config file.
13253         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
13254
13255 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
13256
13257         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
13258         Return the module which contains the resource as well.
13259         (ves_icall_System_Reflection_Module_Close): New icall.
13260
13261         * appdomain.c: Bump corlib version number.
13262
13263         * image.c (mono_image_addref): New public function.
13264
13265         * assembly.c: Call mono_image_addref.
13266
13267         * reflection.c (mono_module_get_object): Increase reference count of 
13268         the image.
13269
13270         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
13271         Fixes #22532.
13272
13273         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
13274         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
13275         proper exceptions on DllImport problems.
13276
13277 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
13278
13279         * class.c, metadata.c: eliminate CSIZE macro.
13280
13281 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
13282
13283         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
13284         * object.h: Added async_callback field in MonoAsyncResult.
13285         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
13286         * verify.c: Added async_callback in MonoAsyncResult layout.
13287
13288 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
13289
13290         * reflection.c (mono_reflection_get_custom_attrs): Add support
13291         for Modules.
13292
13293 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13294
13295         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
13296         marshalling.
13297         (mono_marshal_method_from_wrapper): Add null pointer check.
13298
13299 2004-01-16  Martin Baulig  <martin@ximian.com>
13300
13301         * debug-mono-symfile.h: Set version number to 36 and reflect
13302         latest symbol writer changes.
13303
13304 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
13305
13306         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
13307         multi-dimensional arrays.
13308         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
13309         (mono_class_from_mono_type): Use bounded_array_class_get.
13310         
13311         * class.c (mono_bounded_array_class_get): New function which takes
13312         a 'bounded' bool argument to distinguish vectors from one dimensional
13313         arrays.
13314
13315         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
13316         bounded_array_class_get if the array has bounds.
13317
13318         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13319         Search modules loaded using AssemblyBuilder:AddModule as well.
13320
13321 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13322
13323         * appdomain.c: increased corlib version.
13324         * filewatcher.c: removed g_print.
13325         * icall.c:
13326         (get_property_info): only allocate what is actually requested.
13327         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
13328
13329 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13330
13331         * Makefile.am: added filewatcher.[ch]
13332         * filewatcher.[ch]: FileSystemWatcher runtime support.
13333         * icall.c: added new FSW icalls.
13334
13335 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
13336
13337         * string-icalls.c: fix stringbuilder regression as suggested by
13338         Iain McCoy <iain@mccoy.id.au>.
13339
13340 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
13341
13342         * process.c (process_read_stringtable_block): Recognize '007f' as
13343         a language neutral stringtable block.
13344
13345 2004-01-12  Patrik Torstensson
13346
13347         * object.h (MonoStringBuilder) : Changed layout to support our
13348         new stringbuilder class.
13349         * marshal.c: Change marshalling to support the new layout of 
13350         string builder.
13351         * appdomain.c: increased version number because new layout of
13352         string builder.
13353
13354 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
13355
13356         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
13357         assembly name as an string instead of an AssemblyName, since it is
13358         easier to extract info from it.
13359
13360         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
13361         the culture subdirectories too. Fixes #52231.
13362
13363 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13364
13365         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
13366         It takes 2 new parameters with an optional name for the method to look
13367         for and case ignoring info.
13368
13369         * threadpool.c: removed unused variable.
13370
13371 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13372
13373         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
13374         It takes 2 new parameters with an optional name for the property to look
13375         for and case ignoring info.
13376         Fixes bug #52753.
13377
13378 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
13379
13380         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
13381         Fix #52451.
13382
13383 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13384
13385         * appdomain.c:
13386         * assembly.c: escape the uri before passing it to g_filename_from_uri.
13387         Fixes bug #52630.
13388
13389 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
13390
13391         * reflection.c: Add support for more than one unmanaged resource.
13392
13393         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
13394         in field->def_value, as done in all other cases.
13395
13396         * reflection.c (mono_reflection_get_custom_attrs): Add support for
13397         TypeBuilders.
13398
13399         * reflection.c (mono_reflection_create_runtime_class): Remove 
13400         errorneous assignment to klass->element_class, since it is already
13401         done in mono_reflection_setup_internal_class.
13402
13403 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13404
13405         * gc.c: added missing LeaveCriticalSection.
13406         * icall.c: indented a couple of lines.
13407         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
13408         if we call EndInvoke inside a callback. Fixes bug #52601.
13409
13410 2004-01-07  Martin Baulig  <martin@ximian.com>
13411
13412         * mono-debug-debugger.h
13413         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
13414
13415 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
13416
13417         * appdomain.c: Use messages in NotImplementedException.
13418
13419         * exception.c (mono_get_exception_not_implemented): Now this takes
13420         a message argument.
13421
13422         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
13423         exception instead of g_asserting an aborting when something is not
13424         implemented.
13425
13426         Add some inline docs.
13427
13428 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
13429
13430         * reflection.h: Update after changes to object layout.
13431
13432         * reflection.c: Implement saving of unmanaged aka win32 resources.
13433
13434         * appdomain.c: Bump version number.
13435
13436         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
13437         Handle missing domains gracefully.
13438
13439 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
13440
13441         * file-io.c : On Windows, there are much more invalid_path_chars.
13442
13443 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
13444
13445         * class.h, object.c: prepare for GetType () speedup.
13446
13447 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
13448
13449         * profiler.c: workaround for --profile null reference exception on
13450           cygwin. Patch by Patrik Torstensson.
13451
13452 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
13453
13454         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
13455         make work for unaligned access.
13456
13457 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
13458
13459         * class.c: small cleanup (class->fields [i] -> field).
13460         * image.c: check address of metadata is valid.
13461
13462 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
13463
13464         * assembly.h assembly.c (mono_assembly_loaded): New public function to
13465         search the list of loaded assemblies.
13466
13467         * reflection.c (mono_reflection_type_from_name): Use 
13468         mono_assembly_loaded instead of mono_image_loaded.
13469
13470         * reflection.c: Fix warnings.
13471
13472 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
13473
13474         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
13475         is dynamic. This is needed since an assembly can contain both dynamic and
13476         non-dynamic images.
13477
13478         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
13479         assembly->dynamic.
13480
13481         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
13482
13483         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
13484         to store modules loaded using AddModule.
13485
13486         * reflection.c (mono_image_fill_file_table): Generalize this so it works
13487         on Modules.
13488
13489         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
13490
13491         * reflection.c (mono_image_fill_export_table_from_module): New function to
13492         fill out the EXPORTEDTYPES table from a module.
13493
13494         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
13495         into a separate function. Also handle loaded non-dynamic modules.
13496
13497         * reflection.c (mono_image_basic_init): Fix memory allocation.
13498
13499         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13500
13501         * assembly.c (mono_assembly_load_references): Make this public.
13502
13503 2003-12-19  Martin Baulig  <martin@ximian.com>
13504
13505         * class.c (mono_class_initialize_generic): Made this static, take
13506         a `MonoGenericInst *' instead of a `MonoClass *'.
13507         (mono_class_from_generic): Call mono_class_initialize_generic()
13508         unless we're already initialized or being called from
13509         do_mono_metadata_parse_generic_inst().
13510
13511         * class.h (MonoGenericInst): Added `initialized' and
13512         `init_pending' flags.
13513
13514         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
13515         `mono_class_init (gklass)' or mono_class_initialize_generic()
13516         here; set `generic_inst->init_pending' while parsing the
13517         `type_argv'.
13518
13519 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
13520
13521         * locales.c: include string.h for memxxx prototypes
13522
13523 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
13524
13525         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
13526         constructor when accessing literal fields.
13527
13528 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
13529
13530         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
13531
13532         * reflection.c (assembly_add_resource_manifest): New function to fill
13533         the MANIFESTRESOURCE table.
13534
13535         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
13536
13537         * reflection.h: Update to changes in class layout.
13538
13539         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
13540         Reenable call to mono_runtime_is_shutting_down ().
13541
13542         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
13543         determine if the runtime is shutting down.
13544
13545 2003-12-16  Jackson Harper <jackson@ximian.com>
13546
13547         * icall.c: comment out call to mono_runtime_is_shutting_down to
13548         fix build.
13549         
13550 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
13551
13552         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
13553         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
13554
13555 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
13556
13557         * reflection.c: move definition of swap_with_size
13558         to before its first call
13559
13560 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
13561
13562         * appdomain.c (mono_runtime_is_shutting_down): New public function.
13563
13564         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
13565         icall.
13566
13567         * object.c: Fix warnings.
13568
13569         * icall.c (ves_icall_Type_Get...): Only consider inherited static
13570         members if FlattenHierarchy is set.
13571
13572         * reflection.c (mono_image_add_decl_security): New function to emit
13573         declarative security.
13574
13575         * reflection.h reflection.c: Add support for declarative security.
13576
13577         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13578         
13579 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
13580
13581         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
13582         
13583         * appdomain.c verify.c: Moved corlib version checking into its own
13584         function in appdomain.c since it needs to create vtables etc.
13585
13586 2003-12-13  Patrik Torstensson <p@rxc.se>
13587
13588         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
13589         instead of unwrapped server.
13590
13591 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
13592
13593         * verify.c (check_corlib): Fix field index.
13594
13595 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
13596
13597         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
13598         GetGacPath icall.
13599
13600 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
13601
13602         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
13603         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
13604         cope with sizeof(size_t) != sizeof(guint32).
13605
13606 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13607
13608         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
13609         in case of failure.
13610
13611 2003-12-10  Mark Crichton <crichton@gimp.org>
13612
13613         * icall.c: removed the GetNonZeroBytes.  We now handle this case
13614         in managed code.
13615
13616         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
13617
13618 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
13619
13620         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
13621         marked as deleted.
13622
13623 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
13624
13625         * verify.c (check_corlib): Handle the case when the version field is 
13626         initialized by a static constructor.
13627
13628 2003-12-08  Patrik Torstensson  <p@rxc.se>
13629
13630     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
13631
13632 2003-12-08  Martin Baulig  <martin@ximian.com>
13633
13634         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
13635         a MonoReflectionGenericParameter, also take the parameter index
13636         and name as arguments.
13637         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
13638         (ves_icall_MonoGenericParam_initialize): New interncall.
13639         (ves_icall_Type_make_byref_type): New interncall.
13640
13641         * reflection.h (MonoReflectionGenericParam): Derive from
13642         MonoReflectionType, not just from MonoObject.  Added `refobj' and
13643         `index' fields.
13644
13645         * reflection.c (mono_reflection_define_generic_parameter): Create
13646         and return a new MonoReflectionGenericParam; don't initialize the
13647         constraints here.
13648         (mono_reflection_initialize_generic_parameter): New public method;
13649         initializes the constraints and creates the `param->pklass'.
13650
13651 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
13652
13653         * reflection.h reflection.c: Use the new fields 'num_types', 
13654         'num_fields' and 'num_methods' to track the number of types etc.
13655
13656         * verify.c (check_corlib): Check corlib version number.
13657
13658 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
13659
13660         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
13661         function works on all methods.
13662
13663 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
13664
13665         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
13666         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
13667         the custom_type_info flag of the transparent proxy.
13668         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
13669         objects that supports IRemotingTypeInfo.
13670         * object.h: Added custom_type_info field in transparent proxy.
13671
13672 2003-12-06  Martin Baulig  <martin@ximian.com>
13673
13674         * class.c (mono_class_create_from_generic): Removed.
13675         (mono_class_from_generic): Check `ginst->klass' before doing
13676         anything else.  This is important to fully support "recursive"
13677         generic types.
13678
13679         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
13680         empty `generic_inst->klass' before doing anything else.
13681
13682 2003-12-06  Dick Porter  <dick@ximian.com>
13683
13684         * verify.c: 
13685         * object.h:
13686         * icall.c:
13687         * locales.c: Use C structs to access class fields.  Don't do a
13688         conversion between MonoString and UChar because both are
13689         platform-endian UTF-16.  Compare now takes startindex and count
13690         parameters.  Add a char overload for IndexOf.  Speed up the
13691         invariant string IndexOf.
13692
13693 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
13694
13695         * Makefile.am (monosn_LDADD): Fix parallel build.
13696
13697 2003-12-04  Martin Baulig  <martin@ximian.com>
13698
13699         * icall.c
13700         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
13701         (ves_icall_Type_make_array_type): New interncall.       
13702
13703 2003-12-04  Martin Baulig  <martin@ximian.com>
13704
13705         * locales.c: also change it in the !HAVE_ICU case.
13706
13707 2003-12-04  Dick Porter  <dick@ximian.com>
13708
13709         * icall.c:
13710         * locales.c: construct_compareinfo is now in CompareInfo, not
13711         CultureInfo.
13712
13713 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
13714
13715         * image.c (mono_image_load_file_for_image): Cache loaded images in the
13716         image->files array.
13717
13718         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
13719         table as well.
13720
13721         * assembly.c (mono_assembly_load_references): Only load references
13722         once.
13723
13724         * class.c (mono_class_from_name): Avoid linear search of the 
13725         EXPORTEDTYPE table.
13726
13727         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
13728
13729 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
13730
13731         * image.h (MonoImage): Add 'field_cache' field.
13732
13733         * loader.c (mono_field_from_token): Cache field lookups.
13734         
13735         * reflection.c (mono_module_get_object): Fix name property.
13736
13737         * icall.c (ves_icall_get_enum_info): Update after changes to 
13738         mono_metadata_get_constant_index ().
13739
13740         * icall.c: Get rid of get_type_info icall, use a separate icall for
13741         each type property to avoid needless memory allocations. Fixes #51514.
13742
13743         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
13744         to avoid needless binary searches.
13745
13746         * class.c (class_compute_field_layout): Move the initialization of
13747         field->def_value to mono_class_vtable ().
13748
13749         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
13750         non-corlib types.
13751
13752         * object.c (mono_object_allocate): Make it inline.
13753
13754         * object.c (mono_object_allocate_spec): Make it inline.
13755         
13756 2003-12-02  Dick Porter  <dick@ximian.com>
13757
13758         * locales.c (create_NumberFormat): NumberFormatInfo construction.
13759         Patch by Mohammad DAMT (mdamt@cdl2000.com).
13760
13761 2003-12-01  Dick Porter  <dick@ximian.com>
13762
13763         * threads.c: Fix signature and call in CreateMutex and
13764         CreateEvent.
13765
13766 2003-12-01  Dick Porter  <dick@ximian.com>
13767
13768         * icall.c: 
13769         * locales.c: Implement string compares and searching
13770
13771         * object.h: Add extra Thread field
13772
13773 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
13774
13775         * reflection.c (fixup_method): Add support for MonoCMethod.
13776
13777 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
13778
13779         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
13780
13781         * reflection.c (assembly_name_to_aname): Allow extra characters in
13782         assembly names. Fixes #51468.
13783
13784 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
13785
13786         * exception.c (mono_exception_from_name_domain): New helper function.
13787
13788         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
13789         exception object in the correct domain.
13790
13791         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
13792         formatting + make a copy a the input data.
13793
13794         * loader.c (mono_get_method_from_token): Methods which contain
13795         native code do not have entries in the ImplMap.
13796
13797         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
13798         Thanks to Gonzalo for spotting this.
13799         
13800         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
13801         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
13802
13803         * assembly.h (mono_assembly_load_from): Split the second part of 
13804         assembly loading into a new public function.
13805
13806         * exception.h (mono_get_exception_bad_image_format): New function.
13807
13808 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
13809
13810         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
13811         Enumerate all modules inside a dynamic assembly. Fixes #51293.
13812         
13813         * icall.c: Add new icall for creating dynamic methods.
13814
13815         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
13816
13817         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
13818
13819         * reflection.c (mono_reflection_create_dynamic_method): New icall to
13820         create a dynamic method.
13821
13822         * reflection.c (resolve_object): New helper function.
13823
13824         * reflection.c: Generalize ReflectionMethodBuilder and the functions
13825         which manipulate it so they can also work on dynamic methods.
13826
13827         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
13828         creating the MonoReflectionMethodAux structure if it is not needed.
13829         
13830         * reflection.h verify.c: Update after changes to object layout.
13831
13832         * reflection.c (method_builder_encode_signature): Fix compilation on
13833         gcc 2.95.x.
13834
13835 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
13836
13837         * appdomain.h: Added support for context static fields. Added static_data
13838           field to MonoAppContext and renamed thread_static_fields to a more
13839           generic special_static_fields in MonoAppDomain, since it can now contain
13840           context static fields.
13841         * domain.c: Updated hashtable name.
13842         * object.c: Replaced field_is_thread_static() for a more generic
13843           field_is_special_static() which also checks for context static attribute.
13844           In mono_class_vtable(), added support for static context fields.
13845         * threads.c: Changed methods that manage thread static fields to more
13846           generic methods so they can be reused both for thread and context static
13847           data.
13848         * threads.h: Declared some new methods.
13849
13850 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
13851
13852         * reflection.h: Update after changes to the managed types.
13853
13854         * reflection.c (encode_custom_modifiers): New helper function.
13855
13856         * reflection.c (method_encode_signature): Emit custom modifiers.
13857
13858         * reflection.c (field_encode_signature): Emit custom modifiers.
13859
13860 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
13861
13862         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
13863
13864         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
13865         implementation.
13866
13867         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
13868         icall.
13869
13870         * object.c (mono_field_get_value_object): New function.
13871
13872         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
13873         specific.
13874
13875 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
13876
13877         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
13878         return a preallocated out-of-memory exception instance.
13879
13880         * object.c (out_of_memory): Use the new function.
13881
13882         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
13883         flag is before the custom modifiers. Fixes #49802.
13884
13885 2003-11-16  Martin Baulig  <martin@ximian.com>
13886
13887         * class.c (mono_class_is_open_constructed_type): Implemented the
13888         MONO_TYPE_GENERICINST case.
13889
13890 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
13891
13892         * assembly.c (mono_assembly_fill_assembly_name): New function to
13893         fill out the MonoAssemblyName structure.
13894         (mono_assembly_open): Use the new function.
13895
13896         * icall.c (fill_reflection_assembly_name): New helper function.
13897
13898         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
13899         new function.
13900
13901         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
13902
13903 2003-11-15  Martin Baulig  <martin@ximian.com>
13904
13905         * class.c (mono_class_is_open_constructed_type): New public
13906         function; checks whether a type is an open constructed type,
13907         ie. whether it still contains type parameters.
13908         (mono_class_inflate_generic_type): If we're a type parameter and
13909         the inflated type is also a MONO_TYPE_(M)VAR, return the original
13910         type.
13911
13912         * class.h (MonoGenericInst): Added `guint32 is_open'.
13913
13914         * loader.c (method_from_methodspec): Check whether we're an open
13915         or closed constructed type and set `ginst->is_open'.
13916
13917         * reflection.c (mono_reflection_bind_generic_parameters): Check
13918         whether we're an open or closed constructed type and set
13919         `ginst->is_open'.
13920         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
13921         from open constructed types.
13922
13923 2003-11-15  Martin Baulig  <martin@ximian.com>
13924
13925         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13926         a generic instance (instead of a generic type declaration) with
13927         unbound generic parameters, bind them to our actual types.
13928
13929 2003-11-14  Martin Baulig  <martin@ximian.com>
13930
13931         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
13932
13933         * reflection.c (mono_reflection_bind_generic_parameters): If we're
13934         an interface type, populate `res->interfaces' with instantiated
13935         versions of all the interfaces we inherit.
13936
13937 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
13938
13939         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
13940         when MONO_PATH is set but doesn't contain the install dir.
13941
13942 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
13943
13944         * icall.c:
13945         (ves_icall_Type_GetInterfaces): don't return an interface twice when
13946         it's also implemented in base classes. Fixes bug #50927.
13947
13948 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
13949
13950         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
13951         if this method is called from a finalizer. Fixes #50913.
13952
13953 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
13954
13955         * threads.c: Implement VolatileRead/VolatileWrite
13956
13957         * icall.c: Add new icalls for VolatileRead/VolatileWrite
13958
13959 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13960
13961         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
13962         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
13963         2.95.3.
13964
13965         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
13966         from Peter Ross (pro@missioncriticalit.com).
13967         
13968 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
13969
13970         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
13971
13972 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13973
13974         * assembly.c (mono_assembly_load_references): Disable check because it
13975         triggers on older corlibs which lots of people have.
13976
13977 2003-11-12  Jackson Harper  <jackson@ximian.com>
13978
13979         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
13980         load corlib.dll if mscorlib.dll is not found.
13981         * assembly.h: Remove corlib name define.
13982         * class.c:
13983         * domain.c:
13984         * image.c: Change corlib name to mscorlib.
13985         
13986 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
13987
13988         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
13989
13990 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
13991
13992         * appdomain.h: Added loader_optimization here to sync with the C#
13993         code, and add disallow_binding_redirects field.
13994
13995 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
13996
13997         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
13998
13999         * reflection.c (mono_image_build_metadata): Fix crash on modules
14000         with no types.
14001
14002         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
14003
14004         * icall.c (ves_icall_get_method_info): Return callingConvention as
14005         well.
14006
14007         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
14008         namespaces from the EXPORTEDTYPE table as well.
14009
14010         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
14011         from all modules inside the assembly.
14012         
14013 2003-11-11  Martin Baulig  <martin@ximian.com>
14014
14015         * reflection.c (mono_reflection_bind_generic_parameters): Make
14016         this work for interfaces.
14017
14018 2003-11-11  Martin Baulig  <martin@ximian.com>
14019
14020         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
14021
14022 2003-11-11  Martin Baulig  <martin@ximian.com>
14023
14024         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
14025         "MonoInflatedMethod" and "MonoInflatedCtor".
14026
14027 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
14028
14029         * reflection.c (resolution_scope_from_image): Use the assembly table
14030         from the manifest module, since other modules don't have it.
14031
14032         * debug-helpers.c (mono_type_full_name): New helper function.
14033
14034         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
14035
14036         * image.c (mono_image_load_file_for_image): New public function which
14037         is a replacement for the load_file_for_image in class.c.
14038
14039         * assembly.c (mono_assembly_load_module): A wrapper for the function
14040         above which does assembly association and reference loading too.
14041
14042         * class.c (mono_class_from_name): Call mono_assembly_load_module.
14043
14044 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14045
14046         * appdomain.c: not all of the attributes for the full assembly name
14047         are required and the order doesn't matter. Fixes bug #50787.
14048
14049 2003-11-10  Dick Porter  <dick@ximian.com>
14050
14051         * locales.c: Use platform-endian UTF16
14052
14053 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14054
14055         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14056         
14057 2003-11-10  Martin Baulig  <martin@ximian.com>
14058
14059         * metadata.c
14060         (mono_metadata_load_generic_params): Make this actually work.
14061
14062         * reflection.c (mono_reflection_bind_generic_parameters): If our
14063         parent is a generic instance, pass all the `types' to it, no
14064         matter whether it has the same number of type parameters or not.
14065
14066 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
14067
14068         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
14069
14070         * assembly.c (mono_assembly_load_references): Move the image<->assembly
14071         assignment code to this function so it gets called recursively for all
14072         modules.
14073
14074         * image.c (load_modules): Remove the assembly assignment since it is
14075         now done by mono_assembly_load_references.
14076         
14077         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
14078         Add 'module' argument.
14079         (mono_module_get_types): New helper function.
14080         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
14081
14082 2003-11-08  Martin Baulig  <martin@ximian.com>
14083
14084         * class.c (mono_class_inflate_generic_method): Interface method
14085         don't have a header.
14086
14087         * reflection.c (mono_image_get_methodspec_token): Take an
14088         additional `MonoGenericInst *' argument instead of reading it from
14089         the header; this is necessary to support interfaces.
14090         (mono_image_create_token): Pass the `MonoGenericInst *' from the
14091         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
14092         (inflated_method_get_object): Take an additional `MonoGenericInst *'
14093         argument.
14094
14095         * reflection.h (MonoReflectionInflatedMethod): Added
14096         `MonoGenericInst *ginst'.
14097
14098 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
14099
14100         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
14101
14102 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
14103
14104         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
14105
14106 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
14107
14108         * reflection.c 
14109         (reflection_methodbuilder_from_method_builder):
14110         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
14111         initialize a ReflectionMethodBuilder structure.
14112         (mono_image_get_methodbuilder_token):
14113         (mono_image_get_ctorbuilder_token): New functions to emit memberref
14114         tokens which point to types in another module inside the same assembly.
14115
14116         * reflection.c: Use the new helper functions.
14117         
14118         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
14119
14120         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
14121         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
14122
14123         * reflection.c (resolution_scope_from_image): Emit a moduleref if
14124         neccesary.
14125
14126         * reflection.c (mono_image_build_metadata): Emit metadata only for the
14127         current module. Emit the manifest only for the main module.
14128
14129         * reflection.c (mono_image_create_token): Add assertion when a 
14130         memberref needs to be created.
14131
14132         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
14133
14134         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
14135         larger buffer for the custom attribute blob. Fixes #50637.
14136         
14137 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14138
14139         * threadpool.c: notify listener on async processing handles after
14140         invoking the async callback. Thanks to Zoltan.
14141
14142 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14143
14144         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
14145         avoid code duplication.
14146
14147         * reflection.h (MonoDynamicImage): New type which is currently unused,
14148         but will be used through the ref.emit code in place of 
14149         MonoDynamicAssembly.
14150
14151         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14152         object layout.
14153
14154         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
14155         a MonoDynamicImage instead of just a MonoImage.
14156         
14157         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
14158         icalls to ModuleBuilder but keep their semantics, so they will work
14159         with moduleb->assemblyb. This will change later.
14160         
14161 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14162
14163         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
14164         object layout.
14165
14166         * reflection.c (mono_image_build_metadata): Avoid creation of a default
14167         main module, since it is now done by the managed code.
14168
14169 2003-11-03  Martin Baulig  <martin@ximian.com>
14170
14171         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
14172         `ginst->klass' here.
14173         (method_encode_methodspec): Don't use the `ginst->generic_method's
14174         klass if it's a generic instance, use `ginst->klass' in this case.
14175
14176 2003-11-03  Martin Baulig  <martin@ximian.com>
14177
14178         * reflection.c (mono_image_get_generic_method_param_info):
14179         Removed, use mono_image_get_generic_param_info() instead.
14180         (mono_image_get_type_info): Write the GenericParam table before
14181         the Method table.  This is neccessary because in the GenericParam
14182         table, type parameters of the class (ie. '!0' etc.) must come
14183         before the ones from its generic methods (ie. '!!0' etc).
14184
14185 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
14186
14187         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
14188
14189 2003-11-02  Martin Baulig  <martin@ximian.com>
14190
14191         * reflection.c (create_generic_typespec): Take a
14192         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
14193         the generic parameters from it.
14194
14195 2003-11-02  Martin Baulig  <martin@ximian.com>
14196
14197         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
14198         instead of a `MonoClassField *' since we just need the type.
14199         (create_generic_typespec): New static function.  Creates a
14200         TypeSpec token for a generic type declaration.
14201         (mono_image_get_generic_field_token): New static function.
14202         (mono_image_create_token): If we're a FieldBuilder in a generic
14203         type declaration, call mono_image_get_generic_field_token() to get
14204         the token.
14205
14206 2003-11-02  Martin Baulig  <martin@ximian.com>
14207
14208         * reflection.h
14209         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
14210         `MonoReflectionGenericInst *declaring_type' and
14211         `MonoReflectionGenericInst *reflected_type' fields.
14212
14213         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
14214         `MonoReflectionGenericInst *declaring_type' and a
14215         `MonoReflectionGenericInst *reflected_type' argument instead of a
14216         single `MonoReflectionGenericInst *type' one.  Set
14217         `res->declaring_type' and `res->reflected_type' from them.
14218         (mono_reflection_inflate_field): Likewise.      
14219
14220 2003-11-02  Martin Baulig  <martin@ximian.com>
14221
14222         * class.c (mono_class_setup_vtable): Don't store generic methods
14223         in the vtable.  
14224
14225 2003-11-02  Martin Baulig  <martin@ximian.com>
14226
14227         * reflection.h (MonoReflectionGenericInst): Added
14228         `MonoReflectionType *declaring_type'.
14229
14230         * reflection.c (mono_reflection_bind_generic_parameters): Use
14231         `if (tb->parent)' instead of `klass->parent'.
14232
14233 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
14234
14235         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
14236         with an empty ASSEMBLY table.
14237
14238         * reflection.c (mono_image_build_metadata): Avoid using the same loop
14239         variable in the inner and outer loops.
14240
14241 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
14242
14243         * metadata.h (mono_metadata_make_token): Put parentheses around macro
14244         argument.
14245
14246         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
14247         
14248         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
14249         icalls. Instead, do everything in managed code. This is needed since
14250         it is hard to restore the original domain etc. in unmanaged code in the
14251         presence of undeniable exceptions.
14252
14253         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
14254         New icalls to push and pop appdomain refs.
14255
14256 2003-10-31  Martin Baulig  <martin@ximian.com>
14257
14258         * class.c (inflate_generic_type): Renamed to
14259         mono_class_inflate_generic_type() and made it public.
14260
14261         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
14262         New interncall.
14263
14264         * loader.c (mono_field_from_memberref): Also set the retklass for
14265         typespecs.
14266
14267         * fielder.c (mono_image_get_inflated_field_token): New static
14268         method; creates a metadata token for an inflated field.
14269         (mono_image_create_token, fixup_method): Added support for
14270         "MonoInflatedField".
14271         (fieldbuilder_to_mono_class_field): New static function.
14272         (mono_reflection_inflate_field): New public function.
14273
14274         * reflection.h
14275         (MonoReflectionGenericInst): Added `MonoArray *fields'.
14276         (MonoReflectionInflatedField): New typedef.     
14277
14278 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
14279
14280         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
14281         for Solaris and other platforms without s6_addr16
14282
14283 2003-10-30  Martin Baulig  <martin@ximian.com>
14284
14285         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
14286         argument instead of two.
14287         (mono_class_inflate_generic_signature): Likewise.
14288         (inflate_generic_header): Likewise.
14289         (mono_class_inflate_generic_method): Likewise.  In addition, if
14290         `ginst->klass' is set, it becomes the new `method->klass'.
14291
14292         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
14293         field.
14294
14295         * reflection.c (encode_generic_method_sig): Write a 0xa as the
14296         first byte. [FIXME]
14297         (method_encode_methodspec): If we have generic parameters, create
14298         a MethodSpec instead of a MethodRef.
14299         (fixup_method): Added support for "MonoInflatedMethod" and
14300         "MonoInflatedCtor".
14301         (mono_image_create_token): Added support for "MonoInflatedMethod"
14302         and "MonoInflatedCtor".
14303         (inflated_method_get_object): New static function; returns a
14304         managed "System.Reflection.MonoInflatedMethod" object.
14305         (mono_reflection_bind_generic_method_parameters): Return a
14306         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
14307         (mono_reflection_inflate_method_or_ctor): Likewise.
14308         (mono_image_get_generic_method_param_info): Initialize unused
14309         fields to zero.
14310         (mono_image_get_generic_param_info): Likewise.
14311
14312         * reflection.h (MonoReflectionInflatedMethod): New public
14313         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
14314         "S.R.MonoInflatedCtor" classes.
14315
14316         * loader.c (method_from_memberref): If we're a TypeSpec and it
14317         resolves to a generic instance, inflate the method.
14318
14319 2003-10-28  Dick Porter  <dick@ximian.com>
14320
14321         * object.c (mono_runtime_run_main): Convert command-line arguments
14322         into utf8, falling back to the user's locale encoding to do so.
14323
14324 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
14325
14326         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
14327         at this time.
14328
14329         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
14330
14331         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
14332         up icalls at method definition time. Partially fixes #33569.
14333
14334 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
14335
14336         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
14337         marshalling of arrays. Fixes #50116.
14338
14339         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
14340
14341         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
14342         points to a vtable in the dying appdomain.
14343
14344         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
14345         listeners into unmanaged code inside the lock.
14346
14347         * object.c (mono_class_vtable): Turn off typed allocation in non-root
14348         domains and add some comments.
14349
14350 2003-10-25  Martin Baulig  <martin@ximian.com>
14351
14352         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
14353
14354         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
14355
14356         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
14357         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
14358         currently parsing.  Create the generic class and store it in
14359         `generic_inst->klass' before parsing the type arguments.  This is
14360         required to support "recursive" definitions; see mcs/tests/gen-23.cs
14361         for an example.
14362         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
14363         to support recursive typespec entries.
14364
14365         * class.c (mono_class_setup_parent): If our parent is a generic
14366         instance, we may get called before it has its name set.
14367         (mono_class_from_generic): Splitted into
14368         mono_class_create_from_generic() and mono_class_initialize_generic().
14369
14370 2003-10-25  Martin Baulig  <martin@ximian.com>
14371
14372         * icall.c (ves_icall_Type_BindGenericParameters): Return a
14373         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
14374         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
14375         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
14376
14377         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
14378         (create_typespec): Likewise.
14379         (mono_reflection_bind_generic_parameters): Return a
14380         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
14381         (mono_reflection_inflate_method_or_ctor): New public function.
14382
14383         * reflection.h (MonoReflectionGenericInst): New typedef.        
14384
14385 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
14386
14387         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
14388         inside the domain lock. Fixes #49993.
14389         
14390         * object.c (mono_class_vtable): When typed allocation is used, 
14391         allocate vtables in the GC heap instead of in the mempool, since the
14392         vtables contain GC descriptors which are used by the collector even
14393         after the domain owning the mempool is unloaded.
14394
14395         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
14396
14397         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
14398         reflect what it does. Also invalidate mempools instead of freeing
14399         them if a define is set.
14400
14401         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
14402         of the appdomain.
14403         
14404         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
14405         hold the finalizable objects in this domain.
14406
14407         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
14408         appdomain.
14409
14410         * appdomain.c (mono_domain_set): New function to set the current
14411         appdomain, but only if it is not being unloaded.
14412
14413         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
14414         appdomain which is being unloaded.
14415         
14416         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
14417         unloading of the root appdomain.
14418
14419         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
14420         icall to execute a method in another appdomain. Intended as a 
14421         replacement for InternalSetDomain, which can confuse the code 
14422         generation in the JIT.
14423
14424         * appdomain.c (mono_domain_is_unloading): New function to determine
14425         whenever an appdomain is unloading.
14426
14427         * appdomain.c (mono_domain_unload): New function to correctly unload
14428         an appdomain.
14429
14430         * assembly.c (mono_assembly_load_references): Check that an assembly
14431         does not references itself.
14432
14433         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
14434         domain manually, it asks the finalizer thread to do it, then waits for
14435         the result. Also added a timeout.
14436
14437         * icall.c: Register the new icalls.
14438
14439         * threads.h threads.c: Export the mono_gc_stop_world and 
14440         mono_gc_start_world functions.
14441         
14442         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
14443         function to fill out the mempool with 0x2a.
14444
14445 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
14446
14447         * reflection.h (MonoReflectionMethodAux): New structure to store
14448         information which is rarely used, thus is not in the MonoMethod
14449         structure.
14450
14451         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
14452         store the aux info.
14453
14454         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
14455         and marshalling info into the aux structure.
14456
14457         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
14458         from the aux structure.
14459
14460         * loader.c (mono_method_get_param_names): Retrieve the param names from
14461         the aux structure.
14462         
14463 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
14464
14465         * exception.h exception.c: Add AppDomainUnloadedException && fix 
14466         warning.
14467
14468 2003-10-21  Dick Porter  <dick@ximian.com>
14469
14470         * socket-io.c
14471         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
14472         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
14473
14474 2003-10-21  Martin Baulig  <martin@ximian.com>
14475
14476         * reflection.c (mono_reflection_bind_generic_parameters):
14477         `klass->parent' is NULL for interfaces.
14478
14479 2003-10-21  Martin Baulig  <martin@ximian.com>
14480
14481         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
14482
14483 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
14484
14485         * exception.c (mono_exception_from_name_msg): New helper function for
14486         creating exceptions and initializing their message field.
14487
14488         * exception.c: Simplify functions using the new helper.
14489
14490         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
14491         New function.
14492
14493         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
14494         mono_raise_exception, since otherwise gcc doesn't generate the function
14495         epilog for raise_exception, confusing the stack unwinding in the JIT.
14496         Fixes #45043.
14497
14498         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
14499         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
14500         Fixes #49499.
14501
14502 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14503
14504         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
14505         utf8.
14506
14507 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
14508
14509         * icall.c: Removed GetUninitializedObject method because
14510           AllocateUninitializedClassInstance does the same.
14511
14512 2003-10-18  Martin Baulig  <martin@ximian.com>
14513
14514         * class.c (inflate_generic_signature): Renamed to
14515         mono_class_inflate_generic_signature() and made it public.
14516         (my_mono_class_from_generic_parameter): New static function; if we
14517         don't already have the generic parameter's MonoClass, create a
14518         very simple one which is just used internally in the runtime and
14519         not passed back to managed code.
14520
14521         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
14522
14523         * metadata.h (MonoMethodSignature): Moved the
14524         `MonoGenericParam *gen_params' to the MonoMethodHeader.
14525         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
14526
14527         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
14528         ves_icall_MonoMethod_GetGenericArguments(); this is now an
14529         interncall on the MonoMethod class, not on MethodInfo.
14530         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
14531         calling mono_reflection_bind_generic_method_parameters() directly.
14532
14533         * loader.c (mono_method_get_signature): If this is a MethodSpec;
14534         return the already computed `method->signature'.
14535         (method_from_methodspec): New static function to load a method
14536         from a MethodSpec entry.
14537         (mono_get_method_from_token): Call the new method_from_methodspec()
14538         for MethodSpec tokens.  
14539         (mono_get_method_from_token): If we're a generic method, load the
14540         type parameters.
14541
14542         * reflection.c (mono_image_get_memberref_token): Allow
14543         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
14544         table.
14545         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
14546         (mono_image_create_token): First check whether it's a generic
14547         method (so we'd need to create a MethodSpec), then do the other
14548         two alternatives.
14549         (mono_reflection_bind_generic_method_parameters): Return a
14550         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
14551         called directly from the interncall.
14552
14553 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
14554
14555         * reflection.c (load_public_key): Move loading of the public key
14556         into managed code.
14557
14558         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
14559
14560         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
14561         fields.
14562
14563         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
14564         culture, hash_alg and public_key. Fixes #49555.
14565
14566 2003-10-17  Martin Baulig  <martin@ximian.com>
14567
14568         * class.h (MonoGenericInst): Moved this declaration here and added
14569         `MonoMethod *generic_method'.
14570
14571         * icall.c
14572         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
14573         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
14574
14575         * metadata.c (mono_metadata_type_equal): Two types of
14576         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
14577         index; ie. don't compare the address of the `MonoGenericParam'
14578         structure.
14579         (mono_metadata_load_generic_params): Removed the `MonoMethod
14580         *method' argument.
14581
14582         * metadata.h (MonoGenericInst): Moved declaration to class.h.
14583         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
14584
14585         * reflection.c (method_encode_signature): Encode the number of
14586         generic parameters.
14587         (encode_generic_method_sig): New static function.
14588         (method_encode_methodspec): New static function; creates an entry
14589         in the MethodSpec table for a generic method.
14590         (mono_image_get_methodspec_token): New static function.
14591         (mono_image_create_token): Call mono_image_get_methodspec_token()
14592         for generic methods.
14593         (mono_reflection_bind_generic_method_parameters): New public
14594         function.  Instantiates a generic method.
14595
14596 2003-10-16  Martin Baulig  <martin@ximian.com>
14597
14598         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
14599         *gen_params' here from MonoMethodHeader.
14600
14601         * metadata.c (mono_metadata_parse_method_signature): If we have
14602         generic parameters, initialize `method->gen_params' and then set
14603         the correct `type->data.generic_param' in all the parameters.
14604
14605 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
14606
14607         * threads.c (mono_threads_get_default_stacksize): New function to 
14608         return the default stacksize.
14609
14610         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
14611         termination of the finalizer thread, since the previous method had
14612         race conditions. Fixes #49628.
14613
14614         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
14615         as for the other managed threads.
14616
14617 2003-10-16  Martin Baulig  <martin@ximian.com>
14618
14619         * class.c (inflate_generic_signature): Copy `generic_param_count'
14620         and `gen_params'.
14621
14622         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
14623         New interncall.
14624
14625         * metadata.c (mono_metadata_parse_method_signature): Actually set
14626         the `method->generic_param_count' here.
14627         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
14628
14629 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
14630
14631         * object.h: Add a new field to TypedRef to simplify the implementation
14632         of the REFANY opcodes in the JIT.
14633
14634         * icall.c: Make use of the new field.
14635
14636         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
14637         dynamically.
14638
14639 2003-10-15  Martin Baulig  <martin@ximian.com>
14640
14641         * class.c (mono_class_from_gen_param): Renamed to
14642         mono_class_from_generic_parameter() and moved most of the
14643         functionality from mono_reflection_define_generic_parameter()
14644         here; ie. we create a "real" class here.
14645         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
14646         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
14647         previously been called.
14648
14649         * class.h (MonoGenericParam): Moved the declaration of this struct
14650         here from metadata.h and added `MonoMethod *method'.
14651
14652         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
14653         interncall.
14654
14655         * loader.c (mono_get_method_from_token): If we have any generic
14656         parameters, call mono_metadata_load_generic_params() to read them
14657         from the MONO_TABLE_GENERICPAR.
14658
14659         * metadata.c (mono_metadata_load_generic_params): Added
14660         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
14661
14662         * metadata.h (MonoMethodSignature): Replaced
14663         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
14664         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
14665
14666         * reflection.c (mono_reflection_define_generic_parameter): Moved
14667         most of the functionality into the new
14668         mono_class_from_generic_parameter(); set the `method' field if
14669         we're a method parameter.       
14670
14671 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
14672
14673         * marshal.c (emit_struct_conv): if native size is 0
14674         emit no code.
14675
14676 2003-10-14  Martin Baulig  <martin@ximian.com>
14677
14678         * icall.c: The generics API has changed in the spec since it was
14679         added to System.Type; these modifications make it match the spec
14680         again.
14681         (ves_icall_Type_GetGenericParameters): Renamed to
14682         `ves_icall_Type_GetGenericArguments'.
14683         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
14684         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
14685         `ves_icall_MonoType_get_HasGenericArguments'.
14686         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
14687         `ves_icall_MonoType_get_IsGenericParameter'.
14688         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
14689         this is no interncall anymore.
14690         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
14691         `ves_icall_TypeBuilder_get_IsGenericParameter'.
14692
14693 2003-10-14  Martin Baulig  <martin@ximian.com>
14694
14695         * reflection.c (mono_reflection_bind_generic_parameters): Also
14696         inflate generic methods if we're reading the class from IL.
14697
14698 2003-10-13  Martin Baulig  <martin@ximian.com>
14699
14700         * reflection.c (mono_reflection_define_generic_parameter): This
14701         method isn't called directly from the icall anymore; take a
14702         `MonoReflectionAssemblyBuilder *' so we can use this for type and
14703         method generic parameters.
14704         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
14705         (method_builder_encode_signature): Encode generic parameters.
14706         (mono_image_get_method_info): Write generic params to the
14707         MONO_TABLE_GENERICPARAM table.
14708
14709         * reflection.h (MonoReflectionMethodBuilder): Added
14710         `MonoArray *generic_params'.
14711
14712         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
14713
14714         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
14715         wrapper for mono_reflection_define_generic_parameter().
14716         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
14717
14718 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
14719
14720         * marshal.h: Add missing function to fix build.
14721
14722         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
14723         the SetLastError pinvoke attribute.
14724
14725         * marshal.c (mono_marshal_set_last_error): New helper function called
14726         by the generated code.
14727         
14728         * marshal.c (mono_mb_emit_branch): New helper function.
14729
14730         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
14731
14732         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
14733         classes as parameters and return values of delegates. Fixes #29256. 
14734
14735 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
14736
14737         * locales.c: use gint32 in non HAVE_ICU case
14738
14739 2003-10-11  Martin Baulig  <martin@ximian.com>
14740
14741         * mono-debug.c (mono_debug_add_method): Added a workaround for
14742         bug #48591.
14743
14744 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
14745
14746         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
14747         delegates passed to native code must use the STDCALL calling 
14748         convention. Fixes #35987.
14749
14750 2003-10-10  Martin Baulig  <martin@ximian.com>
14751
14752         * class.c (inflate_generic_type): If we're inflating for a generic
14753         type instance (and not for a generic method), return
14754         MONO_TYPE_MVAR unchanged.
14755
14756 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14757
14758         * string-icalls.c: Join ignores null strings in the source array.
14759         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
14760         * threads.c: GetAvailableTheads is slightly more accurate.
14761
14762 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
14763
14764         * threads.h threads.c : add mono_threads_set_default_stacksize
14765         and pass default to CreateThread calls.
14766
14767 2003-10-09  Dick Porter  <dick@ximian.com>
14768
14769         * icall.c:
14770         * locales.h:
14771         * locales.c: Internal calls for constructing CultureInfo and
14772         related objects from libicu (if its available.)
14773
14774 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
14775
14776         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
14777
14778 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14779
14780         * threadpool.c: added an argument to async_invoke_thread that is the
14781         item to process, pass the MonoAsyncResult to the thread start function
14782         when creating a new thread. This way we don't need to acquire any lock
14783         when we're creating a new thread. Readded a semaphore for faster
14784         response times (instead of that Sleep i added).
14785
14786 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
14787
14788         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
14789         get daylight change dates better on Windows, fix handling
14790         of platforms without tm_gmtoff.
14791
14792 2003-10-06  Martin Baulig  <martin@ximian.com>
14793
14794         * class.c (inflate_generic_method): Renamed to
14795         mono_class_inflate_generic_method() and made public.
14796         (mono_class_init): Don't inflate the generic methods here.
14797         (mono_class_from_generic): Added `gboolean inflate_methods'
14798         argument.  Inflate the methods here.
14799
14800         * loader.c (mono_method_get_param_names): Ignore instances of
14801         generic types for the moment.
14802
14803         * reflection.c (fixup_method): Added support for inflated methods.
14804         (mono_image_create_token): Use mono_image_get_methodref_token()
14805         for inflated methods.
14806         (mono_custom_attrs_from_param): Ignore instances of generic types
14807         for the moment.
14808         (mono_reflection_bind_generic_parameters): New public function.
14809         Moved all the functionality from
14810         ves_icall_Type_BindGenericParameters() here and added support for
14811         dynamic types.
14812         (mono_reflection_define_generic_parameter): Initialize
14813         `klass->methods' here.
14814
14815         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
14816         functionality into mono_reflection_define_generic_parameter().
14817         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
14818         TypeBuilder, return that TypeBuilder.
14819
14820 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14821
14822         * appdomain.c: removed mono_delegate_semaphore.
14823
14824         * threadpool.c:
14825         (mono_thread_pool_add): moved hash table creation inside and the thread 
14826         creation outside of the critical region.
14827         (mono_thread_pool_finish): removed obsolete code.
14828         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
14829         continue or exit the thread depending on the queue.
14830
14831 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
14832
14833         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
14834         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
14835         handle more bool marshalling options
14836
14837 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
14838
14839         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
14840         arrays of structs. Also add a more descriptive error message when
14841         a structure member is marshalled as LPArray.
14842
14843 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
14844
14845         * marshal.c (mono_marshal_get_native_wrapper): Add support for
14846         marshalling arrays of complex types. Fixes #29098. Also remove an
14847         usused and incomplete function.
14848
14849 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
14850
14851         * gc.c: report heap_size - free_bytes as total memory allocated
14852         (bug#49362).
14853
14854 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
14855
14856         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
14857         fix timezone handling problems on Windows.
14858         
14859         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
14860         asserts when the year is outside the range handled by ms the functions.
14861
14862         * class.c (setup_interface_offsets): If the class is an interface,
14863         fill out its interface_offsets slot.
14864
14865 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14866
14867         * threadpool.c: mark threadpool threads as background.
14868
14869 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
14870
14871         * decimal.c - define DECINLINE to nothing if not using GCC
14872
14873 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
14874
14875         * assembly.c: More refcount fixes.
14876
14877 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14878
14879         * string-icalls.c: if we're not trimming, return the same string.
14880         When not splitting, don't create a new string.
14881
14882 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14883
14884         * image.c:
14885         (mono_image_open): increment the ref_count inside the critical section.
14886
14887 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
14888
14889         * image.c (mono_image_open): Fix reference counting bug.
14890
14891 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
14892
14893         * marshal.c (mono_marshal_type_size) struct alignment changed for 
14894         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
14895         64bits. Avoid leak in mono_marshal_get_native_wrapper when
14896         mono_lookup_pinvoke_call throws.        
14897
14898 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
14899
14900         * reflection.c (mono_reflection_parse_type): Fix #49114.
14901
14902         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
14903         temporary workaround for cygwin header problem.
14904
14905         * object.c (mono_object_isinst): Synchronize this with the code
14906         generated by the JIT for casts.
14907
14908 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
14909
14910         * reflection.c (encode_type): Fix #38332.
14911
14912 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
14913
14914         * marshal.c (mono_marshal_method_from_wrapper): New function to return
14915         the original method from the wrapper method.
14916
14917 2003-09-25  Martin Baulig  <martin@ximian.com>
14918
14919         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
14920         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
14921         (ves_icall_Type_get_IsGenericInstance): New interncall.
14922
14923 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
14924
14925         * object.c: fix cast warning in big endian code.
14926
14927 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
14928
14929         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
14930         
14931 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14932
14933         * assembly.c: don't call check_env from mono_assembly_load. It's
14934         already done once in mono_assemblies_init and may cause headaches when
14935         multiple threads are loading assemblies.
14936
14937 2003-09-19  Martin Baulig  <martin@ximian.com>
14938
14939         * reflection.c (mono_reflection_define_generic_parameter): Don't
14940         allocate `klass->methods', set `klass->flags' to
14941         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
14942
14943 2003-09-18  Martin Baulig  <martin@ximian.com>
14944
14945         * class.c (mono_class_init): Don't create `class->methods' if it's
14946         already initialized.
14947
14948         * metadata.c (mono_metadata_load_generic_params): Make this
14949         actually work.
14950
14951         * reflection.c (mono_reflection_define_generic_parameter): Set
14952         parent class and interfaces from the constraints.
14953
14954         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
14955         to keep this struct in sync with the declaration in TypeBuilder.cs.
14956
14957 2003-09-17  Martin Baulig  <martin@ximian.com>
14958
14959         * metadata.h (MonoType): Replaced the data's `int type_param'
14960         field with `MonoGenericParam *generic_param'.
14961         (MonoGenericParam): Added `MonoClass *klass'.
14962
14963         * class.c (mono_class_from_gen_param): Removed the
14964         `MonoImage *image' and `int type_num' arguments.
14965
14966         * metadata.c (mono_metadata_parse_generic_param): New static
14967         method; creates a MonoGenericParam which just contains the index.
14968         (do_mono_metadata_parse_type): Call
14969         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
14970         MONO_TYPE_MVAR.
14971
14972         * reflection.c (mono_image_typedef_or_ref): Generic type
14973         parameters may be in the same assembly, but never use a typedef
14974         for them.
14975         (mono_reflection_define_generic_parameter): We're now creating a
14976         "real" class for the type parameter; it's now safe to call
14977         mono_class_from_mono_type() on the class'es type, it'll do the
14978         right thing.
14979
14980 2003-09-16  Martin Baulig  <martin@ximian.com>
14981
14982         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
14983         `symfile->range_entry_size' and `symfile->class_entry_size' here;
14984         the `symfile' data structure must be fully initialized before it
14985         gets added to the table.
14986
14987 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
14988
14989         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
14990
14991         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
14992         class init trampolines.
14993
14994 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
14995
14996         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
14997         to the built-in profiler to turn off time and allocation profiling
14998         respectively.
14999
15000 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
15001
15002         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
15003         g_direct_equal.
15004
15005         * debug-helpers.c (mono_method_full_name): Print the wrapper type
15006         in human readable form.
15007
15008 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
15009
15010         * reflection.c icall.c: Fixed warnings.
15011
15012         * image.c (load_class_names): Use a temporary hash table to hold the
15013         namespaces in order to avoid doing many string comparisons.
15014
15015         * image.h: Fix typo.
15016
15017         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
15018         Pass NULL instead of g_direct_equal to the GHashTable constructor 
15019         since the NULL case is short-circuited inside g_hash_table_lookup, 
15020         leading to better performance.  
15021
15022         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
15023         obtain the first custom attribute for a given index. Depends on the
15024         CustomAttribute table being sorted by the parent field.
15025
15026         * reflection.c (mono_custom_attrs_from_index): Use the new function 
15027         for better performance.
15028
15029 2003-09-07  Martin Baulig  <martin@ximian.com>
15030
15031         * class.c (mono_class_init): If we're a generic instance, inflate
15032         all our methods instead of loading them from the image.
15033         (mono_class_from_generic): Set `class->methods = gklass->methods'.
15034
15035 2003-09-07  Martin Baulig  <martin@ximian.com>
15036
15037         * mono-debug-debugger.c: Added support for constructors.
15038
15039 2003-09-06  Martin Baulig  <martin@ximian.com>
15040
15041         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
15042         New interncall.
15043
15044         * reflection.c (mono_reflection_setup_generic_class): Call
15045         ensure_runtime_vtable() to create the vtable.
15046
15047 2003-09-05  Martin Baulig  <martin@ximian.com>
15048
15049         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
15050         MONO_TYPE_MVAR.
15051
15052 2003-09-04  Martin Baulig  <martin@ximian.com>
15053
15054         * reflection.c (mono_reflection_define_generic_parameter): Generic
15055         parameters start with zero.
15056
15057 2003-09-04  Martin Baulig  <martin@ximian.com>
15058
15059         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
15060
15061         * reflection.h (MonoReflectionGenericParam): New typedef.
15062         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
15063         the generic parameters from the managed TypeBuilder.
15064
15065         * reflection.c (mono_reflection_define_generic_parameter): New function.
15066         (mono_reflection_create_runtime_class): Encode generic parameters.
15067         (mono_reflection_setup_generic_class): New function; this is
15068         called after adding adding all generic params to the TypeBuilder.
15069         (encode_type): Added MONO_TYPE_VAR.
15070
15071 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
15072
15073         * class.h class.c (mono_class_needs_cctor_run): Moved this method
15074         here from the JIT.
15075
15076         * assembly.h assembly.c: Moved the AOT loading code into an assembly
15077         load hook.
15078
15079 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
15080
15081         * reflection.h reflection.c class.h class.c: Delete duplicate 
15082         definition of mono_type_get_name () from reflection.c and export the
15083         one in class.c.
15084
15085         * class.c: Class loading fixes from Bernie Solomon 
15086         (bernard@ugsolutions.com).
15087
15088         * reflection.c: Endianness fixes from Bernie Solomon 
15089         (bernard@ugsolutions.com).
15090         
15091 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
15092
15093         * assembly.h assembly.c: Define a file format version for AOT
15094         libraries.
15095         
15096         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
15097
15098         * appdomain.h (MonoJitInfo): New field to determine whenever the
15099         code is domain neutral.
15100         
15101 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
15102
15103         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
15104
15105 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
15106
15107         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
15108         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
15109         Avoid caching the result since strings must be domain specific. Fixes
15110         #48050.
15111
15112 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
15113
15114         * marshal.c (mono_marshal_init): Make this callable multiple times
15115         since it is hard to find a correct place to call it.
15116
15117         * object.c (mono_runtime_class_init): Execute static constructors in
15118         the correct appdomain.
15119
15120         * image.c (build_guid_table): Handle the case when multiple images have
15121         the same GUID.
15122
15123 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15124
15125         * icall.c: added a couple of icalls for System.Web.
15126
15127 2003-08-28  Martin Baulig  <martin@ximian.com>
15128
15129         * icall.c (ves_icall_Type_BindGenericParameters): Use
15130         `klass->generic_inst' instead of `&klass->byval_arg' in the
15131         mono_type_get_object() call.  The returned type must be
15132         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
15133
15134 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
15135
15136         * NOTES: New file.
15137
15138         * object.c (mono_class_proxy_vtable): Make it thread safe.
15139
15140         * pedump.c: Fix warning.
15141
15142         * object.c appdomain.h: Get rid of metadata_section. 
15143         It is no longer needed and it was causing deadlocks with domain->lock.
15144
15145         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
15146
15147 2003-08-26  Martin Baulig  <martin@ximian.com>
15148
15149         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
15150
15151 2003-08-26  Martin Baulig  <martin@ximian.com>
15152
15153         * pedump.c (main): Call mono_metadata_init(),
15154         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
15155         and mono_loader_init().
15156
15157 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
15158
15159         * loader.h: Add missing include to fix build.
15160
15161         * image.h: mono_image_load_references is no more.
15162
15163         * assembly.c: Reworked assembly loading to make it really thread safe.
15164         After these changes, the assembly returned by mono_assembly_open is
15165         fully initialized, i.e. all its references assemblies are loaded.
15166
15167         * assembly.c (mono_image_load_references): Renamed to 
15168         mono_assembly_load_references, and made private, since clients no
15169         longer need to call it.
15170
15171         * class.c: Removed calls to mono_assembly_load_references, since it was
15172         a source of deadlocks.
15173
15174         * loader.h loader.c class.h class.c: Protect data structures using a 
15175         new lock, the loader lock.
15176
15177         * class.c (mono_class_setup_vtable): Create temporary hash tables and
15178         GPtrArrays only when needed.
15179
15180         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
15181         into empty structures by mcs. Fixes pinvoke7.cs.
15182         
15183         * domain.c (mono_init): Call a new initialization function.
15184
15185         * appdomain.c (mono_runtime_init): Call the new initializer function
15186         of the marshal module.
15187
15188         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
15189         inserted into empty structures by mcs. Fixes pinvoke7.cs.
15190
15191         * marshal.h marshal.c: Added locks around the wrapper caches to make
15192         this module thread safe.
15193
15194         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
15195         this argument. Fixes pinvoke1.exe.
15196
15197 2003-08-25  Lluis Sanchez <lluis@ximian.com>
15198
15199         * object.h: Added call_type field to MonoMethodMessage and the corresponding
15200         enumeration of values. Removed fields to store remote call output values in
15201         MonoAsyncResult. Not needed any more.
15202         * object.c: Initialize call_type and async_result fields in mono_message_init.
15203         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
15204         dispatching the message.
15205         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
15206         async call to finish. To do it use a message with EndInvoke call type.
15207
15208 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
15209
15210         * loader.h loader.c (mono_method_hash_marhal_info): New function which
15211         determines whenever a method has marshalling info.
15212
15213 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15214
15215         * assembly.c: fix the build on windows.
15216
15217 2003-08-22 Lluis Sanchez <lluis@ximian.com>
15218
15219         * object.cs: Fixed bug #47785.
15220
15221 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
15222
15223         * string-icalls.c (StringReplace): If their are no occurances of
15224         the old string found return a reference to the supplied
15225         string. This saves some memory and matches MS behavoir.
15226         
15227 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15228
15229         * socket-io.c: fixed compilation for systems that define AF_INET6
15230         and don't define SOL_IP/SOL_IPV6.
15231
15232 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
15233
15234         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
15235         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
15236
15237         * rawbuffer.c rawbuffer.h: Make this module thread safe.
15238
15239         * domain.c: Make this module thread safe.
15240
15241         * domain.c (mono_init): Call new initialization function.
15242
15243         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
15244         reference types too. Fixes #38812.
15245
15246         * image.c (mono_image_init): Fixed warnings.
15247
15248         * class.c (mono_class_from_typeref): Handle assembly load failure
15249         correctly.
15250
15251         * appdomain.c (add_assemblies_to_domain): Handle the case when
15252         the references of an assembly are not yet loaded.
15253
15254         * metadata.c image.c assembly.c: Moved initialization of global
15255         variables to a separate function called at startup since lazy 
15256         initialization of these variables is not thread safe.
15257         
15258         * image.c assembly.c: Made this module thread safe by adding locks in 
15259         the appropriate places.
15260
15261         * domain.c (mono_init): Call the new initialization functions of the
15262         three modules.
15263
15264 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
15265
15266         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
15267           make a direct call. It is proxy's work to make the call asynchronous.
15268           mono_delegate_end_invoke(): If the targe is a proxy, just collect
15269           the return values.
15270         * object.cs: mono_method_call_message_new(): read AsyncResult and
15271           state object from parameters list, if this info is requested.
15272         * object.h: Added fields to store remote call output values in
15273           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
15274
15275 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15276
15277         * object.h: add needed fields to MonoThread.
15278         * threads.c, threads.h: allow registering a function to cleanup data
15279         allocated per thread by the JIT.
15280
15281 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15282
15283         * loader.h: portability fix by Bernie Solomon
15284         * <bernard@ugsolutions.com>.
15285
15286 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
15287
15288         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
15289         return a MonoArray. This simplifies the code and also ensures that
15290         the cache allways contains an object reference as a value.
15291
15292         * icall.c (ves_icall_get_parameter_info): Simplified using the new
15293         function.
15294
15295 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15296
15297         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
15298         fixes a problem with byte ordering when getting the address family for
15299         a socket.
15300
15301 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
15302
15303         * .cvsignore: Added monosn.
15304
15305         * reflection.h reflection.c loader.c: Added support for parameter
15306         marshalling to dynamically created types. Fixes #47295.
15307
15308 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
15309
15310         * rand.c: remove useless warnings.
15311
15312 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15313
15314         * class.c: implemented ldtoken for methods and fieldrefs.
15315
15316 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15317
15318         * threadpool.c: when mono_async_invoke was called, no one took care of
15319         monitoring the queue. So if the method invoked took some time and we
15320         got new async invoke requests after 500 ms (the thread created waited
15321         that long in WaitForSingleObject), the new async invoke was not called
15322         until the previous one finished.
15323
15324         This is fixed now. Thanks to Totte for helping with it.
15325
15326 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15327
15328         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
15329
15330 2003-08-11  Martin Baulig  <martin@ximian.com>
15331
15332         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
15333
15334 2003-08-06  Martin Baulig  <martin@ximian.com>
15335
15336         * mono-debug-debugger.c: Added support for static fields,
15337         properties and methods.
15338
15339 2003-08-06  Martin Baulig  <martin@ximian.com>
15340
15341         * mono-debug-debugger.c: Don't store the MonoString's vtable to
15342         make this work for applications with multiple application domains.
15343
15344 2003-08-04  Martin Baulig  <martin@ximian.com>
15345
15346         * mono-debug-debugger.c: Completely reworked the type support; the
15347         most important thing is that we're now just using one single
15348         `MonoType' instance per type.
15349
15350 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
15351
15352         * mono-endian.h, mono-endian.c, icall.c: Added icall
15353         ves_icall_System_Double_AssertEndianity to assert double word endianity
15354         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
15355
15356 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15357
15358         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
15359         support, icalls and fixes.
15360
15361 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
15362
15363         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
15364         classes that are a punctuation character in .NET is not the same a
15365         g_unichar_ispunct.
15366
15367 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15368
15369         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
15370
15371 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
15372
15373         * icall.c: Add new MemCopy internalcall.
15374         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
15375         Simplified code; It is not necessary to handle all the cases here,
15376         as the C# code takes care of it.  Only handle the case of the name
15377         resource embedded into the assembly.
15378
15379         Changed signature to return the data pointer and the size of the
15380         data. 
15381
15382 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
15383
15384         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
15385         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
15386
15387 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15388
15389         * socket-io.c: ignore EINTR error in select.
15390
15391 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
15392
15393         * class.h, class.c: removed unused subclasses field in MonoClass.
15394
15395 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
15396
15397         * icall.c: improve fix of get_base_definition(). If the parent class
15398           doesn't have the mehod, look at the parent of the parent.
15399         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
15400           to check if a parameter is an in or out parameter
15401           (PARAM_ATTRIBUTE_IN is not set by default).
15402           mono_method_return_message_restore(): Use mono_class_value_size to
15403           get the size of a value type. mono_type_stack_size (parameterType)
15404           does not return the correct value if parameterType is byRef.
15405           mono_load_remote_field(), mono_load_remote_field_new(),
15406           mono_store_remote_field(), mono_store_remote_field_new():
15407           raise exception if the remote call returns an exception.
15408
15409 2003-07-28  Martin Baulig  <martin@ximian.com>
15410
15411         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
15412         method.  This is a wrapper around mono_runtime_invoke() which
15413         boxes the instance object if neccessary.
15414
15415 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15416
15417         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
15418         metadata.h, row-indexes.h, verify.c: first cut of generics support.
15419
15420 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15421
15422         * icall.c: disable mcs bug workaround.
15423
15424 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
15425
15426         * object.c (mono_runtime_class_init): Take the metadata_section
15427         mutex before obtaining the domain mutex.
15428
15429         * appdomain.h: Added definition of metadata_section mutex here. 
15430
15431         * object.c: define metadata_mutex here.
15432
15433 2003-07-24  Ravi Pratap  <ravi@ximian.com>
15434
15435         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
15436         fixed.
15437
15438 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
15439
15440         * reflection.c: Fix bug #46669
15441
15442 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15443
15444         * exception.c:
15445         * exception.h:
15446         * icall.c:
15447         * object.h: fill in the type name for TypeLoadException.
15448
15449 2003-07-23  Ravi Pratap  <ravi@ximian.com>
15450
15451         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
15452         relationship between TypeBuilders while compiling corlib) and bug
15453         45993 (Array types returned from the runtime while compiling
15454         corlib were from the loaded corlib).
15455
15456 2003-07-22  Martin Baulig  <martin@ximian.com>
15457
15458         * mono-debug-debugger.c: Reworked the type support a bit more;
15459         distinguish between types and classes.
15460
15461 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
15462
15463         * icall.c: add IsArrayImpl icall.
15464
15465 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
15466
15467         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
15468         initializing real_size only once. Also fix bug #46602.
15469
15470 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
15471
15472         * object.c: Renamed mono_metadata_section to metadata_section.
15473
15474 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
15475
15476         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
15477           empty array if the type is an array. Fixed.
15478           ves_icall_MonoMethod_get_base_definition: if the base method
15479           is abstract, get the MethodInfo from the list of methods of
15480           the class.
15481         * reflection.c: ParameterInfo.PositionImpl should be zero-based
15482           and it was 1-based. Fixed in mono_param_get_objects.
15483
15484 2003-07-20  Martin Baulig  <martin@ximian.com>
15485
15486         * mono-debug.h: Set version number to 31.
15487         (mono_debug_init): Added `MonoDomain *' argument.
15488
15489         * mono-debug-debugger.c: Reworked the type support; explicitly
15490         tell the debugger about builtin types; pass the `klass' address to
15491         the debugger.
15492
15493 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
15494
15495         * image.c: Allow new metadata tables to be loaded without a
15496         warning. Also update the warning message to give the new constant value.
15497                 
15498 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
15499
15500         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
15501         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
15502         array type representation changes.
15503
15504 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15505
15506         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
15507         on Environment.Exit () call.
15508
15509 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
15510
15511         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
15512         requires a matching corlib.
15513
15514 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15515
15516         * Changelog: My editor decided to add a CR to each line. Sorry about that.
15517           Committed again without the CRs.
15518         
15519 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
15520
15521         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
15522           getting it from the "this" socket instance. Did not work
15523           if the socket is a subclass of Socket.
15524           Also fixed bug #35371.
15525
15526 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15527
15528         * metadata.c: fixed size for TypedByRef.
15529         * loader.c: when searching for a method, consider the vararg amrker.
15530         * unicode.c, decimal.c: constify some arrays.
15531
15532 2003-07-15  Dick Porter  <dick@ximian.com>
15533
15534         * socket-io.c: Fixed compilation for gcc < 3.2.
15535
15536         Fixed compilation for machines that don't have AF_INET6 (thanks to
15537         Bernie Solomon <bernard@ugsolutions.com> for that part.)
15538
15539         Fixed compile warnings.
15540         
15541         Fixed formatting and line endings.
15542
15543 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
15544
15545         * socket-io.h:
15546         * socket-io.c: Added IPv6 support.
15547
15548 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
15549
15550         * class.c (mono_class_is_assignable_from): New function to implement
15551         the is_assignable_from logic. Used by mono_object_isinst, 
15552         Type::IsAssignableFrom () and the interpreter.
15553
15554         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
15555         Object, even interfaces.
15556         
15557         * object.c (mono_object_isinst): Implement in terms of 
15558         is_assignable_from.
15559
15560         * icall.c (ves_icall_type_is_assignable_from): New icall.
15561
15562 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
15563
15564         * domain.c (foreach_domain): fix compiler warning.
15565
15566 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
15567
15568         * image.c (load_metadata_ptrs): use g_strndup because strndup is
15569         not available on all plattforms
15570
15571 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
15572
15573         * image.h image.c: Store the metadata version string in MonoImage.
15574         * icall.c: New icall to retrieve the image version.
15575         * reflection.c (create_dynamic_image): Fill in the image version field
15576         * reflection.c (build_compressed_metadata): Use the image version
15577         from the image structure.
15578
15579 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15580
15581         * appdomain.c: modified comment.
15582         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
15583         That will be its last iteration when mono_gc_cleanup is called from
15584         mono_runtime_cleanup and before the domain is unloaded.
15585
15586         Fixes bug #45962.
15587
15588 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
15589
15590         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
15591         attributes.
15592
15593 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15594
15595         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
15596         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
15597         Bernie Solomon <bernard@ugsolutions.com>.
15598
15599 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15600
15601         * object.c, object.h: provide mono_object_new_fast() for faster
15602         allocation in some special cases.
15603
15604 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
15605
15606         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
15607         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
15608
15609 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
15610
15611         * threadpool.c: fix leaks.
15612
15613 2003-07-01  Dick Porter  <dick@ximian.com>
15614
15615         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
15616         using MonoGHashTables.  Fixes threadpool bug posted to list.
15617
15618 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
15619
15620         * image.h, image.c: added support to load an assembly from a byte array.
15621         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
15622         assembly bundle support.
15623
15624 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
15625
15626         * threadpool.c (mono_thread_pool_add): keep a reference to the
15627         AsyncResult to prevent GC
15628
15629 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
15630
15631         * class.c: leak fix.
15632
15633 2003-06-25  Dick Porter  <dick@ximian.com>
15634
15635         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
15636         for the async object, the WaitHandle object will close the handle.
15637         Fixes bug 45321.
15638
15639 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15640
15641         * class.c: in mono_array_class_get (), lookup from the hash with the
15642         same type we insert: this works around a bug in
15643         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
15644         lluis. The real fix will have to wait for after the release.
15645
15646 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
15647
15648         * icall.c: fix memory leak when getting type members.
15649
15650 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15651
15652         * reflection.c: added more pubtoken special cases.
15653
15654 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
15655
15656         * class.c: handle field offset correctly when class size
15657         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
15658
15659 2003-06-20  Martin Baulig  <martin@ximian.com>
15660
15661         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
15662         *image' field.
15663
15664 2003-06-20  Martin Baulig  <martin@ximian.com>
15665
15666         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
15667
15668 2003-06-20  Martin Baulig  <martin@ximian.com>
15669
15670         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
15671         just distinguish between variables in registers and variables at
15672         an offset relative to a register.
15673
15674 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15675
15676         * icall.c: #ifdef out latest changes until mcs is fixed.
15677
15678 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15679
15680         * icall.c: return members in metadata order.
15681
15682 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
15683
15684         * icall.c: avoid infinite loop in GetTimeZoneData.
15685
15686 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
15687
15688         * icall.c: added Marshal.Prelink/All icalls.
15689
15690 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
15691
15692         * object.c, object.h: fix warnings and do some overflow checking
15693         when creating arrays.
15694
15695 2003-06-17  Dick Porter  <dick@ximian.com>
15696
15697         * file-io.h:
15698         * file-io.c: File attributes need to be tweaked slightly when
15699         passed from the managed to the w32 world.
15700
15701 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15702         * profiler.h profiler-private.h profiler.c: Rework last patch
15703         based on suggestion by Paolo.
15704         
15705 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
15706
15707         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
15708         instruction level coverage data collection.
15709         * profiler.h profiler.c (: Added new callback function which can be
15710         used by the profiler to limit which functions should have coverage
15711         instrumentation.
15712         * profiler.c (mono_profiler_load): Call g_module_build_path to
15713         generate the file name of the profiler library.
15714
15715 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
15716
15717         * profiler.c, profiler.h, profiler-private.h: added basic block 
15718         coverage profiling API.
15719
15720 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
15721
15722         * reflection.c (mono_reflection_create_runtime_class): Add support
15723         for events in dynamically generated code.
15724
15725         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
15726         not allocated.
15727
15728 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
15729
15730         * icall.c: when getting timezone info, return reasonable values if we
15731         can't get the actual data.
15732
15733 2003-06-14  Dick Porter  <dick@ximian.com>
15734
15735         * threads.c (start_wrapper): Remove the reference to the thread
15736         object in the TLS data, so the thread object can be finalized.
15737         This won't be reached if the thread threw an uncaught exception,
15738         so those thread handles will stay referenced :-( (This is due to
15739         missing support for scanning thread-specific data in the Boehm GC
15740         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
15741
15742 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
15743
15744         * reflection.c: ensure streams and tables are first allocated with
15745         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
15746
15747 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
15748
15749         * icall.c: fixed GetElementType for byrefs (bug# 44792).
15750
15751 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
15752
15753         * reflection.c (mono_reflection_create_runtime_class): Add support for
15754         properties to dynamically created classes.
15755         * reflection.c: Fix a few places where non-MonoObjects were inserted
15756         into the tokens hashtable.
15757
15758 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15759
15760         * object.c: some support to handle out of memory exceptions.
15761
15762 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
15763
15764         * marshal.c (mono_marshal_get_native_wrapper): support reference
15765         return types
15766
15767 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15768
15769         * object.h, object.c: more portability stuff from Bernie Solomon.
15770         Unexport mono_object_allocate(). Added mono_object_unbox ().
15771         Set exitcode when an unhandled exception is thrown.
15772
15773 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
15774
15775         * marshal.c (mono_marshal_get_native_wrapper): use custom
15776         marshaler for return types.
15777
15778 2003-06-10  Dick Porter  <dick@ximian.com>
15779
15780         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
15781         ip_mreq is available
15782
15783 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
15784
15785         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
15786         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
15787         by Bernie Solomon <bernard@ugsolutions.com>.
15788
15789 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
15790
15791         * gc.c (mono_gc_init): Avoid error message on shutdown when
15792         GC_DONT_GC=1 is used.
15793
15794         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
15795         New icall to return the GUID of a module.
15796
15797 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
15798
15799         * class.c: ensure instance size always includes the parent's size
15800         even whem class size is set explicitly (fixes bug#44294).
15801
15802 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15803
15804         * profiler.h, profiler.c: made the simple profiler thread-safe,
15805         get more accurate timing info. Allow the loading of an
15806         externally-developed profiler module.
15807
15808 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
15809
15810         * marshal.c (mono_marshal_get_native_wrapper): improved
15811         class/byref arguments.
15812         (mono_marshal_get_native_wrapper): better string marshaling support.
15813
15814 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
15815
15816         * class.c: ensure .pack and .size are handled correctly and
15817         simplified layout of static fields.
15818
15819 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
15820
15821         * appdomain.c
15822         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
15823
15824         * loader.c (mono_lookup_pinvoke_call): look for modules in the
15825         current directory (fix bug 44008)
15826
15827 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
15828
15829         * marshal.c (mono_marshal_get_native_wrapper): started support for
15830         custom marshalers.
15831         (mono_delegate_to_ftnptr): consider marshalling specifications
15832
15833 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
15834
15835         * reflection.c, reflection.h: emit custom marshal info.
15836
15837 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15838
15839         * object.c: free the GError.
15840         * icall.c: added CloseEvent_internal.
15841         * threads.[ch]:
15842         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
15843         call.
15844
15845 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
15846
15847         * loader.c (mono_method_get_signature): Add support for dynamic
15848         assemblies.
15849
15850 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
15851
15852         * reflection.c: fixed bug #43905.
15853
15854 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
15855
15856         * class.c, domain.c, icall.c, metadata.h, object.h: support for
15857         handling TypedReference and ArgIterator.
15858         * loader.c, loader.h: added function to get signature at call site.
15859
15860 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
15861
15862         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
15863         data readonly. Buglets and warning fixes. Some MethodSpec support.
15864
15865 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
15866
15867         * class.h, class.c, object.c: remove relative numbering support.
15868
15869 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
15870
15871         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
15872         free the string, until we get a chance to fix Gtk#
15873
15874 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15875
15876         * marshal.c: revert last patch.
15877
15878 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
15879
15880         * icall.c: updates for new mono_class_vtable() not calling
15881         the type constructor anymore.
15882
15883 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
15884
15885         * object.h, object.c: separate vtable creation from type
15886         initialization. Make running the .cctor thread safe.
15887
15888 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
15889
15890         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
15891
15892 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
15893
15894         * loader.c (mono_get_method): consider calling convention
15895
15896 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
15897
15898         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
15899         to return the invisible global type for a module.
15900
15901         * reflection.c (mono_image_build_metadata): Emit global fields too.
15902
15903 2003-05-20  Peter Williams  <peterw@ximian.com>
15904
15905         * loader.c (mono_lookup_internal_call): Add a few newlines.
15906
15907 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
15908
15909         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
15910         literal strings.
15911
15912         * appdomain.c (set_domain_search_path): Recalculate search path when
15913         AppDomainSetup.PrivateBinPath changes.
15914
15915         * object.c (mono_class_compute_gc_descriptor): It turns out some
15916         parts of the class libs (like System.Thread) holds pointers to
15917         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
15918         to treat native int a pointer type here.
15919         
15920 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
15921
15922         * appdomain.h, domain.c: add hashtable for jump target resolution.
15923
15924 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
15925
15926         * reflection.h reflection.c icall.c: Added new icalls 
15927         GetManifestResourceInfoInternal, GetModulesInternal and support
15928         infrastructure.
15929
15930 2003-05-16  Dick Porter  <dick@ximian.com>
15931
15932         * icall.c:
15933         * file-io.h:
15934         * file-io.c: Implement System.IO.MonoIO::GetTempPath
15935
15936 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
15937
15938         * object.c: mono_store_remote_field: little fix to previous patch.
15939
15940 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15941
15942         * class.c: add constructors to array classes.
15943         * icall.c: special case array construction for InternalInvoke (),
15944
15945 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
15946
15947         * class.h class.c reflection.c object.c: Added support for field
15948         defaults in dynamically generated classes.
15949
15950 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
15951
15952         * reflection.c: properly encode charset for ddlimport.
15953
15954 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
15955
15956         * threads.c: allow compiling without GC.
15957
15958 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
15959
15960         * appdomain.h, object.c, object.h, threads.c, threads.h: added
15961         handling of thread static data.
15962
15963 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
15964
15965         * reflection.h, reflection.c: added mono_custom_attrs_free ().
15966
15967 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
15968
15969         * class.c (mono_array_class_get): always set the serializable flags
15970         (mono_array_class_get): always set the SEALED attribute for array types
15971
15972 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
15973
15974         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
15975         attributes (fix for bug 42021).
15976
15977 2003-05-12  Dick Porter  <dick@ximian.com>
15978
15979         * gc.c: Don't run finalizers when the finalizer thread is
15980         finishing up, because the default domain has already been
15981         destroyed.
15982
15983 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
15984
15985         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
15986         value is null, we should throw an exception.   This is slightly
15987         different than the other conventions used for the constructor.
15988
15989 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15990
15991         * socket-io.c: fixed windows build.
15992
15993 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15994
15995         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
15996
15997 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
15998
15999         * object.c (mono_string_new_wrapper): Compatibility fix for MS
16000         compilers.
16001
16002 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
16003
16004         * class.c (mono_class_layout_fields): Add experimental GC aware
16005         auto layout facility. Requires class library changes to work correctly.
16006
16007         (mono_class_setup_vtable): Avoid overriding explicit interface
16008         method implementations. Fixes iface3.exe test.
16009
16010         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
16011         object reference.
16012         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
16013         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
16014
16015         * metadata.h: Add new type classification macro which determines
16016         whenever the type holds an object reference.
16017
16018 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
16019
16020         * marshal.c (mono_marshal_get_native_wrapper): cleanups
16021
16022 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
16023
16024         * gc.c (finalizer_thread): Work around a GC bug.
16025
16026 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
16027
16028         * marshal.c (emit_struct_conv): allow unions
16029
16030         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
16031
16032 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
16033
16034         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
16035
16036 2003-05-06  Martin Baulig  <martin@ximian.com>
16037
16038         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
16039
16040 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16041
16042         * socket-io.c:
16043         (Select_internal): allow NULLs, don't create arrays if not needed.
16044         Coupled with Socket.cs changes.
16045
16046         * threadpool.c:
16047         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
16048         register a finalizer for it that will close the semaphore handle. This
16049         fixes the leak and make Lupus' test run with > 4080 loops.
16050
16051 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
16052
16053         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
16054         Jerome Laban (bug #42287)
16055
16056 2003-05-02  Martin Baulig  <martin@ximian.com>
16057
16058         * debug-mono-symfile.h
16059         (MonoSymbolFile): Moved declaration into mono-debug.h.
16060         (MonoDebugMethodJitInfo): Likewise.
16061         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
16062         argument.
16063         (_mono_debug_address_from_il_offset): Take a
16064         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
16065
16066         * mono-debug.h
16067         (MonoDebugDomainData): New struct.
16068         (mono_debug_get_domain_data): New function.
16069         (mono_debug_add_method): Take an additional `MonoDomain *'
16070         argument.
16071         (mono_debug_source_location_from_address): Likewise.
16072         (mono_debug_il_offset_from_address): Likewise.
16073         (mono_debug_address_from_il_offset): Likewise.
16074
16075 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
16076
16077         * reflection.c: one more check for null type in custom attrs.
16078
16079 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16080
16081         * reflection.c: avoid warning (comparison is always false due to limited
16082         range of data type).
16083
16084 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16085
16086         * icall.c: throw an exception in Type.GetField if the argument 'name'
16087         is NULL.
16088
16089 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
16090
16091         * reflection.c: fixed handling of enums in named arguments to custom
16092         attributes (bug #42123).
16093
16094 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
16095
16096         * reflection.c: use the right array element type and handle
16097         a null for a Type argument, too.
16098
16099 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
16100
16101         * reflection.c: handle arrays as arguments to custom attributes.
16102
16103 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
16104
16105         * reflection.c: handle a string value in a custom attr
16106         ctor that takes an object.
16107
16108 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
16109
16110         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
16111         (fix bug #42063)
16112
16113 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
16114
16115         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
16116
16117 2003-04-27  Martin Baulig  <martin@ximian.com>
16118
16119         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
16120         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
16121         MONO_DEBUGGER_EVENT_BREAKPOINT.
16122         (mono_breakpoint_trampoline_code): Removed.
16123         (mono_debugger_event_handler): The last argument is now a
16124         `guint32'.
16125         (mono_debugger_insert_breakpoint_full): Removed the
16126         `use_trampoline' argument.
16127         (mono_debugger_method_has_breakpoint): Likewise.
16128         (mono_debugger_trampoline_breakpoint_callback): Renamed to
16129         mono_debugger_breakpoint_callback(); take the method and
16130         breakpoint number as arguments.
16131
16132 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
16133
16134         * metadata.c: fix off by one when loading parameters attributes.
16135
16136 2003-04-24  Martin Baulig  <martin@ximian.com>
16137
16138         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
16139
16140 2003-04-24  Martin Baulig  <martin@ximian.com>
16141
16142         * mono-debug-debugger.c: Moved all code which interacts with the
16143         Mono Debugger here.
16144
16145         * debug-mono-symfile.c: This code now just deals with the symbol
16146         file itself, the debugger code is now in mono-debug-debugger.c.
16147
16148 2003-04-23  Martin Baulig  <martin@ximian.com>
16149
16150         * mono-debug.c (mono_debug_source_location_from_il_offset):
16151         New method; like mono_debug_source_location_from_address(), but
16152         takes an IL offset instead of a machine address.
16153
16154 2003-04-23  Martin Baulig  <martin@ximian.com>
16155
16156         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
16157         `line' field; this is now computed by the debugger.
16158
16159 2003-04-23  Martin Baulig  <martin@ximian.com>
16160
16161         * mono-debug.[ch]: New files.  This is the new debugging interface.
16162
16163         * mono-debug-debugger.[ch]: New files.  Moved all code which
16164         interacts with the Mono Debugger here.
16165
16166 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
16167
16168         * domain.c (mono_init): initialize mono_defaults.monitor_class
16169
16170 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
16171
16172         * reflection.c (method_encode_code): Add a spicy exception to help
16173         future compiler authors.
16174
16175 2003-04-21  Martin Baulig  <martin@ximian.com>
16176
16177         * icall.c
16178         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16179         Make this work with relative pathnames; g_filename_to_uri() needs
16180         an absolute filename.
16181
16182 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
16183
16184         * icall.c: Track name changes in Object and ValueType.
16185
16186 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
16187
16188         * metadata.c (mono_type_stack_size): size should be a multiple of
16189         sizeof (gpointer)
16190
16191 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16192
16193         * gc.c:
16194         (internal_domain_finalize): moved into mono_domain_finalize. No need
16195         to create another thread because the finalizers will be run in the
16196         finalizer thread.
16197         
16198         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
16199         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
16200         to be run (MS does this too).
16201
16202 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
16203
16204         * object.c (mono_class_compute_gc_descriptor): Update comment.
16205
16206         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
16207
16208         * image.h: Add synchronized wrapper cache.
16209
16210         * image.c (do_mono_image_open): Initialize cache.
16211
16212         * reflection.c (create_dynamic_mono_image): Initialize cache.
16213
16214 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16215
16216         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
16217         ves_icall_System_Buffer_ByteLengthInternal.
16218
16219 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
16220
16221         * reflection.c: setup klass->nested_in earlier. Allow
16222         a dash in the assembly name.
16223
16224 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
16225
16226         * metadata.c (mono_type_to_unmanaged): dont access
16227         type->data.klass for MONO_TYPE_OBJECT
16228         (mono_type_to_unmanaged): consider System.Delegate class
16229
16230 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
16231
16232         * class.c: just setup supertypes in the proper place instead of
16233         initializing the full element class for arrays.
16234
16235 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
16236
16237         * class.c: ensure the element class of arrays is initialized.
16238         Setup the supertype info for array classes, too.
16239
16240 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
16241
16242         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
16243
16244 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16245
16246         * Makefile.am: re-added -m option when running cygpath. This way,
16247         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
16248         separator.
16249         * mono-config.c: same codepath for locating mono config file for WIN32
16250         and the rest.
16251         * assembly.c: if mono_assembly_setrootdir is called, don't override
16252         the value set.
16253
16254 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16255
16256         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
16257         MONO_ASSEMBLIES variable.
16258
16259 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
16260
16261         * icall.c: added Assembly::GetNamespaces() icall.
16262
16263 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16264
16265         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
16266
16267 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
16268
16269         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
16270         * object.c: fixed bug in the construction of vtable for proxies
16271
16272 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
16273
16274         * object.c (mono_array_new): Mark mono_array_new as an icall.
16275
16276 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16277
16278         * class.c: fixed test for public method when overriding interfaces.
16279         Closes bug #40970.
16280
16281 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
16282
16283         * appdomain.h, domain.c: added mono_domain_foreach() to
16284         be able to access the currently loaded appdomains.
16285         * object.c: make string interning work across sppdomains.
16286         Mark some functions for use as icalls.
16287
16288 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
16289
16290         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
16291
16292         * reflection.h reflection.c: Allocate long living data using 
16293         GC_MALLOC_ATOMIC so the collector does not need to scan it.
16294
16295         * reflection.c: Double the allocation size in streams instead of
16296         increasing it, to prevent unneccesary copying on large assemblies.
16297         
16298         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
16299         creation if the assembly does not have the Run flag set.
16300
16301 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
16302
16303         * class.h: avoid the C++ keywords in header files (Jerome Laban
16304         spotted and fixed this).
16305
16306 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16307
16308         * object.c:
16309         (mono_unhandled_exception): fill in the arguments for the
16310         UnhandledException event. Only trigger that event for the default
16311         domain (as MS does).
16312
16313 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
16314
16315         * object.c: Improve typed allocation stuff based on suggestions from
16316         Paolo. Also turn it on if the GC library supports it.
16317
16318 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16319
16320         * object.c object.h class.h: Added experimental typed allocation
16321         facility using the interfaces in gc_gcj.h.
16322
16323         * os/gc_wrapper.h: Added new include files.
16324         
16325 2003-04-03  Martin Baulig  <martin@ximian.com>
16326
16327         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
16328         which is not yet enabled by default.
16329
16330         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
16331         functions.
16332         (mono_gc_lock, mono_gc_unlock): New static functions.
16333
16334         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
16335         functions; stop/start the world for the garbage collector.  This
16336         is using the windows API; we need to complete the SuspendThread()/
16337         ResumeThread() implementation in the io-layer to make this work on Unix.
16338         (mono_gc_push_all_stacks): New public function; tells the garbage
16339         collector about the stack pointers from all managed threads.
16340
16341 2003-04-03  Martin Baulig  <martin@ximian.com>
16342
16343         * object.h (MonoThread): Added `gpointer stack_ptr'.
16344
16345         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
16346
16347 2003-04-03  Martin Baulig  <martin@ximian.com>
16348
16349         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
16350
16351 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
16352
16353         * reflection.c (typebuilder_setup_fields): Initialize field.first and
16354         field.last.
16355
16356 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
16357
16358         * loader.c (mono_lookup_internal_call): Report the corlib that is
16359         out of sync.
16360
16361 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
16362
16363         * icall.c (ves_icall_type_GetTypeCode): fixed check for
16364         System.DBNull (it's class not valuetype).
16365
16366 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
16367
16368         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
16369         if the array method was already assigned a token (fixes bug#40646).
16370
16371 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
16372
16373         * reflection.c (mono_reflection_get_type): Attempt type resolve even
16374         if no assembly is given.
16375
16376 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
16377
16378         * metadata.h: Added the new tables.
16379
16380         * row-indexes.h: Added definitions for new tables.
16381
16382         * metadata.c: Add schemas for new tables, and add support for
16383         computing the sizes of them.
16384
16385         * class.c: Update for handling the new type cases.
16386
16387 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
16388
16389         * metadata.h (MONO_TYPE_IS_VOID): new macro
16390
16391 2003-03-31  Martin Baulig  <martin@ximian.com>
16392
16393         * threads.h (MonoThreadCallbacks): Added `thread_created'.
16394
16395         * threads.c (mono_thread_new_init): Call `thread_created' in the
16396         mono_thread_callbacks.
16397
16398 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
16399
16400         * loader.h: added marshalbyrefobject_class to mono_defaults
16401         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
16402         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
16403           generation of output parameters.
16404           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
16405         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
16406           contextbound and the target object belongs to the context of the caller.
16407         * object.h: added context and unwrapped_server variables in MonoRealProxy.
16408         * object.c: Implemented support for interfaces and abstract classes
16409           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
16410           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
16411
16412 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
16413
16414         * class.h class.c (mono_class_is_subclass_of): New function.
16415         
16416         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
16417         routines for most common case (calls from ArrayList::ToArray).
16418
16419         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
16420         routine so programs which call Environment::Exit() can be profiled.
16421
16422         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
16423         Added MONO_ARCH_SAVE_REGS.
16424
16425         * icall.c (ves_icall_type_is_subtype_of): Use new function.
16426
16427 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
16428
16429         * blob.h: Add a couple of new MonoType types definitions.
16430
16431         * tabledefs.h: Add a couple of new call convs.
16432
16433 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
16434
16435         * reflection.h (MonoReflectionDynamicAssembly): track changes in
16436         the layout of the class.
16437
16438         * reflection.c (alloc_table): double the size on overflow to avoid
16439         unnecessary copying.
16440
16441         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
16442         avoid filling out metadata tables and blobs. Also set mb->ilgen to
16443         null so it can be garbage collected.
16444         
16445 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
16446
16447         * reflection.c (mono_reflection_get_type): Return the resolved type
16448         only if it is in the assembly we searched.
16449
16450         * reflection.c (ensure_runtime_vtable): Initialize method slots.
16451
16452         * class.c (mono_class_setup_vtable): Set the slot of the overriding
16453         method.
16454
16455 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16456
16457         * appdomain.c:
16458         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
16459         the right one is 'file:///blah', but MS allows it.
16460         * assembly.c:
16461         (mono_assembly_open): allow 'file://blah'
16462
16463         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
16464
16465 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
16466
16467         * socket-io.c: fixes bug #40310.
16468
16469 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
16470
16471         * reflection.c (mono_reflection_parse_type): handle deeply nested
16472         types correctly.
16473
16474         * reflection.c (mono_image_create_token): Use unique token values
16475         since they will be put into a hash table.
16476
16477         * class.c (mono_class_setup_vtable): If a method occurs in more than
16478         one place in the vtable, and it gets overriden, then change the
16479         other occurances too.
16480
16481         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
16482         object as return type.
16483
16484 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16485
16486         * icall.c: Deleted "ToString" implementation for double and float
16487         because they are full implemented in managed code.
16488
16489 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16490
16491         * reflection.c, reflection.h: implemented and exported functions
16492         to retrieve info about custom attributes.
16493
16494 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16495
16496         * appdomain.c: moved Uri handling to assembly.c
16497         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
16498         work when using a file Uri in *nix and windows.
16499
16500         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
16501         GetReferencedAssemblies.
16502
16503 2003-03-18  Dick Porter  <dick@ximian.com>
16504
16505         * icall.c: Rename a couple of internal calls
16506
16507         * threads.c: Set the thread state to Stopped when a thread exits.
16508         Fixes bug 39377.
16509
16510 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
16511
16512         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
16513         New icall.
16514
16515         * object.c (mono_class_vtable): fix warning.
16516
16517 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
16518
16519         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
16520
16521         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
16522         memory.
16523         (method_encode_clauses): Create exception info structures in the right
16524         order.
16525         (mono_reflection_setup_internal_class): Initialize supertypes field.
16526
16527         * class.c object.c: Handle interfaces which implement other interfaces 
16528         correctly.
16529
16530         * class.h class.c: Move the supertypes array initialization code into 
16531         a separate function so it can be used for dynamic types too. Also call
16532         it earlier, in mono_class_init(), since it can be used before the
16533         type is initialized.
16534
16535 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16536
16537         * Makefile.am:
16538         * assembly.c:
16539         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
16540
16541         * appdomain.c:
16542         * appdomain.h:
16543         * marshal.c:
16544         * object.c: remove warnings.
16545
16546 2003-03-13  Martin Baulig  <martin@ximian.com>
16547
16548         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
16549         (MonoDebugLexicalBlockEntry): New types.
16550
16551         * debug-mono-symfile.c
16552         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
16553
16554 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16555
16556         * process.c: ret can be any non-zero value accroding to MS doc.
16557
16558 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
16559
16560         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
16561         fixing a warning for a miss-used prototype, would have cause
16562         random memory corruption.
16563
16564 2003-03-07  Martin Baulig  <martin@ximian.com>
16565
16566         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
16567         getting really annoying ....
16568
16569 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
16570
16571         * reflection.c (fixup_method): added support for array methods.
16572
16573 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
16574
16575         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
16576         (pointed out by Michael Adams).
16577
16578 2003-03-04  Dick Porter  <dick@ximian.com>
16579
16580         * icall.c: Temporarily reverted the Double and Single ToString()
16581         change, because it broke nunit.
16582
16583 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
16584
16585         * object.h, threads.h: make include files compatible with C++
16586         (patch by Jerome Laban <jlaban@wanadoo.fr>).
16587
16588 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16589
16590         * icall.c: Erased ToString helper functions for Double and Single.
16591         Now, that implementations ar all in managed code (Double and Single
16592         Formatters).
16593
16594 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
16595
16596         * appdomain.c: Added method for initializing the default context of
16597         a domain. Added internal call for getting the default context.
16598         * appdomain.h: Added context variable in MonoDomain struct.
16599         * domain.c: mono_domain_set also sets the default context of the domain
16600         * icall.c: Mapped internal method InternalGetDefaultContext.
16601         * object.c: mono_object_get_virtual_method returns always a remoting
16602         wrapper if the object is a transparent proxy.
16603         mono_runtime_invoke_array: when creating an object by calling the
16604         constructor, if the created object is a proxy, then the constructor should
16605         be called using the a remoting wrapper.
16606
16607 2003-03-03  Dick Porter  <dick@ximian.com>
16608
16609         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
16610         variable so it compiles on solaris.  Problem spotted by
16611         Christopher Taylor <ct@cs.clemson.edu>
16612
16613 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16614
16615         * appdomain.c:
16616         (get_info_from_assembly_name): don't leak value.
16617
16618         * icall.c:
16619         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
16620         result.
16621
16622 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
16623
16624         * assembly.c: export mono_image_load_references ().
16625         * class.c: handle function pointers. mono_class_from_name() now
16626         supports nested type names directly.
16627
16628 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
16629
16630         * reflection.h reflection.c: Encode already created dynamic methods 
16631         and fields correctly as a DEF instead of a REF.
16632
16633         * reflection.c: Get rid of the force_ref argument to 
16634         mono_image_typedef_or_ref since it was wrong in the first place.
16635
16636         * string-icalls.c: add error checking to string constructors according
16637         to the MSDN docs.
16638
16639         * reflection.c: Emit types in the order their TypeBuilders were 
16640         created. Previously, a new table index was assigned to each type before
16641         the tables were emitted. This was wrong because the signature blob
16642         might already refer to a type by its original table index.
16643
16644 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
16645
16646         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
16647         change.
16648         
16649 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16650
16651         * Makefile.am: make assemblies dir have \ instead of / on windows.
16652
16653 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
16654
16655         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
16656         iterate over the NESTEDCLASS table using a linear search since the
16657         table is not guaranteed to be sorted by the secondary key.
16658
16659         * class.c (mono_class_create_from_typedef): fixed up call to
16660         mono_metadata_nesting_typedef.
16661         
16662 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
16663
16664         * marshal.c (mono_string_to_byvalstr): clear the memory as
16665         suggested by Jerome Laban <jlaban@wanadoo.fr>
16666
16667 2003-02-26  Dick Porter  <dick@ximian.com>
16668
16669         * process.c: Cope with padding in .rsrc blocks
16670
16671 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16672
16673         * metadata.h: reverted the filter_len change, it breaks reflection
16674         
16675 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
16676
16677         * metadata.h: added a new field to store the filter_len
16678         
16679
16680 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
16681
16682         * reflection.c: handle custom attributes for types and members
16683         created with Reflection.Emit (bug#38422).
16684
16685 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
16686
16687         * reflection.c: define RTSpecialName automatically for constructors for
16688         compatibility with MS.NET.
16689
16690         * reflection.c (mono_reflection_create_runtime_class): initialize
16691         nested_in field of dynamically created classes.
16692
16693 2003-02-22  Martin Baulig  <martin@ximian.com>
16694
16695         * debug-mono-symfile.h: Incremented version number.
16696
16697 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16698
16699         * object.h icall.c process.c: fix warnings.
16700
16701 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
16702
16703         * appdomain.h appdomain.c:
16704         (mono_domain_try_type_resolve): split the 
16705         name_or_tb argument into a name and a tb argument.
16706         (mono_domain_has_type_resolve): new function to check whenever the
16707         application has registered a TypeResolve event handler.
16708         
16709         * icall.c reflection.h reflection.c: move the type resolve logic into
16710         mono_reflection_get_type () so it will be invoked when 
16711         Assembly::GetType () is called.
16712
16713         * reflection.c:
16714         (mono_reflection_get_type): renamed to get_type_internal.
16715         (mono_reflection_get_type): fixed type name generation so it works 
16716         for nested types too.
16717         (mono_reflection_get_type): call has_type_resolve () to avoid the 
16718         costly type name generation if there is no resolve event handler.
16719
16720 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
16721
16722         * class.c, image.c: load exported types from file references.
16723
16724 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
16725
16726         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
16727           used to cache the managed methods used to create proxies and make 
16728           remote invocation of methods.
16729         * class.h: Added in MonoVTable a flag to indicate that a class needs 
16730           to be remotely created.
16731         * object.c: Modified the method mono_class_vtable(). It now initializes 
16732           the remote flag of the vtable. Modified mono_object_new_specific(), 
16733           so now it checks the remote flag.
16734         * icall.c: Added a couple of internal methods, one for enabling instance 
16735           creation interception for a type, and one for creating objects bypassing
16736           the remote check.
16737
16738 2003-02-18  Martin Baulig  <martin@ximian.com>
16739
16740         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
16741         New interncall to get a method's metadata token.
16742
16743         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
16744         New interncall for the debugger.
16745
16746 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
16747
16748         * class.c (mono_class_setup_vtable): allocate supertype array
16749
16750 2003-02-18  Martin Baulig  <martin@ximian.com>
16751
16752         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
16753
16754 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16755
16756         * reflection.c:
16757         (assembly_name_to_aname): jump over unknown properties (i've found
16758         something like: 'type, assembly, version=xxx, custom=null, public...',
16759         so now will ignore custom=null and still get the rest of the values).
16760
16761 2003-02-17  Dick Porter  <dick@ximian.com>
16762
16763         * threads.c: Have Thread.Start() wait for a semaphore to signal
16764         that the thread has set up all its local data.  This fixes bug
16765         34323, where Abort() raced the new thread's TLS data.
16766
16767         Also removes the handle_store() call from start_wrapper, because
16768         threads are now always created suspended and there is no longer a
16769         race between the parent and child threads to store the info.
16770
16771 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
16772
16773         * image.c: explain the #- heap issue in a message, hopefully
16774         avoiding FAQs on mono-list.
16775
16776 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16777
16778         * icall.c:
16779         (GetEntryAssembly): if the domain has not invoked
16780         AppDomain.ExecuteAssembly yet, return the assembly of the default
16781         AppDomain.
16782
16783 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
16784
16785         * class.c (mono_ldtoken): make it work in dynamic assemblies.
16786
16787 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
16788
16789         * metadata.c, reflection.c: simple speedup to type hash
16790         and equals code.
16791
16792 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
16793
16794         * image.c, image.h, class.c, assembly.c: move module loading
16795         to MonoImage. When loading metadata, consider alignemnet from
16796         the start of metadata, not from the metadata address in memory.
16797
16798 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
16799
16800         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
16801         AssemblyBuilder objects. Factored out custom attribute creation into
16802         a separate function.
16803         (create_custom_attr): new function to create custom attributes.
16804
16805 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
16806
16807         * Makefile.am: Got tired of typing the full pathname to pedump.
16808         Until there is another option, am installing this.
16809
16810 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
16811
16812         * class.c (class_compute_field_layout): always set field->parent 
16813         (mono_ldtoken): use mono_defaults.fieldhandle_class;
16814
16815 2003-02-11  Dick Porter  <dick@ximian.com>
16816
16817         * threads-types.h:
16818         * monitor.c: Rewrote Monitor, making lock much faster and
16819         Pulse/Wait work as specified.  Also uses much fewer handles, and only
16820         creates them as needed.
16821
16822         * exception.c: Added SynchronizationLockException
16823
16824         * threads.c: Deleted old Monitor implementation.  The new one is
16825         in a new file.
16826
16827 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
16828
16829         * class.c: handled TypedReference type code. Set the correct size for
16830         class data. Setup interface_offsets for interface classes, too.
16831
16832 2003-02-09  Martin Baulig  <martin@ximian.com>
16833
16834         * debug-mono-symfile.h: Reflect latest symbol writer changes.
16835
16836 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
16837
16838         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
16839         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
16840         * object.c: fixed mono_object_get_virtual_method () for interfaces.
16841         * verify.c: check for code that runs after the end of the method.
16842
16843 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
16844
16845         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
16846         "System.Math::Round2".
16847         * sysmath.h: Added Floor, Round and Round2 definitions.
16848         * sysmath.c: Modified certain functions that were not 100% compliant
16849         with MS.NET (math precision) and added the implementation of Floor,
16850         Round and Round2.
16851
16852 2003-02-07  Martin Baulig  <martin@ximian.com>
16853
16854         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
16855
16856 2003-02-07  Martin Baulig  <martin@ximian.com>
16857
16858         * debug-mono-symfile.c: Reflected latest symwriter changes.
16859         (mono_debug_create_mono_symbol_file): Removed.
16860         (mono_debug_open_mono_symbol_file): Take an argument which
16861         specifies whether to create a dynamic symbol file.
16862
16863 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
16864
16865         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
16866
16867 2003-02-05  Martin Baulig  <martin@ximian.com>
16868
16869         * reflection.c (mono_image_build_metadata): Make this public,
16870         protect it against being called multiple times, don't create
16871         resources and don't build the compressed metadata here.
16872         (mono_image_create_pefile): Do this here.
16873
16874         * icall.c
16875         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
16876
16877 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16878
16879         * socket-io.c: fixed bug #36322.
16880
16881 2003-02-06  Piers Haken <piersh@friskit.com>
16882
16883         * appdomain.[ch]:
16884         * class.h:
16885         * debug-mono-symfile.c:
16886         * icall.c:
16887         * loader.c:
16888         * mono-config.c:
16889         * monosn.c:
16890         * reflection.c:
16891         * socket-io.c: warning cleanups
16892
16893 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
16894
16895         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
16896         function. works like remoting invoke, but does a check for the Proxy first.
16897
16898 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
16899
16900         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
16901
16902 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
16903
16904         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
16905         array of pointers.
16906         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
16907         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
16908
16909         * object.c (mono_store_remote_field_new): used by the new jit
16910         instead of mono_store_remote_field
16911         (mono_load_remote_field_new): used by the new jit
16912         instead of mono_load_remote_field
16913
16914 2003-02-05  Patrik Torstensson
16915
16916         * appdomain.c: changed unload to take the domain id instead
16917         of domain
16918         
16919         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
16920
16921
16922 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16923
16924         * appdomain.c: don't look for assemblies in ApplicationBase if
16925         PrivateBinPathProbe is set.
16926
16927 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16928
16929         * object.c: make the first argument in main_args contain the absolute
16930         path to the assembly. Fixes bug #37511.
16931
16932 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16933
16934         * icall.c: get correct UTC offset for countries not using daylight
16935         time saving. Fixes bug #30030.
16936
16937 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16938
16939         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
16940         and 1 are the family).
16941
16942 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
16943
16944         * icall.c (ves_icall_InternalExecute): removed wrong assertion
16945
16946         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
16947
16948 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
16949
16950         * reflection.c: added support for SignatureHelper tokens, which is
16951         needed by the Calli opcode.
16952
16953         * reflection.h: track changes to SignatureHelper class.
16954
16955         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
16956
16957 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16958
16959         * appdomain.c: fixed loading assemblies from PrivateBinPath.
16960
16961 2003-02-03  Patrik Torstensson
16962         * appdomain.[c|h], domain.c : 
16963          - Added support for getting a domain via domain id
16964          - Support for setting and getting domain from System.AppDomain 
16965            (used in cross appdomain channel)
16966          - Added support for get/set for a MonoAppContext on a thread 
16967            (Context class in System.Runtime.Remoting.Contexts),
16968          - Removed hack in Get/SetData and ExecuteAssembly.
16969         
16970         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
16971         the managed world to get control when a proxy is created.
16972
16973         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
16974         
16975 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
16976
16977         * icall.c
16978         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
16979         Populate the codebase field as well.
16980
16981 2003-02-02  Martin Baulig  <martin@ximian.com>
16982
16983         * debug-mono-symfile.c
16984         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
16985         (mono_debug_symfile_add_method): Allow interncalls.
16986
16987 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16988
16989         * icall.c: throw parse exception if strtod fails or the string is empty.
16990
16991 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
16992
16993         * marshal.c: handle object type separately from defined
16994         class types.
16995
16996 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
16997
16998         * marshal.c: handle NATIVE_LPSTR for strings when it's
16999         explicitly specified.
17000
17001 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
17002
17003         * reflection.c, reflection.h, icall.c: setup the reflection
17004         handle cache for ModuleBuilders and AssemblyBuilders.
17005
17006 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
17007
17008         * reflection.c (reflection_methodbuilder_to_mono_method): set
17009         pinvoke flag
17010
17011 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17012
17013         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
17014
17015 2003-01-29  Dick Porter  <dick@ximian.com>
17016
17017         * threads.c: No need for the fake_thread kludge now that Thread
17018         doesn't run a class constructor
17019         
17020 2003-01-29  Dick Porter  <dick@ximian.com>
17021
17022         * threads.c: Use g_direct_hash instead of the rather bogus
17023         g_int_hash
17024
17025 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
17026
17027         * marshal.c (mono_marshal_get_native_wrapper): add check for null
17028         (fix pinvoke12.exe)
17029         (mono_marshal_get_struct_to_ptr): generate valid IL code
17030         (mono_marshal_get_ptr_to_struct): generate valid IL code
17031         (*): correctly set sig->pinvoke, we need to memdup the signature
17032         to do that
17033
17034 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
17035
17036         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
17037         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
17038
17039 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17040
17041         * profiler.c: provide more callers information.
17042
17043 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
17044
17045         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
17046
17047         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
17048
17049         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
17050
17051 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17052
17053         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
17054         exception instead of going into an infinite loop on dates which it 
17055         can't yet handle.
17056
17057         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
17058         out-of-range exception if needed.
17059
17060         * class.c (mono_class_setup_vtable): allow a virtual method to provide
17061         an implementation for an interface method and to override an inherited
17062         method at the same time. 
17063         Imagine a scenario when a virtual method is used to override a
17064         virtual abstract method in a parent class, and this same method 
17065         provides an implementation for an method inherited from an interface. 
17066         In this case, the interface resolution code will set im->slot, which 
17067         means that the virtual method override pass will skip this method 
17068         which means a pointer to the abstract method inherited from the parent
17069         will remain in the vtable of this non-abstract class.
17070
17071         * class.c: (mono_class_setup_vtable): continue search for a real 
17072         method if only an abstract method is found.     
17073
17074 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
17075
17076         * reflection.c: add size to encoding for ByValStr and ByValArray
17077         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
17078
17079 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17080
17081         * class.c (mono_class_setup_vtable): pass the override info as an
17082         argument.
17083
17084         * class.c (mono_class_setup_vtable): set the slot of overriding methods
17085         correctly.
17086         
17087         * reflection.c (ensure_runtime_vtable); add support for method 
17088         overrides.
17089         
17090 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17091
17092         * reflection.c (resolution_scope_from_image): Hack to work to work with
17093         dynamic assemblies.
17094
17095         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
17096         added a 'force_ref' argument to force this function to allways return 
17097         a TypeRef. This is needed by mono_image_get_memberref_token ().
17098         
17099 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17100
17101         * reflection.c (mono_image_get_type_info): interfaces really don't have
17102         a parent.
17103
17104         * reflection.c (mono_image_basic_init): fill out missing fields of
17105         image structure.
17106
17107         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
17108         dynamic assemblies. This is required so dynamic assemblies show up in
17109         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
17110         Type::GetType() etc. This is consistent with MS behaviour.
17111
17112         * image.c image.h reflection.c: add newly created classes to the name 
17113         cache so mono_class_get () will find them.      
17114
17115 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
17116
17117         First part of changes to get IKVM.NET running under mono.
17118         
17119         * appdomain.h, appdomain.c: added new function 
17120         mono_domain_try_type_resolve() which will emit TypeResolve events. 
17121         This function will call AppDomain::DoTypeResolve to do the actual work.
17122
17123         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
17124         moved existing code dealing with dynamic tokens to a new function 
17125         called mono_reflection_lookup_dynamic_token (). This function will 
17126         raise TypeResolve events when appropriate. Since reflection.c is not 
17127         part of libmetadata, a new hook function called 
17128         mono_lookup_dynamic_token() is added to class.c which will call this.
17129
17130         * assembly.h assembly.c: make the invoke_load_hook function public,
17131         so it can be called for dynamic assemblies.
17132
17133         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
17134
17135         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
17136         type isn't found.
17137
17138         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
17139         MonoGHashTable, since it contains pointers to objects which the GC 
17140         needs to track.
17141
17142         * assembly.c (search_loaded): remove unused variable.
17143         
17144 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
17145
17146         * object.c: fixed issue exposed by gcc-generated IL programs
17147         that use RVA data for pointers.
17148
17149 2003-01-25  Martin Baulig  <martin@ximian.com>
17150
17151         * threads.c (start_wrapper): Moved the initialization of
17152         `start_func' above the mono_new_thread_init() call to which we
17153         pass it as argument.
17154
17155 2003-01-24  Martin Baulig  <martin@ximian.com>
17156
17157         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
17158         the MonoThread pointer.
17159
17160 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
17161
17162         * icall.c: Rename `PowImpl' to Pow.
17163
17164 2003-01-23  Dick Porter  <dick@ximian.com>
17165
17166         * threads.c (start_wrapper): Create a Thread object if needed, so
17167         the Main() thread can do the class initialisation in a subthread
17168         that has been set up to allow managed code execution.
17169
17170         Pass the thread ID instead of the MonoThread pointer to the thread
17171         start and attach callbacks.  This change is required, because the
17172         jit thread start callback must be called _before_ the Thread
17173         object can be created.
17174         
17175         (mono_thread_init): Removed much object creation code that is no
17176         longer needed.  No managed code is called from here now.
17177
17178         * object.c (mono_runtime_exec_managed_code): Create a subthread
17179         for Main, and call back to the runtime to use it.
17180         Set the exit code when Main exits.
17181
17182         * gc.c: Make sure domain finalisation happens in a subthread.
17183         Re-enable threaded GC, fixing bug 31333 (again).
17184
17185         * environment.c: System.Environment internall calls (so far just
17186         ExitCode is here, the others are still in icall.c)
17187
17188         * appdomain.c (mono_runtime_cleanup): All threads running managed
17189         code should have finished before mono_runtime_cleanup() is
17190         reached, so no need to clean up threads.
17191
17192 2003-01-22  Martin Baulig  <martin@ximian.com>
17193
17194         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
17195         `gpointer func' arguments.      
17196         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
17197         but added `MonoThread *thread' argument.
17198         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
17199
17200         * threads.c (mono_new_thread_init): Added `gpointer func' argument
17201         and pass it to the mono_thread_start_cb callback.
17202         (mono_install_thread_callbacks): New public function to install a
17203         set of callbacks which are set by the debugger.
17204         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
17205
17206 2003-01-22  Martin Baulig  <martin@ximian.com>
17207
17208         * Makefile.am: Install debug-mono-symfile.h.
17209
17210 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
17211
17212         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
17213
17214 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
17215
17216         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
17217         * class.c (mono_ptr_class_get): correctly set access levels of pointers
17218         (mono_array_class_get): correctly set access levels of arrays
17219
17220 2003-01-20      Patrik Torstensson
17221         * image.h (MonoAssemblyName): changed major, minor, build, revision
17222         from signed to unsigned.
17223
17224 2003-01-20  sean kasun <skasun@azstarnet.com>
17225
17226         * reflection.c (load_cattr_value): Now this handles
17227         MONO_TYPE_SZARRAY.  Fixes bug #35629
17228
17229 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
17230
17231         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
17232         integer value
17233
17234 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17235
17236         * decimal.c: fixed bug #26056.
17237
17238 2003-01-17  Martin Baulig  <martin@ximian.com>
17239
17240         * gc.c: Raise an ExecutionEngineException instead of using g_error().
17241
17242 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17243
17244         * exception.[ch]:
17245         (mono_get_exception_type_initialization): new function.
17246
17247         * object.c: throw a TypeInitializationException when an exception is
17248         thrown invoking the class constructor.
17249
17250 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17251
17252         * reflection.c: fixed attribute reading.
17253
17254 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17255
17256         * icall.c:
17257         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
17258         provided, look for the type in the calling assembly and then in
17259         mscorlib; if the assembly name is provided, only try that one.
17260
17261 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
17262
17263         * object.c: register the vtable before there is a chance it's
17264         queried again recursively.
17265
17266 2003-01-13  Duncan Mak  <duncan@ximian.com>
17267
17268         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
17269         gc-internal.h. 
17270         
17271 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
17272
17273         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
17274
17275 2003-01-11  Martin Baulig  <martin@ximian.com>
17276
17277         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
17278         this to 20 for the release.
17279
17280 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
17281
17282         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
17283
17284         * loader.c (mono_method_get_marshal_info): bug fix
17285
17286         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
17287         structures with explicit layout
17288
17289 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17290
17291         * profiler.c: made the output more readable (and sorted). 
17292         Added caller information for the allocation profiler.
17293
17294 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
17295
17296         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
17297
17298 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17299
17300         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
17301         to get value types.
17302         
17303 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
17304
17305         * object.c, profiler.h, profiler.c, profiler-private.h:
17306         Added object allocation profiler.
17307
17308 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
17309
17310         * reflection.h, reflection.c: handle global methods.
17311         Compress blob entries.
17312
17313 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
17314
17315         * marshal.c: fix compilation.
17316
17317 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
17318
17319         * loader.c (mono_method_get_marshal_info): impl.
17320
17321         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
17322
17323 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17324
17325         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
17326         for reference types.
17327
17328 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
17329
17330         * loader.c: fixed off by one error in loaded parameter names.
17331
17332 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
17333
17334         * marshal.c (mono_marshal_get_icall_wrapper): like
17335         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
17336         instead of a MonoMethod.
17337
17338 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17339
17340         * decimal.c: fixed bug #36537.
17341
17342 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
17343
17344         * marshal.c: throw a missing method exception if a
17345         P/Invoke method is not found.
17346
17347 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
17348
17349         * icall.c: allow a null this for constructors.
17350
17351 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
17352
17353         * icall.c: raise the proper exceptions if the arguments to the
17354         internal Invoke are incorrect.
17355
17356 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
17357
17358         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
17359
17360 2003-01-03  Martin Baulig  <martin@ximian.com>
17361
17362         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17363
17364 2002-12-31  Martin Baulig  <martin@ximian.com>
17365
17366         * debug-mono-symfile.c: Completely rewrote the type section.
17367         Instead of using individual malloc()ed fields, we use one big
17368         continuous memory area and offsets into this area.
17369         See the comments in the source code for details.
17370
17371 2002-12-30  Martin Baulig  <martin@ximian.com>
17372
17373         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
17374
17375 2002-12-30  Martin Baulig  <martin@ximian.com>
17376
17377         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
17378         line number table in this data blob instead of using an external
17379         pointer.
17380
17381 2002-12-28  Martin Baulig  <martin@ximian.com>
17382
17383         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
17384
17385 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
17386
17387         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
17388         as a boxed return type.
17389
17390 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
17391
17392         * appdomain.c
17393         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
17394         g_build_filename to properly get separators on the filename created.
17395
17396         * object.h: Small change, introduce MonoMarshalByRefObject to
17397         track the layout of that structure in the C# universe as we make
17398         changes there.
17399
17400 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
17401
17402         * object.c: removed assert to allow static fields on interfaces.
17403         * loader.c: a TypeSpec may be used for any type, not just arrays.
17404
17405 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
17406
17407         * class.c, class.h: added mono_class_array_element_size ().
17408         Ignore static methods in interfaces.
17409
17410 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17411
17412         * threads.c: fixed the build under cygwin.
17413
17414 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
17415
17416         * reflection.c: handle nullref constants. Allocate keys for
17417         reflection handles with the GC.
17418
17419 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17420
17421         * threads.c, threads.h: added mono_thread_get_abort_signal()
17422         to get a suitable signal for thread abort.
17423
17424 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
17425
17426         * metadata.c: fix handling of ExportedType table.
17427
17428 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17429
17430         * icall.c: added WriteWindowsDebugString internal call.
17431
17432 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17433
17434         * reflection.h: added fields to match C# implementation.
17435
17436 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17437
17438         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
17439
17440 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
17441
17442         * gc.h, gc-internal.h: Rename header for GC internal calls to
17443         gc-internal.h from gc.h as to not clash with Boehm GC having its
17444         header installed as <gc.h> in outside include paths.
17445         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
17446         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
17447
17448 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17449
17450         * icall.c: assign minor, build and revision in FillName.
17451
17452 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
17453
17454         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
17455         Added support for running code generated by Reflection.Emit.
17456
17457 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17458
17459         * appdomain.c: check for NULL argument in LoadFrom.
17460
17461 2002-12-10  Dick Porter  <dick@ximian.com>
17462
17463         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
17464
17465 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17466
17467         * appdomain.c: fix buglet when building exe file name.  Handle full
17468         assembly name (needed after latest changes to AssemblyName).
17469         * image.c:
17470         (mono_image_close): free some hashtables.
17471
17472 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
17473
17474         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
17475         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
17476         on some systems (redhat 7.3) 
17477
17478 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
17479
17480         * threads.c: delete the critical section of a sync block,
17481         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
17482
17483 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
17484
17485         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
17486
17487 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17488
17489         * appdomain.[ch]: handle the assembly preload event to try loading the
17490         assemblies using the paths we have in the current domain.
17491
17492         * assembly.[ch]: created an assembly preload hook that is called to try
17493         loading the assembly by other means that the ones provided here.
17494
17495         * domain.c: initialize the domain search path.
17496
17497         From now on, assemblies (TODO: except corlib and System) are loaded
17498         according to these rules when using mono_assembly_load ():
17499
17500                 1. It tries to load the assembly from the ApplicationBase
17501                 of the current domain appending .dll and .exe (TODO: have to
17502                 try loading from name/name.dll and name/name.exe).
17503
17504                 2. It tries the search path specified in PrivateBinPath for the
17505                 current domain (if any).
17506
17507                 3. Previous behavior.
17508
17509 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
17510
17511         * icall.c: implemented GetInterfaceMap() related icall.
17512         * domain.c, loader.h: load MethodInfo in mono_defaults.
17513
17514 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
17515
17516         * gc.c: disable the finalizer thread for now, untill all the issues
17517         with it are resolved.
17518
17519 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
17520
17521         * string-icalls.c: handle embedded nulls in string ctor when the
17522         length is specified.
17523
17524 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
17525
17526         * class.c: look for explicit interface implementation in parent
17527         classes, too.
17528
17529 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
17530
17531         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
17532
17533 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
17534
17535         * gc.c: protect handles with a critical section.
17536
17537 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17538
17539         * icall.c:
17540         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
17541         parameters. If no assembly specified, try getting the type from all
17542         the assemblies in the current domain, else, load the assembly and get
17543         the type from it.
17544
17545 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17546
17547         * marshal.c: applied patch from Aleksey Demakov that fixes
17548         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
17549
17550 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17551
17552         * icall.c: fixed get_location.
17553
17554 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
17555
17556         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
17557         declarations to make it work with older gcc. 
17558
17559         * loader.c (mono_get_method): set signature->pinvoke for native calls
17560
17561 2002-11-20  Dick Porter  <dick@ximian.com>
17562
17563         * threads.c (mono_thread_init): Set the main thread's handle
17564
17565 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
17566
17567         * gc.c: allow compilation without GC support. Changed to match the
17568         mono coding style.
17569
17570 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
17571
17572         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
17573
17574 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
17575
17576         * reflection.c: set a public key token on the core assemblies.
17577
17578 2002-11-18  Dick Porter  <dick@ximian.com>
17579
17580         * threads.c: Split out some thread initialisation so that other
17581         files can set the start callback function.
17582
17583         * gc.c: Run finalisers in a separate thread, to avoid stack
17584         overflow.  Fixes bug 31333.
17585
17586         * appdomain.c: Set up GC finalisation thread.
17587
17588         * reflection.c: 
17589         * object.c: 
17590         * domain.c: Use gc.h macros for GC_malloc
17591         
17592 2002-11-15  Dick Porter  <dick@ximian.com>
17593
17594         * threadpool.c: 
17595         * threads.c:
17596         * appdomain.c: Removed mono_runtime_init_with_attach(),
17597         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
17598         merging the extra parameter with the existing function.  Removed
17599         unneeded code in mono_thread_attach().
17600
17601 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
17602
17603         * image.c (mono_image_loaded_by_guid): a method to get loaded
17604         images by guid. 
17605         (load_metadata_ptrs): we store the guid as string.
17606
17607 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
17608
17609         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
17610
17611         * metadata.c (mono_guid_to_string): imported method form Zoltan
17612         Varga (slightly modified)
17613
17614         * assembly.c (mono_assembly_open): load precompiled code
17615
17616         * loader.h (MonoMethod): we store the method token for use in the
17617         aot compiler. 
17618
17619 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17620
17621         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
17622         the hook function called when an assembly is loaded.
17623         
17624         * domain.c: Modified file.
17625         (mono_domain_assembly_load): removed hash table insertion of assemblies.
17626
17627         Fixes bug #33196.
17628
17629 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
17630
17631         * reflection.c: Map PEFileKind to the value expected by the WinNT
17632         image loader. 
17633
17634 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17635
17636         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
17637         Read until the buffer is filled completely.
17638
17639 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17640
17641         * icall.c: implemented MonoType.InternalGetEvent ().
17642
17643 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17644
17645         * appdomain.c: implemented InitAppDomainSetup. Delayed
17646         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
17647         the entry_assembly.
17648
17649         * assembly.c: base_dir is now an absolute path ending with
17650         G_DIR_SEPARATOR.
17651
17652         * icall.c: modified get_location according to the above changes.
17653
17654         * object.c: init AppDomain.SetupInformation for the default domain after
17655         we have the entry assembly.
17656
17657         * domain.c: when unloading a domain, setup = NULL.
17658
17659 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
17660
17661         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
17662
17663 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
17664
17665         * object.h, object.c: introduced mono_object_get_virtual_method ()
17666         to lookup the method invoked on an object when a callvirt is done on
17667         a method.
17668         * icall.c: make MethodInfo::Invoke() always do a virtual call.
17669
17670 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17671
17672         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
17673         current domain when loaded an assembly and failed to load it.
17674
17675         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
17676
17677 2002-10-31  Dick Porter  <dick@ximian.com>
17678
17679         * icall.c: 
17680         * file-io.h: 
17681         * file-io.c: Return the error status in a parameter, as the
17682         GetLastError() value has long since been blown away if we try and
17683         look it up in a subsequent internal call invocation.  Delete the
17684         GetLastError() internal call, because it's useless.
17685
17686 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
17687
17688         * class.[ch]: added cast_class to fix bug 29517
17689
17690 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
17691
17692         * marshal.c: create valid IL code in the filter clause:
17693         the new JIT is less forgiving:-)
17694
17695 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17696
17697         * icall.c: removed get_property internal call.
17698
17699 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
17700
17701         * appdomain.h domain.c: Added an ID to appdomains.
17702         
17703         * threads.c threads.h icall.c: Implement icall
17704         Thread:GetDomainID(), and remove unused icall 
17705         CurrentThreadDomain_internal.
17706
17707 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17708
17709         * icall.c: Don't recurse through the base types in GetConstructor.
17710         Fixes bug #32063. 
17711
17712 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
17713
17714         * mempool.h, mempool.c: added mono_mempool_empty() and
17715         mono_mempool_stats().
17716
17717 2002-10-23  Dick Porter  <dick@ximian.com>
17718
17719         * file-io.c: 
17720         * file-io.h: 
17721         * icall.c: Added MonoIO.GetFileType internal call
17722
17723 2002-10-17  Dick Porter  <dick@ximian.com>
17724
17725         * appdomain.c (mono_runtime_cleanup): Don't signal the async
17726         delegate semaphore before waiting for all threads to finish,
17727         because new threads can also call async delegates.  Fixes bug
17728         32004.
17729
17730         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
17731         of 3 seconds, in case another async job is queued.  (This part is
17732         needed because the bug fix reintroduced the 3s exit lag.)  This
17733         makes the mono_runtime_shutdown flag superfluous.
17734
17735 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
17736
17737         * reflection.c: include ehader size in method section headers.
17738         Really check for suplicated modules entries.
17739
17740 2002-10-17  Martin Baulig  <martin@gnome.org>
17741
17742         * debug-mono-symfile.c: Added back support for locals.
17743
17744 2002-10-14  Martin Baulig  <martin@gnome.org>
17745
17746         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
17747         MONO_TYPE_VOID.
17748
17749 2002-10-14  Martin Baulig  <martin@gnome.org>
17750
17751         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
17752         mono_class_get() instead of looking in the class cache. 
17753
17754 2002-10-13  Martin Baulig  <martin@gnome.org>
17755
17756         * debug-mono-symfile.c: Set version number to 28, include the
17757         signature in method names.
17758
17759 2002-10-13  Martin Baulig  <martin@gnome.org>
17760
17761         * debug-mono-symfile.h: Set version number to 27.
17762
17763 2002-10-11  Martin Baulig  <martin@gnome.org>
17764
17765         * gc.c: Don't register/unregister NULL pointers as disappearing links.
17766
17767 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
17768
17769         * metadata.c, metadata.h: added helper function to allocate signatures.
17770
17771 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17772
17773         * icall.c: added internal call to get the location of machine.config.
17774
17775 2002-10-08  Martin Baulig  <martin@gnome.org>
17776
17777         * debug-mono-symfile.c: Ignore classes with a pending init for the
17778         moment.
17779
17780 2002-10-03  Dick Porter  <dick@ximian.com>
17781
17782         * threads.c: Freebsd pthread_t is a pointer
17783
17784 2002-10-03  Dick Porter  <dick@ximian.com>
17785
17786         * socket-io.c: Implemented GetHostName_internal
17787
17788 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17789
17790         * mono-config.c:
17791         (mono_config_parse_file): don't leak the text.
17792
17793 2002-10-02  Martin Baulig  <martin@gnome.org>
17794
17795         * debug-mono-symfile.c: Added support for methods.
17796
17797 2002-10-01  Martin Baulig  <martin@gnome.org>
17798
17799         * debug-mono-symfile.c: Don't emit methods and line numbers for
17800         the dynamic symbol file, just write the type table.  We can easily
17801         have an external helper program which creates a symbol file for an
17802         IL file.        
17803
17804 2002-10-01  Dick Porter  <dick@ximian.com>
17805
17806         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
17807         Only add the handle to the cleanup array when we're about to
17808         launch the thread.  Bug 31425 deadlocked when the test was run on
17809         mono under w32.
17810
17811 2002-10-01  Martin Baulig  <martin@gnome.org>
17812
17813         * debug-mono-symfile.c: Added support for properties.
17814
17815 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
17816
17817         * reflection.c: unaligned store fix from Mark Crichton
17818         <crichton@gimp.org>.
17819
17820 2002-09-27  Martin Baulig  <martin@gnome.org>
17821
17822         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
17823         New interncall.
17824
17825 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
17826
17827         * assembly.h, assembly.c: use a sane API to hook into the assembly
17828         loading process instead of a useless special-purpouse hack
17829         (ngen needs a hook, too, for example).
17830
17831 2002-09-27  Dick Porter  <dick@ximian.com>
17832
17833         * threads.c (mono_thread_init): Call GetCurrentProcess() so
17834         io-layer can set up some process handle info.  Not needed on w32,
17835         but doesn't hurt either.
17836
17837         * process.c: Pass the program name in the second parameter to
17838         CreateProcess, so the path is searched.  Include the working
17839         directory. Implemented process name, process enumeration, and some
17840         process detail internal calls.
17841         
17842         * icall.c: Added internal calls for process lookup, and some
17843         process details
17844
17845 2002-09-26  Martin Baulig  <martin@gnome.org>
17846
17847         * assembly.c (mono_install_open_assembly_hook): New global
17848         function to install a function to be invoked each time a new
17849         assembly is loaded.
17850         (mono_assembly_open): Run this callback function if set.
17851
17852         * debug-mono-symfile.c: Put back line numbers for the dynamic
17853         symbol file and also record the .il file as source file.  This
17854         allows us to install the temporary symbol file as `file.dbg' just
17855         like a compiler-generated one.
17856
17857 2002-09-26  Nick Zigarovich <nick@chemlab.org>
17858
17859         * Corrected typo in gc.c (BOHEM vs BOEHM).
17860
17861 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17862
17863         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
17864         GetProperties. Also avoid calling g_slist_length in GetProperties and
17865         GetMethods.
17866
17867 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
17868
17869         * reflection.c: avoid unaligned stores (bug spotted by
17870         Mark Crichton  <crichton@gimp.org>).
17871
17872 2002-09-25  Martin Baulig  <martin@gnome.org>
17873
17874         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
17875         instead of guint64 for addresses and added prologue/epilogue info.
17876
17877 2002-09-25  Martin Baulig  <martin@gnome.org>
17878
17879         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
17880         store line number info.  For the dynamic symbol file, we only need
17881         to provide the JIT generated dynamic line number info for the dynamic
17882         symbol file.
17883
17884 2002-09-25  Martin Baulig  <martin@gnome.org>
17885
17886         * debug-mono-symfile.h: Incremented version number.
17887
17888 2002-09-24  Martin Baulig  <martin@gnome.org>
17889
17890         * class.c (mono_debugger_class_init_func): New global function
17891         pointer variable.
17892         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
17893         call it.
17894
17895         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
17896         function.  This is called via the mono_debugger_class_init_func
17897         hook to add all types to the dynamic type table.
17898         (ves_icall_MonoDebugger_GetType): New interncall to get a class
17899         from its metadata token.
17900
17901         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
17902         New interncall for the debugger.
17903
17904 2002-09-24  Nick Drochak <ndrochak@gol.com>
17905
17906         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
17907         before using it in case it is null.
17908         
17909 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
17910
17911         * metadata.c: allow custom modifiers in local var signatures
17912         (bug spotted by Zoltan Varga).
17913
17914 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
17915
17916         * class.c: deal with the <Module> class that may have a NULL vtable.
17917         Eliminate warnings.
17918
17919 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
17920
17921         * image.c, image.h: more strong name helpers.
17922         * monosn.c: more work: convert pem keys to cryptoapi format.
17923
17924 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
17925
17926         * string-icalls.c: speedup IndexOf.
17927
17928 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
17929
17930         * icall.c: updates from Zoltan.2.Varga@nokia.com.
17931
17932 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
17933
17934         * icall.c: cleanup: use mono_object_domain ().
17935
17936 2002-09-23  Martin Baulig  <martin@gnome.org>
17937
17938         * debug-mono-symfile.c: Improved type support.
17939
17940 2002-09-22  Martin Baulig  <martin@gnome.org>
17941
17942         * debug-mono-symfile.c: Added support for reference types and strings.
17943
17944 2002-09-22  Martin Baulig  <martin@gnome.org>
17945
17946         * debug-mono-symfile.c: Started to work on the type table.
17947
17948 2002-09-21  Martin Baulig  <martin@gnome.org>
17949
17950         * debug-mono-symfile.c: Largely reworked the symbol table format.
17951         The symbol table is now incrementally updated each time a new
17952         method is added.  We're now also using our own magic and version
17953         so that you don't need to recompile all your classes if the
17954         dynamic table changes.
17955         (mono_debug_update_mono_symbol_file): Removed.
17956         (mono_debug_symfile_add_method): New function to add a method.
17957
17958 2002-09-21  Martin Baulig  <martin@gnome.org>
17959
17960         * icall.c
17961         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
17962         New interncall.
17963
17964         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
17965         New interncall to get a method from its metadata token.
17966
17967 2002-09-21  Martin Baulig  <martin@gnome.org>
17968
17969         * debug-mono-symfile.c: Create type table.
17970
17971 2002-09-20  Martin Baulig  <martin@gnome.org>
17972
17973         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
17974
17975 2002-09-20  Martin Baulig  <martin@gnome.org>
17976
17977         * debug-mono-symfile.c: Provide information about params and locals.
17978
17979 2002-09-20  Martin Baulig  <martin@gnome.org>
17980
17981         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
17982         New interncall.
17983
17984         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
17985         interncall to get a method from its metadata token.
17986
17987 2002-09-20  Martin Baulig  <martin@gnome.org>
17988
17989         * debug-mono-symfile.c: Added a few checks for method->header
17990         being non-NULL.  This should never happen, but for the moment
17991         let's use a g_warning() rather than a g_assert().
17992
17993 2002-09-19  Mark Crichton  <crichton@gimp.org>
17994
17995         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
17996         even if support for it isn't present.  Added an #ifdef to fix this.
17997
17998         * socket-io.c: Added checks back for Solaris support.
17999
18000 2002-09-19  Martin Baulig  <martin@gnome.org>
18001
18002         * debug-mono-symfile.c (read_string, write_string): Reflect latest
18003         changes in the symbol file format.
18004
18005 2002-09-18  Martin Baulig  <martin@gnome.org>
18006
18007         * debug-mono-symfile.c: Set version number to 21.
18008
18009 2002-09-18  Dick Porter  <dick@ximian.com>
18010
18011         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
18012         on netbsd.  Fixes bug 30051.
18013
18014 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18015
18016         * reflection.c:
18017         (set_version_from_string): little fix.
18018
18019 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18020
18021         * monosn.c, Makefile.am: added strong name utility.
18022         * reflection.h, reflection.c: implemented delayed signing,
18023         locale, version and hash id assembly attributes.
18024
18025 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18026
18027         * loader.c, metadata.c: load param attributes in signatures.
18028
18029 2002-09-16  Martin Baulig  <martin@gnome.org>
18030
18031         * debug-mono-symfile.c: Added string table with all method names.
18032
18033 2002-09-14  Martin Baulig  <martin@gnome.org>
18034
18035         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
18036         fast method lookup.
18037
18038 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18039
18040         * reflection.c: record the public key token of referenced assemblies.
18041
18042 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18043
18044         * image.c, image.h: added functions to get the strong name and the
18045         public key of an assembly.
18046         * pedump.c: use them.
18047
18048 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
18049
18050         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
18051
18052 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
18053
18054         * marshal.c (mono_marshal_get_managed_wrapper): Added
18055         MONO_TYPE_BOOLEAN 
18056
18057 2002-09-11  Martin Baulig  <martin@gnome.org>
18058
18059         * gc.c: Call GC_unregister_disappearing_link() on all links when
18060         finalizing them, this is necessary to aviod a crash in boehm's
18061         finalize handler.
18062
18063 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18064
18065         * gc.c: handle GetTarget for finalized objects spotted and fixed by
18066         nick@chemlab.org.
18067
18068 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18069
18070         * icall.c: implemented MonoType::Module.
18071         * reflection.c, reflection.h: mono_module_get_object () from
18072         Tomi Pakarinen <tomi.pakarinen@welho.com>.
18073
18074 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
18075
18076         * icall.c: ignore overridden methods in GetMethods ().
18077         Fix for FieldInfo::SetValue().
18078         * object.c: handle float/double in runtime invoke.
18079
18080 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
18081
18082         * object.c: allow a constructor to be called again on an object.
18083
18084 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18085
18086         * class.h, class.c: move field layout code to it's own function and
18087         export it. Get an interface id earlier. Move fields in MonoClass
18088         so they are more cache friendly and align the bitfields.
18089         * loader.c: temporary handle get_param_names() for a runtime method.
18090         * reflection.c, reflection.h: more code to handle runtime creation of
18091         types.
18092
18093 2002-09-09  Martin Baulig  <martin@gnome.org>
18094
18095         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
18096         signature with the pinvoke field being set for the actual call.
18097
18098 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18099
18100         * icall.c: removed some unused icalls. Start of map of glib charsets
18101         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
18102
18103 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18104
18105         * debug-helpers.c: break infinite loop (found and fixed by
18106         Holger Arnold <harnold@gmx.de>).
18107
18108 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
18109
18110         * icall.c: target may be null in create_delegate.
18111
18112 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18113
18114         * marshal.c: handle a boolean return type.
18115
18116 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
18117
18118         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
18119
18120 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18121
18122         * gc.c: fix weakreferences.
18123
18124 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
18125
18126         * icall.c: added icall to get default codepage.
18127
18128 2002-09-03  Dick Porter  <dick@ximian.com>
18129
18130         * threads.h: 
18131         * threads.c: Use MonoThread instead of MonoObject where
18132         apropriate.
18133
18134         Store running thread objects in a hash table, so that we have all
18135         the info to hand when waiting for them to finish
18136         (means we don't need OpenThread() any more, so mingw builds should
18137         be fully functional again.)
18138
18139         * verify.c:
18140         * object.h: Added thread ID to MonoThread
18141
18142 2002-09-03  Martin Baulig  <martin@gnome.org>
18143
18144         * icall.c (System.Reflection.Assembly::get_location): New interncall.
18145
18146 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18147
18148         * icall.c: fixed leak in get_temp_path. Thanks lupus.
18149
18150 2002-09-03  Martin Baulig  <martin@gnome.org>
18151
18152         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
18153         argument to store the end address of the disassembled instruction.
18154
18155         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
18156         here from debug-symfile.h.
18157         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
18158         JIT into this struct.
18159         (MonoSymbolFile): Added `char *image_file' field.
18160         (MonoDebugGetMethodFunc): Removed.
18161         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
18162         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
18163         (mono_debug_find_method): New method.
18164
18165         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
18166         create a full symbol file.
18167         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
18168         and static symbol files.
18169         (mono_debug_find_method): The symbol file keeps an internal method hash,
18170         call this to get a MonoDebugMethodInfo from a MonoMethod.
18171
18172         * debug-symfile.[ch]: Removed.
18173
18174 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
18175
18176         * image.c (do_mono_image_open): Remove linker version check.
18177
18178 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
18179
18180         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
18181         wrappers for instance methods.
18182         
18183 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18184
18185         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
18186
18187 2002-08-28  Dick Porter  <dick@ximian.com>
18188
18189         * Makefile.am: Export HOST_CC for w32 builds
18190
18191 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18192
18193         * file-io.c process.c: MonoString are null terminated, no
18194         need for mono_string_to_utf16() anymore.
18195
18196 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18197
18198         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
18199
18200 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
18201
18202         * icall.c, reflection.h: speedup System.MonoType.
18203
18204 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
18205
18206         * reflection.c: allow null as the value of a string argument in
18207         custom attributes constructors.
18208
18209 2002-08-27  Martin Baulig  <martin@gnome.org>
18210
18211         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
18212         `trampoline_address' field.
18213
18214 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
18215
18216         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
18217         check (fixes bug #29486) 
18218
18219 2002-08-27  Martin Baulig  <martin@gnome.org>
18220
18221         * debug-mono-symfile.c: Changed the file format in a way that allows us
18222         open it read-only and to use a specially malloced area for all the
18223         dynamic data.  We can now also generate a symbol file on-the-fly if we're
18224         debugging IL code and there is no MCS generated symbol file for it.
18225
18226 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
18227
18228         * object.c: added a define for a good string and array
18229         creation speedup (not enabled by default because we need to deal with
18230         the synch stuff).
18231
18232 2002-08-26  Martin Baulig  <martin@gnome.org>
18233
18234         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
18235         function to create a dynamic symbol file.  This is used by the
18236         debugger to create a symbol file for IL code on-the-fly.
18237
18238 2002-08-26  Martin Baulig  <martin@gnome.org>
18239
18240         * loader.c (mono_lookup_pinvoke_call): Include the error message
18241         from g_module_error() in the error message.
18242
18243 2002-08-24  Martin Baulig  <martin@gnome.org>
18244
18245         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
18246         function to update the symbol file.  The symbol file is mmap()ed
18247         writable, but private.  This allows us to install the symbol file
18248         together with the assembly.
18249
18250 2002-08-24  Martin Baulig  <martin@gnome.org>
18251
18252         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
18253         but they can read the new symbol file format which mcs is now creating.
18254
18255         * debug-symfile.c (mono_debug_find_source_location): Moved to
18256         debug-mono-symfile.c; this is now operating on the new symbol file.
18257
18258 2002-08-23  Martin Baulig  <martin@gnome.org>
18259
18260         * debug-helpers.c (mono_method_desc_from_method): New function to get
18261         a MonoMethodDesc from a MonoMethod.
18262
18263 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
18264
18265         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
18266         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
18267
18268 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
18269
18270         * string-icalls.[ch]: make helper methods static.
18271
18272 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18273
18274         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
18275         types to it and to SetValueInternal.
18276
18277         * object.c: Moved handle_enum label to its proper place. This was the
18278         f... bug! ;-)
18279
18280         This time i compiled mcs and gtk-sharp and they both work.
18281
18282 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18283
18284         * icall.c: reverted partially my previous patch until 
18285         object.c:set_value handles enums correcly.
18286
18287 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18288
18289         * icall.c:
18290         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
18291         (ves_icall_System_Environment_get_MachineName): removed warning when
18292         compiling under cygwin.
18293
18294 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18295
18296         * object.c: fixed field_get_value() for reference types.
18297
18298 2002-08-22  Dick Porter  <dick@ximian.com>
18299
18300         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
18301         Don't free a buffer while it's still needed.  Patch from Jonathan
18302         Liger <Jonathan.liger@wanadoo.fr>
18303
18304 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
18305
18306         * icall.c (ves_icall_System_Environment_get_Platform): Add new
18307         internal call.
18308
18309 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
18310
18311         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
18312         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
18313
18314         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
18315         we call unmanaged code which throws exceptions.
18316
18317 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18318
18319         * appdomain.h: added per-domain entry_assembly.
18320         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
18321         arguments.
18322         * icall.c: Assembly::GetEntryAssembly icall.
18323         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
18324         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
18325
18326 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18327
18328         * appdomain.h, gc.c: added mono_domain_finalize ().
18329
18330 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18331
18332         * object.c:
18333         (mono_print_unhandled_exception): changed g_warning by g_printerr
18334         because g_log has a 1024 characters limit (yeah, i got a big stack
18335         trace). Don't print exception name, that should be in ToString 
18336         returned string.
18337
18338 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18339
18340         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
18341         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
18342
18343 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18344
18345         * object.c:
18346         (mono_print_unhandled_exception): after previous commit, i realized
18347         that MS calls ToString on the exception. I changed this function to
18348         do that. This way we get stack_trace for free.
18349
18350 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18351
18352         * object.c:
18353         (mono_print_unhandled_exception): invoke Message property instead of
18354         getting 'message' field from Exception. Don't allocate memory for
18355         'trace' and 'message' if not needed.
18356
18357 2002-08-18  Dick Porter  <dick@ximian.com>
18358
18359         * unicode.c: Fix asserts to match Encoder.cs checks
18360
18361 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18362
18363         * marshal.c: fix unaligned store issue and a few wrong
18364         opcode argument types.
18365
18366 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18367
18368         * icall.c: added GetUninitializedObjectInternal internal call.
18369
18370 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
18371
18372         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
18373         to the right domain.
18374
18375 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
18376
18377         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
18378
18379         * class.c (class_compute_field_layout): set blittable to false for Strings
18380
18381         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
18382
18383 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18384
18385         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
18386         first chunk of code to create types at runtime. Code to
18387         handle ReflectedType/DeclaringType. Make reflection handles
18388         domain specific.
18389
18390 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
18391
18392         * class.c: set correct name in arrays.
18393
18394 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
18395
18396         * appdomain.c (mono_domain_transfer_object): make it work with
18397         valuetypes. bug fixes.
18398
18399 2002-08-12  Dick Porter  <dick@ximian.com>
18400
18401         * object.h: Rename some parameters to avoid c++ keywords (Patch
18402         from Joseph Wenninger <kde@jowenn.at>)
18403
18404 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
18405
18406         * icall.c: added icall to implement Assembly.GetFile*.
18407
18408 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18409
18410         * reflection.h, reflection.c: code to embed managed resources.
18411
18412 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
18413
18414         * class.c: move all the type size stuff into
18415         class_compute_field_layout().
18416
18417 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
18418
18419         * class.c: ensure enums have always the correct instance size.
18420         * unicode.c: remove wrong assert.
18421
18422 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
18423
18424         * assembly.c: fix mem corruption issue.
18425         * image.h, image.c: added mono_image_get_resource () to access
18426         managed resources.
18427         * icall.c: implemented Assembly.EntryPoint property and some
18428         Managed Resources related internalcalls.
18429
18430
18431 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18432
18433         * image.c, image.h: impemented mono_image_get_entry_point ().
18434         * appdomain.c: use mono_image_get_entry_point.
18435
18436 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18437
18438         * reflection.c: support the object type argument when loading
18439         custom attributes.
18440
18441 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
18442
18443         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
18444         String as return type.
18445
18446 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
18447
18448         * reflection.c: fix encoding of named args for custom attrs to match
18449         the ms implementation. Read them back when instantiating custom
18450         attributes.
18451
18452 2002-08-02  Radek Doulik  <rodo@ximian.com>
18453
18454         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
18455         by Dietmar as quick fix
18456         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
18457         16 as stack size, used on more places as quick fix before Dietmar
18458         will fix it properly
18459
18460 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
18461
18462         * object.h, object.c: added accessors for fields and properties.
18463
18464 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
18465
18466         * class.c, class.h: made mono_class_get_field_from_name ()
18467         loop on parent types.
18468         Added mono_class_get_property_from_name ().
18469
18470 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18471
18472         * class.c, class.h: move the code to setup the type vtable in its own
18473         function so that it can be reused also for types created at runtime.
18474         Eliminate the "class" identifier from the header file.
18475         * reflection.c: setup the vtable for enums so that we can create
18476         objects for use in SetConstant ().
18477
18478 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
18479
18480         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
18481         instead of the delegate itself as this pointer (bug #28383)
18482
18483 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
18484
18485         * marshal.c (mono_marshal_get_managed_wrapper): added return type
18486         conversions.
18487
18488 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18489
18490         * loader.c: don't set the pinvoke bit on icalls.
18491
18492 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
18493
18494         * debug-helpers.c (mono_method_full_name): only print a number to
18495         indicate wrapper type (so that the output is more readable in traces).
18496
18497 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
18498
18499         * class.c (mono_class_init): include method override patch from Paolo
18500
18501 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
18502
18503         * icall.c: fixed GetTypeCode().
18504
18505 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
18506
18507         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
18508         use real delegate invoke function to make it work with multicast
18509         delegates (fix bug# 28291).
18510
18511 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
18512
18513         * object.c: load constant strings.
18514
18515 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
18516
18517         * reflection.c: no magic numbers.
18518         * tabledefs.h: security action enum.
18519
18520 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18521
18522         * assembly.c: fix possible memory corruption.
18523
18524 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
18525
18526         * reflection.h, reflection.c: added support for linking resources.
18527         * verify.c: check we have an updated corlib.
18528
18529 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
18530
18531         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
18532         string arrays.
18533         (mono_marshal_string_array): null terminate unmanaged string arrays.
18534         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
18535
18536 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
18537
18538         * icall.c: Type.GetType () can now return also types from the
18539         calling assembly.
18540
18541 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18542
18543         * loader.h, loader.c: stack walking support.
18544         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
18545         GetCallingAssembly.
18546
18547 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
18548
18549         * marshal.c: added optimisations for blittable types 
18550
18551         * class.c (mono_array_class_get): do not set blittable attribute on arrays
18552         (mono_class_setup_mono_type): set blittable attribute for single
18553         and double.
18554
18555         * marshal.c (mono_string_utf8_to_builder): impl.
18556         (mono_string_builder_to_utf8): impl.
18557         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
18558
18559 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
18560
18561         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
18562         (mono_marshal_get_managed_wrapper): impl. byref types
18563
18564 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18565
18566         * icall.c:
18567         (search_method): don't display debug message. 
18568
18569 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18570
18571         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
18572
18573 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
18574
18575         * appdomain.c: set the missing filename when throwing exception.
18576
18577 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
18578
18579         * metadata.c (mono_type_size): code cleanup
18580         (mono_type_stack_size): removed some test code
18581
18582 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
18583
18584         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
18585         mono_get_exception_file_not_found now.
18586
18587         * exception.c (mono_exception_from_name_two_strings): New version
18588         that will call a constructor with two string arguments. 
18589         (mono_get_exception_file_not_found): New helper routine, used to
18590         report file-not-found errors.
18591
18592 2002-07-20  Dick Porter  <dick@ximian.com>
18593
18594         * process.h:
18595         * process.c: Pass file handles to CreateProcess
18596         
18597         * icall.c:
18598         * file-io.h:
18599         * file-io.c: Implemented CreatePipe
18600
18601 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18602
18603         * metadata.c (mono_get_param_info): set alignment for value types
18604
18605 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
18606
18607         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
18608         Constify mono_domain_assembly_open().
18609         * loader.c: handle null namespace in icalls.
18610
18611 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
18612
18613         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
18614         (emit_str_to_ptr_conv): marshal object as structs
18615
18616         * metadata.c (mono_type_to_unmanaged): marshal object as structs
18617
18618         * marshal.c (mono_marshal_get_runtime_invoke): support value types
18619
18620 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
18621
18622         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
18623         (mono_marshal_get_native_wrapper): we an now return value types
18624
18625 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18626
18627         * verify.c: more checks implemented.
18628
18629 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
18630
18631         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
18632         (fix bug #27695)
18633         (mono_marshal_get_native_wrapper): allow byref arguments
18634         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
18635         impl. PtrToStringXXX methods
18636         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
18637         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
18638         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
18639         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
18640         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
18641
18642 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18643
18644         * reflection.c: fix buglet in parsing an assembly name.
18645
18646 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18647
18648         * marshal.c (emit_ptr_to_str_conv): first impl.
18649
18650 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
18651
18652         * object.c, class.h: cache the vtable in the class as suggested by
18653         vargaz@freemail.hu (Zoltan Varga).
18654
18655 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18656
18657         * class.h, loader.c: added mono_field_from_token().
18658         * verify.c: first cut of type checking code.
18659
18660 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
18661
18662         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
18663
18664 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
18665
18666         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
18667         (fix bug #27782)
18668         (mono_marshal_get_remoting_invoke): impl.
18669         (mono_delegate_begin_invoke): impl.
18670         (mono_mb_emit_save_args): impl.
18671         (mono_delegate_end_invoke): impl.
18672         (mono_marshal_get_delegate_begin_invoke):
18673         (mono_marshal_get_delegate_end_invoke):
18674         (mono_marshal_get_delegate_invoke): generate a special name for
18675         those methods (including the signature) and associate them whith
18676         the delegate class. 
18677
18678 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
18679
18680         * reflection.[ch]: 
18681         (mono_reflection_type_from_name): now it has a MonoImage parameter
18682         which is used as the default image to search the type in. If the image
18683         is NULL or getting the type from it fails, it defaults to corlib.
18684
18685         * icall.c: changed 1 call to mono_reflection_type_from_name to match
18686         new parameter.
18687
18688 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18689
18690         * reflection.c: update the parameter table index.
18691
18692 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18693
18694         * domain.c: don't include the mark byte in the string hash.
18695
18696 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18697
18698         * icall.cs: icall for Type.GetTypeCode ().
18699         * verify: a couple of fixes and disabled local initialization checks.
18700
18701 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
18702
18703         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
18704
18705         * debug-helpers.c (mono_method_full_name): print the type of the
18706         runtime wrapper
18707
18708         * metadata.c (mono_signature_hash): a hash function for signatures
18709         (mono_signature_hash): better hash algorithm
18710
18711         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
18712
18713         * debug-helpers.c (mono_method_full_name): this can now generate
18714         method names with signatures
18715
18716         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
18717         method dont have this pointers.
18718
18719 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
18720
18721         * reflection.c: fixup typebuilder tokens.
18722         * image.c: fix buglet.
18723         * marshal.h: remove whitespace.
18724         * metadata.h, metadata.c: reinstate code that was removed.
18725         * verify.c: handle catch directives and fix another couple of bugs.
18726
18727 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
18728
18729         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
18730         (mono_marshal_get_native_wrapper): make it comp. with the old code
18731         (mono_marshal_get_native_wrapper): support boolean
18732         (mono_marshal_get_managed_wrapper): support more types
18733
18734 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
18735
18736         * class.c (class_compute_field_layout): compute class->blittable attribute.
18737
18738 2002-07-09  Dick Porter  <dick@ximian.com>
18739
18740         * threads.c: Make the thread cleaning up cope with threads that
18741         call ExitThread()
18742
18743 2002-07-08  Radek Doulik  <rodo@ximian.com>
18744
18745         * reflection.c (method_encode_code): use non-translated values to
18746         compute finally_start, this fixes exception handling on ppc, yay!
18747
18748         * decimal.h (struct signscale): fix endianess
18749
18750 2002-07-07  Radek Doulik  <rodo@ximian.com>
18751
18752         * reflection.c: swap box_val and not val
18753
18754 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
18755
18756         * reflection.c, reflection.h: handle full assembly info in type name.
18757         Handle Type arguments when loading custom attributes.
18758         * icall.c: updated to use new mono_reflection_type_from_name () method.
18759
18760 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18761
18762         * loader.c:
18763         (method_from_memberref): also print assembly name when method not found.
18764
18765 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18766
18767         * icall.c:
18768         (ves_icall_TypeGetProperties): fixed bug #27473. 
18769
18770 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18771
18772         * reflection.c: display image name and token when cannot find the
18773         .ctor for an attribute.
18774
18775 2002-07-05  Martin Baulig  <martin@gnome.org>
18776
18777         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18778
18779 2002-07-04  Dick Porter  <dick@ximian.com>
18780
18781         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
18782         compile on mingw.  This will cause mingw builds to not wait for
18783         subthreads to terminate after the main thread does.  I've lodged a
18784         bug with the mingw developers for them to wrap OpenThread().
18785
18786 2002-07-03  Dick Porter  <dick@ximian.com>
18787
18788         * threads.c: Store thread IDs instead of handles, because
18789         GetCurrentThread() returns a pseudohandle and therefore stores
18790         useless values.  mono_thread_cleanup() continues checking the
18791         array of threads until it is empty, to cope with subthreads
18792         spawning new threads after the main thread has finished.
18793
18794         * profiler.h:
18795         * profiler.c:
18796         * profiler-private.h: Pass the thread ID to thread profiler
18797         functions, instead of a handle
18798
18799 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
18800
18801         * verify.c: fixes to make it more usable.
18802         * pedump.c: added --verify code to verify IL code in an assembly.
18803
18804 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18805
18806         * reflection.c: turn errors into warnings to allow compiling corlib.
18807
18808 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
18809
18810         * reflection.c: add special cases to compile corlib.
18811
18812 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18813
18814         * reflection.c: handle properties with only a set method.
18815
18816 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
18817
18818         * opcodes.h: add enum with opcodes in opval order.
18819
18820 2002-07-01  Dick Porter  <dick@ximian.com>
18821         
18822         * object.h:
18823         * object.c (mono_runtime_run_main): Removed unneeded argument
18824
18825 2002-06-28  Martin Baulig  <martin@gnome.org>
18826
18827         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
18828
18829 2002-06-27  Dick Porter  <dick@ximian.com>
18830
18831         * threads.c: Store the handle in both the parent thread and in the
18832         subthread, to minimise the time between starting a new thread and
18833         storing its ID.
18834
18835 2002-06-26  Dick Porter  <dick@ximian.com>
18836
18837         * appdomain.c (mono_runtime_cleanup): Close the socket library
18838         after all the threads have finished, not before
18839
18840 2002-06-26  Martin Baulig  <martin@gnome.org>
18841
18842         * debug-symfile.c (mono_debug_find_source_location): Added
18843         `guint32 *line_number' argument.  If it's not NULL, store the line number
18844         there and return the file name without the line number.
18845
18846 2002-06-25  Dick Porter  <dick@ximian.com>
18847
18848         * icall.c:
18849         * process.h:
18850         * process.c: Process forking and other support functions
18851
18852 2002-06-25  Dick Porter  <dick@ximian.com>
18853
18854         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
18855         things dont happen when the image is closed.
18856         (mono_image_lookup_resource): Walk the resource section looking
18857         for a particular entry
18858
18859         * cil-coff.h: PE resource section decoding
18860
18861 2002-06-25  Dick Porter  <dick@ximian.com>
18862         
18863         * assembly.h:
18864         * assembly.c: 
18865         (mono_assembly_foreach): Accessor functions to walk the list of
18866         loaded assemblies
18867         (mono_assembly_set_main):
18868         (mono_assembly_get_main): Process methods need to know which
18869         assembly is the "main" one
18870
18871         * object.c (mono_runtime_run_main): Record the main assembly
18872
18873         * debug-helpers.c: Fix typo
18874
18875 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
18876
18877         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
18878         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
18879
18880 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18881
18882         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
18883
18884 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
18885
18886         * image.c (do_mono_image_open): Initialize reference count,
18887         otherwise we leak the MonoImage.
18888
18889 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
18890
18891         * reflection.c: small tweak to handle self-hosting.
18892
18893 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
18894
18895         * reflection.c: fix type name parse code.
18896
18897 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
18898
18899         * reflection.c: break out of the loop.
18900         * image.c: special case corlib.
18901
18902 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
18903
18904         * reflection.c: add all the custom attrs at the end to ensure the
18905         ctors have been properly initialized when the attributes are defined
18906         in the current assembly.
18907
18908 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18909
18910         * reflection.c: handle correctly multiple-nested types.
18911
18912 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
18913
18914         * row-indexes.h: fix typos.
18915         * reflection.c: adjust for typos and fix method_def_or_ref
18916         encoding in MethodImpl table.
18917
18918 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18919
18920         * reflection.c: fix entry point patching (thanks Serge!).
18921
18922 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
18923
18924         * verify.c: add check for System.Exception
18925
18926 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
18927
18928         * image.c, class.c: minifix for code just c&p'ed.
18929         * reflection.c: warning fix.
18930         * object.h, loader.h, domain.c: load also StringBuilder.
18931
18932 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
18933
18934         * marshal.h, marshal.c: some support code to handle complex marshaling.
18935
18936 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18937
18938         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
18939         Better signatures with vtable error dump.
18940
18941 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
18942
18943         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
18944
18945 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
18946
18947         * icall.c (ves_icall_Type_GetField): impl.
18948
18949 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18950
18951         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
18952         to retrieve a marshal description blob for a field or param.
18953
18954 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
18955
18956         * reflection.h, reflection.c: change order of nested type emission
18957         to avoid table corruption. The NestedTypes table is sorted.
18958         * icall.c: change order of GetConstructor results to workaround mcs bug.
18959
18960 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
18961
18962         * reflection.h, reflection.c: handle field and param marshal
18963         information.
18964
18965 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
18966
18967         * icall.c, marshal.c marshal.h: more Marshal class implementation.
18968
18969 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18970
18971         * reflection.c: fix call convention.
18972
18973 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
18974
18975         * reflection.h, reflection.c: mono_image_get_memberref_token()
18976         takes a type instead of a class, now. Added
18977         mono_image_get_array_token() to create tokens for the special
18978         multi-dim array methods.
18979
18980 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
18981
18982         * assembly.c: handle modules (no assembly table). Split
18983         loading references in its own function.
18984         * class.c: handle moduleref resolution scope.
18985         * image.c, image.h: cache module name in image.
18986
18987 2002-06-07  Martin Baulig  <martin@gnome.org>
18988
18989         * reflection.c (mono_image_get_type_info): Only add a class layout entry
18990         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
18991
18992 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
18993
18994         * icall.c: more signature fixes that used uint instead of int.
18995
18996 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
18997
18998         * reflection.c: fixed signature of field refs.
18999
19000 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19001
19002         * class.c, reflection.c: handle typerefs of nested types
19003         (both on read and when writing files).
19004
19005 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
19006
19007         * icall.c: fix method signatures that tried to workaround the previous
19008         typo, d'oh!
19009
19010 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19011
19012         * debug-helpers.c: fix typo.
19013
19014 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19015
19016         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
19017         rewrote the PE/COFF writing code (our programs are understood by the
19018         ms runtime, now).
19019
19020 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
19021
19022         * gc.c, gc.h, icall.c: weakreference support.
19023
19024 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
19025
19026         * Makefile.am, mono-config.c: use $(sysconfdir).
19027
19028 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19029
19030         * icall.c: changed default precision of Double.ToString() to 15.
19031         Fixed memory leak. Unified with Single.ToString.
19032
19033 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
19034
19035         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
19036
19037 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
19038
19039         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
19040         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
19041         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
19042         and myself.
19043
19044 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19045
19046         * debug-symfile.c, sysmath.c: yet more compilation fixes.
19047
19048 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19049
19050         * reflection.c, socket-io.c: more compilation fixes.
19051
19052 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19053
19054         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
19055         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
19056         unicode.c: warning and compiler compatibility fixes.
19057
19058 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19059
19060         * class.h, metadata.c: fixed warnings/compilation errors.
19061
19062 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
19063
19064         * Makefile.am, mono-config.c, mono-config.h: configuration file
19065         support routines.
19066         * loader.c, loader.h: make Dll mapping configurable at runtime in the
19067         config file. Export methods to insert and lookup mappings.
19068
19069 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
19070
19071         * reflection.c: handle types and boxed objects in custom attr
19072         constructors.
19073
19074 2002-05-30  Martin Baulig  <martin@gnome.org>
19075
19076         * debug-symfile.c
19077         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
19078
19079 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
19080
19081         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
19082         to lookup the implmap row for a P/Invoke method.
19083         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
19084         P/Invoke method from the runtime on an as needed basis.
19085
19086 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
19087
19088         * metadata.c (mono_metadata_parse_signature): impl.
19089
19090 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19091
19092         * class.c: handle .pack directive.
19093
19094 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
19095
19096         * object.c: initialize static fields with RVA data.
19097
19098 2002-05-25  Martin Baulig  <martin@gnome.org>
19099
19100         * debug-symfile.c
19101         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
19102
19103 2002-05-24  Martin Baulig  <martin@gnome.org>
19104
19105         * debug-symfile.c
19106         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
19107         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
19108         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
19109
19110 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19111
19112         * object.c: special case string ctros in invoke.
19113         * gc.c: silly whitespace changes.
19114
19115 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
19116
19117         * threadpool.[ch]: impl. a threadpool that can
19118         be used by mint and mono.
19119
19120 2002-05-22  Martin Baulig  <martin@gnome.org>
19121
19122         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
19123         The first argument is now a `MonoReflectionModuleBuilder *', the return
19124         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
19125         `methods' field to get the method builder.  The `token' argument is the
19126         unfixed token.
19127
19128         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
19129         invalid characters instead of g_assert_not_reached()ing.  This seems
19130         to be the behaviour of mscorlib.
19131
19132 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
19133
19134         * object.c (mono_runtime_invoke_array): applied patch from Rachel
19135         Hestilow to fix bug #25104
19136
19137 2002-05-21  Martin Baulig  <martin@gnome.org>
19138
19139         * debug-symfile.c (mono_debug_find_source_location): New function.
19140         Looks up an IL offset in the line number table and returns the source
19141         location as a string.
19142
19143 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19144
19145         * icall.c:
19146         (mono_double_ToStringImpl): changed %f by %g until we have something
19147         better.
19148
19149 2002-05-21  Nick Drochak  <ndrochak@gol.com>
19150
19151         * icall.c : Use different name for Math.Pow's icall.  Needed to check
19152         parameters first in C#.
19153
19154 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19155
19156         * icall.c, reflection.h: added icall to get info about an event.
19157
19158 2002-05-20  Radek Doulik  <rodo@ximian.com>
19159
19160         * object.c (mono_value_box): don't use memcpy for boxing on BIG
19161         endian
19162         (mono_value_box): don't use memcpy for small sizes on
19163         architectures with unaligned access
19164
19165 2002-05-20  Martin Baulig  <martin@gnome.org>
19166
19167         * reflection.c (mono_reflection_setup_internal_class): Don't crash
19168         if `tb->parent == NULL'.
19169         (mono_reflection_create_internal_class): New function.  This is
19170         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
19171         for enum types.
19172
19173         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
19174         New interncall.
19175
19176 2002-05-19  Martin Baulig  <martin@gnome.org>
19177
19178         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
19179         argument to get the length, don't default to the array length.
19180
19181 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
19182
19183         * assembly.c (mono_assembly_setrootdir): New function used to
19184         override the MONO_ASSEMBLIES directory.
19185
19186 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19187
19188         * icall.c: ValueType_GetHashCode() initialize local var.
19189
19190 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19191
19192         * reflection.c: sort custom attributes table.
19193
19194 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19195
19196         * reflection.c: support named args in custom attributes (write support).
19197
19198 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
19199
19200         * reflection.c: fix finally position calculation.
19201
19202 2002-05-15  Radek Doulik  <rodo@ximian.com>
19203
19204         * reflection.c: fixed endianess at many places
19205
19206         * icall.c (ves_icall_InitializeArray): comment out debug msg
19207
19208 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
19209
19210         * object.c (mono_unhandled_exception): new function to handle
19211         unhandled exceptions.
19212         (mono_unhandled_exception): call the UnhandledException event.
19213         (mono_runtime_delegate_invoke): impl.
19214
19215 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
19216
19217         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
19218         returns the RVA, not the direct pointer to the data. Handle the case
19219         when the class size is fixed.
19220
19221 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
19222
19223         * reflection.c: fix some endianess issues.
19224
19225 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
19226
19227         * object.c (mono_runtime_invoke): is now able to catch exceptions.
19228
19229         * threads.c (mono_thread_init): added a callback which is invoked
19230         at thread start.
19231
19232 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19233         
19234         * icall.c: make GetHashCode return non-negative values.
19235
19236 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
19237
19238         * object.c, icall.c, gc.c: revert to address-based hashcode.
19239
19240 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
19241
19242         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
19243
19244 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19245
19246         * icall.c, class.c: special case <Module>.
19247
19248 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
19249
19250         * icall.c: fix bug in GetNow().
19251
19252 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
19253
19254         * object.c (mono_runtime_class_init): make sure that we call all
19255         static class constructors.
19256
19257 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
19258
19259         * reflection.c: sort methodsemantics table.
19260
19261 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
19262
19263         * reflection.h, reflection.c: honour init locals setting.
19264
19265 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
19266
19267         * icall.c: copied Double ToStringImpl for Single ToStringImpl
19268
19269 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19270
19271         * reflection.c: support ContructorBuilders in attribute blob creation.
19272
19273 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19274
19275         * reflection.c: some changes to build a binary that can be run
19276         directly in windows.
19277
19278 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19279
19280         * loader.c: print a big message when an icall can't be found.
19281
19282 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19283
19284         * string-icalls.c: fix bug 24248.
19285
19286 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
19287
19288         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
19289         icall.c, reflection.h: separate assembly loading by pathname and by
19290         assembly name. Use the MONO_PATH env var to search for assemblies.
19291
19292 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19293
19294         * assembly.c, image.h: add some support for assemblies
19295         with multiple modules.
19296         * class.c, class.h: export mono_class_from_typeref().
19297         * loader.c: remove duplicated code and use mono_class_from_typeref(),
19298         instead.
19299
19300 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19301
19302         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
19303         documentation says (the ECMA one is correct).
19304
19305 2002-05-02  Dick Porter  <dick@ximian.com>
19306
19307         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
19308         Don't name the synchronisation mutex.
19309
19310 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
19311
19312         * rand.c
19313         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
19314         Make the prototypes match.
19315         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
19316         Same.
19317
19318         * icall.c
19319         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
19320         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
19321         all systems have tm.tm_zone, so use strftime() with %Z to print
19322         the timezone abreviation into a temp string.
19323
19324         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
19325         rather than mono_array_addr() on a MonoString on Big Endian
19326         machines.
19327
19328 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
19329
19330         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
19331         fix bug 24041
19332
19333 2002-04-30  Dick Porter  <dick@ximian.com>
19334
19335         * socket-io.c: Cope with SOCKET being an integer rather than a
19336         pointer now.
19337
19338         * threads.c: Added Thread_free_internal, to deal with thread
19339         handle cleanup.  Moved calls to handle_store() and handle_remove()
19340         to start_wrapper(), so each can only be called once.  Allocate
19341         synchronisation blocks with GC_malloc(), and use GC finalisation
19342         to close the handles.
19343
19344         * icall.c: added System.Threading.Thread::Thread_free_internal
19345
19346 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19347
19348         * icall.c: support Environment.Exit, CommandLineArgs().
19349
19350 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
19351
19352         * object.c, object.h: added mono_runtime_run_main () and
19353         mono_runtime_get_main_args () for use in System.Environment.
19354
19355 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
19356
19357         * gc.c: fix thinko, enable actual finalization since the jit is now
19358         fixed.
19359
19360 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19361
19362         * gc.c, object.c: take into account that an object may be offset wrt the address
19363         returned by GC_malloc().
19364
19365 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
19366
19367         * image.c: handle files without entries in the assembly table (modules).
19368
19369 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
19370
19371         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
19372         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
19373         allowed to be null when it's System.Object class setup.
19374
19375 2002-04-27  Martin Baulig  <martin@gnome.org>
19376
19377         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
19378         if `tb->parent == NULL' rather than crashing.
19379
19380 2002-04-28  Nick Drochak  <ndrochak@gol.com>
19381
19382         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
19383         calling acos() where asin() should have been called.
19384
19385 2002-04-26  Martin Baulig  <martin@gnome.org>
19386
19387         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
19388         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
19389         there's a subdirectory called `System', but we don't want to read that
19390         subdirectory as an assembly.
19391
19392 2002-04-25  Martin Baulig  <martin@gnome.org>
19393
19394         * debug-symfile.c: Reflect latest MonoString changes.
19395
19396 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
19397
19398         * rand.c, rand.h: instance method icalls need to have an explicit
19399         this pointer as first argument in the C implementation.
19400
19401 2002-04-25  Nick Drochak <ndrochak@gol.com>
19402
19403         * icall.c: Fix typo in map for GetNonZeroBytes
19404
19405 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19406
19407         * string-icalls.c : String does now passes unit tests without any 
19408         errors, the following changes has been made:
19409         
19410         Implemented replace methods.
19411         Renaming of methods to (try) follow the standard.
19412         Fixed compare ordinal
19413         Made all memory allocated directly to function instead of via icall function.
19414         Small performance fix in is_in_array function
19415                         
19416  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
19417
19418         c (mono_string_Internal_ctor_charp_int_int):
19419         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
19420         sindex < 0, throw ArgumentOutOfRangeException instead of
19421         ArgumentNullException.
19422
19423         Added new check for length == 0, however
19424         I need to make it return String.Empty from the C code.
19425         
19426         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
19427         that calculate the length for us here.
19428         
19429         (mono_string_Internal_ctor_sbytep_int_int): Replaced
19430         mono_string_new_utf16 with mono_string_new, since value is utf8.
19431
19432 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19433
19434         * object.c: register the object for finalization if needed.
19435         Allocate one more char in the string for the terminating 0 char.
19436
19437 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
19438
19439         * class.c, class.h, image.c: check if a type implemenst a destructor.
19440         Use the proper key for array class lookups.
19441         * icall.c: register the icalls in the System.GC class.
19442         * gc.c, gc.h: GC-related functions and icalls.
19443
19444 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19445
19446         * icall.c:
19447         * socket-io.c:
19448         * unicode.c: free some strings gotten from mono_string_to_utf8 and
19449         changed a couple of free () by g_free ().
19450
19451         * decimal.c: one-liner in the comments for decimal2string ().
19452
19453 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19454
19455         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
19456
19457 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
19458
19459         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
19460         * object.c (mono_runtime_invoke_array) : handle null in params
19461
19462 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19463
19464         * string-icalls.c: fixed bug in split (one off bug)
19465
19466 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19467
19468         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
19469         * icalls.c: added String::Equals as internal method
19470
19471 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
19472
19473         * threads.c: fixed bug in the double interlocked functions
19474
19475 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
19476
19477         * threads.c: implemented all of the new interlocked icalls.
19478         * string-icalls.c: fix a bug in insert.
19479         * icalls.c: added the icalls for interlocked, removed old string functions.
19480         
19481 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19482
19483         * loader.c: fix off-by-one error when reading argument names.
19484
19485 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19486
19487         * profiler.c: win32 counter implementation (untested).
19488         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
19489         (the latter needs testing and more complete impl. from win32 folks).
19490
19491 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
19492
19493         * object.c: mono_array_new_full workaround mono_array_class_get
19494         problem.
19495
19496 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19497
19498         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
19499         * object.h (mono_string_chars): Changed casting type.
19500
19501 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19502
19503         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
19504                            method signatures to use gunichar2 instead of gint16.
19505
19506 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
19507
19508         * object.h, object.c: domain-specific versions of mono_object_new and
19509         mono_array_new.
19510
19511 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
19512
19513         * object.c: changed String layout
19514
19515         * string-icalls.c (mono_string_Internal_ctor_chara): added
19516         internal string constructors.
19517
19518 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
19519
19520         * threads.c: pass 'this' to the thread start routine.
19521
19522 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19523
19524         * string-icalls.c: fix IndexOf and LastIndexOf. Now
19525         InternalCompareStr don't call twice mono_string_cmp_char for the last
19526         character. Improved performance in mono_string_cmp_char.
19527
19528 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
19529
19530         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
19531         code into its own library: libmonoruntime.
19532
19533 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
19534
19535         * object.h, object.c: changed array format so that szarrays do not
19536         require a bounds structure.
19537         * icall.c, appdomain.c: support for new szarray format.
19538
19539 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
19540
19541         * metadata.c: compare also the retuns type when comparing signatures:
19542         we didn't do this as an optimization since really overloaded methods
19543         must differ also in the arguments, but this doesn't work with
19544         low-level IL code (or when using explicit conversion operators: see
19545         bug#23498 for an example).
19546
19547 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
19548
19549         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
19550
19551 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
19552
19553         * icall.c: make MonoType::GetElementType its own icall.
19554
19555 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
19556
19557         * icall.c: remove MonoMethod_get_Name().
19558         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
19559         object.
19560
19561 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19562
19563         * string-icalls.c: optimized a few methods.
19564
19565 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
19566
19567         * icall.c: added all new string internal calls
19568         * string-icalls.c: added, new string internal call implementation.
19569         * object.c: added mono_string_new_size for allocating a string a size
19570
19571 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
19572
19573         * object.c (mono_object_isinst): use the same code as in the
19574         optimized x86 version.
19575
19576 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
19577
19578         * profiler.c: TSC-based timer code (faster and more accurate).
19579         Not hooked up in configure, yet (set USE_X86TSC to 1).
19580
19581 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
19582
19583         * profiler.c, profiler.h: track time spent compiling methods.
19584         * threads.c: track thread creation/destruction.
19585
19586 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
19587
19588         * profiler.c, profiler.h, profiler-private.h: profiling interface
19589         and sample implementation. Moved here so that it can be used also by
19590         the jit.
19591
19592 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
19593
19594         * reflection.c, reflection.h: keep types and other handles separate in
19595         the hash tables for referred tokens. Add guid for modules.
19596
19597 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
19598
19599         * assembly.c: fix bugs found with valgrind.
19600         * metadata.h, metadata.c: added mono_metadata_guid_heap().
19601
19602 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
19603
19604         * threads: added icall support for getting current domain for
19605                    the thread.
19606  
19607 2002-04-13  Martin Baulig  <martin@gnome.org>
19608
19609         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
19610         (MonoDebugVarInfo): Added `index' field for register based addresses.
19611         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
19612         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
19613         `MonoDebugVarInfo *params' and `guint32 this_offset' with
19614         `MonoDebugVarInfo *this_var'.
19615
19616         * debug-symfile.c (relocate_variable): New static function to write
19617         a location description for a local variable or method parameter.
19618
19619 2002-04-12  Martin Baulig  <martin@gnome.org>
19620
19621         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
19622         stack offset and begin/end scope address of a local variable.
19623         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
19624         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
19625         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
19626
19627         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
19628         Added new relocation types for start/end scope of a local variable.
19629
19630 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
19631
19632         * object.h: add mono_object_domain() macro.
19633         * reflection.c: handle typespecs.
19634         * icall.c: MonoMethod::get_Name() implementation.
19635
19636 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19637
19638         * icall.c: String::GetHashCode() icall implementation.
19639
19640 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19641
19642         * icall.c: String::IndexOfAny icall.
19643         * object.c, object.h: make array->max_length more useful.
19644         Intrduced mono_object_class() and mono_string_length() macros.
19645
19646 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19647
19648         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
19649         instead of g_unichar_isdigit.
19650
19651 2002-04-11  Nick Drochak  <ndrochak@gol.com>
19652
19653         * icall.c: Implement a simple Double.ToString().
19654
19655 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
19656
19657         * appdomain.h: only io-layer.h is supposed to be included.
19658         * icall.c: explicitly import environ. Fix warning.
19659
19660 2002-04-10  Nick Drochak  <ndrochak@gol.com>
19661
19662         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
19663                 return true even if it's not Daylight Savings time.
19664                 Only return false for the case where the function isn't
19665                 implemented for a plaform (read Windows).
19666
19667 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
19668
19669         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
19670         data with a mutex.
19671
19672 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
19673
19674         * mempool.c (mono_mempool_alloc): only use g_malloc when
19675         absolutely necessary.
19676
19677 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19678
19679         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
19680
19681         * class.c (mono_class_vtable): use domain mempool to allocate vtable
19682         (mono_class_proxy_vtable): use domain mempool
19683
19684 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
19685
19686         * appdomain.h, appdomain.c: split initialization that requires the
19687         execution engine support into mono_runtime_init().
19688
19689 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
19690
19691         * class.c (mono_class_init): don't include vtable inside MonoClass
19692         to save some memory, gather some statistics.
19693         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
19694
19695 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19696
19697         * icall.c: internalcall implementation for ValueType.Equals().
19698
19699 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
19700
19701         * object.c (mono_message_init): moved 
19702         (mono_runtime_exec_main): new arch. independent impl.
19703         (mono_runtime_invoke_array): new method - like
19704         mono_runtime_invoke, but you can pass an array of objects.
19705         (mono_remoting_invoke): new arch. independent impl.
19706         (mono_message_invoke): new arch. independent impl.
19707         (mono_runtime_class_init): new arch. independent impl.
19708         (mono_runtime_object_init): new arch. independent impl.
19709
19710 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
19711
19712         * metadata.c, object.c, reflection.c: documented the exported
19713         functions.
19714
19715 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
19716
19717         * icall.c: simpler code to pass the assembly builder data to corlib.
19718         Implement GetNestedTypes() internalcall.
19719
19720 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
19721
19722         * class.c: warn if a type can't be loaded.
19723
19724 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
19725
19726         * image.h: typedef MonoImageOpenStatus
19727         * types.h: removed unused file
19728         
19729 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
19730
19731         * icall.c: Enum_ToObject accepts enum value arguments.
19732
19733 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
19734
19735         * class.c: move initialization of properties, events and nested
19736         classes, so that they happen for interfaces, too.
19737
19738 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
19739
19740         * icall.c: cleanup some ugly casts in Array_SetValue*.
19741
19742 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
19743
19744         * icall.c: the values array fro enums is of the correct type, now.
19745         Implement (correctly) getFullName instead of assQualifiedName for
19746         MonoType.
19747         * reflection.h, reflection.c: added mono_type_get_name ().
19748
19749 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
19750
19751         * assembly.c, image.h: for each MonoImage, record from wich assembly
19752         it was loaded.
19753         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
19754         Make Type.Assembly work.
19755
19756 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
19757
19758         * debug-symfile.h: use char* instead of gpointer to avoid
19759         unnecessary casts.
19760
19761         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
19762
19763         * icall.c (ves_icall_InternalExecute): impl. FielSetter
19764         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
19765
19766 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
19767
19768         * icall.c (mono_message_init): impl. (code cleanup)
19769         (ves_icall_InternalExecute): impl. FieldGetter
19770
19771         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
19772         defined we call all (non-static)methods through the vtable. 
19773
19774 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
19775
19776         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
19777         finalizer even though the memory is still referenced (and the chunk of
19778         memory is not freed).
19779
19780 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
19781
19782         * assembly.c: fix brokeness.
19783
19784 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
19785
19786         * class.c: kill some warnings. Check explicit interface method
19787         implementation also without considering the namespace.
19788         Load also literal strings in static class data.
19789
19790 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
19791
19792         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
19793         (default_assembly_name_resolver): Make the resolver take the
19794         "base" directory where the assembly was originally defined, so we
19795         can load DLLs that are in the same directory as the assembly that
19796         is being referenced.
19797
19798 2002-03-28  Dick Porter  <dick@ximian.com>
19799
19800         * file-io.h: 
19801         * file-io.c:
19802         * socket-io.c: 
19803         * unicode.h: 
19804         * unicode.c: Warning cleanups
19805
19806 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
19807
19808         * object.h, reflection.h: use the correct type instead of MonoObject.
19809
19810 2002-03-28  Martin Baulig  <martin@gnome.org>
19811
19812         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
19813         (mono_debug_update_symbol_file): Initialize classes if necessary.
19814
19815 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
19816
19817         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
19818         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
19819
19820 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
19821
19822         * assembly.h: fix function prototype.
19823         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
19824         * mono-endian.h: use const cast.
19825
19826 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19827
19828         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
19829
19830 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
19831
19832         * loader.c: don't assert when a typeref can't be loaded, give
19833         a chance to the runtime to trow an exception instead.
19834         * loader.h: fix warning.
19835
19836 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
19837
19838         * class.c (mono_class_proxy_vtable): added proxy support
19839
19840 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
19841
19842         * icall.c: removed last of PAL calls, added System.Environment
19843         * file-io.h, file-io.c: MonoIO implementation
19844         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
19845
19846 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
19847
19848         * appdomain.c: do not use the byte marker in ldstr table lookup.
19849         * debug-helpers.c: allow two ':' to separate class and method name.
19850         * object.c: allocate arrays bounds with the GC, too.
19851         * verify: add a few more checks.
19852
19853 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
19854
19855         * reflection.c: output also literal strings. Allocate parameter data
19856         with GC_malloc() (thanks, Martin, for catching this!).
19857
19858 2002-03-26  Martin Baulig  <martin@gnome.org>
19859
19860         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
19861         include the `this' offset in the `param_offsets'.
19862
19863 2002-03-25  Martin Baulig  <martin@gnome.org>
19864
19865         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
19866         mono_debug_get_class() function to get the classes. Added new
19867         relocation types for arrays and strings.
19868         (mono_debug_get_class): New static function to search in all
19869         referenced assemblies for a metadata token.
19870
19871         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
19872
19873 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
19874
19875         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
19876         hold gc-allocated objects. Make the string heap a stream like the
19877         others. Removed duplicated code when writing stream info.
19878         Added asserts to catch possible buffer overflows. Set the sorted map
19879         for tables that need sorting. Added some documentation.
19880
19881 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
19882
19883         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
19884         for interned strings and vtables.
19885
19886 2002-03-24  Martin Baulig  <martin@gnome.org>
19887
19888         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
19889         it in the array since it was created with g_slist_prepend().
19890
19891 2002-03-24  Martin Baulig  <martin@gnome.org>
19892
19893         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
19894         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
19895         (mono_debug_method_from_token): Renamed to
19896         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
19897         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
19898
19899         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
19900         relocation types.
19901
19902         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
19903
19904 2002-03-24  Martin Baulig  <martin@gnome.org>
19905
19906         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
19907         (mono_debug_method_from_token): New func.
19908
19909         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
19910         New interncall, calls mono_debug_local_type_from_signature().
19911         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
19912         calls mono_debug_method_from_token().
19913
19914 2002-03-23  Martin Baulig  <martin@gnome.org>
19915
19916         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
19917         specifies the number of bytes to be converted, not the array size.
19918         Return the number of chars, not the number of bytes.
19919         (ves_icall_iconv_get_chars): The `byteCount' argument
19920         specifies the number of bytes to be converted, not the array size.
19921
19922 2002-03-23  Martin Baulig  <martin@gnome.org>
19923
19924         * reflection.h (MonoReflectionSigHelper): New type.
19925
19926         * reflection.c (mono_reflection_sighelper_get_signature_local),
19927         (mono_reflection_sighelper_get_signature_local): New functions.
19928
19929         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
19930         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
19931         interncalls.
19932
19933 2002-03-23  Martin Baulig  <martin@gnome.org>
19934
19935         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
19936         is_writeable is set.
19937         (mono_raw_buffer_update): New function to write the modified map
19938         back to disk.
19939
19940         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
19941
19942         * debug-symfile.c (mono_debug_update_symbol_file): Call
19943         mono_raw_buffer_update() when done writing.
19944
19945 2002-03-23  Martin Baulig  <martin@gnome.org>
19946
19947         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
19948
19949         * debug-symfile.c: Added support for arguments and local variables.
19950
19951 2002-03-23  Dick Porter  <dick@ximian.com>
19952
19953         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
19954         protected by ifdefs, hence breaking the w32 build.
19955
19956 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
19957
19958         * object.c: implement is_interned() the right way.
19959
19960 2002-03-21  Martin Baulig  <martin@gnome.org>
19961
19962         * debug-symfile.[ch]: New files to handle debugging information
19963         files. There's also support to dynamically update these symbol
19964         files to include machine dependent information.
19965
19966 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
19967
19968         * threads.c (mono_thread_create): new function to create thread
19969         from C
19970
19971 2002-03-20  Martin Baulig  <martin@gnome.org>
19972
19973         * icall.c (ves_icall_InternalInvoke): Create a new object if the
19974         method is a constructor.
19975         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
19976         points to ves_icall_InternalInvoke().
19977
19978 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
19979
19980         * file-io.c: Flush shouldn't throw exceptions.
19981
19982 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
19983
19984         * file-io.c: FileStream flush support; FileSetLength now
19985         restores file pointer.
19986
19987 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
19988
19989         * class.c: set image for pointer classes.
19990
19991 2002/03/19  Nick Drochak <ndrochak@gol.com>
19992
19993         * sysmath.c: Forgot one.
19994
19995 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
19996
19997         * sysmath.c: Avoid redefining existing names.
19998
19999 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
20000
20001         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
20002         handled by runtime as icall rather than dllimport from libm.so
20003         * file-io.c, file-io.h: fixed handle argument type.
20004
20005 2002-03-18  Dick Porter  <dick@ximian.com>
20006
20007         * reflection.c (mono_image_get_type_info): rename interface to
20008         iface, because of "#define interface struct" on windows.
20009
20010 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
20011
20012         * class.c, class.h: rename and export mono_ptr_class_get().
20013         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
20014         * reflection.c, reflection.h, icall.c: better/saner type name
20015         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
20016         method signatures.
20017
20018 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
20019
20020         * class.c (mono_class_init): removed hardcoded GHC_SLOT
20021
20022         * icall.c (ves_icall_InternalInvoke): impl.
20023
20024 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20025
20026         * reflection.c: output the interface map table, too.
20027
20028 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20029
20030         * class.c (class_compute_field_layout): separate computation of 
20031         static field layout
20032
20033 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
20034
20035         * icall.c: added System.Buffer support.
20036         * file-io.c: moved file icalls from PAL to FileStream.
20037
20038 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
20039
20040         * icall.c (ves_icall_System_Object_GetHashCode): impl.
20041
20042 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
20043
20044         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
20045
20046 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20047
20048         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
20049
20050 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20051
20052         * debug-helpers.{c,h}: moved here from monograph some useful functions
20053         to locate a method by name/signature in a class or image. Included
20054         also a small and flexible IL disassembler.
20055
20056 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20057
20058         * reflection.c: fixup tokens in methods with small header size, too.
20059
20060 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
20061
20062         * object.c (mono_string_to_utf8): remove assert(!error), instead
20063         print a warning. 
20064
20065 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
20066
20067         * icall.c: update to the new mono_Array_class_get interface.
20068
20069 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20070
20071         * appdomain.c, object.c: Boehm-GC enable.
20072         * icall.c: make get_data_chunk() support split data requests.
20073         Ensure a class is initialized in more cases. Return only the first
20074         property found in GetProperties() or the compiler gets confused. 
20075         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
20076         * reflection.h, reflection.c: add fixup mechanism for field and method
20077         tokens. Initialize assembly->typeref in a single place. Output
20078         properties after events. Support custom attributes for events, too.
20079         Typo fix for paramter custom attrs.
20080
20081 2002-03-07  Martin Baulig  <martin@gnome.org>
20082
20083         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
20084
20085 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
20086
20087         * class.c (mono_array_class_get): fix. for multi. dim. arrays
20088
20089 2002-03-06  Martin Baulig  <martin@gnome.org>
20090
20091         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
20092         non-zero lower bounds. See testcases #F10-#F13.
20093
20094 2002-03-05  Martin Baulig  <martin@gnome.org>
20095
20096         * exception.c (mono_get_exception_argument_out_of_range): New exception.
20097
20098         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
20099         ves_icall_System_Array_GetValue(), only calculate the absolute array position
20100         here.
20101         (ves_icall_System_Array_SetValue): Likewise.
20102         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
20103         as argument and does the actual work. This function is used when copying a
20104         multi-dimensional array.
20105         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
20106         now do all the widening conversions of value types.
20107         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
20108
20109 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20110
20111         * class.c: remove some magic numbers and use the smbolic names,
20112         instead. Added init_events() to load event info at class init time.
20113         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
20114         and mono_metadata_methods_from_event().
20115         * reflection.h, reflection.c: added support for writing out the evnets
20116         related information.
20117
20118 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
20119
20120         * reflection.h, icall.c: use a different method (GetInterfaces)
20121         to gather interface info and add isbyref, isprimitive and
20122         ispointer to the ves_icall_get_type_info() return value.
20123
20124 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
20125
20126         * class.h: stared adding support for events.
20127         * icall.c: split find_members implementation. Added debug icall to get
20128         the address of an object.
20129         * reflection.c: handle TypeBuilders in mono_type_get_object().
20130
20131 2002-03-01  Martin Baulig  <martin@gnome.org>
20132
20133         * icall.c (ves_icall_System_Array_GetLength): This must throw an
20134         ArgumentOutOfRangeException(), not an ArgumentException().
20135         (ves_icall_System_Array_GetLowerBound): Likewise.
20136         (ves_icall_System_Array_GetValue): Improved argument checking.
20137         (ves_icall_System_Array_SetValue): Improved argument checking.
20138
20139 2002-03-01  Martin Baulig  <martin@gnome.org>
20140
20141         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
20142         called with invalid arguments rather than just dying with g_assert().
20143         (ves_icall_System_Array_SetValue): Likewise.
20144         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
20145         raise a NotImplementedException instead.
20146         (ves_icall_System_Array_GetLength): Added argument checking.
20147         (ves_icall_System_Array_GetLowerBound): Added argument checking.
20148
20149 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
20150
20151         * object.h (mono_assert): new macros mono_assert and
20152         mono_assert_not_reached
20153
20154 2002-02-28  Martin Baulig  <martin@gnome.org>
20155
20156         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
20157         and "System::String::IsInterned" to "System::String::_IsInterned".
20158
20159 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
20160
20161         * icall.c: remove hacks for typebuilder. Added icall to create a
20162         modified type from a tybebuilder.
20163         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
20164         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
20165         to create a backing MonoClass for a TypeBuilder.
20166
20167 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20168
20169         * class.c, class.h: more refactoring of class init.
20170         Export mono_class_setup_mono_type() and mono_class_setup_parent().
20171
20172 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
20173
20174         * marshal.c, marshal.h: start of marshaling interface.
20175
20176 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20177
20178         * icall.c: fix order in assembly qualified name icall.
20179
20180 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20181
20182         * class.c: do not free str, since we store it in the hash table.
20183         * reflection.h: add label field to MonoILExceptionInfo.
20184         * reflection.c: handle references to more than one assembly. Handle
20185         case when there isn't a module created in the assembly.
20186
20187 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
20188
20189         * class.c: Fix typo. Start refactoring of class init code.
20190
20191 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
20192
20193         * appdomain.c: exit with 1 on error.
20194         * class.c: we already have the name in MonoClassField.
20195         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
20196         MonoStreamHeader instead of an offset of image->raw_metadata.
20197
20198 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
20199
20200         * appdomain.c (mono_init): Be even more descriptive about the error.
20201
20202 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
20203
20204         * appdomain.c: give the user an informative message when corlib can't
20205         be loaded.
20206
20207 2002-02-26  Martin Baulig  <martin@gnome.org>
20208
20209         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
20210         New icall to get the time zone data.
20211
20212 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20213
20214         * reflection.c: set virtual and raw size of section correctly.
20215         * threads.c: transfer domain information to newly created threads.
20216
20217 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20218
20219         * class.c: when instancing a class in a domain, load the default
20220         vaules for static fields from the constant table. Fix System.Enum to
20221         not be an enum.
20222         * icall.c: implement Object::GetType() internalcall. Implemented
20223         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
20224         Fixed checking of binding flags in find_members().
20225         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
20226         * reflection.c: handle enumerations when writing to the constant
20227         table. Use a different object cache for types.
20228
20229
20230 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
20231
20232         * object.c (mono_object_isinst): fix for arrays
20233
20234         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
20235
20236 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20237
20238         * object.c: don't use mprotect ()  and fix intern pool hash table
20239         lookup for big endian systems.
20240
20241 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20242
20243         * icall.c: change type_is_subtype_of () signature.
20244
20245 2002-02-21  Mark Crichton  <crichton@gimp.org>
20246
20247         * rand.c, rand.h: Added random number generator for
20248         System.Security.Cryptography classes.
20249
20250         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
20251
20252         * icall.c: Added System.Security.Cryptography calls.
20253
20254 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
20255
20256         * class.c, icall.c, metadata.c: better support for pointer types.
20257         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
20258         * reflection.c: Add support for getting custom attrs for properties
20259         and simplify some code.
20260
20261 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
20262
20263         * icall.c: change getToken () and add custom attribute GetBlob()helper
20264         method.
20265         * reflection.h: add custom attrs array to the reflection builder structures.
20266         * reflection.c: encode and emit custom attributes for all the relevant
20267         reflection objects. Cache fieldref and methodref tokens. Change
20268         mono_image_create_token() interface to take a MonoDynamicAssembly.
20269         More complete custom attributes decoder. Load custom attributes for
20270         Assembly, Field, Method and Constructor objects, too. Make the
20271         returned array an Attribute[] one, not object[]. Added
20272         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
20273         custom attribute constructor.
20274
20275 2002-02-20  Dick Porter  <dick@ximian.com>
20276
20277         * icall.c:
20278         * rawbuffer.c:
20279         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
20280         problem code out for now).
20281
20282 2002-02-19  Radek Doulik  <rodo@ximian.com>
20283
20284         * object.c (mono_ldstr): use hash table to avoid multiple swapping
20285
20286 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
20287
20288         * icall.c: register the GetCustomAttributes method.
20289         * object.c, object.h: add mono_string_new_len ().
20290         * reflection.h, reflection.c: added mono_runtime_invoke(),
20291         mono_install_runtime_invoke(). Added
20292         mono_reflection_get_custom_attrs () to load custom attributes and
20293         create the attribute objects.
20294
20295 2002-02-19  Dick Porter  <dick@ximian.com>
20296         * threads-dummy-types.c:
20297         * threads-dummy-types.h:
20298         * threads-dummy.c:
20299         * threads-dummy.h:
20300         * threads-pthread-types.c:
20301         * threads-pthread-types.h:
20302         * threads-pthread.c:
20303         * threads-pthread.h:  Deleted obsolete files
20304
20305 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
20306
20307         * class.c (mono_class_vtable): runtime init the class when we
20308         allocate static class data.
20309
20310         * icall.c (ves_icall_System_Array_SetValue): check for null values.
20311
20312         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
20313         and String - but we will need generic marshalling support in the
20314         future. 
20315         (mono_init): set the domain name in a ms compatible way
20316
20317         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
20318         String[].
20319
20320 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
20321
20322         * object.c (mono_array_clone): use alloca() instead of g_malloc  
20323         for sizes
20324
20325         * appdomain.c (mono_domain_unload): impl.
20326
20327 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20328
20329         * appdomain.c, object.c: fix intern pool implementation.
20330         * class.c: fix alignment code.
20331
20332 2002-02-16  Radek Doulik  <rodo@ximian.com>
20333
20334         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
20335         and s2 > s1, just copy lower bytes to be compatible with little
20336         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
20337         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
20338
20339         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
20340         force big_endian to be 1 for big endian machines 
20341         (ves_icall_iconv_new_decoder): ditto
20342
20343 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
20344
20345         * socket-io.c (convert_sockopt_level_and_name): If the system
20346         doesn't define SOL_IP or SOL_TCP, get them by hand using
20347         getprotobyname() and caching the values (because this could be a
20348         slow operation).
20349         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
20350         Use the appropriate struct when the system does support it. Ie,
20351         not all systems have struct ip_mreqn so use struct ip_mreq when
20352         appropriate.
20353
20354 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
20355
20356         * reflection.c: handle finally clauses.
20357
20358 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
20359
20360         * socket-io.c: use g_snprintf() instead of snprintf.
20361
20362 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20363
20364         * reflection.c (mono_param_get_objects): Cast second argument to
20365         mono_method_get_param_names to a const char** to silence the
20366         compiler warning.
20367
20368         * appdomain.c (mono_domain_assembly_open): Put parens around the
20369         truth statement in the for-loop.
20370
20371         * unicode.c (iconv_convert): Got rid of a compiler warning about
20372         int i being unused when the system has a new iconv.
20373         (iconv_get_length): Same.
20374
20375         * image.c (load_class_names): Cast the second argument to
20376         g_hash_table_insert() to char* to hush compiler warnings about the
20377         arg being a const.
20378         (mono_image_open): Same here.
20379
20380         * socket-io.c: Don't conditionally include sys/filio.h or
20381         sys/sockio.h here anymore since we now get them from
20382         io-layer/io-layer.h
20383         (inet_pton): If the system doesn't support inet_aton, implement
20384         using inet_addr and also #define INADDR_NONE if it isn't defined
20385         by the system.
20386
20387 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
20388
20389         * metadata.c, metadata.h: added function to get packing and size info
20390         of a typedef.
20391         * reflection.h, reflection.c: handle field RVA data. Save info about
20392         the table layout if needed. Assign typedef indexes to all the types
20393         before dumping the info about them to avoid forward reference problems.
20394
20395 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
20396
20397         * socket-io.c (convert_sockopt_level_and_name): ifdef
20398         SO_ACCEPTCONN because it is not defined on my system (old debian)
20399
20400 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
20401
20402         * opcode.c: use stddef.h to get NULL.
20403
20404 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
20405
20406         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
20407         for FIONBIO, FIONREAD and SIOCATMARK.
20408         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
20409         define INADDR_NONE and besides, inet_addr() is deprecated and
20410         should not be used. Use inet_pton() instead - it also has the
20411         added bonus that it can easily handle IPv6 addresses as well.
20412         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
20413
20414 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
20415
20416         * decimal.c: remove _MSC_VER conditional.
20417
20418 2002-02-13  Dick Porter  <dick@ximian.com>
20419
20420         * socket-io.c: 
20421         * icall.c: Internal calls for Blocking, Select, Shutdown,
20422         GetSocketOption and SetSocketOption
20423
20424 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20425
20426         * assembly.cs: better resolver: use it instead of some kludgy
20427         code.
20428
20429 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
20430
20431         * reflection.c: the best way to speed-up the compiler is to avoid
20432         infinite loops.
20433
20434 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
20435
20436         * class.c (mono_class_vtable): changed the object layout
20437         (obj->vtable->class). 
20438         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
20439
20440 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
20441
20442         * assembly.c: look for assemblies in the assembly dir, too.
20443
20444 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20445
20446         * class.c: fix thinko in mono_class_from_type().
20447
20448 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
20449
20450         * exception.h, exception.c: added TypeLoadException.
20451         * object.h, object.c: added mono_array_clone ().
20452         * icall.c: handle throwOnError in AssemblyGetType().
20453         Added Array.Clone().
20454         * opcode.h, opcode.c: use a single value for the opcode val.
20455         Compile fix for non-gcc compilers.
20456
20457 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
20458
20459         * opcodes.c, opcodes.h: export interesting info about opcodes.
20460
20461 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
20462
20463         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
20464         icalls. 
20465
20466         * class.c (class_compute_field_layout): set element_class for enums
20467         (mono_class_create_from_typedef): set element_class for normal classes
20468
20469         * icall.c (ves_icall_System_Enum_get_value): impl.
20470
20471         * class.c (mono_class_create_from_typedef): do not set valuetype
20472         flag for System.ValueType and System.Enum
20473
20474 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
20475
20476         * unicode.c (iconv_convert): fix big endian problem.
20477
20478 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
20479
20480         * class.c: add asserts if we are ever going to scribble over memory.
20481         * socket-io.c: not all systems have AF_IRDA defined.
20482
20483 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
20484
20485         * class.c (class_compute_field_layout): do not consider static
20486         fields to compute alignment
20487
20488 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
20489
20490         * appdomain.c (mono_appdomain_get): impl.
20491         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
20492
20493 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
20494
20495         * icall.c: ignore "file://" prefix when loading an assembly.
20496
20497 2002-01-23  Dick Porter  <dick@ximian.com>
20498
20499         * socket-io.c:
20500         * icall.c:
20501         * Makefile.am: Added socket support
20502
20503 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20504
20505         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
20506         code back.  This should return the assemblies that are loaded by
20507         the runtime on behalf of an application domain. 
20508
20509         The current implementation is still broken, it just returns every
20510         assembly loaded, but until we get real applications domain this
20511         will do.
20512
20513 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
20514
20515         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
20516         AppDomain object.
20517
20518 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
20519
20520         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
20521         the mono_class_from_name lookup.
20522         (ves_icall_get_parameter_info): ditto.
20523         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
20524         method.
20525         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
20526
20527 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
20528
20529         * class.c: load also nested classes on class init.
20530         System.ValueType instance methods gets passed boxed
20531         values, unless methods in derived classed that get a pointer to the
20532         data.
20533         * icall.c: use better name parsing code in GetType().
20534         * image.c, image.h: add mono_image_loaded ().
20535         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
20536         * reflection.c, reflection.h: added mono_reflection_parse_type().
20537
20538 2002-01-22  Veronica De Santis <veron78@interfree.it>
20539
20540         * icall.c : Added mapping of internal calls for Manual and Auto reset events
20541         * threads.c : Added the implementation of internal calls for events
20542         * threads.h : Added prototypes of internal calls for events
20543         
20544 2002-01-21  Radek Doulik  <rodo@ximian.com>
20545
20546         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
20547
20548 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
20549
20550         * class.c (mono_class_init): set min_align to 1 (instead of 0)
20551         (mono_class_value_size): use min_align
20552
20553 2002-01-20  Dick Porter  <dick@ximian.com>
20554
20555         * threads.h:
20556         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
20557         so it compiles on w32.
20558
20559 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
20560
20561         * metadata.c (mono_type_stack_size): impl.
20562
20563         * class.c (mono_class_get_field): impl. memberref token
20564
20565 2002-01-16 Veronica De Santis <veron78@@interfree.it>
20566
20567         * icall.h : Added the internal calls mapping for CreateMutex_internal
20568                     and ReleaseMutex_internal.
20569         * threads.h : Added the prototype of mutexes internal calls.
20570         * threads.c : Added the implementations of mutexes internal calls.
20571
20572 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
20573
20574         * metaparse.h: removed unused file.
20575         * reflection.c, reflection.h: added stream_data_align () function 
20576         to align data in streams and keep stream aligned. Add support for
20577         exception support in method headers.
20578
20579 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
20580
20581         * unicode.c: make iconv_convert () return the number of bytess written
20582         in the output buffer.
20583
20584 2002-01-15  Dick Porter  <dick@ximian.com>
20585         * threads.c: Make the runtime's idea of infinite timeouts coincide
20586         with the class library's
20587
20588         Fix a particularly egregious bug in mono_thread_cleanup(). That
20589         code was so utterly bogus it must have been written on a Monday.
20590
20591 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
20592
20593         * reflection.h: add subtypes field to TypeBuilder.
20594         * reflection.c: encode constants for literal fields.
20595         Handle subtypes. Fix user string token (and add a zero byte)
20596         at the end.
20597         
20598 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
20599
20600         * class.c (mono_class_init): bug fix: assign slot numbers for
20601         abstract methods.
20602
20603 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
20604
20605         * reflection.c: don't try to output a code RVA for abstract methods.
20606         Small fixes for method header format. Output parameter info to the
20607         ParamDef table. Save method overriding info to MethodImpl table.
20608         Fix property support. Allow typedef.extends to be a type in the
20609         building assembly.
20610         * verify.c: fix off-by-one error.
20611
20612 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
20613
20614         * class.c: fix mono_class_from_mono_type () for szarray types.
20615         Remove unused cache check in mono_class_from_type_spec().
20616         * icall.c: *type_from_name () functions handle simple arrays and byref.
20617         * reflection.c: handle byref and szarray types. Handle methods without
20618         body (gets P/Invoke compilation working). Handle types and fields in
20619         get_token ().
20620         * reflection.h: add rank to MonoTypeInfo.
20621
20622 2002-01-10  Dick Porter  <dick@ximian.com>
20623
20624         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
20625         internal calls
20626
20627 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
20628
20629         * icall.c: initialize class in type_from_handle ().
20630         Loop also in parent classes for get_method ().
20631         * reflection.c: properly encode class and valuetype types.
20632         Start on encoding TypeBuilder types. Handle fieldrefs.
20633         Use correct length when registering a user string.
20634         Handle ConstructorBuilder and MonoMethod in get_token ().
20635         Make mono_type_get_object () aware of cached types.
20636         * object.c: back out change to mono_string_new ().
20637
20638 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
20639         * object.c: mono_string_new should return a NULL when the string 
20640         passed in is NULL -- not try to deference it.
20641         
20642 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
20643
20644         * icall.c: hack to make IsSubType work for TypeBuilders.
20645         * reflection.c: emit constructors before methods.
20646         Retrieve param names in mono_param_get_objects().
20647
20648 2002/01/05  Nick Drochak  <ndrochak@gol.com>
20649
20650         * Makefile.am: fix list of headers and sources so automake 1.5
20651         doesn't complain. Removed \# at end of list.
20652
20653 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
20654
20655         * reflection.c: get token for a method ref. Set return type of
20656         constructor to void.
20657         * loader.c: debug message.
20658         * class.c: typo fix.
20659
20660 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
20661
20662         * icall.c: fix array init with rank > 1. FindMembers
20663         loops in parent class as well.
20664         * image.c: do not insert nested types in name cache.
20665         * reflection.c: warning fix.
20666         * reflection.h: add override method (for interface impl).
20667
20668 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
20669
20670         * metadata.c: fix customattr decoding.
20671
20672 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
20673
20674         * rawbuffer.cs: Added native Win32 implementation, avoids using
20675         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
20676
20677 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
20678
20679         * class.c: make the low-level routines handle the cache.
20680
20681 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
20682
20683         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
20684
20685 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
20686
20687         * class.c: fix mono_array_element_size() for objects.
20688         * class.h, class.c: add properties to MonoClass and load them
20689         at init time.
20690         * icall.c: check with isinst() when assigning a value to an array
20691         instead of requiring the classes to match exactly.
20692         Implemented icall for System.Type::GetType().
20693         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
20694         enums. Handle bindingflags when looking for methods and fields.
20695         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
20696         and mono_metadata_methods_from_property().
20697         * reflection.h, reflection.c: added structures for propreties,
20698         parameters and enums. Implemented mono_property_get_object() and
20699         mono_param_get_objects().
20700
20701 2001-12-18  Dick Porter  <dick@ximian.com>
20702
20703         * file-io.c: Use mono_string_to_utf16() instead of
20704         mono_string_chars()
20705
20706         * object.c: Added mono_string_to_utf16(), which copies the non
20707         NULL-terminated MonoString into a new double-null-terminated
20708         buffer.
20709
20710 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
20711
20712         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
20713
20714 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
20715
20716         * file-io.c: raise exceptions if handle is invalid.
20717
20718 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
20719
20720         * assembly.c: yet another check for mscorlib.
20721         * class.c, class.h: load nesting info for classes.
20722         * icall.c: many new functions to support the Reflection classes.
20723         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
20724         * reflection.h, reflection.c: mono_image_create_token(),
20725         mono_assembly_get_object(), mono_type_get_object(),
20726         mono_method_get_object(), mono_field_get_object(): methods to return
20727         objects that parallel the C representation of assemblies, types,
20728         methods, fields.
20729
20730 2001-12-11  Dick Porter  <dick@ximian.com>
20731
20732         * icall.c:
20733         * file-io.c: Internal calls for file IO.
20734
20735 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
20736
20737         * tabledefs.h: missing FileAttributes.
20738         * verify.h, verify.c: use is_valid_string () to simplify and check for
20739         valid strings more correctly. Fix warnings and speeling.
20740         Check more tables: Filed, File, ModuleRef, StandAloneSig.
20741         Check code: branches, maxstack, method calls.
20742
20743 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
20744
20745         * object.c (mono_object_allocate): removed static, so that the jit
20746         can allocate value types.
20747
20748         * icall.c (ves_icall_System_DateTime_GetNow): impl.
20749
20750 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20751
20752         * class.c: init enum types right away and register the
20753         token->MonoClass map in mono_class_create_from_typedef ().
20754         * verify.h, verify.c: first cut of the verifier.
20755         * pedump.c: add --verify switch to verify metadata tables.
20756         * tabledefs.h: add some missing enums.
20757
20758 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
20759
20760         * class.c (mono_install_runtime_class_init): impl.
20761         (mono_class_init): renamed mono_class_metadata_init to
20762         mono_class_init, also removed the metadata_inited flag
20763
20764         * object.c (mono_object_isinst): use faster algorithm
20765
20766 2001-11-30  Radek Doulik  <rodo@ximian.com>
20767
20768         * mono-endian.h: reverted last change
20769         added function prototypes
20770
20771         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
20772         add mono-endian.c back
20773
20774         * mono-endian.c: returned back, as Paolo pointed out, it's needed
20775         for unaligned access, I've mistaked it with endianess. I am
20776         sorry.
20777         (mono_read16): fix reverted endianess
20778         (mono_read64): ditto
20779         (mono_read32): ditto
20780
20781 2001-11-30  Dick Porter  <dick@ximian.com>
20782
20783         * exception.c: Implement mono_exception_from_name()
20784
20785 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20786
20787         * metadata.h, metadata.c: remove params_size and locals_size and their
20788         calculation from the metadata code: they are only usefult to the
20789         interp.
20790
20791 2001-11-29  Radek Doulik  <rodo@ximian.com>
20792
20793         * object.c (mono_ldstr): swap bytes here, it's probably not the
20794         best place, but works for me now, I'll redo it once I know mono
20795         better, also note that I add PROT_WRITE and don't reset back, also
20796         note that it's only affects big endians, so x86 should be OK
20797
20798         * mono-endian.h (read16): use just glib macros for both endians
20799
20800         * mono-endian.c: removed as glib macros are used in in
20801         mono-endian.h so we don't need to care about endianess for read
20802         macros as glib does that for us already
20803
20804 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
20805
20806         * class.h, class.h: take minimum alignment into consideration so
20807         that the fields of a class remain aligned also when in an array.
20808
20809 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20810
20811         * loader.h, loader.c: add mono_method_get_param_names().
20812         * class.c: 0-init class fields.
20813
20814 2001-11-26  Dick Porter  <dick@ximian.com>
20815
20816         * icall.c:
20817         * threads-types.h:
20818         * threads.c: New file that handles System.Threading on all platforms
20819
20820         * object.c: 
20821         * object.h: Remove the synchronisation struct from MonoObject,
20822         replace it with a pointer that gets initialised on demand
20823
20824         * Makefile.am: Replace all the system-specific threading code with
20825         a single file that uses the new wrapper library
20826
20827 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
20828
20829         * class.c, class.h: add mono_install_trampoline() so that the runtime
20830         can register a function to create a trampoline: removes the ugly
20831         requirement that a runtime needed to export arch_create_jit_trampoline.
20832         * object.h, object.c: added mono_install_handler() so that the runtime
20833         can install an handler for exceptions generated in C code (with
20834         mono_raise_exception()). Added C struct for System.Delegate.
20835         * pedump.c: removed arch_create_jit_trampoline.
20836         * reflection.c: some cleanups to allow registering user strings and
20837         later getting a token for methodrefs and fieldrefs before the assembly
20838         is built.
20839         * row-indexes.h: updates and fixes from the new ECMA specs.
20840
20841 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
20842
20843         * class.h, class.c: add enum_basetype field to MonoClass.
20844         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
20845         to get index in the constant table reated to a field, param or
20846         property.
20847         * reflection.h, reflection.c: handle constructors. Set public-key and
20848         version number of the built assembly to 0.
20849         * row-indexes.h: update from new ECMA spec.
20850
20851 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20852
20853         * class.h, class.c: add a max_interface_id to MonoClass.
20854         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
20855         since it's used to do that. Added mono_type_type_from_obj().
20856         Make GetType() return NULL instead of segfaulting if the type was not
20857         found. Handle simple arrays in assQualifiedName.
20858         * object.h: add a struct to represent an Exception.
20859         * reflection.c: output call convention in method signature.
20860         Add code to support P/Invoke methods and fixed offsets for fields.
20861
20862 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
20863
20864         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
20865         the value.
20866         * icall.c: use mono_array_addr instead of array->vector: fixes the
20867         reflection image writing.
20868         * reflection.c: init call convention byte to 0 in method signature.
20869         Encode the property signature. Don't output property-related methods
20870         twice. Really process the properties for a type (don't cast a field to
20871         a property, my mom always told me that).
20872         Fix 64 bit issues in pointer alignment in a different and more
20873         readable way.
20874
20875 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
20876
20877         * loader.h: Removed type class from MonoDefaults, added monotype
20878
20879         * loader.c: Loaded MonoType, removed loading of Type
20880
20881         * icall.c (my_mono_new_object): Now returns a System.MonoType,
20882         and fills in System.Type._impl with a RuntimeTypeHandle rather
20883         than the actual MonoClass *
20884
20885         (ves_icall_type_from_handle): change from type_class to
20886         monotype_class
20887
20888         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
20889         implemented
20890
20891         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
20892         implemented
20893
20894         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
20895
20896         (ves_icall_System_Reflection_Assembly_GetType): implemented
20897
20898         (ves_icall_System_MonoType_assQualifiedName): implemented
20899
20900         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
20901
20902 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
20903
20904         * assembly.c (mono_assembly_open): Implement a cache for the
20905         assemblies. 
20906
20907         (mono_assembly_close): only destroy the assembly when the last
20908         reference is gone.
20909         
20910 2001-11-09  Dick Porter  <dick@ximian.com>
20911
20912         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
20913
20914 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
20915
20916         * class.c (mono_class_metadata_init): bug fix: compute the right slot
20917
20918 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
20919
20920         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
20921         from Martin Weindel.
20922         * object.h: add mono_string_chars ().
20923
20924 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
20925
20926         * reflection.c (build_compressed_metadata): Eliminates warnings
20927         and uses 64-bit clean code.
20928
20929         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
20930         (mono_type_equal): Change signature to eliminate warnings.
20931
20932 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
20933
20934         * icall.c, loader.c: remove the internalcall array constructors.
20935         Changes to match the new MonoArray structure.
20936         * object.h, object.c: an array object doesn't allocate an extra
20937         vector. Add mono_array_new_full () to create jagged arrays easily.
20938
20939 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
20940
20941         * metadata.h, metadata.c: add mono_metadata_field_info () to
20942         retreive all the info about a field from vairous tables.
20943         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
20944         * class.h, class.c: augment MonoClassField with more info.
20945         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
20946         policy and load a field's RVA if needed.
20947
20948 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
20949
20950         * class.c (mono_class_metadata_init): create a trampoline for all
20951         virtual functions instead of actually compiling them.
20952
20953 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
20954
20955         * class.h, class.c: include name in MonoClassField.
20956         * class.c: fix fundamental type of System.Object and System.String.
20957         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
20958         tokens in ldtoken.
20959         * icall.c: remove internalcalls for the Reflection stuff that is now
20960         done in C# code.
20961         * loader.c: mono_field_from_memberref () implementation.
20962         * mono-endian.c: thinko (s/struct/union/g).
20963         * object.c, object.h: make the mono_string_* prototypes actually use
20964         MonoString instead of MonoObject.
20965         * reflection.c, reflection.h: updates for changes in the reflection
20966         code in corlib: we use C structures that map to the actual C# classes.
20967         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
20968         fat method header if needed and use the info from the ILGenerator for
20969         methods. Handle fields in types. Misc fixes.
20970
20971 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
20972
20973         * class.c (mono_class_metadata_init): bug fix: always allocate
20974         space for static class data
20975
20976 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
20977
20978         * class.c (mono_compute_relative_numbering): use relative
20979         numbering to support fast runtime type checks.
20980
20981 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
20982
20983         * class.c (mono_class_create_from_typeref): added debugging output
20984         to print class name when MonoDummy is returned instead of real class
20985
20986 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
20987
20988         * class.c (mono_class_metadata_init): interface offset table now
20989         contains pointers into the vtable - this is more efficient for the jit
20990
20991 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
20992
20993         * class.c (mono_class_metadata_init): use a temporary vtable (the
20994         old algorithm only worked for the interpreter, but not for the jit)
20995
20996 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
20997
20998         * loader.c (method_from_memberref): use mono_class_get to get the
20999         class of an array instead of using System.Array directly.
21000         (mono_get_method): also add MEMBERREF methods to the method cache
21001         which usefull for arrays.
21002
21003 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
21004
21005         * pedump.c (arch_compile_method): added to compute vtable entry
21006
21007         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
21008         number of interfaces.
21009         
21010         * class.h: merged MonoArrayClass into MonoClass
21011
21012         * class.c (mono_class_create_from_typedef): compute the vtable size and
21013         allocate space to include the vtable inside MonoClass
21014         (mono_class_metadata_init): initialize the vtable
21015
21016 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
21017
21018         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
21019         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
21020         * image.c: endian fixes by Laurent Rioux.
21021         * object.h, object.c: rename MonoStringObject to MonoString and
21022         MonoArrayObject to MonoArray. Change some function names to conform to
21023         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
21024         guint16* as first argument, so don't use char*.
21025         Provide macros to do the interesting things on arrays in a portable way.
21026         * threads-pthread.c: updates for the API changes and #include <sched.h>
21027         (required for sched_yield()).
21028         * icall.c: updates for the API changes above.
21029         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
21030         platforms that need them.
21031
21032 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21033
21034         * class.c: set the correct type for all the fundamental
21035         type when loading the class.
21036
21037 2001-10-05  Dick Porter  <dick@ximian.com>
21038
21039         * threads-pthread.c (pthread_mutex_timedlock): Simple
21040         compatibility version for C libraries that lack this call.
21041
21042 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21043
21044         * class.c: MonoTypes stored in MonoClass are stored as
21045         fundamental MonoTypes when the class represents a
21046         fundamental type (System.Int32, ...).
21047         The TypeHandle return by ldtoken is a MonoType*.
21048         * icall.c: ves_icall_get_data_chunk () write out all the
21049         PE/COFF stuff. Implement ves_icall_define_method (),
21050         ves_icall_set_method_body (), ves_icall_type_from_handle ().
21051         * image.c: properly skip unknown streams.
21052         * loader.h, loader.c: add type_class to mono_defaults.
21053         * metadata.c, metadata.h: export compute_size () as
21054         mono_metadata_compute_size () with a better interface.
21055         Typo and C&P fixes.
21056         * pedump.c: don't try to print the entry point RVA if there is no entry point.
21057         * reflection.c, reflection.h: many cleanups, fixes, output method
21058         signatures and headers, typedef and typeref info, compress the metadata
21059         tables, output all the heap streams, cli header etc.
21060         * row-indexes.h: typo fixes.
21061
21062 2001-10-04  Dick Porter  <dick@ximian.com>
21063
21064         * object.h: Add a synchronisation mutex struct to MonoObject
21065
21066         * object.c (mono_new_object): Initialise the object
21067         synchronisation mutexes
21068
21069         * icall.c: System.Threading.Monitor internal calls
21070         
21071         * threads-pthread.h:
21072         * threads-pthread.c: System.Threading.Monitor internal calls
21073
21074         * threads-types.h: New file, includes the system-specific thread
21075         structures
21076         
21077         * threads-pthread-types.h:
21078         * threads-pthread-types.c: New files, handle pthread-specific
21079         synchronisation types
21080
21081         * threads-dummy-types.h: 
21082         * threads-dummy-types.c: New files of dummy support for
21083         thread-specific types
21084
21085         * metadata.c:
21086         * image.c:
21087         * pedump.c: include mono-endian.h not endian.h
21088         
21089         * Makefile.am: More threads files.
21090         Name mono-endian.h not endian.h
21091
21092 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
21093
21094         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
21095         stuff and implement a few more bits.
21096         * icall.c: a field needs to be dereferenced twice. Do not use the same
21097         name for two variables in the same scope.
21098         * image.c, image.h: cleanups.
21099
21100 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
21101
21102         * class.c (mono_class_metadata_init): bug fix: compute the right size
21103
21104 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
21105
21106         * icall.c: implemented some of the Reflection internalcalls.
21107         * image.c, image.h: start writing out the PE/COFF image.
21108         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
21109         that does the reverse than decode_blob_size ().
21110         * object.c: use mono_metadata_encode_value (). Move here
21111         temporary implementation of mono_string_to_utf8 ().
21112         * rawbuffer.c: make malloc_map static.
21113
21114 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21115
21116         * metadata.c: fix type comparison for arrays.
21117         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
21118         Added a couple of new classes to monodefaults.
21119         * icall.c: added a couple of Reflection-related internalcalls.
21120         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
21121         Added a byval_arg MonoType to MonoClass.
21122
21123 2001-09-28  Dick Porter  <dick@ximian.com>
21124
21125         * icall.c:
21126         * threads-pthread.h: 
21127         * threads-pthread.c: Implemented internal calls for
21128         LocalDataStoreSlot operations.  Applied mutexes around all shared
21129         data.  Reworked the thread creation and Start() operations to
21130         avoid a race condition.
21131         
21132         * threads-dummy.h:
21133         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
21134
21135 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
21136
21137         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
21138
21139 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
21140
21141         * class.c, loader.c: warn and return NULL instead of erroring out.
21142         * icall.c: added System.AppDomain::getCurDomain().
21143         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
21144
21145 2001-09-25  Dick Porter  <dick@ximian.com>
21146
21147         * threads-pthread.h:
21148         * threads-pthread.c: Implemented timed thread joining and added
21149         System.Threading.Thread::Join_internal internal call
21150
21151         * icall.c: Added System.Threading.Thread::Join_internal internal call
21152
21153         * threads-dummy.h:
21154         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
21155
21156 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
21157
21158         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
21159         mono_string_intern () to implement the semantics of the ldstr opcode
21160         and the interning of System.Strings.
21161         * icall.c: provide hooks to make String::IsIntern and String::Intern
21162         internalcalls.
21163
21164 2001-09-23  Dick Porter  <dick@ximian.com>
21165
21166         * threads-dummy.c: 
21167         * threads-dummy.h: New files of dummy threading routines
21168
21169         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
21170         support code based on system specifics
21171
21172         Rename PTHREAD_LIBS to THREAD_LIBS
21173         
21174 2001-09-23  Dick Porter  <dick@ximian.com>
21175
21176         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
21177         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
21178         internal calls.
21179         (mono_thread_init): Set up a Thread object instance to return when
21180         the main thread calls Thread.CurrentThread
21181         (mono_thread_cleanup): Wait for all subthreads to exit
21182
21183         * icall.c: New internal calls for System.Threading.Thread::Sleep
21184         (including Schedule) and CurrentThread
21185
21186         * threads.h: New file, to insulate thread-specific stuff from the
21187         rest of the code
21188
21189 2001-09-21  Dick Porter  <dick@ximian.com>
21190
21191         * threads-pthread.h: 
21192         * threads-pthread.c: New file, for handling pthreads-style
21193         threading support.  Start() now starts a new thread and executes
21194         the ThreadStart delegate instance.
21195
21196         * icall.c: Added the internalcall for
21197         System.Threading.Thread::Start_internal
21198
21199         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
21200
21201 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
21202
21203         * loader.c: work around the different signatures for delegates
21204         constructors csc generates in compiled code vs the ones compiled in mscorlib.
21205
21206 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21207
21208         * class.h, class.c: add mono_class_get_field_from_name ().
21209         * *: Fix C comments and other ANSI C issues.
21210
21211 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
21212
21213         * endian.h, assembly.c: fix some endianness issues.
21214
21215 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
21216
21217         * loader.h, load.c: add delegate_class to mono_defaults.
21218         Handle runtime provided methods in mono_get_method ().
21219
21220 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
21221
21222         * loader.c (mono_get_method): use pinvoke for internal call
21223
21224         * icall.c: use pinvoke for internal call
21225
21226         * loader.c (method_from_memberref): set the method name
21227
21228 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
21229
21230         * metadata.c: help the compiler generate better code for
21231         mono_class_from_mono_type ().
21232
21233 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
21234
21235         * class.c (mono_class_metadata_init): delayed computing of the
21236         class size to mono_class_metadata_init ()
21237
21238 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
21239
21240         * class.c, class.h: add an interfaces member to MonoClass.
21241         * image.c, image.h: add assembly_name field to MonoImage
21242         from the assembly table.
21243         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
21244
21245 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21246
21247         * class.c: Handle Array in mono_class_from_mono_type ().
21248         * metadata.c, pedump.c: some endian fixes.
21249
21250 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
21251
21252         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
21253         * metadata.c: fix small problem introduced with the latest commit.
21254
21255 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
21256
21257         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
21258         We don't need a MonoMetadata pointer anymore to compare signatures in
21259         mono_metadata_signature_equal (), update callers.
21260         Reduced memory usage an number of allocations for MonoMethodHeader and
21261         MonoMethodSignature.
21262
21263 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
21264
21265         * metadata.c: added compare for szarray.
21266
21267 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
21268
21269         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
21270         and add a couple more types to it and mono_defaults. Give an hint on
21271         classes that need implementing in our corlib and are referenced
21272         in mscorlib.
21273
21274 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
21275
21276         * class.h, class.c: keep track if a class is also an Enum.
21277         * loader.c: Implement a couple more types for use in libffi
21278         marshalling. Gives better diagnostics when failing to dlopen
21279         a library. Set method->klass for P/Invoke methods, too.
21280
21281 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
21282
21283         * class.c, class.h: add a MonoType this_arg to MonoClass that
21284         represents a pointer to an object of the class' type that
21285         can be used by the interpreter and later the type cache.
21286         Add best guess alignment info for valuetype objects.
21287
21288 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
21289
21290         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
21291         into MonoType: one less level of indirection and allocation and
21292         simplifies quite a bit of code. Added cache for MonoTypes that are
21293         used frequently, so that we don't need to allocate them all the time.
21294
21295 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
21296
21297         * class.c (mono_class_create_from_typedef): System.Enum is also a
21298         value type, although it does not derive from System.ValueType
21299         (maybe a bug in the ms compiler?)
21300
21301         * metadata.c (mono_type_size): return the right size for value types
21302
21303         * loader.c (mono_get_method): only initialize method header if not abstract
21304
21305         * class.c (mono_class_from_mono_type): use mono_default values. 
21306
21307 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
21308
21309         * *: use MonoClass pointers instead of <type_tokens>
21310         
21311         * class.h: new flag: metadata_inited.
21312
21313         * class.c (mono_class_metadata_init): impl.
21314         (mono_class_instance_size): impl.
21315         (mono_class_data_size): impl.
21316
21317 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
21318
21319         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
21320         MonoClass now has the name and name_space fields. 
21321         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
21322         mono_get_method () takes and optional MonoClass as argument.
21323         Removed mono_typedef_from_name() and added mono_class_token_from_name()
21324         instead that takes advantage of a map from class names to typedef
21325         tokens in MonoImage.
21326
21327 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
21328
21329         * metadata.c: zero is not a valid alignment boundary.
21330         Merge MONO_TYPE_VOID in default decoding code.
21331
21332 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
21333
21334         * image.h: merged MonoMetadata into MonoImage
21335
21336         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
21337         identify the type of elements.
21338
21339 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
21340
21341         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
21342         * cil-coff.h: split MonoMSDOSHeader and add size info.
21343         * image.c: add some consistency checks.
21344         * metadata.c: fix row size computation: one programmer
21345         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
21346         add explanation for the locator routine.
21347         Fix decoding of size in method header.
21348         
21349 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
21350
21351         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
21352         (g_concat_dir_and_file): Bring g_concat_dir_and_file
21353         function from gnome-libs.  This uses the right path separator
21354         based on the OS, and also works around a bug in some systems where
21355         a double slash is not allowed. 
21356         (default_assembly_name_resolver): Use g_concat_dir_and_file
21357         (mono_assembly_open): ditto.
21358
21359 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
21360
21361         * metadata.c (mono_metadata_signature_equal): impl.
21362
21363         * *: void is now a realy MonoType (instead of using NULL)
21364         
21365         * metadata.c (do_mono_metadata_parse_type): use
21366         mono_metadata_parse_type to parse void value.
21367
21368 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
21369
21370         * metadata.c, metadata.h: in the signature and method header store
21371         only the space required for holding the loca vars and incoming arguments.
21372
21373 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
21374
21375         * metadata.c (do_mono_metadata_parse_type): treat void like any
21376         other type (instead of assigning NULL);
21377
21378 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
21379
21380         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
21381
21382 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
21383
21384         * image.c (do_mono_image_open): added a cache for arrays.
21385
21386 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21387
21388         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
21389         decode a single column from a row in a metadata table and changes
21390         to take advantage of it in the typedef locator (gives a nice speed up).
21391         Store offset info for function params.
21392
21393 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
21394
21395         * image.h (MONO_IMAGE_IS_CORLIB): removed 
21396
21397 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
21398
21399         * assembly.c: how could mono_assembly_close () had ever worked?
21400         * metadata.c, metadata.h: provide offset info for local vars.
21401         Implement mono_type_size () to take care of alignment as well
21402         as size (it was mono_field_type_size in cli/class.c before).
21403
21404 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
21405
21406         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
21407
21408         * assembly.h (CORLIB_NAME): set to corlib.dll
21409
21410         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
21411
21412 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
21413
21414         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
21415         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
21416         tokentype.h: massive namespace cleanup.
21417
21418 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
21419
21420         * metadata.h, metadata.c: decode exception clauses when parsing method header.
21421
21422 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
21423
21424         * metadata.c (mono_metadata_free_type): added check for type !=
21425         NULL (void) before calling mono_metadata_free_type()
21426
21427 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
21428
21429         * metadata.h, row_indexes.h: added header with enumerations to use
21430         to index in the columns from tables in metadata and to decode coded
21431         tokens: we should start using this instead of embedding magic numbers
21432         all over the code.
21433
21434 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
21435
21436         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
21437         Move metadata_t info from cli_image_info_t to MonoImage, where
21438         it's easily accessible. Changed all the uses accordingly.
21439         Added the method and class caches to MonoImage.
21440         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
21441         and mono_metadata_decode_value () signature to be more consistent
21442         with the other parse functions (and simplify code). Taken advantage
21443         of zero-length array allocation with GCC. Removed reduntant (and
21444         wrong) MonoFieldType struct and use MonoParam instead. Changed
21445         mono_metadata_parse_field_type () to use common code for parsing.
21446         Added mono_metadata_typedef_from_field () and
21447         mono_metadata_typedef_from_method () to lookup a typedef index from a
21448         field or method token.
21449         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
21450
21451 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
21452
21453         * metadata.c (mono_metadata_parse_field_type): Implement. 
21454         (do_mono_metadata_parse_type): Split engine from
21455         mono_metadata_parse_type, so that we can create smaller structures
21456         for things that just have one pointer to the MonoType (look at
21457         the MonoFieldType)
21458
21459 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
21460
21461         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
21462         as Jan Gray found out, it is incorrect. 
21463
21464 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
21465
21466         * assembly.c: Implement asssembly loading.  This loads an image
21467         and loads all the referenced assemblies.  Come to think of it, we
21468         could always do lazy loading of the assemblies. 
21469
21470         * image.c (mono_image_open): Keep loaded images in a hashtable.
21471
21472         * image.h (MonoImage): Add reference count.
21473
21474 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
21475
21476         * assembly.c (mono_assembly_open): Keep track of the file name in
21477         case the assembly has no ASSEMBLY table.
21478
21479         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
21480         from get.c here.
21481
21482 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
21483
21484         * metadata.c, metadata.h: decode local vars in method header
21485         parse function. Change callers accordingly.
21486
21487 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
21488
21489         * metadata.h, cil-coff.h: protect against multiple inclusion.
21490         Added some new structures to hold information decoded from metadata:
21491         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
21492         and relevant decoding/free functions.
21493         * metadata.c: implement decoding functions. Add warning for out of bounds
21494         index in mono_metadata_locate(). Implement mono_get_method () to retreive
21495         all the info about a method signature and invocation. Remove check on
21496         uninitialized local var in parse_mh() and fix memory leak.
21497
21498 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
21499
21500         * metadata.h: More macros.
21501
21502         * tokentype.h: New file.
21503
21504 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
21505
21506         * assembly.c: added a consistency check and initialize
21507         some structures with g_new0().
21508         * metadata.c: fixed a couple more bugs in table size computation
21509         and add other checks for out-of bound access to metadata.
21510
21511 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
21512
21513         * metatada.c: fix bugs computing table sizes. Spew a
21514         warning when index in string heap is out of bounds.
21515
21516 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
21517
21518         * metadata.h: Add a couple of macros to manipulate tokens. 
21519
21520 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
21521
21522         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
21523         cli_section_tables).
21524
21525 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
21526
21527         * metadata.c (mono_metadata_user_string): New function, provides
21528         access to the UserString heap. 
21529
21530 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
21531
21532         * metadata.c: Add inline documentation.
21533
21534 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
21535
21536         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
21537         files. 
21538
21539 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
21540
21541         * typeattr.h: New file, TypeAttribute flags. 
21542
21543 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
21544
21545         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
21546         mono_assembly_ensure_section): Section loading code.
21547         (load_section_tables): Load the sections.
21548
21549         * mono/metadata/metadata.c (mono_metadata_locate_token,
21550         mono_metadata_locate): Functions to locate the information
21551         definition given a token or a table and an index.
21552         (mono_metadata_compute_table_bases): New.
21553         (compute_size): New function to compute the sizes of the various
21554         tables.
21555
21556         * mono/metadata/metadata.h: Finish listing the different index
21557         types. 
21558
21559         * mono/metadata/pedump.c: Improve to dump new information.
21560
21561 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
21562
21563         * mono/metadata/metadata.c: Entered all the tables matching
21564         Beta2. 
21565
21566         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
21567
21568
21569