2008-04-21 Gonzalo Paniagua Javier <gonzalo.mono@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2008-04-21  Martin Baulig  <martin@ximian.com>
2
3         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
4
5 2008-04-20  Geoff Norton  <gnorton@novell.com>
6
7         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
8         pointer dereference.
9
10 2008-04-15  Marek Habersack  <mhabersack@novell.com>
11
12         * appdomain.c (try_load_from): if IOMAP is in effect, call the
13         portability API to look up the assembly file. Fixes behavior in
14         situations when the application has a bin/ directory, but the
15         assembly search patch refers to Bin/ (and thus the requested file
16         name is Bin/SomeLibrary.dll). Fixes bug #379888
17
18 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
19
20         verify.c (mono_type_is_generic_argument): Extracted this check
21         from a dozen places to here.
22
23         verify.c: Fixed all issues related to boxing generic arguments
24         and their constraints.
25
26 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
27
28         verify.c (mono_class_interface_implements_interface): Fix win32 build.
29
30 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
31
32         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
33         isn't finished yet. Fixes #363447.
34
35 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
36
37         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
38         Fixes #346419.
39
40 2008-04-13  Jb Evain  <jbevain@novell.com>
41
42         * domain.c: update the 2.1 profile versions.
43         Merged from the Moonlight 2 branch.
44
45 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
46
47         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
48         mscorlibs for the non-refonly case as well.
49
50         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
51         in mono_assembly_load_from_full (). Fixes #378924.
52
53 2008-04-11  Geoff Norton  <gnorton@novell.com>
54
55         * icall.c: The global extern environ doesn't exist on Mac.  We
56         need to call NSGetEnviron instead.
57
58 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
59
60         verify.c: Add generic method constraint verification.
61
62 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
63
64         class.c (mono_class_inflate_generic_method_full): Add a long
65         explanation to the is_mb_open hack. Remove the FIXME.
66
67 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
68
69         * verify.c (mono_method_verify): Mark all unknown opcodes
70         as invalid. Mark jmp as unverifiable.
71
72 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
73
74         * verify.c: Add code to do type constraint verification on class instances.
75
76         * verify.c (mono_verifier_verify_class): Use the type constraint 
77         verification code.
78
79 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
80
81         * class.c (mono_class_get_field_default_value): Don't pass cindex
82         as hint to mono_metadata_get_constant_index. The local is not initialized
83         and should contain garbage most of the time. This could only work
84         with a lot of luck.
85
86 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
87
88         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
89
90 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
91
92         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
93
94         * class.c (mono_class_from_generic_parameter): Save the token of the
95         generic param in MonoClass::sizes.generic_param_token.
96
97         * reflection.c (mono_custom_attrs_from_class): If the class type is
98         VAR or MVAR retrieve the attributes of the generic param.
99
100 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
101
102         * class.c (mono_class_init): Do class verification if the verifier
103         is enabled.
104
105 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
106
107         * verify-internal.h: Added mono_verifier_verify_class.
108
109         * verify.c: Added mono_verifier_verify_class. It checks for
110         classes with explicit layout that have overlapping reference fields.
111
112         * pedump.c: Init the verifier state prior to verification. Fixed
113         command line arguments.
114
115 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
116
117         * Makefile.am: Added verify-internals.h, hopefully fix the build.
118
119 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
120
121         * verify-internals.h: Fix a warning.
122
123 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
124
125         * verify-internals.h: New header with the verifier configuration
126         extracted from mini.c.
127
128         * verify.c: Implemented the new functions exported by verify-internals.h.
129
130 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
131
132         * verify.c: Add proper verification of ckfinite.
133
134 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
135
136         * verify.c (do_conversion): Improved error message to something
137         more meanfull.
138
139         * verify.c (check_is_valid_type_for_field_ops): Fix to work
140         with primitive types.
141
142 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
143
144         * verify.c: Added tail prefix checking. Marked icall
145         as unverifible.
146
147 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
148
149         * verify.c: Fix the detection of branches to the middle
150         of an instruction.
151
152 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
153
154         * verify.c: Implemented verification of volatile. and
155         unaligned. prefix. Check if a type is valid after retrieving it.
156
157 2008-04-01  Dick Porter  <dick@ximian.com>
158
159         * process.c (process_get_fileversion): If there's no string block,
160         set the file language to en_US.  Fixes the other new part of bug
161         374600.
162
163 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
164
165         * class.c: New functions mono_method_can_access_field_full and
166         mono_method_can_access_method_full. They perform type visibility
167         and type site check.
168
169         * class-internal.h: Added exported functions.
170
171         * verify.c: Use new functions to implement proper visibility checks.
172
173 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
174
175         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
176
177 2008-03-28  Dick Porter  <dick@ximian.com>
178
179         * process.c (process_get_fileversion): Use the first language ID
180         we see, rather than insisting on an invariant language.  Fixes bug
181         374600.
182
183 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
184
185         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
186         the streams to fix reading of invalid memory later.
187
188         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
189         to ease debugging.
190
191 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
192
193         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
194         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
195
196 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
197         * threads.h: Added MonoThreadManageCallback type and
198         mono_thread_set_manage_callback prototype
199         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
200         (used to store the mono_thread_manage callback).
201         * threads.c: Added mono_thread_set_manage_callback, and handle
202         "MonoThread->manage_callback" in build_wait_tids.
203
204 2008-03-26  Dick Porter  <dick@ximian.com>
205
206         * process.c (process_get_fileversion): Set FileVersionInfo strings
207         to Empty when the resource doesn't have the particular info.
208         Fixes bug 355717.
209
210 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
211
212         * verify.c (mono_method_verify): Proper prefix validation.
213
214 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
215
216         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
217         itself in a separate argument instead of throwing them. Fixes #373448.
218
219         * appdomain.c: Bump corlib version.
220
221 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
222
223         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
224
225 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
226
227         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
228         version macros.
229
230 2008-03-20  Mark Probst  <mark.probst@gmail.com>
231
232         * generic-sharing.c, class-internals.h: Code for putting
233         reflection types into the runtime generic context.
234
235 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
236
237         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
238         Fixes #340662. 
239
240
241 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
242
243         * verify.c (VerifyContext): Added instruction prefix data to the struct.
244
245         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
246
247         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
248
249         * verify.c (do_cast): Let the result value keep the boxed status.
250
251         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
252
253 2008-03-17  Jb Evain  <jbevain@novell.com>
254
255         * reflection.c: when running on a 2.0 runtime, emit
256         unconditionally the #~ header version as 2.0, and the
257         CLI header version as 2.5, for symmetry's sake with csc.
258
259 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
260
261         * class.c: Remove the unused cache_interface_offsets stuff.
262
263         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
264         profiler.c: Fix warnings.
265
266 2008-03-16  Mark Probst  <mark.probst@gmail.com>
267
268         * generic-sharing.c, class-internals.h: Support for putting
269         methods into the runtime generic context.
270
271 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
272
273         * class.c (mono_class_setup_fields): Ignore calls made to this function for
274         classes which are generic instances of not-yet finished typebuilders. Fixes
275         #351172.
276
277         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
278
279 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
280
281         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
282
283         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
284         field, replace it with a hash table in MonoDynamicImage.
285
286         * reflection.c (inflate_mono_method): Access the generic definition object from
287         image->generic_def_objects instead of imethod->reflection_info.
288
289         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
290
291         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
292         
293         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
294         function in reflection.c so it is easier to keep in sync with the dynamic image
295         creation code.
296
297         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
298         mono_image_close ().
299
300 2008-03-15  Mark Probst  <mark.probst@gmail.com>
301
302         * class.c (mono_class_generic_sharing_enabled): Disable generic
303         sharing for all architectures except AMD64 and x86 to fix build.
304
305 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
306
307         * verify.c: Use the generic definition MonoGenericContext when available.
308         Remove code for checking generics instance compatibility in favor of
309         mono_class_is_assignable_from.
310
311 2008-03-14  Mark Probst  <mark.probst@gmail.com>
312
313         * marshal.c, marshal.h, metadata-internals.h, image.c,
314         wrapper-types.h: New wrapper for invoking a shared static method
315         without having to pass the runtime generic context argument.
316
317 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
318
319         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
320
321 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
322
323         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
324         
325         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
326         create a token from a FieldOnTypeBuilderInst.
327         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
328         (resolve_object): Ditto.
329
330         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
331         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
332
333 2008-03-14  Martin Baulig  <martin@ximian.com>
334
335         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
336
337         * debug-mono-symfile.h
338         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
339         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
340
341 2008-03-10  Martin Baulig  <martin@ximian.com>
342
343         * debug-mono-symfile.h
344         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
345         `lexical_block_table_offset'.
346         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
347         `lexical_blocks'.
348         (MonoSymbolFile): Added `version'.
349
350         * mono-debug.h
351         (MonoDebugLexicalBlockEntry): Removed.
352         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
353         `lexical_blocks'.
354
355         * mono-debug.c (mono_debug_add_method): Don't compute lexical
356         blocks here; the debugger now does this internally.
357
358 2008-02-27  Martin Baulig  <martin@ximian.com>
359
360         * object.c (mono_runtime_exec_main): Call
361         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
362         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
363
364 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
365
366         * verify.c (verify_type_compatibility_full): Allow native int to be converted
367         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
368
369 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
370
371         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
372         ldftn with a virtual method.
373
374 2008-03-13  Geoff Norton  <gnorton@novell.com>
375
376         * decimal.c:  Only include memory.h if the platform has it.
377
378 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
379
380         * assembly.c, class.c, metadata-internals.h: make sure public key
381         tokesns are compared in a case-insensitive way. Also, all
382         the lookups in the GAC use a lowercase public key token
383         (gaacutil already does the lowercasing on install). Fixes
384         bug #369541.
385
386 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
387
388         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
389         and return value.
390
391 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
392
393         * image.c: when someone loads a mscorlib from a file, return the
394         currently loaded mscorlib (fixes bug #369253).
395
396 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
397
398         * class.c: handle types with no parents by forcing them to have
399         System.Object as a parent and marking them as broken (this currently
400         allows the first part of bug #369173 to work as well, likely because
401         we don't check for typeload exceptions everywhere yet).
402
403 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
404
405         * class.c: more complete check that types belong to corlib
406         (fixes second part of bug #369173).
407
408 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
409
410         * generic-sharing.c:  Including glib.h for the MSVC builds to define
411           "inline" to "__inline" before including mono-membar.h.
412           
413         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
414           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
415           MSVC builds.
416
417         Contributed under MIT/X11 license.
418
419 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
420
421         * verify.c (do_invoke_method): Remove return type validation.
422
423         * verify.c (do_ret): Do return type validation at return site instead of
424         call site.
425
426 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
429
430         * verify.c: Some todos cleaned and improved a few error messages.
431
432 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
433
434         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
435
436 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
437
438         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
439         system types correctly.
440
441         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
442         function.
443
444 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
445
446         * assembly.c (build_assembly_name): Fix a warning.
447
448 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
449
450         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
451         the called function takes an object type argument. Fixes storing or
452         valuetypes across remoting as well as reducing memory usage.
453         * image.c, metadata-internals.h: remove now unused ldfld_remote and
454         stfld_remote wrapper caches.
455
456 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
457
458         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
459         is not found.
460
461         * reflection.c (mono_image_register_token): New helper function to save
462         a token->object mapping.        
463
464         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
465         managed code.
466
467         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
468         one dimension arrays. Fixes #367670.
469         (mono_reflection_get_type_internal): Ditto.
470
471 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
472
473         * marshal.c: mono_load_remote_field_new() always returns object.
474         so use the proper signature (fixes bug #366445).
475
476 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
477         
478         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
479         add an 'inline_failure' flag instead.
480
481 2008-03-04  Mark Probst  <mark.probst@gmail.com>
482
483         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
484         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
485         contains the location of "this", used for exception handling.
486
487 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
488
489         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
490         their size on all platforms for perf reasons.
491
492 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
493
494         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
495         object-internal.h
496
497         * object-internal.h: Same.
498
499 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
500
501         * reflection.h: Fix the build I just broke.
502
503 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
504
505         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
506         Test if a token is valid, this remove explicit usage of 
507         MonoDynamicImage::tokens from the verifier code.
508
509         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
510
511         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
512         instead of direct access to MonoDynamicImage::tokens.
513
514 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
515
516         * verify.c (token_bounds_check): Fix the build I just broke.
517
518 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
519
520         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
521
522         * verify.c (verifier_load_method): Fixed the errors message.
523
524         * verify.c (mono_method_verify): Fixed a debug message.
525
526 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
527
528         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
529         mono-perfcounters.h, class-internals.h: support for predefined
530         writable counters, query of categories and counters, bugfixes.
531
532 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
533
534         * verify.c (do_refanytype): Verify the refanytype opcode.
535
536         * verify.c (mono_method_verify): Use do_refanytype.
537
538 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
539
540         * verify.c (do_mkrefany): Verify the mkrefany opcode.
541
542         * verify.c (mono_method_verify): Use do_mkrefany.
543
544 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
545
546         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
547         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
548         implementation.
549
550 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
551
552         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
553         the type load exception.
554
555 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
556
557         * verify.c: Added a few FIXME for method signatures
558
559         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
560         of mono_method_get_signature and get vararg call working. Removed unused
561         checks for return value.
562
563         * verify.c (do_refanyval): Verify the refanyval opcode.
564
565         * verify.c (mono_method_verify): Implemented verification of arglist and
566         use do_refanyval.
567
568 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
569
570         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
571         vtypes to marshal.c.
572
573         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
574         it works for AOT as well.
575
576 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
577
578         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
579         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
580         the system time is adjusted.
581
582 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
583
584         * icall.c, icall-def.h: use the new time functions (fixes the
585         non-monotonic behaviour of TickCount).
586
587 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
588
589         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
590         it breaks the build.
591         
592         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
593         cattr is not finished yet.
594
595 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
596
597         * verify.c: Proper token validation for field, method and type.
598
599 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
600
601         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
602
603         * loader.c (method_from_memberref): Generate type load error instead of method missing
604         if the type is not found.
605
606 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
607
608         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
609         some of the conversions caused the generation of a marshal directive exception.
610
611 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
612
613         verify.c: Report which exception should be thrown by the JIT.
614         Added a lot of FIXME notes.
615
616 2008-02-22  Mark Probst  <mark.probst@gmail.com>
617
618         * generic-sharing.c: Runtime generic context slots are not
619         instantiated on init anymore.  Instead, provide function to do the
620         instantiating on demand.
621
622         * class-internals.h: Added vtable to runtime generic context.
623         Macros for encoding direct and indirect slot offsets in one
624         guint32.
625
626 2008-02-21  Mark Probst  <mark.probst@gmail.com>
627
628         * object.c, generic-sharing.c: Moved some generic sharing code
629         from object.c to generic-sharing.c.
630
631         * generic-sharing.c: Added support for extensible runtime generic
632         context.
633
634         * metadata-internals.h: Two new hash tables in MonoImage for
635         extensible runtime generic context support.
636
637         * domain.c: Unregister generic vtables upon domain unloading.
638
639         * image.c: Destroy new hash tables upon image unloading.
640
641         * metadata.c: Unregister generic subclasses upon image unloading.
642
643         * class-internals.h: New data structure for runtime generic
644         context template.  New fields in the runtime generic context for
645         extensible part.
646
647         * Makefile.am: Added generic-sharing.c.
648
649 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
650
651         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
652         there is a pending loader exception, raise it.
653
654         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
655         same.
656
657         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
658         same.
659
660         Fixes #363450.
661
662 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
663
664         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
665
666         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
667         
668         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
669         ref-only requests for compatibility with MS.
670
671 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
672
673         * reflection.c (mono_custom_attrs_from_method): Don't silently
674         return an empty list for generic method instances.
675         (mono_custom_attrs_from_param): Likewise.
676
677 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
678             Raja R Harinath  <harinath@hurrynot.org>
679
680         Fix #354757
681         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
682         * class.c (mono_class_inflate_generic_method_full): Initialize it
683         when a fully-open method is instantiated.
684         * metadata.c (inflated_method_equal, inflated_method_hash): Update
685         to new field.
686         * reflection.c (inflate_mono_method): Don't create a temporary context.
687
688 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
689
690         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
691         Compute correct value, to prepare for imethod->reflection_info going away.
692
693 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
694
695         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
696
697 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
698
699         * verify.c: Implement skip visibility flag.
700
701 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
702
703         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
704         which contains an extra field to tell the kind of exception that should be thrown.
705
706         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
707
708 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
709
710         * loader.c (mono_method_get_param_names): Initialize 'klass' after
711         'method' is updated.
712
713 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
714
715         * class.c (mono_class_layout_fields): Set class->min_align for classes using
716         explicit layout as well. Fixes #360375.
717
718 2008-02-11  Geoff Norton  <gnorton@novell.com>
719
720         * loader.c: Guard and dereference against inflated generic methods
721
722 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
723
724         * class.c: Include Retargetable spec in assembly name.
725         * assembly.c: Always include PublicKeyToken spec in assembly name
726         (with value "null" if assembly is not signed), and include
727         Retargetable spec.
728         * icall-def.h: Added icall for Assembly.get_fullname.
729         * icall.c: Added icall returning the fullname of an assembly.
730
731 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
732
733         * class.c (mono_class_setup_vtable_general): Add a missing call to
734         mono_class_setup_methods () which is needed in the AOT case.
735
736 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
737
738         * verify.c (mono_type_get_stack_name): Added. Return the name for the
739         stack type of the given MonoType.
740
741         * verify.c (verify_type_compatibility_full): Handle the void type.
742
743         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
744         way stack merging works.
745
746         * verify.c (store_local): Improved verification message.
747
748         * verify.c (do_branch_op): If the merging is invalid, the method
749         is unverifiable and not invalid. Improved error message.
750
751         * verify.c (merge_stacks): Properly merge a boxed valuetype and
752         a reference type diferent than System.Object. Improved error
753         message.
754
755 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
756
757         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
758
759         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
760         type of an enum even if the argument is byref.
761
762         * verify.c: Replace all explicit uses of enumtype and enum_basetype
763         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
764
765         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
766
767         *verify.c (verify_type_compatibility_full): Make enum types
768         compatible with their base types.
769
770         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
771         types are compatible for the special case of a boxed valuetype and
772         System.Object.
773
774         * verify.c (verify_stack_type_compatibility): The function
775         is_compatible_boxed_valuetype was extracted from here.
776
777         * verify.c (push_arg): Only set ctx->has_this_store if the method
778         is not static.
779
780         * verify.c (do_ldelem): Fixed a typo in an error message and added
781         strict check for mixing int32 and native int as the array type
782         and ldelem type.
783
784         * verify.c (merge_stacks): Consider boxed valuetypes in the
785         compatibility checks.
786
787 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
788         * profiler.h: (MonoGCEvent): Added start-stop the world events.
789
790 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
791         *class.c: use_new_interface_vtable_code: renamed the env var to have
792         a "MONO_" prefix, and fix the logic to enable it by default.
793
794 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
795         *class.c:
796         mono_class_setup_vtable_general: rewrote the way in which interface
797         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
798         makes the code more maintainable.
799         For now the old code is still there, and can be activated setting
800         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
801
802 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
803
804         * verify.c: guarded some debug functions around and #ifdef.
805
806         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
807
808 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
809
810         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
811         changes for now since they seem to break too many things.
812
813 2008-02-05  Mark Probst  <mark.probst@gmail.com>
814
815         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
816         mono_marshal_find_nonzero_bit_offset): Added macro and function
817         for finding the byte- and bit-offset of a bitfield within a
818         struct.
819
820 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
821
822         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
823         (mono_marshal_get_struct_to_ptr): Ditto.
824
825         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
826         cctor_signature.
827
828 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
829
830         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
831         between methods for non-corlib types.
832
833 2008-02-02  Geoff Norton  <gnorton@novell.com>
834
835         * loader.c (mono_method_get_param_names): Populate the parameter name for 
836         generic parameters as well. (Fixes #342536)
837
838 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
839
840         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
841
842         * verify.c (do_invoke_method): Fix for calling with byref structs.
843
844         * verify.c (do_cast): push a boxed value type based on the type token and not
845         the type of stack.
846
847 2008-01-31  William Holmes  <billholmes54@gmail.com>
848
849         * process.c (process_module_string_read): Check the size returned form 
850           VerQueryValue to avoid out of memory exception. 
851
852 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
853
854         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
855         Handle properly modules which are not in the moduleref table. Fixes
856         #356938.
857
858 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
859
860         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
861         the dynamic case which is now in managed code.
862         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
863
864         * marshal.c (mono_string_to_bstr): Fix a warning.
865         (init_com_provider_ms): Ditto.
866
867         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
868
869         * exception.c (mono_get_exception_out_of_memory): New helper function.
870
871 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
872
873         * marshal.c: Add support for BSTR marshalling
874         using other COM systems.
875
876         Code is contributed under MIT/X11 license.
877
878 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
879
880         * object.c (mono_runtime_invoke_array): reverted previous
881         commit as it breaks the build.
882
883 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
884
885         * object.c (mono_runtime_invoke_array): Verify arguments for
886         invalid types. Fixes #348522.
887
888 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
889
890         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
891         non-final virtual calls using call. 
892
893         * verify.c (do_invoke): fixed some TODOs.
894
895         * verify.c (push_arg): set has_this_store for "ldarga 0".
896
897 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
898
899         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
900         which belong to an inflated class. Fixes #356531.
901
902 2008-01-26  Robert Jordan  <robertj@gmx.net>
903
904         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
905         which resort to FindFirstFile when a certain error condition
906         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
907         Code is contributed under MIT/X11 license.
908
909 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
910
911         * marshal.c (emit_marshal_string): Fix out string marshalling
912         to use specified encoding. Fixes #323900.
913
914         Code is contributed under MIT/X11 license.
915
916 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
917
918         * class.c (mono_class_inflate_generic_method_full): Don't modify
919         iresult->context after cache check.
920
921 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
922
923         * class.c (mono_class_inflate_generic_method_full): Change the
924         struct assignments to memcpy for better visibility and add some comments.
925
926 2008-01-23  Dick Porter  <dick@ximian.com>
927
928         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
929         procedure, and make it work on windows.
930
931 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
932
933         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
934         a MonoReflectionTypeBuilder since it is always of that type.
935
936         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
937
938         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
939
940         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
941         
942         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
943
944         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
945
946         * reflection.c (mono_reflection_create_runtime_class): Remove already created
947         instantiations from the type cache.
948
949 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
950
951         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
952
953         * verify.c (do_unbox_value): push a controled mutability managed pointer.
954
955 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
956
957         * verify.c (do_ldstr): added, verifies if the #US token is valid.
958
959         * verify.c (mono_method_verify): removed old TODO
960
961 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
962
963         * verify.c (do_newobj): add visibility check.
964
965 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
966
967         * verify.c (do_load_function_ptr): add visibility check.
968
969 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
970         *class.c:
971         mono_generic_class_get_class: hook profiler events.
972         mono_field_get_offset: added to support heap-shot in the new profiler.
973         *class.h: exported mono_field_get_offset.
974         * reflection.c:
975         mono_reflection_setup_internal_class: hook profiler events.
976
977 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
978
979         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
980         argument here too and use it to avoid checking for pending exceptions if 
981         possible.
982
983 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
984
985         * assembly.c (build_assembly_name): add arg for passing the assembly
986         flags. Do not consider a PublicKey with value "null" valid.
987         (mono_assembly_name_parse_full): added boolean argument that will be
988         set if the assembly name contains a PublicKeyToken spec. Added support
989         for the Retargetable spec for which only Yes or No are allowed as valid
990         value. Consider assembly name invalid if Retargetable spec is set, but
991         either version, culture or public key (token) are not specified.
992         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
993         with implementation in assembly.c.
994         * icall.c (fill_reflection_assembly_name): also copy assembly flags
995         from MonoAssemblyName.
996         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
997         introduced argument for mono_assembly_name_parse_full to know if the
998         assembly name has a PublicKeyToken spec, and if it has instruct
999         fill_reflection_assembly_name to use default value for keyToken (if
1000         PublicKeyToken is null).
1001
1002 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1003
1004         * verify.c (mono_method_verify): fixed ovf ops with
1005         float values. They are unverifiable now.
1006
1007 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
1008
1009         * class.c (set_failure_from_loader_error): add BadImageException to the
1010         list of exceptions that can cause a type to fail to load.
1011
1012         * class.c (mono_class_get_exception_for_failure): same.
1013
1014 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
1015
1016         * verify.c (in_any_exception_block): added, check if offset
1017         is part of any exception handling clause.
1018
1019         * verify.c (get_stack_type): added VAR and MVAR types.
1020
1021         * verify.c (do_stobj): better error messages.
1022
1023         * verify.c (do_cpobj): added, check cpobj.
1024
1025         * verify.c (do_initobj): added, check initobj.
1026
1027         * verify.c (do_sizeof): added, check sizeof.
1028
1029         * verify.c (do_localloc): added, check localloc.
1030
1031         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
1032
1033 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
1034
1035         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
1036         save_lmf/restore_lmf opcodes.
1037
1038         * threads.c (mono_threads_install_notify_pending_exc): New function to
1039         install a callback notifying the JIT there is a pending exception on a thread.
1040         (mono_thread_request_interruption): Call the new callback.
1041         (mono_thread_get_and_clear_pending_exception): New function to return the
1042         exception pending on a thread.
1043
1044         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
1045         to turn off checking for pending exceptions.
1046         (mono_marshal_get_native_wrapper): Ditto.
1047
1048 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
1049
1050         * threads-types.h: Get rid of the unnecessary extern declarations.
1051
1052 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
1053
1054         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
1055         return field from parent class if not private.
1056         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
1057         returns fields from parent class if they are not private.
1058         (method_nonpublic): added function to determine if a given method
1059         should be considered non-public. Returns false for private methods
1060         on parent class, and internal methods from parent on the 1.0 profile.
1061         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
1062         use method_nonpublic function to determine whether method should be
1063         returned.
1064         (property_accessor_public): use newly introduced method_nonpublic
1065         function to determine whether accessor is non-public. 
1066         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
1067         event from parent class if not private. Only return static event if
1068         Static flag is set, and only return static event from parent class if
1069         FlattenHierarchy flag is set.
1070         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
1071         include non-private events from parent class.
1072
1073 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
1074
1075         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
1076         warning.
1077
1078 2008-01-16  Wade Berrier <wberrier@novell.com>
1079
1080         * security.c: Add assembly.h header to appease some warnings
1081
1082 2008-01-16  Dick Porter  <dick@ximian.com>
1083
1084         * process.c (process_module_string_read): Remove trailing null
1085         when saving string.
1086
1087 2008-01-16  Mark Probst  <mark.probst@gmail.com>
1088
1089         * class-internals.h: A new data structure describing the layout of
1090         a runtime generic context (MonoRuntimeGenericContextTemplate).
1091
1092         * metadata-internals.h: Added a hash table to MonoDomain that maps
1093         from open generic classes to their runtime generic context
1094         templates.
1095
1096         * object.c: Building of the runtime generic context, including
1097         proper handling of generic type arguments of superclasses.
1098         Building of the runtime generic context according to the template.
1099
1100 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
1101
1102         * class.c (mono_class_setup_fields): Set field.count for generic instances.
1103         Fixes #350856.
1104
1105         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
1106         mono_portability_find_file (). Fixes #325466.
1107         (mono_image_get_public_key): Fix a warning.
1108
1109 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
1110
1111         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
1112         Fixes #353550.
1113         (mono_class_from_name_case): Ditto.
1114
1115 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
1116
1117         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
1118           common storage for the tables used in the System/NumberFormatter class.
1119
1120 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
1121
1122         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
1123
1124 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
1125
1126         * verify.c (get_boxable_mono_type): check if the token is valid.
1127
1128         * verify.c (set_stack_value): changed to add an error if an
1129         invalid type is set on stack. Changed all callers due to signature change.
1130
1131         * verify.c (do_stobj): implement stobj validation.
1132
1133 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
1134
1135         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
1136         set container->is_method, it was set earlier.
1137
1138         * metadata.c (type_in_image): Handle MVARs which belong to not finished
1139         generic methods.
1140
1141         * reflection.c (mono_reflection_initialize_generic_parameter): Set
1142         is_method of the generic container to TRUE for methods.
1143
1144 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
1145
1146         * metadata.c (type_in_image): Handle type parameters properly.
1147
1148         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
1149         memory ownership of this structure.
1150
1151 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
1152
1153         * verify.c (get_boxable_mono_type): make typedref types been just
1154         unverifiable. check for void type.
1155
1156         * verify.c (do_unbox_any): added, verify opcode unbox.any.
1157
1158         * verify.c (do_load_function_ptr): accept method spec tokens.
1159
1160 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
1161
1162         * marshal.c (mono_class_native_size): Always set *align even if this is called
1163         recursively.
1164
1165 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
1166
1167         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
1168         out-of-date.
1169
1170 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
1171
1172         * verify.c: removed some old unused tables. A huge bunch of small fixes
1173         to things found while testing the verifier with mono basic.
1174
1175         * verify.c (dump_stack_value): dump null literal flag to.
1176
1177         * verify.c (verify_type_compatibility_full): fix comparison
1178         for types that have a generic super type.
1179
1180         * verify.c (verify_stack_type_compatibility): fix compatibility
1181         between null literals and reference types. fix compatibility between
1182         boxed valuetypes and object. fix corner case test for enums.
1183
1184         * verify.c (do_cmp_op): proper verification of cgt.un in case
1185         of reference types.
1186
1187         * verify.c (do_invoke_method): fix error message.
1188
1189         * verify.c (do_store_indirect
1190
1191         * verify.c (check_is_valid_type_for_field_ops): proper verification
1192         of managed pointers to valuetypes and boxed valuetypes. proper verification
1193         of null literals.
1194
1195         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
1196         allow token to be a reference type.
1197
1198         * verify.c (do_cast): proper handling of boxes valuetypes.
1199
1200         * verify.c (do_stelem): proper handling of storing a boxed valuetype
1201         in object[].
1202
1203         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
1204         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
1205         fixed the decoding of unbox_any
1206
1207 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
1208
1209         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
1210
1211 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
1212
1213         * verify.c (do_newobj): do delegate verification.
1214
1215         * verify.c (verify_delegate_compatibility): perform delegate
1216         verification.
1217
1218         * verify.c (verify_ldftn_delegate): perform tests related to
1219         ldftn delegates.
1220
1221         * verify.c (mono_delegate_signature_equal): perform the
1222         slightly diferent signature comparison required by delegates.
1223
1224         * metadata.c (mono_metadata_type_equal_full): added and exported
1225         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
1226         allows signature only comparison.
1227
1228         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
1229         as MONO_INTERNAL.
1230
1231 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
1232
1233         * verify.c: added a bunch of stack_slot_* functions to
1234         make access to stack slot type easier. This is required to
1235         allow optional flags, like null literal, boxed value and
1236         this pointer.
1237         All access paths to IlStackDesc::stype have been changed 
1238         to use these new funcions.
1239         Removed a bunch of unused functions and cleared all warnings.
1240         This patch introduces the usage of the this pointer and 
1241         boxed value flags.
1242
1243 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
1244
1245         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
1246
1247 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
1248
1249         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
1250         match managed version.
1251
1252         * appdomain.c: Bump corlib version.
1253         
1254         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
1255         argument.
1256
1257 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
1258
1259         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
1260         Set public key token to zero-length byte array if assembly is not
1261         strongnamed.
1262
1263 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
1264
1265         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
1266         writing a vtype array elem.
1267
1268 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
1269
1270         * assembly.c (build_assembly_name): return FALSE if length of token is
1271         not 16 (if not "null").
1272         (mono_assembly_name_parse_full): return FALSE if value of version,
1273         culture, token or key is 0.
1274         * icall.c (fill_reflection_assembly_name): add boolean arguments to
1275         specify whether public key and public key token must be set to default
1276         value (zero-length byte array) if not available. Set versioncompat to
1277         SameMachine. If public key is available or the default is set, then
1278         set PublicKey flag.
1279         (ves_icall_System_Reflection_Assembly_FillName): if no public key
1280         is available, use empty byte array as default value. On the 2.0
1281         profile, use default value for public key token if not set.
1282         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
1283         profile, use default value for public key if not set. On the 2.0
1284         profile, use default value for public key token if not set.
1285         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
1286         default values for public key and public key token.
1287
1288 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
1289
1290         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
1291         field to keep it in synch with the managed object.
1292
1293         * marshal.c (emit_marshal_object): Add support for byref marshalling of
1294         delegates. Fixes #351520.
1295
1296         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
1297         contains defined memory.
1298         
1299         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
1300
1301         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
1302         
1303         * sgen-gc.c (check_consistency): New helper function to do a consistency check
1304         of the GC data structures.
1305
1306         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
1307
1308         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
1309         
1310         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
1311         barrier.
1312         (mono_array_clone_in_domain): Ditto.
1313         (mono_array_clone_in_domain): Ditto.
1314
1315         * threads.c (start_wrapper): Register the thread start argument as a GC root.
1316         (cache_culture): Use a write barrier.
1317
1318         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
1319         (ves_icall_get_property_info): Ditto.
1320
1321         * object.h (MONO_STRUCT_SETREF): New macro.
1322
1323         * class-internals.h (MonoStats): Add some GC statistics.
1324
1325         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
1326
1327 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
1328
1329         * exception.c (mono_exception_from_name_two_strings):
1330         Break from loop after method is found.
1331
1332 2008-01-04  Dick Porter  <dick@ximian.com>
1333
1334         * process.c (process_module_string_read): Rename variable to
1335         reflect correct usage, after fixing bug 345972.
1336
1337 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
1338
1339         * verify.c (mono_type_create_fnptr_from_mono_method): 
1340         created a MonoType function pointer instance to be used during
1341         verification. The verifier releases this memory at end.
1342
1343         * verify.c (mono_method_is_constructor): extracted repeated
1344         checks for constructor into a single class.
1345
1346         * verify.c (do_push_field): use new extracted method
1347         for constructor check.
1348
1349         * verify.c (do_newobj): same.
1350
1351         * verify.c (do_ldftn): renamed to do_load_function_ptr
1352         and make it verify ldvirtftn too.
1353
1354         * verify.c (mono_method_verify: proper verification
1355         of ldvirtftn. release created MonoMethod instances.
1356
1357 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
1358
1359         * verify.c (token_bounds_check): added.
1360
1361         * verify.c (do_ldftn): added.
1362
1363         * verify.c (mono_method_verify): proper verificartion of ldftn.
1364
1365 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
1366
1367         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
1368         than the table row count. It's the resposibility of the caller to
1369         make the bounds check and raise the correct error.
1370
1371         * metadata.c (mono_metadata_decode_row_col): Same.
1372
1373         * loader.c (mono_get_method_from_token): perform bounds check
1374         on token for methoddef table.
1375
1376 2007-12-29  Miguel de Icaza  <miguel@novell.com>
1377
1378         * icall.c
1379         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
1380         assert into a negative result, the managed code already coped with
1381         that.
1382
1383         Some folks on Windows reported this error. 
1384
1385 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
1386
1387         * appdomain.c: Bump corlib version.
1388         * icall.c:
1389         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
1390         CultureInfo.CreateCulture to create CultureInfo for name.
1391         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
1392         create CultureInfo for name. Fixes bug #347174.
1393
1394 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
1395
1396         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
1397         flags.
1398
1399         * verify.c (is_valid_branch_instruction): allow branching to the
1400         first instruction of the protected block.
1401
1402         * verify.c (is_valid_cmp_branch_instruction): same.
1403
1404         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
1405         avoid double initialization.
1406
1407         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
1408         detect which cases the eval stack should just be copied.
1409
1410         * verify.c (mono_method_verify): check if the eval stack
1411         is empty when entering a protected block.
1412
1413 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
1414
1415         * verify.c: added is_clause_in_range, is_clause_inside_range,
1416         is_clause_nested and verify_clause_relationship. They perform
1417         the verifications stated in P1 12.4.2.7.
1418
1419         * verify.c (mono_method_verify): remove some unused variables,
1420         add the new exception clause checks, add instruction border
1421         checks for protected block start/end, improved some error 
1422         messages and fixed a bug in the way invalid instruction access
1423         is detected.
1424
1425 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
1426
1427         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
1428         from GC 7.0 if available.
1429
1430         * object.c: Remove an unused define.
1431         
1432         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
1433
1434         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
1435
1436         * null-gc.c (mono_gc_make_descr_for_array): Implement.
1437
1438         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
1439
1440         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
1441         to take the same arguments as the other make_descr functions.
1442
1443         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
1444
1445         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
1446         directly.
1447
1448         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
1449         mini.c.
1450
1451         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
1452         call to boehm-gc.c.
1453
1454         * boehm-gc.c (mono_gc_register_root): Fix a warning.
1455
1456         * null-gc.c (mono_gc_register_root): Fix a warning.
1457
1458         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
1459
1460         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
1461         (mono_gc_base_init): Call GC_init ().
1462
1463         * null-gc.c: Define mono_gc_register_root () as a no-op.
1464
1465         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
1466
1467 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
1468
1469         * verify.c: add prototype for merge_stacks at top
1470
1471         * verify.c (do_switch): added.
1472
1473         * verify.c (merge_stacks): on some cases the stack merging
1474         was not happening properly. Unequal stack sizes at merge
1475         points should be invalid.
1476
1477         * verify.c (mono_method_verify): added more debug info on stack state.
1478         verify switch properly.
1479
1480 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
1481
1482         * method-builder.h: New file, moved the mono_mb_ declarations here from 
1483         marshal.h.
1484
1485         * boehm-gc.c marshal.c: Include method-builder.h.
1486
1487         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
1488
1489         * marshal.c: Remove some code which is now in method-builder.c.
1490
1491 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
1492
1493         * method-builder.c: New file, extraction of the method builder functionality 
1494         from marshal.c.
1495
1496         * marshal.c: Move the mb functions into method-builder.c.
1497
1498         * marshal.h marshal.c: Export some mono_mb_... functions.
1499
1500         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
1501
1502         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
1503         the caller.
1504
1505         * class.c (mono_class_get_full): Check the token type in the dynamic case.
1506
1507         * loader.c (mono_field_from_token): Ditto.      
1508
1509         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
1510         type as well.
1511         
1512         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
1513         Fixes #342565.
1514
1515         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
1516         a helper function for setting it.
1517
1518         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
1519
1520         
1521         * assembly.c: Significally simplify code now that referenced assemblies are 
1522         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
1523
1524         * threads.h: Don't include  the internal threads-types.h header file. Fixes
1525         #349952.
1526
1527 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
1528
1529         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
1530         instructions that were target of branches or are at protected block boundaries.
1531
1532         * verify.c (in_same_block): handle filter clauses.
1533
1534         * verify.c (is_valid_branch_instruction): added. checks the target of
1535         instructions br or brtrue/false.
1536
1537         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
1538         binary branch instructions such as beq and bge.
1539
1540         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
1541         and made it pin the instruction as been part of the exception block.
1542
1543         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
1544         of in_same_block.
1545
1546         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
1547         of in_same_block.
1548
1549         * verify.c (do_ret): ret from a protected block is unverifiable and
1550         not invalid.
1551
1552         * verify.c (do_static_branch): verify br and br.s instructions.
1553
1554         * verify.c (merge_stacks): add extra param to support detection
1555         of branches in the middle of instructions.
1556         
1557         * verify.c (mono_method_verify): verify branches and exception blocks
1558         that target the middle of instructions. Proper verification of br and br.s.
1559
1560 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
1561
1562         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
1563         skip_visibility field.
1564         (reflection_methodbuilder_from_dynamic_method): Ditto.
1565
1566         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
1567         registrations. Fixes #348193.
1568
1569         * threads.h: Move the internal mono_thread_get_pending_exception () to
1570         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
1571
1572 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
1573
1574         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
1575         icall registration. Fixes #348193.
1576
1577         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
1578         for corlib classes into object. Fixes #349621.
1579
1580 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1581
1582         * icall.c (property_accessor_nonpublic): new function to determine
1583         whether an accessor allows a property to be considered non-public.
1584         Returns false for private accessor(s) from parent class, and internal
1585         accessor(s) from parent on 2.0 profile (and higher).
1586         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
1587         to determine whether property should be included if NonPublic flag
1588         is set. Fixes bug #349078.
1589
1590 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
1591
1592         * verify.c (init_stack_with_value): added.
1593
1594         * verify.c (mono_method_verify): extracted common
1595         code for exception initialization into init_stack_with_value.
1596
1597         * verify.c (mono_method_verify): initialize the exception
1598         for handler clauses as well.
1599
1600         * verify.c (mono_method_verify): fix the exception clause
1601         ordering rules, it should use handler end offset and not
1602         start offset.
1603
1604 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
1605
1606         * rawbuffer.c: remove useless warning.
1607
1608 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
1609
1610         * threads.h, threads-types.h: move functions to the correct header
1611         (fixes bug#349952).
1612
1613 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1614
1615         * verify.c (mono_method_verify): proper verification
1616         of exception handling clauses ranges and fallthru in
1617         and out of protected blocks.
1618
1619 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1620
1621         * verify.c (mono_method_verify): fixed compilation issue.
1622
1623 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
1624
1625         * verify.c (mono_method_verify): a printf slipped in, changed
1626         to use verifier debug macro.
1627
1628 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
1629
1630         * verify.c (is_correct_leave): check for filter clauses.
1631
1632         * verify.c (do_filter): added.
1633
1634         * verify.c (mono_method_verify): property verification of leave.
1635
1636
1637 2007-12-18  Mark Probst  <mark.probst@gmail.com>
1638
1639         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
1640         Win32 build, until we figure out how to do the proper thing on
1641         Win32.
1642
1643 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
1644
1645         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
1646         by the previous patch.
1647         
1648         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
1649         the assembly resolve handler for refonly assemblies.
1650
1651 2007-12-17  Mark Probst  <mark.probst@gmail.com>
1652
1653         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
1654         Make sure only one thread is allowed to commence shutdown, and
1655         don't allow new threads to be started once shutdown is in
1656         progress.
1657
1658 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
1659
1660         * verify.c (is_correct_endfilter): added.
1661
1662         * verify.c (is_unverifiable_endfilter): added.
1663
1664         * verify.c (do_endfilter): added.
1665
1666         * verify.c (mono_method_verify): property verification of endfilter
1667         and fixed a corner case or endfinally.
1668
1669 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
1670
1671         * verify.h: new flags to support fail fast of unverifiable code and
1672         do non-strict verification. Non-strict verification is required to
1673         have MS runtime compatibility. There are a huge amount of unverifiable
1674         code that it accepts as verifiable. The strict mode verifies the code
1675         as the specs says.
1676         Non-strict mode will be required in cases where code needs to be
1677         accepted as verifiable but fails under strict mode.
1678
1679         * pedump.c: added support to fail fast and non-strict verification.
1680
1681         * verify.c: added support for both fail fast and non-strict verification.
1682
1683 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
1684
1685         * verify.c (is_correct_endfinally): added.
1686
1687         * verify.c (mono_method_verify): property verification of endfinally.
1688
1689 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1690
1691         * verify.c (in_any_block): check for filter clauses.
1692
1693         * verify.c (is_correct_rethrow): added.
1694
1695         * verify.c (mono_method_verify): property verification of rethrow.
1696
1697         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
1698
1699 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
1700
1701         * verify.c (do_throw): added.
1702
1703         * verify.c (mono_method_verify): property verification of throw
1704
1705 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
1706
1707         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
1708         assemblies. Fixes #346425.
1709
1710 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
1711
1712         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
1713         FieldBuilders.
1714
1715         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
1716
1717         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
1718         prevent asserts when this is called with a token which might not be valid.
1719
1720         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
1721         lookup_dynamic_token_class with valid_token == FALSE.
1722
1723         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
1724
1725         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
1726
1727         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
1728         
1729 2007-12-10  Mark Probst  <mark.probst@gmail.com>
1730
1731         * gc.c: Don't delay threadpool thread finalization unless Mono is
1732         shutting down.
1733
1734 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
1735
1736         * threads.c: turn an assert into a non-fatal warning.
1737
1738 2007-12-09  Robert Jordan  <robertj@gmx.net>
1739
1740         * icall.c (GetVirtualMethod): Add missing argument validation.
1741
1742 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1743
1744         * verify.c (do_cast): added.
1745
1746         * verify.c (mono_method_verify): property verification of castclass and isinst.
1747
1748
1749 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1750
1751         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
1752
1753         * verify.c (do_stelem): added.
1754
1755         * verify.c (mono_method_verify): property verification of stelem.X.
1756
1757 2007-12-07  Mark Probst  <mark.probst@gmail.com>
1758
1759         * class.c, class-internals.h: Introduce an environment variable
1760         (MONO_GENERIC_SHARING) through which the extent of generic code
1761         sharing can be controlled (share all classes, share only corlib
1762         classes, or share nothing).
1763
1764         * object.c: Only create runtime generic context for classes for
1765         which sharing is enabled.
1766
1767 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1768
1769         * verify.c (do_ldelem): refactor it to work with ldelem.any.
1770
1771         * verify.c (mono_method_verify): property verification of ldelem.any.
1772
1773 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
1774
1775         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
1776         added ldelem.X opcodes.
1777
1778         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
1779
1780         * verify.c: proper verification of ldelem.X 
1781
1782 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
1783
1784         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
1785
1786 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1787
1788         * verify.c (mono_method_verify): null literal requires special handling,
1789         the value pushed on stack need to be flagged as so.
1790
1791         * verify.c (do_ldelema): Verify ldelema properly.
1792
1793 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
1794
1795         * verify.c: Verify ldlen properly.
1796
1797 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
1798
1799         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
1800         to the target object's type. Fixes #346160.
1801
1802 2007-12-05  Dick Porter  <dick@ximian.com>
1803
1804         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
1805         Solaris needs the same workaround as BSD-derived systems.  Fixes
1806         bug 323524, patch by Burkhard Linke
1807         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
1808
1809 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
1810
1811         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
1812         handle to use when error dialog is shown; otherwise, update mask
1813         to show no error dialog when an error occurs.
1814
1815 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
1816
1817         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
1818
1819         * class.c (mono_class_get_field_default_value): New helper function to initialize
1820         field->def_type and field->data.
1821
1822 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
1823
1824         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
1825         the general one.
1826
1827         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
1828
1829         * marshal.c: Avoid depending on delegate->method_info being set.
1830
1831         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
1832         
1833         * object.c (mono_delegate_ctor): Set delegate->method.
1834
1835         * object-internals.h (struct _MonoDelegate): Add 'method' field.
1836
1837         * appdomain.c: Bump corlib version.
1838
1839 2007-11-27  Raja R Harinath  <harinath@gmail.com>
1840
1841         * metadata.c (mono_generic_inst_equal_full): Short-circuit
1842         equality check if we're comparing canonicalized MonoGenericInsts.
1843
1844 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
1845
1846         * class.c (generic_array_methods): Call mono_class_setup_methods () before
1847         accessing class->methods.
1848
1849 2007-11-22  Dick Porter  <dick@ximian.com>
1850
1851         * threads.c: Ensure that the synch_cs is set before trying to use
1852         it.
1853
1854 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
1855
1856         * profiler.c: r89126 broke the statistial profiler, unbreak.
1857
1858 2007-11-22  Martin Baulig  <martin@ximian.com>
1859
1860         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
1861
1862         * mono-debug.c
1863         (mono_debug_debugger_version): Bump to 3.
1864         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
1865         -> mono_debugger_class_initialized().
1866
1867         * mono-debug-debugger.c
1868         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
1869
1870         * class.c
1871         (mono_debugger_start_class_init_func): Removed.
1872         (mono_debugger_class_loaded_methods_func): Added.
1873         (mono_class_setup_methods): Call it here.
1874
1875 2007-11-22  Martin Baulig  <martin@ximian.com>
1876
1877         * mono-debug.c
1878         (mono_debug_add_delegate_trampoline): New public method.
1879         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
1880
1881         * mono-debug.h
1882         (MonoSymbolTable): Added `global_data_table'.
1883         (MonoDebuggerTypeKind): Removed.
1884
1885 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
1886
1887         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
1888         these methods.
1889
1890         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
1891         
1892 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
1893
1894         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
1895
1896 2007-11-20  Martin Baulig  <martin@ximian.com>
1897
1898         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
1899
1900         * mono-debug-debugger.c
1901         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
1902         (mono_debugger_remove_breakpoint): Likewise.
1903         (mono_debugger_check_breakpoints): Likewise.
1904         (mono_debugger_register_class_init_callback): New public method.
1905         (mono_debugger_remove_class_init_callback): Likewise.
1906         (mono_debugger_add_type): Likewise.
1907
1908         * mono-debug-debugger.h
1909         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
1910
1911 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
1912
1913         * class.c: more interface implementations needed for the
1914         array enumerator (fixes bug #341112).
1915
1916 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
1917
1918         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
1919         fix ParamName of ArgumentNullExceptions.
1920
1921 2007-11-17  Miguel de Icaza  <miguel@novell.com>
1922
1923         * reflection.c (mono_reflection_encode_sighelper): Generate the
1924         modopts and modreqs.   I have a useless test that crashes monodis,
1925         but that shows the code working.
1926
1927 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
1928
1929         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
1930         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
1931
1932 2007-11-15  Dick Porter  <dick@ximian.com>
1933
1934         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
1935         When joining a thread, it's the thread that's calling Join that
1936         gets WaitSleepJoin state not the target.  Fixes the standalone
1937         test case in bug 334740, and hopefully the whole bug too.
1938
1939 2007-11-15  Dick Porter  <dick@ximian.com>
1940
1941         * process.c: Read file version info from the files pointed at by
1942         process modules, not the current process.  Fixes bug 315969.
1943
1944         Use windows typedef names in some places to fix warnings on the
1945         windows build.
1946
1947 2007-11-15  Mark Probst  <mark.probst@gmail.com>
1948
1949         * image.c, metadata-internals.h: Added a generic_class_cache hash
1950         to MonoImage for looking up generic classes when sharing generics.
1951
1952 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
1953
1954         * sgen-gc.c: warning cleanups.
1955
1956 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
1957
1958         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
1959         inherited properties.
1960
1961 2007-11-14  Mark Probst  <mark.probst@gmail.com>
1962
1963         * object.c, class-internals.h: Added more information to the
1964         runtime generic context.
1965
1966 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
1967
1968         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
1969         instead of just the target method. Generalize the abstract method handling to
1970         handle any non-static method.
1971
1972         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1973         mono_marshal_get_delegate_invoke () signature change.
1974
1975 2007-11-13  Mark Probst  <mark.probst@gmail.com>
1976
1977         * class.c, class-internals.h: Made
1978         mono_type_get_basic_type_from_generic () public.  Fixed member
1979         access check for shared generics.
1980
1981         * loader.c: Don't insert field into field cache if it's part of a
1982         non-inflated generic class.
1983
1984         * domain.c, domain-internals.h: The generic sharing context is now
1985         part of the jit info data structure.  Added two accessor
1986         functions.
1987
1988 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
1989
1990         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
1991         the array Get/Set/Address methods, since the JIT inlines them.
1992
1993         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
1994
1995         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
1996         (mono_image_init): Initialize runtime_invoke_direct_cache.      
1997
1998         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
1999         mono_marshal_get_delegate_invoke signature change.
2000
2001         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
2002         an additional argument. Add support for invoking abstract methods.
2003
2004         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
2005
2006         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
2007
2008 2007-11-09  Mark Probst  <mark.probst@gmail.com>
2009
2010         * class.c: Do field layout for open generic classes as well.
2011
2012 2007-11-09  Mark Probst  <mark.probst@gmail.com>
2013
2014         * gc.c, gc-internal.h: Don't finalize threadpool threads with
2015         other objects, because the threadpool is still around.  Put them
2016         in a list instead and after finalizing all other objects in the
2017         root domain shut down the thread pool and then finalize the
2018         threads.  Fixes bug #337383.
2019
2020         * threads.c, thread-types.h: New mono_thread_create_internal()
2021         function for marking a thread with the threadpool flag before it
2022         started.  Set synch_cs to NULL after freeing it.
2023
2024         * threadpool.c: Mark threadpool threads before they start.
2025
2026 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
2027
2028         * reflection.h, reflection.c: don't export random functions
2029         and lazy load dbnull and missing objects.
2030
2031 2007-11-07  Jonathan Chambers <joncham@gmail.com>
2032
2033         * class.c: Initialize COM types if COM interfaces
2034         are present (not just COM classes).
2035         
2036         Code is contributed under MIT/X11 license.
2037
2038 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
2039         * reflection.c:
2040         create_dynamic_mono_image: hook module profiler events (dynamic case).
2041         mono_image_basic_init: hook assembly profiler events (dynamic case).
2042
2043 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
2044         * profiler.c:
2045         simple_appdomain_unload: completely terminate the profiler
2046         instead of only processing the statistical samples.
2047         simple_shutdown: make sure this is really called exactly once,
2048         even in multithreaded applications, and always listen to
2049         appdomain events.
2050         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
2051         here, the "[un]load" functions will do it.
2052         Fixes bugs #333791 and #325261.
2053
2054 2007-11-07  Geoff Norton  <gnorton@novell.com>
2055
2056         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
2057         rather than depend on __APPLE__.
2058
2059 2007-11-07  Mark Probst  <mark.probst@gmail.com>
2060
2061         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
2062
2063 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
2064
2065         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
2066         UTF16 MonoString. Fix the crash from bug #335488
2067
2068 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
2069
2070         * marshal.c: Correct (for non-Win32 OS) length != size in 
2071         mono_string_from_bstr. Fix #339530.
2072
2073 2007-11-06  Geoff Norton  <gnorton@novell.com>
2074
2075         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
2076         to succeed
2077
2078 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
2079
2080         * process.c: Added run-time GetProcessId API detection for Windows.
2081
2082 2007-11-04  Miguel de Icaza  <miguel@novell.com>
2083
2084         * reflection.c  (mono_param_get_objects): If a parameter has the
2085         attribute [System.Runtime.InteropServices.Optional] we should
2086         set the DefaultValue of the ParameterInfo to be
2087         System.Reflection.Missing instead of DBNull.
2088
2089         See bug #339013.
2090
2091         (mono_get_reflection_missing_object): New method,
2092         returns the System.Reflection.Missing.Value singleton instance.
2093
2094 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
2095
2096         * culture-info-table.h : regenerated.
2097
2098 2007-11-02  Jonathan Chambers <joncham@gmail.com>
2099
2100         * icall.c: Use GetEnvironmentStrings on windows
2101         so we are using the same environment block as 
2102         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
2103         #333740.
2104         
2105         Code is contributed under MIT/X11 license.
2106
2107 2007-10-31  Martin Baulig  <martin@ximian.com>
2108
2109         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
2110
2111         * mono-debug-debugger.h
2112         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
2113
2114 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
2115
2116         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
2117         classes.
2118
2119 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
2120
2121         * culture-info-table.h : regenerated.
2122
2123 2007-10-30  Robert Jordan  <robertj@gmx.net>
2124
2125         * icall-def.h, icall.c:
2126         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
2127
2128         Code is contributed under MIT/X11 license.
2129
2130 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
2131
2132         * class.c (mono_class_setup_vtable): Find the inflated methods in the
2133         inflated class instead of inflating them again.
2134         
2135         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
2136         dynamic case.
2137
2138         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
2139         Call setup_supertypes () after klass->parent is set.
2140         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
2141
2142         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
2143         for inflated instances of not yet created dynamic generic classes.
2144         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
2145         times from inflated_method.
2146         (methodbuilder_to_mono_method): Ditto.
2147
2148 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
2149
2150         * gc.c: code cleanup and removed old untested option of not creating the
2151         finalizer thread.
2152
2153 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
2154
2155         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
2156         creating a jump trampoline for dynamic methods.
2157
2158 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2159
2160         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
2161         generic TypeBuilders when called from another method of the same type (bug #335131).
2162
2163
2164 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
2165
2166         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
2167         doesn't seem to work perfectly.
2168         
2169         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
2170         called multiple times.
2171         (methodbuilder_to_mono_method): Ditto.
2172         (resolve_object): Inflate FieldBuilder's.
2173
2174 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2175
2176         * string-icalls.c, string-icalls.h, appdomain.c: patch from
2177         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
2178         RemoveEmptyEntries in the string.Split implementation (bug #322375).
2179
2180 2007-10-26  Dick Porter  <dick@ximian.com>
2181
2182         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
2183         Thread initialisation changes
2184
2185 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
2186
2187         * verify.c: fix compatibility check between arrays and System.Array
2188
2189 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
2190
2191         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
2192         too. Fixes #336999.
2193
2194 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
2195
2196         * object.c (mono_value_box): Use typed allocation here.
2197
2198 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
2199
2200         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
2201         trampoline instead of compiling the method right away.
2202
2203         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
2204
2205 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
2206
2207         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
2208         related fields for dynamic classes. Fixes #334493.
2209
2210 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
2211
2212         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
2213         
2214         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
2215
2216         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
2217         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
2218
2219         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
2220
2221         * reflection.c (create_generic_typespec): Initialize klass->generic_container
2222         if needed.
2223         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
2224
2225 2007-10-18  Jonathan Chambers <joncham@gmail.com>
2226
2227         * marshal.c: Use correct key when removing item
2228         from ccw_hash.
2229         
2230         Code is contributed under MIT/X11 license.
2231
2232 2007-10-17  William Holmes  <billholmes54@gmail.com>
2233
2234         *marshal.c: Adding a case to marshal booleans to U1
2235
2236         Code is contributed under MIT/X11 license.
2237
2238 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
2239
2240         * class.c (mono_class_from_name): Search the modules compromising dynamic
2241         assemblies. Fixes #331601.
2242
2243 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
2244
2245         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
2246         exception if the type name contains an assembly component. Fixes #334203.
2247
2248         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
2249         modules inside dynamic assemblies. Fixes #334200.
2250         
2251         * reflection.c: Set image->public_key and image->public_key_length;
2252
2253         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
2254         fields.
2255
2256         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
2257         
2258 2007-10-16  Mark Probst  <mark.probst@gmail.com>
2259
2260         * metadata.c: Implemented correct comparing of generic classes.
2261         An inflated generic class can be equal to a non-inflated one if it
2262         is inflated with generic type variables as type arguments.  Fixes
2263         bug #333798.
2264
2265 2007-10-15  Dick Porter  <dick@ximian.com>
2266
2267         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
2268         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
2269         81646.
2270
2271         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
2272         instead of a monitor lock.  This means that monitor_try_enter and
2273         co can set the thread state safely.
2274         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
2275         thread_interrupt_requested, so interrupt actually works.
2276
2277         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
2278         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
2279         state accessor function
2280
2281 2007-10-15  Martin Baulig  <martin@ximian.com>
2282
2283         * mono-debug.h
2284         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
2285         the debugger with the current runtime.
2286
2287 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
2288
2289         * object.c, object-internals.h: added the ability to set a single
2290         trampoline for all the slots in a vtable.
2291
2292 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2293
2294         * marshal.c: deal with a possible race condition during multicast
2295         delegate invocation.
2296
2297 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2298
2299         * class.c: ensure value type methods don't have the synchronized
2300         flag set.
2301
2302 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
2303
2304         * string-icalls.c, string-icalls.h: reverted unapproved patch that
2305         breaks the build.
2306
2307 2007-10-11  Joel Reed  <joelwreed@comcast.com>
2308
2309         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
2310         to take an options parameter so that empty entries can be removed during
2311         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
2312
2313 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2314
2315         * marshal.c: make sure we don't store the signature from a dynamic
2316         method into the runtime invoke cache (bug #327189).
2317
2318 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2319
2320         * marshal.c: make sure the wrapper methods are properly initialized.
2321
2322 2007-10-11  Mark Probst  <mark.probst@gmail.com>
2323
2324         * metadata.c, metadata-internals.h: Generalized
2325         mono_type_stack_size() to mono_type_stack_size_internal() which
2326         takes an additional argument specifying whether it allows open
2327         types.
2328
2329 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
2330
2331         * verify.c (do_invoke_method): handle typedbyref params
2332         correctly and check for unverifiable return values.
2333
2334         * verify.c (do_newobj): fix a warning.
2335
2336 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
2337
2338         * verify.c: don't tread typedbyref as allways unverifable,
2339         so uses, like (ld/st)loc.0 are valid. verify for the cases
2340         that it matters, like boxing related operations.
2341
2342 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
2343
2344         * verify.c: add verification of the newobj opcode. verification
2345         of delegate instantation still missing due ldftn and virldftn not
2346         pushing the function type on stack
2347
2348 2007-10-08  Mark Probst  <mark.probst@gmail.com>
2349
2350         * class-internals.h: Runtime generic context data structure
2351         definition.
2352
2353         * object.c: Initialization of runtime generic context at runtime
2354         vtable creation time.
2355
2356 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
2357         * class.c (mono_class_create_from_typedef,
2358         mono_class_from_generic_parameter, mono_ptr_class_get,
2359         mono_fnptr_class_get, mono_bounded_array_class_get)
2360         * domain.c (mono_domain_create, mono_domain_free)
2361         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
2362         * image.c (do_mono_image_load, mono_image_close):
2363         Hooked up load-unload profiler events.
2364
2365 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
2366
2367         * domain.c: track statistics about the actual amount of native code
2368         allocated.
2369
2370 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
2371
2372         * class.c: the valuetype enumerators don't have the additional
2373         supertypes interfaces.
2374
2375 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2376
2377         * class.c: need more interfaces setup for the IEnumerator<T>
2378         object created for arrays (tests/ienumerator-interfaces.2.cs).
2379
2380 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
2381
2382         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
2383
2384 2007-10-05  Alp Toker  <alp@atoker.com>
2385
2386         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
2387         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
2388         #315863.
2389
2390 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
2391
2392         * verify.c (verify_type_compatibility_full): verification of
2393         compatibility improved, validates correctly non-strict checks between
2394         native int and I4 types different than (unsigned)int32.
2395
2396         * verify.c (do_store_indirect): added, do all verification of
2397         ldind.X opcodes. 
2398
2399         * verify.c (get_load_indirect_mono_type): renamed to
2400         get_indirect_op_mono_type, as it now returns the MonoType for 
2401         ldind.X and stind.X opcodes.
2402
2403 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
2404
2405         * reflection.c: Fix the encoding of generic type definition for
2406         TypeBuilders.
2407
2408         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
2409         mono_image_typedef_or_ref but allows to specify if typespec lookups should
2410         be made. Typespec check is done prior to typeref cache lookup.
2411
2412         * reflection.c (mono_image_typedef_or_ref): now just delegate to
2413         mono_image_typedef_or_ref_full.
2414
2415         * reflection.c (encode_generic_class): encode the generic class
2416         directly instead of calling encode_type.
2417
2418         * reflection.c (encode_type): encode the generic type definition
2419         MonoClass as a generic instantiation.
2420
2421         * reflection.c (create_typespec): cache typespec tokens in
2422         the assembly->typespec cache. Don't create typespec for a generic
2423         instance MonoClass. Create typespec for the generic type defintion.
2424
2425         * reflection.c (create_generic_typespec): encode the generic
2426         class directly instead of calling encode_type.
2427
2428         * reflection.c (mono_image_create_token): encode the generic
2429         type definition not using a typespec for MonoType instances.
2430
2431
2432 2007-10-04  Raja R Harinath  <rharinath@novell.com>
2433
2434         Fix #328812
2435         * class.c (mono_image_init_name_cache): Don't return nested
2436         'protected internal' classes.
2437         (mono_class_from_name_case): Likewise.
2438
2439 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
2440
2441         * icall-def.h, icall.c : get_bundled_machine_config() is now the
2442           common function used by both DefaultConfig in System.dll and
2443           InternalConfigurationHost in System.Configuration.dll.
2444
2445 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
2446
2447         * class.c: automatically add to vectors only a few essential explicit
2448         generic interfaces. The rest of the interfaces that arrays should
2449         provide are currently implicitly added (but still not lazily, see the
2450         design in the discussion of bug#325495 for the details of what is
2451         needed for that). Additionally, implicit interfaces are assigned the
2452         same vtable slot as the explicit interfaces (as they are compatible):
2453         this enables huge memory savings since we don't need to instantiate
2454         as many memthods and as large vtables anymore. Also, Since
2455         GetEnumerator<T> returns an instance of a type that is required to
2456         support a similarly large set of interfaces as arrays, we add
2457         implicit interfaces and interface offset sharing support to those
2458         types, too. This change adds all the required interfaces so that
2459         the anonarray.cs test case in the bug report works (we don't add
2460         all the interfaces to arrays of arrays 3-level deep and more because
2461         of the memory requirements explained in the bug and since they are much
2462         less common: the lazy-loading support will enabled them to work, too).
2463
2464 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2465
2466         * verify.c (merge_stacks): major clean up, all type compatibility
2467         checks are done by verify_type_compatibility. This fix my earlier lack
2468         of understanding of the CLR type system and merge_stacks no longer looks
2469         scary.
2470
2471         * verify.c: fixed some bad spelling.
2472
2473 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
2474
2475         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
2476         a given stack slock.
2477         
2478         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
2479         verify_type_compatibility_full. This removed a near indentical function and fixed
2480         handling of Int32 and IntPtr across all opcodes.
2481
2482 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
2483
2484         * class.c: only vectors have the additional generic interfaces.
2485
2486 2007-10-01  Jonathan Chambers <joncham@gmail.com>
2487
2488         * mono-config.c: Use g_strcasecmp instead of
2489         strcasecmp like everywhere else to fix
2490         compilation with MSVC.
2491         
2492         Code is contributed under MIT/X11 license.
2493
2494 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
2495
2496         * object.c, object-internals.h: refactored the IMT code to enable
2497         building a single slot at a time and lazily creating the IMT trampolines
2498         and thunks.
2499
2500 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
2501
2502         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
2503
2504         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
2505         Fixes #328501.
2506         
2507 2007-09-29  Raja R Harinath  <harinath@gmail.com>
2508
2509         * loader.c (method_from_methodspec): Rearrange to avoid
2510         un-necessary exposition.  Don't assert out if the method's
2511         declaring type is a generic type definition.
2512
2513 2007-09-28  Martin Baulig  <martin@ximian.com>
2514
2515         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
2516
2517 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
2518
2519         * class-internals.h: optimize field layout of MonoClass to
2520         requires less cachelines at runtime and save a few bytes on 64 bit
2521         systems.
2522
2523 2007-09-28  Jb Evain  <jbevain@novell.com>
2524
2525         * reflection.c: when encoding type names in custom attributes,
2526         if the type is a closed generic type, its generic arguments
2527         have to be serialized as AssemblyQualifiedName, so that when
2528         they are deserialized, it's possible to re-create them properly.
2529         Fixes #329450.
2530
2531
2532 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
2533
2534         * object.c, class-internals.h: added delegate-creation counter.
2535
2536 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
2537
2538         * class.c: cleanup of the code that synthetizes interfaces for
2539         arrays in 2.0: saves quit a bit of corlib mempool memory.
2540         Code to fix bug #325495 ifdeffed out for now until the issues
2541         with memory usage and O(n^2) behaviour are fixed.
2542
2543 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
2544
2545         * marshal.c: when possible, do not duplicate the name of the methods
2546         in the method builder and in the generated MonoMethod.
2547
2548 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2549         * verify.c: added support for type checking ldind_* opcodes.
2550
2551 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
2552
2553         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
2554         which is used to distinguish the fully open instantiation of a TypeBuilder
2555         with the rest. This temporary hack is required to restore the property that
2556         the fully open instantiation is the same type of the generic type definition.
2557
2558         * class-internals.h (mono_generic_class_is_generic_type_definition):
2559         new function as part of the internal API.
2560
2561         * class.c (inflate_generic_type): return NULL when the generic inst is
2562         fully open. The fully open generic type is now the same as the generic type
2563         definition for non TypeBuilder types.
2564
2565         * class.c (mono_generic_class_get_class): removed assert since it is
2566         no longer valid, gklass->cached_class can point to the generic type definition.
2567
2568         * class.c (mono_generic_class_is_generic_type_definition): new.
2569
2570         * metadata.c (mono_generic_class_hash): added is_tb_open field
2571         to the hash calculation.
2572
2573         * metadata.c (free_generic_class): if the generic class is associated
2574         with the generic type definition, its field will come from the mempool and
2575         must not be freed.
2576
2577         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
2578         new, this function identifies the corner case of a TypeBuilder fully open
2579         instantiation.
2580
2581         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
2582         for lookup. Set gclass->cached_class to be the container class in case of
2583         the fully open instantiation of non TypeBuilder types.
2584
2585         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
2586         to compare generic classes.
2587
2588         * reflection.c (method_encode_methodspec): remove assert that
2589         no longer is valid.
2590
2591         * reflection.c (mono_reflection_generic_class_initialize): add
2592         an aditional assert to ensure the proper type is used.
2593
2594 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
2595
2596         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
2597         to enjoy it.
2598
2599 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2600
2601         * verify.c (push_arg): Fixed support for ldarga
2602         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
2603         MonoType used as first arg in case of instance calls.
2604
2605 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
2606
2607         * verify.c: Support for verifying VAR and MVAR types, 
2608
2609 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
2610
2611         * icall.c (ves_icall_get_property_info): Set the reflected type of the
2612         accessors correctly.
2613
2614 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
2615
2616         * threads.c: support OSX and other systems in
2617         mono_thread_get_stack_bounds (bug #328026).
2618
2619 2007-09-25  Martin Baulig  <martin@ximian.com>
2620
2621         * mono-debug.h
2622         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
2623
2624 2007-09-24  Martin Baulig  <martin@ximian.com>
2625
2626         * mono-debug.h
2627         (MonoDebugClassEntry): Moved the definition of this struct into
2628         mono-debug.c to make it private.
2629
2630         * mono-debug.c
2631         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
2632         type table per symbol file, we don't need to store the symfile id
2633         any longer.
2634
2635 2007-09-24  Martin Baulig  <martin@ximian.com>
2636
2637         Create one type table per symbol file, since a `MonoClass *' gets
2638         invalid when its image is unloaded.
2639
2640         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
2641         (MonoDebugHandle): Added `type_table'.
2642
2643 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
2644
2645         * mempool.c, mempool.h: added mono_mempool_new_size () API
2646         to be able to specify a smaller initial size for the pool.
2647         Adjusted the code to slowly increase pool size before using
2648         the previous default size.
2649         * image.c: use a small initial size for image mempools.
2650
2651 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
2652
2653         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
2654         Fixes ##320990.
2655
2656         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
2657         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
2658
2659 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
2660
2661         * metadata.c (mono_type_create_from_typespec): Remove an invalid
2662         free. Fixes #327438.
2663
2664 2007-09-21  Raja R Harinath  <harinath@gmail.com>
2665
2666         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
2667         generic instantiations, etc.
2668         <MONO_TYPE_ARRAY>: Likewise.
2669
2670 2007-09-21  Martin Baulig  <martin@ximian.com>
2671
2672         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
2673         these structs were never defined.
2674         (MonoDebugHandle): Removed the `_priv' field, it was never used.
2675
2676 2007-09-21  Martin Baulig  <martin@ximian.com>
2677
2678         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
2679
2680 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
2681
2682         * image.c: removed the guid hash tables: we can get the same info
2683         without the additional memory usage hit (partially fixes also bug #327052).
2684
2685 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2686
2687         * profiler.h, profiler-private.h, profiler.c: add a new profiler
2688         event to handle unloading methods. After the event is called, the
2689         corresponding MonoMethod* must be considered invalid.
2690         * loader.c (mono_free_method): call the new mono_profiler_method_free
2691         event.
2692
2693 2007-09-20  Mark Probst  <mark.probst@gmail.com>
2694
2695         * domain-internals.h: New flag in MonoJitInfo which marks shared
2696         generic methods.  New hash table (shared_generics_hash) in
2697         MonoDomain to keep track of shared generic methods.  Prototypes
2698         for functions to register and lookup shared generic methods.
2699
2700         * domain.c: Support for registering and looking up shared generic
2701         methods via a hash table (shared_generics_hash) in MonoDomain.
2702
2703         * class-internals.h: New exception to signal failure of shared
2704         compilation of a generic method.  New counters for generics
2705         sharing in MonoStats.
2706
2707 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
2708
2709         * image.c, metadata-internals.h: don't keep a file descriptor open
2710         for loaded assemblies (bug#325988).
2711
2712 2007-09-19  Raja R Harinath  <rharinath@novell.com>
2713
2714         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
2715         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
2716         use the corresponding datatypes.
2717         (type_in_image): Update to changes.
2718         (CleanForImageUserData): Simplify.
2719         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
2720         Avoid quadratic behaviour in handling the "stolen" list by
2721         separating the filter predicate out, and by prepending the stolen
2722         items rather than appending them.
2723         (steal_ginst_in_image): Likewise.
2724         (mono_metadata_clean_for_image): Update to changes.
2725
2726 2007-09-19  Martin Baulig  <martin@ximian.com>
2727
2728         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
2729
2730 2007-09-19  Martin Baulig  <martin@ximian.com>
2731
2732         * mono-debug.c (mono_debug_cleanup): Don't call
2733         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
2734
2735 2007-09-19  Raja R Harinath  <harinath@gmail.com>
2736
2737         Fix crash on 'make run-test' in mcs/errors
2738         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
2739         Avoid more potential allocations in mono_class_from_mono_type.
2740         (ginst_in_image): Update to changes.
2741         (gclass_in_image): Rearrange slightly.
2742
2743 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2744
2745         * class.c (mono_class_init): Move the code that sets up class->methods to 
2746         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
2747
2748         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
2749         canonical instance of an inflated generic signature.
2750         (mono_type_create_from_typespec): Remove an invalid free.
2751
2752         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
2753
2754 2007-09-18  Marek Habersack  <mhabersack@novell.com>
2755
2756         * domain-internals.h: added a declaration of the
2757         mono_assembly_load_full_nosearch internal function.
2758
2759         * assembly.c (mono_assembly_load_with_partial_name): use
2760         mono_try_assembly_resolve return value properly.
2761         (mono_assembly_load_full_nosearch): copied the function body from
2762         mono_assembly_load_full, without the code to invoke assembly
2763         search hooks.
2764         (mono_assembly_load_full): calls the above new function and if the
2765         assembly is not resolved, invokes the search hooks.
2766
2767         * appdomain.c (mono_runtime_init): restore the global postload
2768         assembly search handlers.
2769
2770 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
2771
2772         * class.c (mono_class_init): Make sure class->methods and class->properties
2773         are never NULL in the generics case.
2774
2775         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
2776
2777 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
2778
2779         * metadata.c (free_generic_class): Disable some code to fix the build.
2780
2781         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
2782
2783         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
2784         from the image mempool.
2785
2786         * metadata.c (free_generic_class): Free more data from the inflated class.
2787
2788         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
2789
2790         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
2791         mempool.
2792         (mono_type_create_from_typespec): Ditto.
2793
2794         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
2795         MonoImage to the caller.
2796         (mono_init_internal): Save the opened image in a global variable.
2797         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
2798
2799         * reflection.c (resolve_object): Fix a leak.
2800
2801         * metadata.c: Fix the freeing of data in the generics caches.
2802         
2803         * metadata.c (free_generic_inst): Comment this out to fix the build.
2804         (free_generic_class): Ditto.
2805
2806         * metadata.c: Free cached generic methods, instantinations and classes when
2807         they are removed from the caches.
2808         (mono_metadata_free_type): Free the type itself.
2809
2810         * class.c: Free the result of mono_class_inflate_generic_type () in a few
2811         places.
2812
2813 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
2814
2815         * boehm-gc.c: restrict managed allocs to __thread supporting
2816         architectures.
2817
2818 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
2819
2820         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
2821         (mono_generic_class_get_class): Fix a leak.
2822
2823         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
2824         mono_metadata_free_type ().
2825         (mono_metadata_inflate_generic_inst): Fix a leak.
2826
2827 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2828
2829         * mono-debug.c (free_header_data): Fix a leak missed earlier.
2830
2831         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
2832         mempool.
2833
2834         * mono-debug.c (mono_debug_close_image): Fix call to 
2835         g_hash_table_remove ().
2836
2837 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
2838
2839         * icall-def.h: redirect all the string ctor to the managed
2840         CreateString () methods.
2841         * string-icalls.c, string-icalls.h: removed dead code for string
2842         ctors and icalls.
2843
2844 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2845
2846         * mono-debug.c: Fix memory leaks.
2847
2848 2007-09-14  Jonathan Chambers <joncham@gmail.com>
2849
2850         * threads-types.h: Implement mono_hazard_pointer_set and 
2851         mono_hazard_pointer_clear macros using do/while(0) to fix
2852         compilation with MSVC.
2853         
2854         Code is contributed under MIT/X11 license.
2855
2856 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
2857
2858         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
2859         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
2860
2861 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2862
2863         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
2864         icalls.
2865
2866 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
2867
2868         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
2869         managed-code allocated as well.
2870
2871 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2872
2873         * class.c (mono_class_is_assignable_from): Add support for generic variance.
2874
2875 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
2876
2877         * boehm-gc.c: fixed the build after the AOT changes.
2878
2879 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
2880
2881         * wrapper-types.h: Add an ALLOC wrapper type.
2882
2883         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
2884         reference managed allocator methods.
2885
2886 2007-09-12  Marek Safar  <marek.safar@gmail.com>
2887
2888         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
2889         of Type array and not MonoType, a fix suggested by Hari.
2890         
2891 2007-09-12  Jonathan Chambers <joncham@gmail.com>
2892
2893         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
2894         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
2895         
2896         Code is contributed under MIT/X11 license.
2897
2898 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2899
2900         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
2901
2902 2007-09-12  Marek Habersack  <mhabersack@novell.com>
2903
2904         * image.c (do_mono_image_open): if assembly file fails to open and
2905         MONO_IOMAP is in effect, try to find the path in a
2906         case-insensitive way.
2907
2908         * appdomain.c (mono_runtime_init): do not install postload hooks -
2909         tests show that MS.NET doesn't use anything of that sort to
2910         trigger the AppDomain.AssemblyResolve event.
2911         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
2912         made non-static.
2913         (mono_runtime_init): init portability helpers here.
2914
2915         * assembly.c (mono_assembly_load_with_partial_name): if other   
2916         attempts fail, trigger the AppDomain.AssemblyResolve event handler
2917         to resolve the assembly.
2918
2919         * domain-internals.h: added mono_try_assembly_resolve and marked
2920         it as internal.
2921
2922 2007-09-11  Jb Evain  <jbevain@novell.com>
2923
2924         * object-internals.h (MonoReflectionDynamicMethod): add
2925         a `MonoReflectionType *owner` field. The owner is used
2926         * reflection.c:
2927         (mono_reflection_create_dynamic_method): use the owner of the dynamic
2928         method as the class declaring the dynamic method.
2929         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
2930         dynamic method to the declaring type of the methodbuilder.
2931
2932 2007-09-11  Mark Probst  <mark.probst@gmail.com>
2933
2934         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
2935         rules for calling methods via reflection.
2936
2937 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
2938
2939         * reflection.c (resolve_object): Add support for MonoGenericClass. 
2940         Inflate MonoType's.
2941
2942 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
2943
2944         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
2945         provide a managed method that does fast allocations without needing
2946         a managed->unmanaged transition. Boehm GC implementation currently
2947         enabled for ptrfree objects on sane architectures.
2948
2949 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
2950
2951         * marshal.c, marshal.h: exported a couple of useful functions and
2952         added mono_mb_get_label () to easily handle backward branches.
2953
2954 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
2955
2956         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
2957
2958 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
2959
2960         * loader.c (find_method): Fixed the regression introduced while
2961         fixing bug #81466.
2962
2963 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
2964
2965         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
2966         well.
2967         
2968         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
2969         icall.c reflection.c: Pass a MonoGenericContext argument to 
2970         mono_lookup_dynamic_token ().
2971
2972         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
2973         #82744.
2974         
2975 2007-09-09  Robert Jordan  <robertj@gmx.net>
2976
2977         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
2978         for generic methods.
2979
2980         * object.c (mono_object_get_virtual_method): Handle generic methods.
2981         Fixes bug #78882.
2982
2983         Code is contributed under MIT/X11 license.
2984
2985 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
2986
2987         * image.c: fix locking in mono_image_load_file_for_image ().
2988
2989 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
2990
2991         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
2992         used only as a cache: added an icall to fill it.
2993
2994 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
2995
2996         * reflection.h: exposed mono_reflection_free_type_info
2997         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
2998         since mono_reflection_bind_generic_parameters makes a copy of it.
2999         * reflection.c (free_type_info): subinfos should be freed.
3000         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
3001         made non static.
3002         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
3003         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
3004         this fixes #82695 and #81726.
3005    
3006
3007 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
3008
3009         * process.h, process.c:  added support for user profile/info in
3010           ProcessStartInfo. For now only Windows works.
3011
3012 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
3013
3014         * metadata.c: consider the generic arguments when comparing
3015         signatures (bug #82614).
3016
3017 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
3018
3019         * cil-coff.h, image.c: updated assembly loader to cope with the
3020         PE32+ 64 bit file format.
3021
3022 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
3023
3024         * assembly.c, class.c, domain.c, loader.c: remove useless
3025         inclusion of cil-coff.h.
3026
3027 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
3028
3029         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
3030         if interface is marked with CoClassAttribute. 
3031    
3032         Code is contributed under MIT/X11 license.
3033
3034 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3035
3036         * sgen-gc.c: ensure no object from the to space is copied again or finalized
3037         if it's seen twice in major collections.
3038
3039 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
3040
3041         * sgen-gc.c: big objects are not copied to the gray area, but they
3042         need to be considered for scanning, too, if they are brought alive
3043         by an object ready for finalizations or a survived one.
3044
3045 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
3046
3047         * sgen-gc.c: properly account the number of disappearing links when
3048         they are nullified.
3049
3050 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
3051
3052         * sgen-gc.c: share the code to scan the registered roots between the
3053         different types of collections.
3054
3055 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
3056
3057         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
3058
3059 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
3060
3061         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
3062         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
3063
3064 2007-08-28  Mark Probst  <mark.probst@gmail.com>
3065
3066         * security-manager.c (mono_security_manager_get_methods):
3067         LinkDemandSecurityException now has 2 arguments instead of 3.
3068
3069 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
3070
3071         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
3072         platforms which need it.
3073
3074 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
3075
3076         * sgen-gc.c: unregister thread data structures with a pthread_key_t
3077         dtor.
3078
3079 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
3080
3081         * threads.c: free the thread static data on thread exit.
3082
3083 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
3084
3085         * class.c: walk the hierarchy to find the generic definition for
3086         a class (fixes runtime part of bug #82498).
3087
3088 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
3089
3090         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
3091         ...
3092
3093         * image.c (mono_image_close): Here. Hopefully fixes #82510.
3094
3095 2007-08-24  Mark Probst  <mark.probst@gmail.com>
3096
3097         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
3098
3099 2007-08-24  Robert Jordan  <robertj@gmx.net>
3100
3101         * appdomain.c: don't perform the ':'->';' substitution on Win32.
3102
3103 2007-08-24  Jb Evain  <jbevain@novell.com>
3104
3105         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
3106         for byref types.
3107
3108 2007-08-24  Mark Probst  <mark.probst@gmail.com>
3109
3110         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
3111         #82286.
3112
3113 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
3114
3115         * assembly.c: Fix a warning.
3116         
3117 2007-08-23  Marek Habersack  <mhabersack@novell.com>
3118
3119         * appdomain.c: parse the <runtime> section looking for the probing
3120         element with the 'privatePath' attribute, which sets additional
3121         directories in which the runtime should look for assemblies.
3122
3123 2007-08-23  Robert Jordan  <robertj@gmx.net>
3124
3125         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
3126         Fixes #82499.
3127
3128 2007-08-23  Martin Baulig  <martin@ximian.com>
3129
3130         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
3131         _mono_debug_init_corlib() and remove it from the header file.
3132
3133 2007-08-23  Martin Baulig  <martin@ximian.com>
3134
3135         * mono-debug-debugger.c
3136         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
3137         don't notify the debugger about it.
3138
3139         * mono-debug-debugger.h
3140         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
3141
3142 2007-08-23  Robert Jordan  <robertj@gmx.net>
3143
3144         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
3145         Code is contributed under MIT/X11 license.
3146
3147 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
3148
3149         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
3150
3151 2007-08-22  Martin Baulig  <martin@ximian.com>
3152
3153         * mono-debug.c: Store debugging info on a per-domain basis and
3154         free it on domain unload.  Add support for unloading symbol files.
3155
3156         * mono-debug.h
3157         (MonoDebugList): New typedef.
3158         (MonoSymbolTable):
3159         - add `data_tables and `type_table'.
3160         - replace 'symbol_files' and `num_symbol_files' with a
3161           `MonoDebugList *'.
3162         (mono_debug_data_table): Removed.
3163         (mono_debug_list_add): New public function.
3164         (mono_debug_list_remove): New public function.
3165         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
3166         (mono_debug_init_2_memory): Renamed into
3167         mono_debug_open_image_from_memory().
3168         (mono_debug_close_image): New public function.
3169         (mono_debug_domain_create): Likewise.
3170         (mono_debug_domain_unload): Likewise.
3171         (MONO_DEBUGGER_VERSION): Bump to 60.
3172
3173         * mono-debug-debugger.h
3174         (MonoDebuggerEvent):
3175         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
3176         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
3177         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
3178         - rename `THREAD_CREATED' and `THREAD_EXITED' into
3179           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
3180         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
3181           meaning.
3182         (mono_debugger_add_symbol_file): Removed.
3183         (mono_debugger_add_type): Removed.
3184         (mono_debugger_lookup_type): Removed.
3185         (mono_debugger_lookup_assembly): Removed.
3186
3187         * domain.c
3188         (mono_domain_create): Call mono_debug_domain_create().
3189         (mono_init_internal): Call mono_debug_init_corlib().
3190
3191         * assembly.c
3192         (mono_assembly_close): Call mono_debug_close_image().
3193
3194 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
3195
3196         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
3197         mmap call.
3198
3199 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
3200
3201         * sgen-gc.c: ensure section->pin_queue_end is initialized
3202         correctly when non pinning objects in the section have been found.
3203
3204 2007-08-22  Marek Habersack  <mhabersack@novell.com>
3205
3206         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
3207         containing a list of directories separated by ':'. MSDN docs say
3208         the directories should be separated with ';'. Part of a bugfix for
3209         bug #81446
3210
3211 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
3212
3213         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
3214         it should MonoType and not MonoClass.
3215
3216 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
3217
3218         * culture-info-table.h : regenerated.
3219
3220 2007-08-20  William Holmes  <billholmes54@gmail.com>
3221
3222         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
3223          to call ReplaceFile Kernel32 on windows or in io-layer.
3224         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
3225         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
3226          as an internal call.
3227
3228         Code is contributed under MIT/X11 license.
3229
3230 2007-08-20  Jb Evain  <jbevain@novell.com>
3231
3232         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
3233         and MONO_EXCEPTION_FIELD_ACCESS.
3234
3235         * debug-helpers.[c|h]: new mono_field_full_name function.
3236
3237 2007-08-20  Mark Probst  <mark.probst@gmail.com>
3238
3239         * class.c: Removed class_security_level() and moved it to
3240         security-core-clr.c.
3241
3242         * security-core-clr.c, security-core-clr.h: class_security_level()
3243         is now public and renamed to mono_security_core_clr_class_level().
3244         It also looks for security attributes in the classes a class is
3245         nested in.
3246
3247 2007-08-20  Mark Probst  <mark.probst@gmail.com>
3248
3249         * security-core-clr.c, security-core-clr.h: CoreCLR security
3250         utility functions.
3251
3252         * Makefile.am: Added security-core-clr.[ch].
3253
3254         * security-manager.c, security-manager.h: Functions and enum for
3255         setting and getting the security mode.
3256
3257         * class.c: CoreCLR security checks.
3258
3259 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
3260
3261         * icall-def.h, process.c, process.h: implemented icall to get
3262         user/system processor times.
3263
3264 2007-08-17  Mark Probst  <mark.probst@gmail.com>
3265
3266         * domain.c, threads.c, class-internals.h, domain-internals.h: New
3267         reader-lock-free jit_info_table.
3268
3269 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
3270
3271         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
3272
3273         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
3274
3275         * object-internals.h (MonoException): Add missing _data member.
3276
3277 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
3278
3279         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
3280         checking that only methods with matching qname or fqname are picked
3281         from implemented interfaces.
3282
3283 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3284
3285         * verify.c (do_newarr):added, do type verification of
3286         newarr ops, push the right value on the eval stack.
3287         * verify.c (mono_method_verify): use do_newarr
3288
3289
3290 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3291
3292         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
3293         factored the common code into get_boxable_mono_type, which
3294         is now using mono_type_get_full, this fixed byref related tests.
3295
3296 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
3297
3298         * class.c: added mono_type_get_full, this function has the same
3299         behavior of mono_class_get_full but the returned MonoType has
3300         all metadata of the associated token in case of a typespec token.
3301         * class.c: added mono_type_retrieve_from_typespec, used by 
3302         mono_type_get_full to retrieve the token type.
3303         * class.c (mono_class_create_from_typespec): changed to use
3304         mono_type_retrieve_from_typespec.
3305         * class.c (mono_ldtoken): changed to use mono_type_get_full
3306         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
3307         * class-internals.h: exported mono_type_get_full for internal use.
3308
3309 2007-08-16  Jb Evain  <jbevain@novell.com>
3310
3311         * domain.c (supported_runtimes): add entry for
3312         the 'moonlight' runtime version.
3313
3314 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3315
3316         * verify.c (mono_method_verify): small typo sliped in.  
3317
3318 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3319
3320         * verify.c (do_unbox_value): added, do type verification of
3321         unboxing ops
3322         * verify.c (mono_method_verify): use do_unbox_value
3323
3324
3325 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3326
3327         * verify.c (dump_stack_value): fixed typo, was printing string
3328         instead of object on stack.
3329         * verify.c (do_box_value): moved the byref check up as it leads
3330         to invalid code and should be done earlier.
3331         * verify.c: improved error messages for and ldobj
3332
3333 2007-08-15  William Holmes  <billholmes54@gmail.com>
3334
3335         * marshal.c (emit_marshal_custom): Omit the call to 
3336           marshal_native_to_managed when calling native to managed 
3337           and the argument is specified as an out argument.
3338
3339         Code is contributed under MIT/X11 license.
3340
3341 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
3342
3343         * verify.c: fixed the type checks for generics, function pointers and vectors.
3344         Added type verification for ldobj and ldtoken. The verifier
3345         would segfault if header or signature of a method contained references
3346         to non-existant types.
3347
3348 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
3349
3350         * marshal.c (cominterop_get_ccw): Patch from
3351         Bill Holmes to no walk up interface hierarchy. 
3352         All parent methods should be present in the interface for COM.
3353    
3354         Code is contributed under MIT/X11 license.
3355
3356 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
3357
3358         * marshal.c (emit_marshal_com_interface): Patch from
3359         Bill Holmes to handle COM Interfaces as return values
3360         for native->managed calls.
3361    
3362         Code is contributed under MIT/X11 license.
3363
3364 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
3365
3366         * marshal.c (cominterop_get_idispatch_for_object): Implement
3367         for runtime callable wrappers.
3368    
3369         Code is contributed under MIT/X11 license.
3370
3371 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
3372
3373         * pedump.c (main): changed from mono_init to mono_init_from_assembly
3374         so 2.0 types are accessible
3375
3376
3377 2007-08-13  Miguel de Icaza  <miguel@novell.com>
3378
3379         * domain.c (mono_init_internal): Call mono_assembly_load_friends
3380         once we load mscorlib.   Due to the order in which we initialize,
3381         the mono_assembly_load_full routine that loads mscorlib did not
3382         load friends.   We now load it once we load the
3383         mono_defaults.internals_visible_class class. 
3384
3385         * assembly.c: Expose the mono_load_friend_assemblies method.
3386
3387 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
3388
3389         * verify.c: improved the handling of boxing, better
3390         type checking for unary ops and conversion. Fix bug
3391         regarding managed pointer compatibility checking
3392
3393 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
3394
3395         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
3396
3397         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
3398
3399 2007-08-09  Raja R Harinath  <rharinath@novell.com>
3400
3401         * reflection.c (dup_type): Remove.
3402         * class.c (dup_type): Remove.
3403         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
3404         instead of the dodgy 'dup_type'.
3405         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
3406         handle the case where 'dup_type' needed the second argument.
3407
3408 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
3409
3410         * domain.c: Fix a warning.
3411
3412 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
3413
3414         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
3415         checking that methods with the same fqname are not overridden
3416         with a method from an ancestor.
3417
3418 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
3419
3420         * threads.c (free_thread_static_data_helper): Avoid a crash if
3421         thread->static_data is not yet set.
3422
3423 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
3424
3425         * marshal.c: Use correct image when emitting
3426         native wrapper for COM calls.
3427    
3428         Code is contributed under MIT/X11 license.
3429
3430 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
3431
3432         * icall-def.h, security.c, security.h :
3433           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
3434
3435 2007-08-07  Martin Baulig  <martin@ximian.com>
3436
3437         * mono-debug-debugger.h
3438         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
3439
3440         * domain.c (mono_domain_free): Call
3441         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
3442
3443 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
3444
3445         * verify.c (check_underflow, check_overflow): error message now returns IL offset
3446         * verify.c (in_same_block): code should test if either offset is inside the clauses
3447         * verify.c (mono_method_verify): push the exception into the eval stack of exception
3448         and filter blocks
3449
3450 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3451
3452         * image.c (mono_image_close): Fix a leak.
3453
3454         * object.c (mono_runtime_invoke_array): Avoid using alloca.
3455
3456         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
3457
3458 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
3459
3460         * domain.c, threads.c, threads-types.h: fix memory retention issue
3461         with thread static variables not being cleared on domain unload.
3462         Reuse thread static slots after domain unload.
3463
3464 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
3465
3466         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
3467         nullable type.
3468
3469         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
3470         now done in mono_runtime_invoke_array.
3471
3472         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
3473         receiver is a nullable type.
3474
3475         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
3476         generic parameter.
3477
3478 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
3479
3480         * marshal.c: Implement COM Objects as return type for 
3481         managed->unmanaged calls. Added Release calls for COM Object
3482         out/return values in managed->unmanaged calls.
3483
3484         Code is contributed under MIT/X11 license.
3485
3486 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
3487
3488         * threads.h, threads-type.h: move the hazard pointer declarations
3489         to the private header.
3490
3491 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
3492
3493         * file-io.c, appdomain.c: memory leak fixes.
3494
3495 2007-08-02  Dick Porter  <dick@ximian.com>
3496
3497         * socket-io.c
3498         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
3499         SO_REUSEADDR setting into io-layer/sockets.c.
3500
3501 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
3502
3503         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
3504         from Object when called on a generic parameter. Fixes #82211.
3505
3506 2007-08-01  Dick Porter  <dick@ximian.com>
3507
3508         * file-io.c (convert_share): Test FileShare values bit-by-bit.
3509         Fixes bug 79250 yet again.
3510
3511 2007-07-30  Martin Baulig  <martin@ximian.com>
3512
3513         Merged the `debugger-dublin' branch.
3514
3515         * mono-debug.h
3516         (MonoDebugDataTable): New typedef.
3517         (MonoDebugMethodAddressList): New typedef.
3518         (MonoDebugWrapperData): Removed.
3519         (MonoDebugSymbolTable): Removed `current_data_table',
3520         `current_data_table_size', `current_data_table_offset'.
3521         (MonoDebugDataItemType): Moved into mono-debug.c.
3522         (MonoDebugMethodJitInfo): Remove `address'.
3523         (mono_debug_data_table): New global variable.
3524         (mono_debug_lookup_method_addresses): New public function.
3525         (mono_debug_find_method): Take a `MonoMethod *', not a
3526         `MonoDebugMethodInfo *'.
3527
3528         * mono-debug.c: Drop support for the old symbol tables.
3529
3530 2007-06-28  Martin Baulig  <martin@ximian.com>
3531
3532         * mono-debug.c (mono_debug_debugger_version): New public variable.
3533
3534 2007-07-31  William Holmes  <billholmes54@gmail.com>
3535
3536         * metadata.c Changed mono_type_create_from_typespec to not insert
3537           the type into the hash map until after
3538           do_mono_metadata_parse_type has completed.
3539         Fixes Bug #82194
3540         Code is contributed under MIT/X11 license.
3541
3542 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
3543
3544         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
3545         generic parameter. Fixes #82211.
3546
3547 2007-07-27  Jb Evain  <jbevain@novell.com>
3548
3549         * pedump.c (dump_metadata, dump_metadata_header): dump
3550         versions contained in the metadata header.
3551
3552 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
3553
3554         * threads.c: register small_id_table with the GC.
3555
3556 2007-07-27  Mark Probst  <mark.probst@gmail.com>
3557
3558         * threads.c, threads.h, class-internals.h, object-internals.h:
3559         Hazard pointers, to be used by lock-free parallel algorithms.
3560
3561 2007-07-26  Dick Porter  <dick@ximian.com>
3562
3563         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
3564         routine on non-windows platforms, as I've not managed to think of
3565         a non-kludgy way of doing this.  Finishes off bug 78739.
3566
3567 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
3568
3569         * object.c: properly setup interface_bitmap in proxy vtables.
3570
3571 2007-07-25  Marek Habersack  <mhabersack@novell.com>
3572
3573         * appdomain.c (get_shadow_assembly_location): do not use TickCount
3574         to create unique shadow copy target directories, use the domain's
3575         serial number instead. Each domain gets a unique target directory
3576         that way.
3577
3578         * domain.c (mono_domain_create): added code to increment domain
3579         shadow copy serial number and cache the value in the current
3580         domain structure.
3581
3582         * domain-internals.h (struct _MonoDomain): added a new field -
3583         shadow_serial to hold the serial number used in generation of
3584         shadow-copy directories. This is to make sure that the directory
3585         name is unique for each and every domain created. We avoid a race
3586         condition with overriding assemblies already in use by other app
3587         domains.
3588
3589 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
3590
3591         * class.c (mono_bounded_array_class_get): fixed memory leak when 
3592         binding generic parameters.
3593
3594 2007-07-24  Raja R Harinath  <rharinath@novell.com>
3595
3596         * metadata.c (do_mono_metadata_parse_generic_class): Use
3597         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
3598         error.
3599
3600 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
3601
3602         * loader.c, class-internals.h, reflection.c: removed the per-method
3603         generics hashtable: we use the global one through the call of
3604         mono_class_inflate_generic_method ().
3605
3606 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
3607
3608         * class.c, metadata.c, class-internals.h: introduce yet another
3609         generics global cache for inflated methods (fixes 98% of the perf
3610         issue in bug #81806).
3611
3612 2007-07-23  Raja R Harinath  <rharinath@novell.com>
3613
3614         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
3615         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
3616         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
3617         return a MonoGenericInst containing (a copy) of those types.
3618         (mono_metadata_inflate_generic_inst): Update to changes.
3619         (mono_metadata_parse_generic_inst): Likewise.
3620         (mono_get_shared_generic_inst): Likewise.
3621         * reflection.c (mono_class_bind_generic_parameters): Likewise.
3622         (mono_reflection_bind_generic_method_parameters): Likewise.
3623         * metadata-internals.h: Likewise.
3624         * icall.c (free_generic_context): Kill.
3625         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
3626
3627         * reflection.c (reflection_methodbuilder_to_mono_method): Use
3628         mono_metadata_type_dup.
3629         * marshal.c (mono_mb_create_method): Likewise.
3630
3631         * metadata.c (mono_metadata_type_dup): Rename from
3632         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
3633         MonoImage.  Handle a few more cases, esp. when no mempool is given.
3634         * marshal.c, metadata-internals.h: Update to changes.
3635
3636 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
3637
3638         * class.c: fixed a small leak for array classes and removed warning.
3639
3640 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
3641
3642         * loader.c (mono_method_get_param_token): Make this work on generic methods.
3643         Return 0x8000000 for return parameters. Fixes #82161.
3644
3645 2007-07-21  Marek Habersack  <grendello@gmail.com>
3646
3647         * appdomain.c (get_shadow_assembly_location): append the current
3648         ticks value to the path. Avoids overwriting the same assemblies by
3649         several threads at the same time.
3650
3651 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3652         and Raja R Harinath  <rharinath@novell.com>
3653
3654         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3655         Simplify slightly.
3656         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
3657         property for testing if a method is a generic method definition.
3658
3659 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
3660
3661         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
3662
3663 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3664
3665         * verify.c: used function from private branch, reverted to the one in class.h 
3666
3667 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3668
3669         * verify.c: a typo slipped in and the code wont compile
3670
3671 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3672
3673         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
3674         disabled box instruction as it is doing the wrong thing
3675         improved stack dump messages, now it is easier to debug type related issues
3676
3677
3678 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
3679
3680         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
3681
3682 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3683
3684         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
3685         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
3686         grouped with class and valuetype. This change will simply 
3687         the code as it should be handled just like unmanaged pointers.
3688
3689 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3690
3691         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
3692
3693 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
3694
3695         * verify.c: several stack merge issues fixed, reference comparisons now
3696         check the type size. strict type check now works correctly.
3697         added more uses of IS_MANAGED_POINTER macro.
3698         fixed issues pointed by running the test suite against .net.
3699         
3700
3701 2007-07-19  Mark Probst  <mark.probst@gmail.com>
3702
3703         * class.c, loader.c, class-internals.h: Removed the
3704         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
3705         defines.
3706
3707         * icall.c: Better error checking in some internal reflection
3708         methods.
3709
3710 2007-07-18  William Holmes  <billholmes54@gmail.com>
3711
3712         * filewatcher.c : removed unused variable 'filename' in 
3713           ves_icall_System_IO_FSW_SupportsFSW
3714
3715 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
3716
3717         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
3718         obsolete, removed.
3719
3720 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
3721
3722         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
3723         
3724         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
3725
3726 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
3727
3728         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
3729         Implement generics support.
3730         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3731
3732         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
3733         type_args and method_args arguments.
3734         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
3735         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
3736         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
3737
3738 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
3739
3740         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
3741           It adds a rootimage parameter to mono_reflection_get_type_internal,
3742           adds new function mono_reflection_get_type_with_rootimage and use
3743           the rootimage to resolve the types instead of the current image
3744
3745 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3746
3747         * culture-info-table.h: Forgot to update after r78304.
3748
3749 2007-07-13  Raja R Harinath  <rharinath@novell.com>
3750
3751         * class.c (mono_class_is_open_constructed_type)
3752         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
3753
3754 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
3755
3756         * class.c (mono_bounded_array_class_get):  method fails if used with
3757         an incomplete TypeBuilder enum (no basetype field), fixed it by 
3758         avoiding calculating the size for such array as it cannot be instantiated.
3759         Fix bug #82015
3760
3761 2007-07-12  Raja R Harinath  <rharinath@novell.com>
3762
3763         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
3764         field.
3765         * metadata.c, reflection.c: Update to changes.
3766
3767 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
3768
3769         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
3770         mono_class_is_valid_enum, they are used to valide a enum when loading.
3771         * reflection.c: used new functions to throw TypeLoadException when and
3772         invalid enum is build with TypeBuilder. Fixes #82018
3773   
3774 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
3775
3776         * object.c: forgot commit of mono_class_setup_methods () to access
3777         iface->methods.
3778         * object-internals.h: added a few more handy fields to
3779         MonoIMTCheckItem.
3780
3781 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
3782
3783         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
3784         iface->methods.
3785
3786 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
3787
3788         * class-internals.h, object-internals.h, object.c: IMT-based
3789         interface invocation core from Massimiliano Mantione
3790         (massi@ximian.com) with a reworked arch-specific interface,
3791         bsearch implementation and a few bugfixes and memory savings by me.
3792
3793 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
3794
3795         * class.c (mono_class_create_from_typedef): mono would segfault if 
3796         an enum did not have a __value field. It now throws a TypeLoadException
3797         for such cases. Fix bug #82022
3798
3799 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3800
3801         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
3802
3803 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3804
3805         * class.c (mono_class_init): If a class is already inited but has
3806         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
3807
3808 2007-07-09  Mark Probst  <mark.probst@gmail.com>
3809
3810         * class.c: Properly handle the case of an unimplemented interface
3811         method.  Fixes: 81673.
3812
3813 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
3814
3815         * class-internals.h, object.c: cleanup patch from massi: use
3816         MonoVTable->interface_bitmap since the vtable interfaces offset array
3817         is going away.
3818
3819 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
3820
3821         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
3822         GetMDStreamVersion icall instead.
3823
3824 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
3825
3826         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
3827         not use mono_dl_build_path() with a full library name: makes
3828         fallbacks to libgaim and libfam work.
3829
3830 2007-07-06  William Holmes  <billholmes54@gmail.com>
3831
3832         * assembly.c: Added a continue statement in probe_for_partial_name when
3833          parse_assembly_directory_name fails.  Fixes : 82002
3834
3835 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
3836
3837         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
3838         and added a verification  for TYPEDBYREF.
3839         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
3840         make native int interchangeable with int32 and some small cleanup and formating.
3841         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
3842         handle byref of byref.
3843         * verify.c (push_local): handle byref of byref.
3844         * verify.c (do_binop): invalid mix of values is unverifiable
3845         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
3846         added visibility checks
3847         * verify.c (field related method): added visibility checks
3848         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
3849
3850 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
3851
3852         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
3853         string.
3854
3855 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
3856
3857         * profiler.c (mono_profiler_load): Fix an off-by-one error.
3858
3859         * marshal.c (emit_marshal_string): When returning a string from managed code,
3860         allways make a copy even for unicode strings. Fixes #81990.
3861
3862 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
3863
3864         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
3865         of byref generic inst types (bug #81997).
3866
3867 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
3868
3869         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
3870         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
3871
3872 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
3873
3874         * marshal.c (emit_marshal_string): Add support for unicode strings in
3875         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
3876
3877 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
3878
3879         * verify.c: field load/store are now verified, missing only access checks now
3880
3881 2007-06-28  Martin Baulig  <martin@ximian.com>
3882
3883         * mono-debug.c (mono_debug_debugger_version): New public variable.
3884
3885 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
3886
3887         * locales.c: When constructing DateTimeFormat or NumberFormat for
3888         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
3889         MonoCultureInfo contructed from the current locale is always
3890         read-only and has UseUserOverride set to true. All MonoCultureInfo
3891         instances returned for GetCultures have both IsReadOnly and
3892         UseUserOverride set to true. Fixes part of bug #81930.
3893
3894 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
3895
3896        * icall-def.h: Update System.__ComObject icalls
3897        * marshal.c: Avoid managed transition (and object creation)
3898        when looking up COM interface in RCW.
3899        * marshal.h: Ditto.
3900        
3901        Code is contributed under MIT/X11 license.
3902
3903 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
3904
3905         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
3906         to avoid crashes during assembly unloading.
3907
3908 2007-06-22  Raja R Harinath  <rharinath@novell.com>
3909
3910         Fix MethodInfo.IsGenericMethodDefinition
3911         * reflection.c (mono_reflection_bind_generic_method_parameters):
3912         Rearrange code to ensure we always uses a generic method definition.
3913         * class.c (mono_class_inflate_generic_method_full): Set
3914         'generic_container' field only for generic method definitions.
3915         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
3916         Use presense of 'generic_container' field as indication of being a
3917         generic method definition.
3918
3919 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
3920
3921         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
3922
3923         * object-internals.h: Reflect changes in the layout of the managed Delegate
3924         class.
3925         
3926         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
3927         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
3928         runtime memory used by the dynamic method. Fixes #77146.
3929
3930 2007-06-21  Dick Porter  <dick@ximian.com>
3931
3932         * file-io.h: 
3933         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
3934         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
3935         81767.
3936
3937 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3938
3939         * reflection.c (method_encode_methodspec): Add a tripwire.
3940         * class.c (inflate_generic_type): The fully open generic type is
3941         not the same as the generic type definition.
3942
3943 2007-06-21  Martin Baulig  <martin@ximian.com>
3944
3945         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
3946
3947         * mono-debug-debugger.h
3948         (MonoDebuggerBreakpointInfo): Removed.
3949         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
3950         (mono_debugger_remove_breakpoint): Likewise.
3951         (mono_debugger_breakpoint_callback): Likewise.
3952         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
3953
3954 2007-06-21  Raja R Harinath  <rharinath@novell.com>
3955
3956         * metadata.c (mono_metadata_lookup_generic_class): The fully open
3957         generic type is not the same as the generic type definition.
3958         * class.c (mono_generic_class_get_class): Likewise.
3959
3960 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
3961
3962         * icall.c: The second argument to 
3963         System.Reflection.MethodBase.GetMethodFromHandleInternalType
3964         is a MonoType not a MonoClass.
3965
3966 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3967
3968         * verify.c: support for function pointers in the verifier
3969
3970 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
3971
3972         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
3973
3974 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
3975
3976         * assembly.c: removed Mono.Data.SqliteClient from the list of
3977         forward-compatible assemblies as it breaks the ABI (bug #81899).
3978
3979 2007-06-19  Raja R Harinath  <rharinath@novell.com>
3980
3981         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
3982         lookup/update with the loader lock.
3983         * reflection.c (mono_class_bind_generic_parameters): No need to
3984         protect mono_metadata_lookup_* with the loader lock.
3985         * class.c (inflate_generic_type): Likewise.
3986         
3987         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
3988         on a generic instantiated type.
3989
3990 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
3991
3992         *verify.c: produce meanfull error messages on verification error
3993         *verify.c: fixed some cases of verification errors reported as validation errors
3994         *pedump.c: fixed the error name array, now it shows validation errors properly
3995         *verify.h: fixed the contant that should be used for verification errors
3996
3997 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
3998
3999         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
4000         for bug #77596, 81858 and 80743 (generics data structures on domain
4001         unload).
4002
4003 2007-06-15  Raja R Harinath  <rharinath@novell.com>
4004
4005         Avoid allocating 'MonoGenericContext' on the heap.
4006         * class-internals (_MonoMethodInflated::context): Make field
4007         inline, not a pointer.
4008         * loader.c (method_from_methodspec): Allocate 'new_context' on the
4009         stack.  Use the context embedded within the inflated method as the
4010         hash key, rather than 'new_context'.
4011         * class.c (inflate_generic_context): Simplify.  Return a struct
4012         rather than allocating on the heap.
4013         (mono_class_inflate_generic_method_full): Update to changes.  Now,
4014         doesn't salt away a copy of the context -- simplifying the
4015         lifetime rules of a 'MonoGenericContext *'.
4016         (mono_method_get_context): Return pointer to embedded context.
4017         (setup_generic_array_ifaces): Allocate temporary context on stack.
4018         * reflection.c (inflate_mono_method): Likewise.
4019         (mono_reflection_bind_generic_method_parameters): Likewise.
4020         Use the context embedded within the inflated method as the hash key.
4021
4022         Avoid a source of allocation of 'MonoGenericContext'.
4023         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
4024         and 'cached_context' fields into embedded 'MonoGenericContext' field.
4025         * class.c: Update to changes.
4026         (mono_generic_class_get_context): Simplify drastically.  Now just
4027         returns a pointer to the field.
4028         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
4029         argument as a const pointer.
4030         (mono_metadata_generic_context_equal): Likewise.
4031         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
4032         Update to changes.
4033
4034 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
4035
4036         * verify.c improved the handling of brtrue/brfalse, factored out common code
4037
4038 2007-06-14  Raja R Harinath  <rharinath@novell.com>
4039
4040         Kill MonoGenericMethod.
4041         * class-internals.h (MonoGenericContext::method_inst): Rename from
4042         'gmethod' and convert to a MonoGenericInst.
4043         (MonoGenericMethod): Remove.
4044         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
4045         * loader.c (method_from_methodspec): Update to changes.  Use a
4046         MonoGenericContext as the key to the hashtable.
4047         * metadata.c (mono_metadata_generic_context_equal): Rename from 
4048         'mono_metadata_generic_method_equal' and take MonoGenericContext.
4049         (mono_metadata_generic_context_hash): Likewise from
4050         'mono_metadata_generic_method_hash'.  Change hash function.
4051         (mono_metadata_load_generic_params): Update to changes.
4052         (mono_get_shared_generic_method): Remove.
4053         * metadata-internals.h (mono_get_shared_generic_method): Remove.
4054         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
4055         (inflate_generic_context): Likewise.
4056         (mono_class_inflate_generic_method_full): Likewise.
4057         (setup_generic_array_ifaces): Likewise.
4058         (mono_class_create_from_typespec): Likewise.
4059         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
4060         (method_encode_methodspec): Update callsite.
4061         (reflection_methodbuilder_to_mono_method): Update to changes.
4062         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
4063         MonoGenericContext as the key to the hashtable.
4064         (inflate_mono_method): Update to changes.
4065
4066         * class-internals.h (MonoGenericMethod::container): Remove.
4067         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
4068
4069 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
4070
4071         * profiler-private.h, profiler.c, profiler.h: added API to profile
4072         exception events.
4073
4074 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
4075
4076         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
4077
4078 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
4079
4080         * verify.c: method invocation is now validated, now we verify parameter types on stack.
4081         Fixed overflow and underflow not aborting the verification process.
4082
4083 2007-06-13  Mark Probst  <mark.probst@gmail.com>
4084
4085         * class-internals.h (MonoStats): Added stats entries for dynamic
4086         code allocations.
4087
4088 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
4089
4090         * loader.c (mono_free_method): Free header->locals and header->clauses.
4091
4092         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
4093         dynamic case.
4094
4095         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
4096
4097         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
4098
4099 2007-06-12  Raja R Harinath  <rharinath@novell.com>
4100
4101         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
4102         the tables.
4103
4104 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4105
4106         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
4107
4108 2007-06-11  Raja R Harinath  <harinath@gmail.com>
4109
4110         MonoGenericMethod on a diet
4111         * class-internals.h (_MonoMethodInflated::reflection_info): Move
4112         here ...
4113         (_MonoGenericMethod::reflection_info): ... from here.
4114         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
4115         Update to changes.
4116         * reflection.c (inflate_mono_method): Likewise.
4117         (mono_reflection_bind_generic_method_parameters): Likewise.
4118
4119 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4120
4121         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
4122         *verify.c: factored long ldarg forms to share code with short forms
4123
4124 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
4125
4126         *verify.c: fixed code formating factored some duplicate code
4127         into a new function
4128
4129         *verify.h: fixed binary incompatibility introduced earlier
4130
4131         *pedump.c: fixed formating
4132
4133 2007-06-11  Raja R Harinath  <harinath@gmail.com>
4134
4135         Fix assertion when disassembling Mono.C5.dll
4136         * loader.c (method_from_methodspec): Avoid inflating a method
4137         twice with the same context.  If the methodref is inflated, use
4138         the declaring method instead.
4139
4140         * class.c (mono_class_from_generic_parameter): Fix case similar to
4141         bug #81830 handled below, but for method containers.
4142
4143 2007-06-10  Raja R Harinath  <harinath@gmail.com>
4144
4145         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
4146         get_shared_generic_class.  Directly inflate the instance.
4147         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
4148         (inflate_generic_class): Delete.
4149         (get_shared_generic_class): Delete.  Move setting of
4150         'cached_class' and 'cached_context' ...
4151         * metadata.c (mono_metadata_lookup_generic_class): ... here.
4152
4153         * metadata.c (mono_metadata_lookup_generic_class): Change
4154         signature to take the components of a MonoGenericClass rather than
4155         an allocated MonoGenericClass.  Change semantics to be intern-like.
4156         * reflection.c (mono_class_bind_generic_parameters): Update to
4157         changes.  Make locking region tighter.
4158         * class.c (inflate_generic_class): Update to changes.
4159         (get_shared_generic_class): Likewise.
4160         * metadata-internals.h: Likewise.
4161
4162         * reflection.c (mono_class_bind_generic_parameters): Take and
4163         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
4164         (mono_reflection_bind_generic_parameters): Use
4165         'mono_class_bind_generic_parameters' rather than duplicate the code.
4166         * class.c (mono_bounded_array_class_get): Update to changes.
4167         * object-internals.h: Likewise.
4168
4169         * reflection.c (mono_class_bind_generic_parameters): Only support
4170         parameterizing generic type definitions.  Remove support for other
4171         open types.
4172
4173 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
4174
4175         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
4176
4177         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
4178         in the dynamic case.
4179
4180 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
4181
4182         * threads.c: When cleaning up thread, reset the Background bit.
4183         Fixes bug #81720.
4184
4185 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
4186
4187        * metadata.c: Move variable declarations to top of scope.
4188        * verify.c: Move variable declarations to top of scope.
4189
4190        Code is contributed under MIT/X11 license.
4191
4192 2007-06-08  Raja R Harinath  <rharinath@novell.com>
4193
4194         * reflection.c (mono_class_bind_generic_parameters): Replace
4195         open-coded loop with mono_metadata_inflate_generic_inst.
4196
4197         * class.c (get_shared_generic_class): Don't call
4198         mono_get_shared_generic_inst.  Use the container's own
4199         'class_inst'.
4200
4201         * metadata.c (mono_metadata_load_generic_params): Move
4202         initialization of 'context' field here from ...
4203         * class.c (mono_class_create_from_typedef): ... here, and ...
4204         * loader.c (mono_get_method_from_token): ... here.
4205
4206         * class.c (get_shared_generic_class): Rename from
4207         mono_get_shared_generic_class and make static.
4208         (mono_get_shared_generic_inst): Move to metadata.c.
4209         * loader.c (mono_get_shared_generic_method): Likewise.
4210         * class-internals.h, metadata-internals.h: Update to changes.
4211
4212         Fix #81830
4213         * class.c (mono_class_from_generic_parameter): Don't assume a
4214         generic container owner exists.  Generic containers from monodis
4215         don't have any.
4216
4217 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
4218
4219         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
4220         * verify.h: new typedefs to returns the non-verifiable status
4221         * verify.c: initial implementation of generics, stack merging and object compatibility check
4222
4223 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4224
4225         * class.c, image.c, class-internals.h (MonoImage): class_cache is
4226         a MonoInternalHashTable again (fixed bug in internal hash table
4227         code).
4228
4229 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4230
4231         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
4232         MonoInternalHashTable again (fixed bug in internal hash table
4233         code).
4234
4235 2007-06-06  Mark Probst  <mark.probst@gmail.com>
4236
4237         * class.c, image.c, class-internals.h, domain.c,
4238         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
4239         changes.  Have to figure out what makes them break the SWF
4240         regression.
4241
4242 2007-06-04  Mark Probst  <mark.probst@gmail.com>
4243
4244         * class.c, image.c, class-internals.h (MonoImage): class_cache is
4245         a MonoInternalHashTable now.
4246
4247 2007-06-04  Mark Probst  <mark.probst@gmail.com>
4248
4249         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
4250         MonoInternalHashTable now.
4251
4252 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
4253
4254         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
4255         invoke_impl code.
4256
4257         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
4258
4259         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
4260         dependent trampoline.
4261
4262         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
4263
4264         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
4265
4266 2007-05-29  Robert Jordan  <robertj@gmx.net>
4267
4268         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
4269
4270 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
4271
4272         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
4273
4274 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
4275
4276        * marshal.c: Fix interface lookup loops for
4277        cominterop_get_com_slot_for_method and 
4278        cominterop_get_method_interface. Only need to lookup
4279        if type is a class, else use interface type method is on.
4280
4281        Code is contributed under MIT/X11 license.
4282
4283 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
4284
4285         * reflection.c: HasSecurity can be present even if no specially 
4286         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
4287         SecurityAttribute). Fix CAS regression tests on buildbot.
4288
4289 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
4290
4291        * appdomain.c: Add configure checks for header files.
4292        * image.c: Add configure checks for header files.
4293        * file-io.c: Add configure checks for header files.
4294        * debug-mono-symfile.c: Add configure checks for header files.
4295        * threadpool.c: Add configure checks for header files.
4296        * console-io.c: Add configure checks for header files.
4297        * profiler.c: Add configure checks for header files.
4298        * rawbuffer.c: Add configure checks for header files.
4299        * icall.c: Add configure checks for header files.
4300        * rand.c: Add configure checks for header files.
4301        * socket-io.c: Add configure checks for header files.
4302
4303        Code is contributed under MIT/X11 license.
4304
4305 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
4306
4307         * reflection.c (mono_custom_attrs_from_builders): Remove the 
4308         assertion as it breaks the build.
4309         
4310         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
4311
4312         * reflection.c (lookup_custom_attr): Make a copy here too.
4313
4314         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
4315         dynamic images.
4316
4317         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
4318         images.
4319
4320         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
4321         info.
4322
4323 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
4324
4325         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
4326         (load_cattr_value): Ditto.
4327
4328 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
4329
4330         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
4331
4332 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
4333
4334         * threads.c: In "start_wrapper", set apartment_state to MTA if
4335         apartment_state is Unknown and we're running on 2.0 profile or
4336         higher.
4337         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
4338         to main method, then set apartment_state to Unknown on 1.0 profile,
4339         and MTA on 2.0 profile.
4340
4341 2007-05-16  Jb Evain  <jb@nurv.fr>
4342
4343         * class-internals.h (MonoDefaults): Add an attribute_class and
4344           customattribute_data_class.
4345         * domain.c (mono_init_internal): Populate them.
4346         * reflection.c: Use them to remove duplicates. Make a vew
4347         MonoClass variables `static'.
4348
4349 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
4350
4351         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
4352         step in implementing IMT, so that all isinst checks now can go
4353         through the bitmap.
4354         This was needed because vtables for TransparentProxy need to look
4355         like the vtable of the "target" class, so they need to point to
4356         its interface bitmap directly.
4357
4358         * object.c: inside "mono_class_create_runtime_vtable" and
4359         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
4360
4361 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
4362
4363         * object-internals.h
4364           culture-info.h : added territory field in MonoCulture and
4365           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
4366         * locales.c : fill territory field above too.
4367         * culture-info-table.h : regenerated.
4368
4369 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
4370
4371         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
4372         Fixes #81599.
4373
4374 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
4375
4376         * object.c: Always initialize apartment, even if 
4377         there is no custom attributes on entry point.
4378         
4379         Code is contributed under MIT/X11 license.
4380
4381 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
4382
4383         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
4384         * metadata.c: If no encoding is set, check for unicode
4385         on class.
4386         
4387         Code is contributed under MIT/X11 license.
4388
4389 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
4390
4391         * threads.c: Handle if mono_thread_current returns NULL 
4392         
4393         Code is contributed under MIT/X11 license.
4394
4395 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
4396
4397         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
4398         in start_wrapper. Added mono_thread_init_apartment_state and
4399         mono_thread_cleanup_apartment_state.
4400         * object.c: Initialize thread apartment state on main thread
4401         by checking for STAThreadAttribute on entry point.
4402         * object-internals.h: Add apartment_state field to MonoThread.
4403         * threads-types.h: Add unmanaged definition of 
4404         System.Threading.ApartmentState, MonoThreadApartmentState.
4405         
4406         Code is contributed under MIT/X11 license.
4407         
4408 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
4409
4410         * class.c: Fix windows build.
4411         * class-internals.h: Fix windows build.
4412         
4413         Code is contributed under MIT/X11 license.
4414
4415 2007-05-08  Robert Jordan  <robertj@gmx.net>
4416
4417         * process.c (CreateProcess_internal):
4418         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
4419         .CreateNoWindow was specified. Fixes #81496.
4420
4421 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
4422
4423         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
4424         step in implementing IMT, replaced it with two compact arrays
4425         (interfaces_packed and interface_offsets_packed) and a bitmap that
4426         is used for isinst checks (interface_bitmap).
4427
4428         * class.c: (compare_interface_ids): compare function to pass to
4429         bsearch when looking for an interface with a given id.
4430         (mono_class_interface_offset): reimplemented using bsearch on
4431         interfaces_packed, getting the offset from interface_offsets_packed.
4432         (print_implemented_interfaces): utility debugging function.
4433         (setup_interface_offsets): reworked to initialize interfaces_packed,
4434         interface_offsets_packed and interface_bitmap.
4435
4436         * object.c: replaced all accesses to "MonoClass.interface_offsets"
4437         with uses of interfaces_packed and interface_offsets_packed.
4438
4439 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
4440
4441         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
4442         mono_class_interface_offset prototype to wrap all accesses to
4443         "MonoClass.interface_offsets".
4444
4445         * class.c: Implemented mono_class_interface_offset, and wrapped all
4446         accesses to "MonoClass.interface_offsets".
4447
4448         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
4449         "MonoClass.interface_offsets".
4450
4451 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
4452
4453         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
4454         GetMethodFromHandle overloads (bug #78637).
4455
4456 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
4457
4458         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
4459         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
4460
4461 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
4462
4463         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
4464         #81498.
4465
4466         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
4467         gracefully.
4468         (mono_custom_attrs_from_index): Ditto.
4469
4470         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
4471         Fixes #81501.
4472
4473 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
4474
4475         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
4476         is now allocated from a mempool.
4477
4478 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
4479
4480         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
4481         caller holds threads_lock, leading to deadlocks. Fixes #81476.
4482
4483 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
4484
4485         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
4486         mono_loader_clear_error () too late. Fixes #81463.
4487
4488 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
4489
4490         * culture-info-table.h : regenerated.
4491
4492 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
4493
4494         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
4495         is missing.
4496
4497 2007-04-25  Dick Porter  <dick@ximian.com>
4498
4499         * Makefile.am: Put the mingw enforced-optimisation back into the
4500         PLATFORM_WIN32 section.
4501
4502 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
4503
4504         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
4505         patch.
4506
4507         * image.c (mono_image_load_module): New API function to load a module reference.
4508
4509         * image.c (load_modules): Load modules lazily. Fixes #80812.
4510
4511         * class.c (mono_class_from_typeref): Use mono_image_load_module.
4512         
4513         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
4514
4515         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
4516         to mono_image_load_module_dynamic.
4517
4518 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
4519
4520         * marshal.c: Fix calling convention for CCW on non-windows
4521         platforms. STDCALL on windows, CDECL everywhere else to work 
4522         with XPCOM and MainWin COM.
4523         
4524         Code is contributed under MIT/X11 license.
4525
4526 2007-04-23  Martin Baulig  <martin@ximian.com>
4527
4528         Fix #80969.
4529
4530         * loader.c
4531         (method_from_memberref): Added `gboolean *used_context' argument.
4532         (mono_get_method_from_token): Likewise.
4533         (mono_get_method_full): Don't insert the method in the cache when
4534         `used_context' is true.
4535
4536 2007-04-23  Raja R Harinath  <rharinath@novell.com>
4537
4538         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
4539
4540         * reflection.c (mono_reflection_bind_generic_parameters): Don't
4541         create new MonoTypes for returned types.
4542         * class.c (mono_generic_class_get_class): Export mono-internal.
4543         * class-internals.h: Update to changes.
4544
4545 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
4546
4547         * threadpool.c, threadpool.h, icall-def.h: patch from
4548         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
4549
4550 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
4551
4552         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
4553         
4554         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
4555
4556         * threads.c (mono_thread_get_stack_bounds): New helper function.
4557
4558         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
4559         Correctly compute stack bounds when attaching. Fixes #81394.
4560
4561 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
4562
4563         * reflection.c: fix handling of doubles in custom attributes
4564         for the arm-fpa format (bug #81368).
4565
4566 2007-04-18  Raja R Harinath  <rharinath@novell.com>
4567
4568         * reflection.c (assembly_add_win32_resources): Mildly relax an
4569         bounds check to let the end pointer point just past the end of the
4570         allocated buffer.  (may fix #81384)
4571
4572 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
4573
4574         * culture-info-table.h : regenerated.
4575
4576 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
4577
4578         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
4579         the thread is aborted early.
4580
4581 2007-04-05  Dick Porter  <dick@ximian.com>
4582
4583         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
4584         FindFirstFile()/FindNextFile() to find entries.  This lets the
4585         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
4586         81038.
4587
4588         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
4589         the parameters of
4590         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
4591
4592 2007-04-04  Martin Baulig  <martin@ximian.com>
4593
4594         * debug-helpers.c
4595         (mono_method_desc_full_match): Add support for nested classes.
4596
4597 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
4598
4599         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
4600
4601 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
4602
4603         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
4604         waiting for too many threads.
4605
4606 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
4607
4608         * environment.c: Fix return value check on uname so we can get the 
4609         executing version on Solaris operating systems.
4610
4611 2007-03-28  Jb Evain  <jbevain@gmail.com>
4612
4613         * class.c (mono_type_get_name_recurse): Complete the
4614         fix for the creation of assembly qualified names for
4615         pointer types. Fixes #81208.
4616
4617 2007-03-27  Dick Porter  <dick@ximian.com>
4618
4619         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
4620         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
4621         changed.
4622
4623         * threads.c
4624         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
4625         the value of ReleaseMutex().
4626
4627 2007-03-27  Dick Porter  <dick@ximian.com>
4628
4629         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
4630         in little-endian order, not network endian, so must be converted
4631         to host endian here.  Fixes bug 80593.
4632
4633 2007-03-22  Jb Evain  <jbevain@gmail.com>
4634
4635         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
4636         qualified names for pointer types. Fixes #81208.
4637
4638 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
4639
4640         * marshal.c: Add support for PreserveSigAttribute. 
4641         
4642         Code is contributed under MIT/X11 license.
4643
4644 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
4645
4646         * process.c: Fix endianness issues. Fixes #81126.
4647
4648         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
4649         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
4650
4651         * image.c (mono_image_lookup_resource): Make this work on big-endian
4652         machines.Change API contract so the caller needs to free the return value.
4653         
4654         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
4655         API change.
4656         
4657 2007-03-14  Martin Baulig  <martin@ximian.com>
4658
4659         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
4660         mono_type_get_desc() as well.
4661
4662 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
4663
4664         * icall.c:  Fix environ access in VS.  
4665         
4666 2007-03-13  Alp Toker  <alp@atoker.com>
4667
4668         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
4669         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
4670         #63841.
4671
4672 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
4673
4674         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
4675         circular references among dynamic methods. Fixes #81091.
4676
4677         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
4678
4679 2007-03-09  Martin Baulig  <martin@ximian.com>
4680
4681         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
4682
4683 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
4684
4685         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
4686         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
4687         
4688         Code is contributed under MIT/X11 license.
4689         
4690 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
4691
4692         * loader.c: Reapply patch for bug #79424.
4693
4694 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4695
4696         * metadata.c (mono_type_to_unmanaged): Only convert object to
4697         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
4698
4699 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
4700
4701         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
4702         (and incorrectly set) is_reference field from MonoGenericInst.
4703
4704 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
4705
4706         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
4707         a little earlier.
4708
4709         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
4710
4711         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
4712
4713 2007-03-05  Miguel de Icaza  <miguel@novell.com>
4714
4715         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
4716         FileOptions.1 value to mean "temporary", map that to
4717         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
4718
4719         Fixes 80688
4720
4721 2007-03-03  Marek Habersack  <mhabersack@novell.com>
4722
4723         * appdomain.c: implement MS .Net style shadow copying. Copies of
4724         the assemblies are made in a subdirectory of the dynamic base
4725         directory, the assembly names are preserved.
4726         Copy .mdb and .config files along with the assemblies being shadowed.
4727
4728 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4729
4730         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
4731         (emit_marshal_handleref): Ditto.
4732
4733         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
4734         on Visual C++. Fixes #80671.
4735
4736 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
4737
4738         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
4739         for clone operations.
4740
4741 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
4742
4743         * marshal.c: Fix warnings.
4744
4745 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
4746
4747         * loader.c: allow case-insensitive matching of the dll name
4748         in dllmap handling when prefixed with "i:".
4749
4750 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
4751
4752         * threads.c: Fix #ifdef for dummy_apc function for VS.
4753
4754 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
4755
4756         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
4757
4758 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
4759         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
4760         giving precedence to the methods with a fully qualified name
4761         (InterfaceName.MethodName) when building the interface sections
4762         of the vtable.
4763
4764 2007-02-16  Dick Porter  <dick@ximian.com>
4765
4766         * threadpool.c (append_job): Fix fast-path array handling, so it's
4767         less likely the array will grow exponentially when the load is
4768         heavy.
4769
4770 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4771
4772         * metadata-internals.h, loader.c: fix dllmap lookup order
4773         for non-function maps, too, and prepare for fallback code.
4774
4775 2007-02-12  Robert Jordan  <robertj@gmx.net>
4776
4777         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
4778         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
4779         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
4780         GlobalFree. Fixes a part of bug #77075.
4781
4782 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
4783
4784         * loader.c: implemented typedef parent in field memberref.
4785
4786 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
4787
4788         * marshal.c: Fix warnings and remember to call Release on
4789         IUnknown of RCW.
4790         
4791         Code is contributed under MIT/X11 license.
4792
4793 2007-02-10  Miguel de Icaza  <miguel@novell.com>
4794
4795         * class-internals.h: Add MonoHandleRef definition, and
4796         handleref_class to mono_defaults. 
4797
4798         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
4799         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
4800
4801         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
4802         (do nothing on this stage)
4803         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
4804         (emit_marshal_handleref): New method, used for argument handling
4805         of HandleRefs. 
4806
4807 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
4808
4809         * class.c (mono_class_setup_parent): Lazily init com types.
4810         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
4811         init com types.
4812         * object.c (mono_remote_class_vtable): Lazily init com types.
4813         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
4814         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
4815         * domain-internals.h: Expose mono_init_com_types.
4816         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
4817         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
4818         Add support for COM Callable Wrapper marshalling.
4819         * marshal.h: Add icall definitions.
4820         * gc.c: Handle freeing of CCWs in finalizer code.
4821         
4822         Code is contributed under MIT/X11 license.
4823
4824 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
4825
4826         * reflection.c: changed all the signature encoding code to use
4827         a variable-sized buffer.
4828
4829 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4830
4831         * marshal.c: locking fixes: never take the loader lock
4832         or other runtime locks when holding the marshal lock
4833         (fixes bug#80664).
4834
4835 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
4836
4837         * marshal.c: make the delegate function pointer mapping
4838         work for the moving GC.
4839
4840 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
4841
4842         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
4843         for bug #80618.
4844
4845 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
4846
4847         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
4848         gmodule.
4849
4850 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
4851
4852         * threadpool.c: made the code moving-GC safe.
4853
4854 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
4855
4856         * assembly.c, boehm-gc.c, class-internals.h, class.c,
4857         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
4858         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
4859         warning cleanup.
4860         * reflection.c: warning cleanup, some threading and moving GC fixes.
4861
4862 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
4863
4864         * class.c, loader.c: create the needed Set/Get/Address array methods
4865         as well as the .ctors in mono_class_init (), fixes bug #80567.
4866
4867 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
4868
4869         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
4870         we doesn't decrease its alignment. Should fix the sparc build.
4871
4872 2007-01-24  Dick Porter  <dick@ximian.com>
4873
4874         * socket-io.c
4875         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
4876         Create the returned object if we need to ignore an unsupported
4877         socket option.  Fixes a segfault reported by Atsushi.
4878
4879 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
4880
4881         * class.c, object.c: restrict GC-tracked fields to
4882         UIntPtr fields used inside corlib, so we provide better
4883         type info to the GC and also allow broken packing as in
4884         bug #80580.
4885
4886 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
4887
4888         * sgen-gc.c: removed duplicated function.
4889
4890 2007-01-19  Miguel de Icaza  <miguel@novell.com>
4891
4892         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
4893         value that means that the value is not supported, but that we
4894         should not return a failure, but instead report this as a
4895         successful operation.
4896
4897 2007-01-19  Raja R Harinath  <rharinath@novell.com>
4898
4899         Fix tests/bug79956.2.il
4900         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
4901         (mono_generic_class_get_class): If the generic definition in an
4902         enum, copy over other fields related to it.
4903
4904 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
4905
4906         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
4907         genericinst enums (bug #79215).
4908
4909 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
4910         * class.c: Fix bug 80307.
4911
4912 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
4913
4914         * image.c: if the file table is not present, try to load
4915         all the modules, since we don't have info about them
4916         having or not metadata (bug #80517).
4917         * assembly.c: allow mono_assembly_load_references () to
4918         work for netmodules.
4919
4920 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
4921
4922         * image.c, metadata-internals.h, object.c: execute module
4923         cctors when running on the 2 runtime if present (bug #80487).
4924
4925 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
4926
4927         * icall.c: optimized InitializeArray() on bigendian.
4928
4929 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
4930
4931         * icall.c: fix for the broken ARM FPA double format.
4932
4933 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
4934
4935         * icall.c: handle endian issues for r4 and r8 types, too, in
4936         the InitializeArray() icall.
4937
4938 2007-01-15  Miguel de Icaza  <miguel@novell.com>
4939
4940         * loader.c (mono_loader_error_prepare_exception): Clear the error
4941         once we have extracted the information from it, do this before we
4942         call into the JIT's class loading mechanisms.
4943
4944         * object.c (mono_class_create_runtime_vtable): Do not clear the
4945         loader error before calling mono_class_get_exception_for_failure
4946         as the loader error is needed inside
4947         mono_class_get_exception_for_failure to throw the error (thinko).
4948
4949         Fixes #80521
4950         
4951 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
4952
4953         * reflection.c: align fields rva data so it's faster to load at
4954         runtime.
4955
4956 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4957
4958         Prepare to simplify GenericMethod handling.
4959         * class-internals.h (mono_method_get_context): New accessor function.
4960         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
4961         rather than directly accessing '->context' field.
4962
4963         * class-internals.h (_MonoGenericParam.method): Move ...
4964         (_MonoGenericContainer): ... here.  Add into union with klass field.
4965         * class.c, icall.c, loader.c, metadata.c, reflection.c:
4966         Update to changes.
4967
4968 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
4969
4970         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
4971         the wrapper type enum and reduce relocations.
4972
4973 2007-01-12  Raja R Harinath  <rharinath@novell.com>
4974
4975         * reflection.c (inflate_mono_method): Reuse method instantiation
4976         from the generic method, if available.
4977
4978 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4979
4980         * marshal.c (emit_marshal_variant): Fix conv_arg
4981         type in last commit, based on whether parameter is byref.
4982         
4983 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4984
4985         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
4986         marshalling.
4987         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
4988         MONO_TYPE_OBJECT back for VARIANT support.
4989
4990 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
4991
4992         * marshal.c, marshal.h, icall-def.h: Implement 
4993         Marshal.ReAllocCoTaskMem.
4994
4995 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
4996
4997         * marshal.c: memory retention fixes: use the proper
4998         image cache for runtime_invoke method lookups.
4999
5000 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
5001
5002         * mempool.c: added code to help debug mempool allocations.
5003
5004 2007-01-11  Dick Porter  <dick@ximian.com>
5005
5006         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
5007         support (experimenting with faking it with IP_MTU_DISCOVER for
5008         systems that don't have IP_DONTFRAGMENT.)
5009         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
5010         icall.
5011
5012         * icall-def.h: new System.Net.Sockets.Disconnect icall.
5013
5014         * socket-io.h: Add new fields to MonoSocketAsyncResult
5015         corresponding to the new ones in Socket.cs.
5016
5017 2007-01-11  Raja R Harinath  <rharinath@novell.com>
5018
5019         Fix IronPython regression mentioned in #80249
5020         * metadata.c (do_mono_metadata_parse_generic_class): Clear
5021         'cached_context' field, since it may have been initialized as a
5022         side-effect of metadata parsing.
5023
5024         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
5025         (_MonoGenericClass.cached_class): Move here and rename from lone
5026         remaining field of ...
5027         (_MonoInflatedGenericClass): ... this.  Remove.
5028         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
5029         to changes.
5030
5031         Fix mcs/tests/test-128.cs regression.
5032         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
5033         2007-01-10 change below.
5034         [MONO_TYPE_OBJECT]: Recurse into array case.
5035
5036 2007-01-11  Raja R Harinath  <harinath@gmail.com>
5037
5038         * class-internals.h (mono_get_inflated_generic_class): Remove.
5039         * class.c (mono_get_inflated_generic_class): Remove.
5040         (mono_generic_class_get_class): Rename from
5041         mono_class_create_generic.
5042         (mono_class_from_mono_type) [GENERICINST]: Use it.
5043         * reflection.c, metadata.c: Update to changes.  Use
5044         'mono_class_from_mono_type'.
5045
5046 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
5047
5048         * reflection.c: use passed type when encoding an array element
5049         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
5050
5051 2007-01-09  Robert Jordan  <robertj@gmx.net>
5052
5053         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
5054         result arguments (someDelegate.EndInvoke (unrelatedAres)).
5055         Fixes bug #80392.
5056
5057 2007-01-09  Raja R Harinath  <rharinath@novell.com>
5058
5059         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
5060
5061         * object.c (set_value): Avoid aliasing between type->data.klass
5062         and type->data.generic_class.
5063
5064         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
5065
5066 2007-01-08  Raja R Harinath  <rharinath@novell.com>
5067
5068         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
5069         between type->data.klass and type->data.generic_class.
5070
5071 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
5072
5073         * marshal.c: In MS.NET, StringBuilder objects are not copied by
5074         value in out parameters.
5075
5076 2007-01-08  Raja R Harinath  <rharinath@novell.com>
5077
5078         Simplify invariant for MonoGenericClass::klass field.
5079         * class.c (mono_class_create_generic): Verify 'klass' is null.
5080         * metadata.c (do_mono_metadata_parse_generic_class): Don't
5081         initialize 'klass' field.
5082
5083 2007-01-05  Raja R Harinath  <rharinath@novell.com>
5084
5085         Ongoing work to avoid redundant data and simplify invariants.
5086         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
5087         'generic_class', and change type to a GenericInst.
5088         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
5089         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
5090
5091 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
5092
5093         * class.c : skip io-layer under PLATFORM_WIN32.
5094
5095 2007-01-03  Tor Lillqvist  <tml@novell.com>
5096
5097         Fix #80305: In a bundled executable, look in the bundled exe
5098         assembly to determine the runtime version. Add the possibility to
5099         bundle also the machine.config file.
5100         
5101         * assembly.c (mono_assembly_open_from_bundle): Make
5102         non-static. Allow being called even if we have no bundled
5103         assemblies, and return NULL right away in that case.
5104
5105         * domain-internals.h: Declare mono_assembly_open_from_bundle()
5106         here.
5107
5108         * domain.c (app_config_parse): Take an assembly exe file name as
5109         parameter instead of a config file name. Check for a bundled
5110         config file for that assembly by calling
5111         mono_config_string_for_assembly_file() (see below) before looking
5112         for one in the file system.
5113         (get_runtimes_from_exe): Corrsponding change to call of
5114         app_config_parse().
5115         (get_runtimes_from_exe): Check for bundled assembly exe file first
5116         by calling mono_assembly_open_from_bundle(). If no bundled
5117         assembly exe file is found, call mono_image_open() as before to
5118         look it up in the file system.
5119
5120         * mono-config.c: Add variable bundled_machinec_onfig.
5121         (mono_config_string_for_assembly_file): New function.
5122         (mono_config_for_assembly): Move code snippet that looks for a
5123         bundled assembly .config file into the above new function. Call
5124         it.
5125         (mono_register_machine_config, mono_get_machine_config): New
5126         functions to set and retrieve
5127
5128         * assembly.h: Declare mono_register_machine_config().
5129
5130         * mono-config.h: Declare mono_get_machine_config() and
5131         mono_config_string_for_assembly_file().
5132
5133         * icall.c: No declaration of environ necessary on Win32. It is
5134         declared (as a macro expanding to a function call) in stdlib.h.
5135         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
5136         New internal mono function. Returns the value of
5137         mono_get_machine_config() as a Mono string.
5138
5139         * icall-def.h: Add get_bundled_machine_config().
5140
5141 2007-01-04  Raja R Harinath  <rharinath@novell.com>
5142
5143         Remove redundant field
5144         * class-internals.h (_MonoGenericContext.container): Remove field.
5145         * loader.c (mono_method_get_signature_full): Don't parse a
5146         "container" for a signature parse when the signature is inflated
5147         immediately.
5148         (method_from_methodspec): Likewise, for a generic_inst.
5149         * class.c, metadata.c, reflection.c: Update to changes.
5150
5151 2006-01-04  Raja R Harinath  <rharinath@novell.com>
5152
5153         * class-internals.h (_MonoGenericClass): Rename 'context' field to
5154         'cached_context', and change semantics -- it starts off NULL, and
5155         is initialized on demand.
5156         * class.c (mono_generic_class_get_context): New accessor to
5157         replace 'context' field accesses.
5158         (mono_class_get_context): New helper.
5159         (*): Update to changes.
5160         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
5161
5162 2007-01-03  Miguel de Icaza  <miguel@novell.com>
5163
5164         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
5165         before the memcpy.   Fixes Marshal2 regression.
5166
5167 2007-01-02  Jb Evain  <jbevain@gmail.com>
5168
5169         * blob.h: add a MONO_TYPE_ENUM definition
5170         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
5171         fix the encoding of arrays of enums in custom attributes.
5172
5173         Fixes #79666.
5174
5175 2007-01-01  Miguel de Icaza  <miguel@novell.com>
5176
5177         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
5178         string is null terminated, but only cut the string short if it
5179         overflows the buffer.   
5180         
5181         (mono_string_to_byvalstr): Also fix this routine.   The code here
5182         was not properly terminating a string (it was only terminated
5183         because of the previous catch-all memset). 
5184
5185         I left the memset, because I do not know if applications expect
5186         the runtime to clear this region. 
5187
5188         Fixes #79944.
5189
5190         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5191         Clear the error before returning to unmanaged code to prevent the
5192         runtime from being confused later on (fixes  80420).
5193         (ves_icall_type_from_name): Always call mono_loader_clear_error
5194         after parsing a type that could have failed.
5195         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
5196
5197         * loader.c (mono_loader_clear_error): Fix indentation.
5198
5199 2006-12-28  Martin Baulig  <martin@ximian.com>
5200
5201         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
5202
5203 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
5204
5205         * reflection.c: patch from Rolf Bjarne Kvinge to fix
5206         getting a token for an EnumBuilder.
5207
5208 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
5209
5210         * reflection.c: be more careful in case resource generation
5211         fails to create the data array.
5212
5213 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
5214
5215         * sgen-gc.c: write barrier for clone and fix unregister handles.
5216
5217 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
5218
5219         * reflection.c: some fixes needed in the generics code for the moving GC.
5220
5221 2006-12-22  Robert Jordan  <robertj@gmx.net>
5222
5223         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
5224         account. Fixes bug #80299.
5225
5226 2006-12-21  Raja R Harinath  <rharinath@novell.com>
5227
5228         Fix WaitHandle usage in delegates.
5229         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
5230         * object.c (mono_wait_handle_new): Use the property set method to
5231         initialize the handle.
5232         (mono_wait_handle_get_handle): New.
5233         * threadpool.c (mono_async_invoke): Use it.
5234         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
5235         Likewise.
5236         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
5237
5238 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
5239
5240         * marshal.c (emit_marshal): Call emit_marshal_variant and
5241         emit_marshal_com_interface when applicable.
5242         (emit_marshal_variant, emit_marshal_com_interface): Add
5243         methods for this case and remove if's from emit_marshal_object.
5244         
5245 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
5246
5247         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
5248
5249 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
5250
5251         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
5252         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
5253         and GlobalFree on Windows. Remove FIXME.
5254
5255 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
5256
5257         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
5258         implementation for managed objects.
5259
5260 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
5261
5262         * object.c: implemented code to be used for checking
5263         that no reference field overlaps with non-references.
5264
5265 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5266
5267         * threadpool.c: fix queue code to be compatible with the
5268         moving GC.
5269
5270 2006-12-18  Miguel de Icaza  <miguel@novell.com>
5271
5272         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
5273         in structures by throwing ArgumentNullException.
5274
5275         (emit_marshal_safehandle): Also when they are null parameters.
5276
5277         (emit_marshal_safehandle): Add support for ref
5278         SafeHandles parameters
5279
5280 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
5281
5282         * profiler.c: updated to use the mono-dl API instead of
5283         gmodule.
5284
5285 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5286
5287         * profiler.c: updated to use the mono-dl dynamic loading
5288         API instead of gmodule.
5289
5290 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
5291
5292         * profiler.c: use readlink, older versions of glib don't have
5293         g_file_read_link ().
5294
5295 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5296
5297         * profiler.c: try to detect the path to mono if libc fails to provide
5298         a useful name (bug #80286).
5299
5300 2006-12-16  Raja R Harinath  <rharinath@novell.com>
5301
5302         Fix #80242
5303         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
5304         instance, use the generic type definition instead.
5305         (ves_icall_Type_GetNestedTypes): Likewise.
5306         * class.c (mono_class_create_generic): Always set the
5307         nested_classes of a generic instance to NULL, even if the generic
5308         type definition has nested types.
5309
5310 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
5311
5312         * marshal.c (mono_string_from_bstr): Revert previous Windows change
5313         and fix on Linux.
5314         
5315 2006-12-15  Miguel de Icaza  <miguel@novell.com>
5316
5317         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
5318         my arguments were in the wrong order.   I also fixed the Windows
5319         version which seems to have had the same issue.
5320
5321         (mono_free_bstr): On Unix, this is g_free.
5322         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
5323         conversions (for the tests in corlib to pass).
5324
5325 2006-12-14  Miguel de Icaza  <miguel@novell.com>
5326
5327         * marshal.c (emit_ptr_to_object_conv): For now, ignore
5328         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
5329         exception if a ref SafeHandle in a struct has changed).
5330         
5331         (emit_struct_conv): Do not perform layout checks for classes
5332         derived from SafeHandle, as those are specially handled. 
5333
5334         (emit_object_to_ptr_conv): Add support for
5335         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
5336
5337         (emit_marshal_safehandle): Implement conversion of return values
5338         of safehandles (MARSHAL_ACTION_CONV_RESULT).
5339         
5340         * threads.c: WaitHandle now is compiled with two different handles
5341         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
5342         for 2.0.
5343         
5344         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
5345         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
5346         these routines to cope with both kinds of fields.
5347
5348 2006-12-12  Miguel de Icaza  <miguel@novell.com>
5349
5350         * metadata.c (mono_type_to_unmanaged): Handle the case where
5351         type->data.klass is a SafeHandle, and in that case, return the
5352         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
5353         MONO_MARSHAL_CONV_SAFEHANDLE. 
5354
5355 2006-12-11  Miguel de Icaza  <miguel@novell.com>
5356
5357         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
5358         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
5359         calling emit_marshal_object.
5360
5361         (emit_marshal_safehandle): Implement marshalling of
5362         SafeHandle parameters (no ref support yet).
5363
5364         (MarshalAction): Document the defines as I implement
5365         them for SafeHandle.
5366
5367         (emit_marshal_object): indentation police.
5368
5369         * class-internals.h: Define MonoSafeHandle.
5370         Add safehandle_class to MonoDefaults type.
5371
5372         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
5373         list of classes to check for fields. 
5374
5375         * domain.c (mono_init_internal): Add SafeHandle to the list of
5376         mono_defaults loaded.
5377
5378 2006-12-15  Raja R Harinath  <rharinath@novell.com>
5379
5380         Fix #80253
5381         * reflection.c (mono_reflection_bind_generic_parameters): If the
5382         generic type definition is a type builder, ensure that it is fully
5383         initialized before instantiating it.  Kill some dead code.
5384
5385 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
5386
5387         * object.c: clear the loader_error () before loading
5388         more metadata stuff (bug #80258).
5389
5390 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
5391
5392         * icall.c, icall-defs.h: type modifiers icalls for
5393         parameters and properties.
5394
5395 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
5396
5397         * object.c, icall.c: fixed warnings.
5398
5399 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
5400
5401         * marshal.c: fixed a couple of leaks and coding style in a few places.
5402
5403 2006-12-08  Dick Porter  <dick@ximian.com>
5404
5405         * process.c: Cope with NULL ProcessStartInfo arguments on windows
5406         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
5407         80173.
5408
5409 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
5410
5411         * process.c: ProcessStartInfo may have only filename set and
5412         arguments can be NULL.
5413
5414 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
5415
5416         * icall.c: fix leak found by Robert Jordan.
5417
5418 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
5419
5420         * marshal.c, marshal.h: generate managed method to access an element
5421         of a multi-dimensional array.
5422
5423 2006-11-30  Paolo Molaro (lupus@ximian.com)
5424
5425         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
5426
5427 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
5428
5429         * icall.c: back out GetFields () fix until the serialization code is
5430         fixed to not depend on the incorrect behaviour.
5431
5432 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
5433
5434         * profiler.c: provide defaults if none are set.
5435
5436 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
5437
5438         * Makefile.am, attrdefs.h: new public header file with
5439         constants for attributes for use by embedders.
5440
5441 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
5442
5443         * icall.c: GetFields () fix for bug #80064.
5444
5445 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
5446
5447         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
5448         removed long unused icalls.
5449
5450 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
5451   
5452         * marshal.c: 
5453                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
5454                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
5455                 can be generated without a delegate class.
5456                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
5457         
5458         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5459
5460 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5461
5462         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
5463         #80069.
5464
5465 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
5466
5467         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
5468         icall-def.h: added icalls needed by System.GC.
5469
5470 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
5471
5472         * loader.c: ensure the class in catch clauses is handled
5473         correctly for generics methods (fixes bug#79980).
5474
5475 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
5476
5477         * monitor.h, monitor.c: added mono_locks_dump () function
5478         to help debug deadlocks involving managed locks.
5479
5480 2006-11-13  Dick Porter  <dick@ximian.com>
5481
5482         * file-io.c (get_file_attributes): If the file is a symlink try
5483         and get the stat data for the target, but also add the
5484         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
5485         the specs for the windows symlink support, but will probably have
5486         to be reworked when I have test data from a vista machine.  Fixes
5487         bug 79887.
5488
5489 2006-11-13  Dick Porter  <dick@ximian.com>
5490
5491         * gc.c (mono_domain_finalize): 
5492         * marshal.c (mono_delegate_begin_invoke): 
5493         * threadpool.c (socket_io_init, mono_thread_pool_init)
5494         (mono_thread_pool_finish): 
5495         * monitor.c (mono_monitor_try_enter_internal): 
5496         * threads.c (mono_thread_resume, mono_thread_init)
5497         (mono_thread_suspend_all_other_threads)
5498         (mono_thread_execute_interruption): 
5499         * appdomain.c (mono_domain_unload): Check for NULL error returns
5500         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
5501         75733.
5502
5503 2006-11-11  Miguel de Icaza  <miguel@novell.com>
5504
5505         * process.c
5506         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
5507         Only close the handle if the value of the handle is not
5508         INVALID_HANDLE_VALUE.  This just makes the process a bit more
5509         robust.
5510
5511         Improvement for #75733, so that we do not run into this problem. 
5512
5513         
5514         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
5515         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
5516         internal variables.  Fixes #79462 
5517         
5518
5519 2006-11-09  Dick Porter  <dick@ximian.com>
5520
5521         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5522         Use poll() not select().  Fixes bug 79397.
5523
5524 2006-11-09  Raja R Harinath  <rharinath@novell.com>
5525
5526         Fix #79872
5527         * assembly.c (mono_assembly_load_from_full): Check that the given
5528         image has an assembly manifest.
5529
5530 2006-11-09  Ankit Jain  <jankit@novell.com>
5531
5532         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
5533         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
5534         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
5535
5536 2006-11-07  Dick Porter  <dick@ximian.com>
5537
5538         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5539         Put the old resolver behaviour back for pre-2.0 profiles.
5540
5541 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
5542
5543         * threadpool.c: precise GC and locking fixes.
5544
5545 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
5546
5547         * class.c: don't load types that have an explicit unaligned
5548         managed reference. Provide better info in the TypeLoad exception.
5549         Part of the fix for bug #79744.
5550         * object.c: use the correct check for class type load issues.
5551
5552 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
5553
5554         * class.c: enforce alignment of fields with managed references
5555         even when Pack=1 is forced by the user (bug #77788).
5556
5557 2006-11-03  Dick Porter  <dick@ximian.com>
5558
5559         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
5560         If the address reverse lookup fails, return it as the hostname
5561         anyway.  Fixes bug 79721.
5562
5563 2006-11-03  Dick Porter  <dick@ximian.com>
5564
5565         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
5566         Fix build on Windows.
5567
5568 2006-11-02  Dick Porter  <dick@ximian.com>
5569
5570         * icall-def.h: 
5571         * object-internals.h: 
5572         * exception.c (mono_get_exception_thread_interrupted): 
5573         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
5574         Fixes bug 74525.
5575
5576         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
5577         Check for pending Thread.Interrupt.
5578
5579 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
5580         * loader.c: Fixed bug 79684.
5581
5582 2006-10-27  Dick Porter  <dick@ximian.com>
5583
5584         * file-io.c (get_file_attributes): Force symlinks to directories
5585         to be returned as a regular file.  Fixes bug 79733.
5586 2006-10-26  Dick Porter  <dick@ximian.com>
5587
5588         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
5589         CreateFile to open a directory then we need to set the
5590         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
5591
5592 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
5593
5594         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
5595         friends.
5596
5597 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5598
5599         * sgengc.c: small cleanup of timer code.
5600
5601 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
5602
5603         * sgen-gc.c: fix some warnings and start adding support for
5604         complete object removal on domain unload.
5605
5606 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
5607
5608         * assembly.c: build_assembly_name should not consider a version
5609         number without build or revision number invalid. Fixes bug #79715.
5610
5611 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
5612
5613         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
5614         call kernel32 function OutputDebugString directly.
5615         
5616         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
5617         
5618 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
5619
5620         * reflection.c: small cleanup, using a function to insert a MonoString
5621         in the string heap.
5622
5623 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
5624
5625         * reflection.c: moving GC fixes.
5626
5627 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
5628
5629         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
5630         all the objects with finalizers belonging to an unloading appdomain.
5631
5632 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
5633
5634         * sgen-gc.c: added ability to allocate even when the nursery is fully
5635         pinned and fixed a couple of bugs.
5636
5637 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5638
5639         * threads.h: Revert the last change for now.
5640
5641         * threads.h (mono_thread_get_pending_exception): Rename this to
5642         mono_thread_get_undeniable_exception ().
5643
5644 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
5645
5646         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
5647         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
5648         when fname does not refer to valid assembly. This result in a more
5649         meaningful error message.
5650         * exception.c: added mono_get_exception_bad_image_format2 which 
5651         constructs a BadImageFormatException using the ctor taking a custom
5652         message and the file name. Passing in a NULL msg results in a default
5653         message.
5654         * exception.h: define mono_get_exception_bad_image_format2 function.
5655         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
5656         when file name pointed to an invalid IL image. Use 
5657         mono_get_exception_file_not_found2 to construct FileNotFoundException,
5658         as this results in a more meaningful error message.
5659
5660 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
5661
5662         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
5663         #79465.
5664
5665 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
5666
5667         * metadata.c (mono_type_size): Change the align parameter to guint32 for
5668         consistency with the other _size functions.
5669         (mono_type_stack_size): Ditto.
5670
5671         * class.c object.c icall.c: Fix warnings caused by the above change.
5672
5673         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
5674
5675         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
5676
5677         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
5678
5679 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
5680
5681         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
5682         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
5683         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
5684         threadpool.h, threads-types.h: mark more internal functions.
5685
5686 2006-10-11  Dick Porter  <dick@ximian.com>
5687
5688         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
5689         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
5690         reproduce the bug even before applying the fix.)
5691
5692 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
5693
5694         * reflection.c: allow retrieving attributes for arguments in generic
5695         methods (bug #79241).
5696
5697 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
5698
5699         * debug-mono-symfile.c: properly check fopen () result (found by
5700         coverity).
5701
5702 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
5703
5704         * reflection.c: make error message clearer and fixed two
5705         issuelets found by Coverity.
5706
5707 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
5708
5709         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
5710
5711 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
5712
5713         * object-internals.h, gc-internal.h, profiler-private.h:
5714         mark internal functions.
5715
5716 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
5717
5718         * reflection.c: put data in the text section.
5719         * icall.c: recognize more types in type_from_typename ().
5720         * process.c, marshal.c: added some GC FIXMEs.
5721
5722 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5723
5724         * loader.c: check for NULL before initializing.
5725
5726 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
5727
5728         * gc.c (finalizer_thread): Use a non-alertable wait here.
5729
5730         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
5731         until the correct solution is found.
5732
5733 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5734
5735         * reflection.c (mono_module_get_object): Avoid an assert when operating on
5736         modules with no metadata. Fixes #79596.
5737
5738         * image.c (load_metadata_ptrs): Put back the error message when
5739         the #- heap is encountered since the support is not complete yet.
5740
5741 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
5742
5743         * gc.c: do not allow the user to SuppressFinalize () a
5744         delegate because it would leak the trampoline if present.
5745
5746 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
5747
5748         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
5749         PropertyPtr table.
5750
5751 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
5752
5753         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
5754
5755         * metadata.c (mono_metadata_get_param_attrs): Ditto.
5756
5757         * row-indexes.h: Add definitions for *Ptr tables.
5758
5759         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
5760
5761         * metadata.c (mono_metadata_translate_token_index): New helper function to
5762         translate table indexes used in uncompressed metadata.
5763         (mono_metadata_decode_table_row): Ditto.
5764         (mono_metadata_decode_table_row_col): Ditto.
5765
5766         * metadata.c: Add table schema for *Ptr tables.
5767
5768         * class.c loader.c: Use the new helper function to access the affected metadata
5769         tables.
5770         
5771         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
5772         #38532.
5773         
5774 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
5775
5776         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
5777         sequences which can be unbounded in size. Fixes #79583.
5778
5779 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
5780
5781         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
5782         static initialization.
5783
5784         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
5785
5786         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
5787
5788         * domain.c (mono_domain_free): Free up type_init_exception_hash.
5789
5790         * object.c (mono_runtime_class_init): Implement correct semantics when a static
5791         ctor fails, i.e. throw the same exception on subsequent accesses.
5792         
5793 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
5794
5795         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
5796         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
5797         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
5798         Handle marshalling of interfaces and VARIANTs contained in structs.
5799         
5800         Code is contributed under MIT/X11 license.
5801         
5802 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
5803
5804         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
5805         
5806         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
5807         mempool.
5808
5809 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5810
5811         * console-io.c: ignore previous SIGINT handler.
5812
5813 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
5814
5815         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
5816         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
5817         #79460, #79461, #79485.
5818
5819         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
5820
5821         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
5822         #79217.
5823
5824 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
5825
5826         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
5827         could be generated from it.
5828
5829 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
5830
5831         * rand.c: fix read loop to correctly handle EINTR.
5832
5833 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5834
5835         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
5836         internal calls are defined to keep methods closer to the declaring
5837         type and allow a significant reduction in runtime relocations and
5838         memory usage.
5839
5840 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
5841
5842         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
5843         exception message to have FileNotFoundException use the default
5844         assembly load error message. Fixes bug #79426.
5845         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
5846
5847 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5848
5849         * threadpool.c: (start_thread_or_queue) use the root domain when
5850         creating the thread instead of the async object one.
5851
5852 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
5853
5854         * class.c, object.c, class-internals.h, reflection.c:
5855         for arrays, store element_size inside MonoClass (speedup
5856         for array object creation).
5857
5858 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
5859
5860         * icall.c: fixed CodeBase to use the file name and not the module
5861         name (bug #79365).
5862
5863 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
5864
5865         * mono-debug.c, mono-debug.h: export find_method as
5866         mono_debug_find_method ().
5867
5868 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
5869
5870         * debug-helpers.c, class-internals.h: added a few functions useful
5871         when debugging under gdb.
5872
5873 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5874
5875         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
5876         characters that need special handling.
5877
5878 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
5879
5880         * mono-config.c: make the os/cpu specification more flexible,
5881         allowing lists and negation.
5882
5883 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
5884
5885         * marshal.c: COM Interop fixes. Handle case where method->klass.
5886         is interface. Handle BSTR/MonoString when null. Use CDECL as 
5887         calling convention on non-windows platforms. This is for
5888         compatibility with XPCOM and MainWin COM.
5889         
5890         Code is contributed under MIT/X11 license.
5891         
5892
5893 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
5894
5895         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
5896         correctly. Fixes #79217.
5897
5898         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
5899
5900 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
5901
5902         * mono-config.c: allow both an os and cpu attribute for dllmap
5903         and dllentry elemnets to enable a single config file to be used
5904         for multiple architectures.
5905
5906 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
5907
5908         * loader.c: MonoLoaderError was cleared too soon on load failure.
5909         Fixes bug #79424.
5910
5911 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
5912
5913         * icall.c: use the defining class vtable when accessing a
5914         static field, not a pobblibly derived class.
5915
5916 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
5917
5918         * icall.c string-icalls.c: Remove references to unicode.h.
5919
5920         * unicode.h unicode.c Makefile.am: Remove these unused source files.
5921
5922         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
5923
5924         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
5925         indicating the image where custom marshaller types should be looked up.
5926         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
5927         custom marshallers, instead of corlib. Fixes #79425.
5928
5929 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
5930
5931         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
5932
5933 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
5934
5935         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
5936         Implement Environment.ProcessorCount.
5937         
5938         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
5939         Implement Environment.ProcessorCount.
5940         
5941         * icall.c: 
5942         Add Environment.ProcessorCount icall.
5943         
5944         Patch by Jason McFall.
5945
5946 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5947
5948         * assembly.c: don't append .exe/.dll when the filename already contains
5949         one of those extensions.
5950
5951 2006-09-12  Martin Baulig  <martin@ximian.com>
5952
5953         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
5954         to array interfaces.
5955
5956 2006-09-11  Martin Baulig  <martin@ximian.com>
5957
5958         * reflection.c (mono_image_build_metadata): Create the
5959         MethodImpl's after emitting all types and methods, so we don't
5960         need another fixup pass for them.
5961
5962 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
5963
5964         * class.c (mono_class_from_name_case): Fix regression introduced by the last
5965         change.
5966
5967 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
5968
5969         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
5970         unload.
5971
5972 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
5973
5974         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
5975         args is not set. Fixes #78926.
5976
5977 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
5978
5979         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
5980
5981         * image.c (load_class_names): Move this to class.c, and rename it to 
5982         'mono_image_init_name_cache'.
5983         (load_modules): Fix a warning.
5984
5985         * class.c icall.c image.c: Initialize image->name_cache lazily.
5986
5987         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
5988         on its name using information in the AOT file.
5989
5990         * class.c (mono_class_from_name): Use the new hook function.
5991
5992 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
5993
5994         * reflection.c (mono_param_get_objects): Handle enum default parameter values
5995         correctly.
5996
5997         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
5998         Fixes #79289.
5999         
6000 2006-09-06  Martin Baulig  <martin@ximian.com>
6001
6002         * icall.c (mono_lookup_internal_call): Small fix.
6003
6004 2006-09-05  Raja R Harinath  <rharinath@novell.com>
6005
6006         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
6007         double g_free.
6008
6009 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
6010
6011         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
6012         when --debug is specified.
6013
6014 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
6015
6016         * class.c (setup_generic_array_ifaces): Fix a warning.
6017
6018 2006-09-04  Miguel de Icaza  <miguel@novell.com>
6019
6020         * Temporarily remove the patch to assemly.c that checks the
6021         assembly versions as it breaks our gacutil.
6022
6023 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
6024
6025         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
6026
6027         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
6028         a net 1.0 runtime.
6029
6030         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
6031         created using the default ctor. Fixes #79152.
6032         (mono_string_builder_to_utf16): Ditto.
6033
6034 2006-09-01  Martin Baulig  <martin@ximian.com>
6035
6036         Fix handling of the generic array interfaces.
6037
6038         * class-internals.h
6039         (MonoDefaults): Removed `generic_array_class' and added
6040         `generic_ilist' class.
6041
6042         * class.c
6043         (mono_bounded_array_class_get): Add the new generic array interfaces.
6044         (setup_generic_array_ifaces): New static method; create vtable
6045         entries for each method in the generic array interfaces.
6046
6047         * metadata.c
6048         (select_container): Allow "parent-less" generic methods.
6049
6050         * marshal.c
6051         (mono_marshal_get_generic_array_helper): New public method.
6052
6053         * icall.c
6054         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
6055         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
6056         moved the interncall into System.Array.
6057
6058 2006-09-01  Raja R Harinath  <rharinath@novell.com>
6059
6060         A few more cases of avoiding work on types with ->byref set.
6061         Has the real fix for #79238
6062         * icall.c (is_generic_parameter): New helper.
6063         (ves_icall_Type_GetGenericParameterPosition): Use it.
6064         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
6065         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
6066         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
6067         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
6068         reference types.
6069         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
6070         reference types.
6071         (ves_icall_Type_get_IsGenericInstance): Likewise.
6072         (ves_icall_Type_get_IsGenericType): Likewise.
6073
6074 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
6075
6076         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
6077         class if possible.
6078
6079         * mempool.h (mono_mempool_get_allocated): New helper function.
6080
6081         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
6082         change.
6083
6084         * mempool.c: Fix warnings and the calculation of stats.
6085
6086         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
6087
6088         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
6089
6090         * loader.c (mono_get_method_from_token): Update method_count stat.
6091
6092         * class-internals.h (MonoStats): Add some stats.
6093
6094 2006-08-31 Robert Jordan  <robertj@gmx.net>
6095
6096         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
6097         with managed variants.
6098         All code is contributed under the MIT/X11 license.
6099         
6100 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
6101
6102         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
6103         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
6104
6105         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
6106
6107         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
6108         with cycles in classes.
6109
6110         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
6111
6112         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
6113         missing a [MarshalAs] directive. Fixes #79203.
6114
6115         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
6116         klass->marshal_info. Fixes #79217.
6117
6118 2006-08-30  Martin Baulig  <martin@ximian.com>
6119
6120         Committing a patch from Joachim Ante <joe@otee.dk>:
6121         Add support for binary data symbol stores.
6122
6123         * debug-mono-symfile.c
6124         (mono_debug_open_mono_symbol_file): Renamed into
6125         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
6126         arguments.
6127
6128         * mono-debug.c
6129         (mono_debug_open_image): Added `raw_contents' and `size' args.
6130         (mono_debug_init_2_memory): New public function.
6131
6132 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
6133
6134         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
6135
6136 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6137
6138         * appdomain.c: implement support for ShadowCopyFiles.
6139
6140 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
6141
6142         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
6143         when value is NULL (and should remove CID #51).
6144
6145 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6146
6147         * image.c: moved 2 functions to ../utils.
6148
6149 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
6150
6151         * gc.c: cope with the target object of a GC handle being NULL
6152         (bug #78877).
6153
6154 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
6155
6156         * class.c: recursively check parent's explicit implementations
6157         of interface methods (fixes bug #79125).
6158
6159 2006-08-19  Miguel de Icaza  <miguel@novell.com>
6160
6161         * filewatcher.c: Avoid warnings when building, do not redefine
6162         constants that are defined.
6163
6164         Remove warnings.
6165
6166 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6167
6168         * image.c: don't fail when the link points to an absolute path.
6169
6170 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
6171
6172         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
6173         Fix CID #3.
6174
6175 2006-08-17  Miguel de Icaza  <miguel@novell.com>
6176
6177         * image.c (full_path): A new method used to obtain the actual path
6178         of an assembly even in the presence of symbolic links.  
6179
6180         This is necessary for the case where we are running a binary that
6181         has been GACed, but we are using the "published" path name
6182         ($prefix/mono/1.0/blah.exe) which happens to point to the real
6183         file in the GAC.
6184
6185         This was the source of the failure for the `xsp' command with the
6186         recent AppDomain changes, as far as the runtime was concerned,
6187         there were two different assemblies: $prefix/mono/1.0/blah.exe and
6188         $prefix/mono/gac/blah/version/blah.exe.
6189
6190         (do_mono_image_open): use full path
6191
6192 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6193
6194         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
6195
6196 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
6197
6198         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
6199         domain_id is supplied. Fix CID #241 and corlib's unit tests.
6200
6201 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6202
6203         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
6204         small structures. Fixes #78990.
6205
6206 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
6207
6208         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
6209
6210         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
6211
6212 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6213
6214         * appdomain.c:
6215         * marshal.c: don't load all the assemblies from a domain into newly
6216         created ones. The new domains might have different rules and load
6217         assemblies from different locations. Fixes bug #76757.
6218
6219         Patch by Lluis. Conflicts resolved by Brian Crowell.
6220
6221 2006-08-16  Alp Toker  <alp@atoker.com>
6222
6223         * socket-io.c: First half of the fix for #79084.
6224         Set sa_size to the length of the content, not that of the struct.
6225         Don't add NULL suffix to the content, this should be done in
6226         managed code if needed.
6227
6228 2006-08-14  Raja R Harinath  <rharinath@novell.com>
6229
6230         Fix part of #79012
6231         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
6232         mono_metadata_parse_type returns NULL.
6233
6234 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
6235
6236         * normalization-tables.h : new file for string normalization data.
6237         * locales.c, locales.h, icall.c :
6238           added load_normalization_resource() for string normalization,
6239           and icall as well.
6240         * Makefile.am : added normalization-tables.h to the sources.
6241
6242 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
6243
6244         * marshal.c: Add more helper functions to reduce code duplication and use them
6245         everywhere.
6246
6247 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
6248
6249         * marshal.c: Fix non-x86 stdcall warnings.
6250         
6251         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
6252         them everywhere.
6253
6254 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
6255
6256         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
6257         type check on multi-dimensional arrays. Fixes #79000.
6258
6259 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
6260
6261         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
6262         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
6263         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
6264         * class-internals.h: add is_com_object to class structure.
6265         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
6266         null checks to COM object marshalling. Fix .ctor call on RCW.
6267         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
6268         
6269         All code is contributed under the MIT/X11 license.
6270
6271 2006-08-09  Dick Porter  <dick@ximian.com>
6272
6273         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
6274         racing mono_monitor_allocator_lock() somewhere, so don't delete
6275         the critical section for now.  Found by running and exiting
6276         monodevelop.
6277
6278 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
6279
6280         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
6281         (ves_icall_System_ComObject_FindInterface): Ditto.
6282         (ves_icall_System_ComObject_CacheInterface): Ditto.
6283
6284         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
6285         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
6286
6287 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6288
6289         * threadpool.c: treat pipes from process asynchronous reads as sockets
6290         when reading from them, so we get select/poll or epoll to wait for
6291         data.
6292
6293 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
6294
6295         * loader.c: Fix a typo (CID #233) in the null check.
6296
6297 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
6298
6299         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
6300         Hopefully fixes #78949.
6301         
6302         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
6303         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
6304         bytes. Fixes #78972.
6305
6306 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6307
6308         * filewatcher.c: we need to set errno here.
6309
6310 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6311
6312         * filewatcher.c: let Win32Exception get the error value.
6313
6314 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6315
6316         * filewatcher.c: translate errno into win32 errors for Win32Exception
6317         to know what happened.
6318
6319 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
6320
6321         * threadpool.c: Fix more warnings.
6322
6323         * assembly.c (search_loaded): Fix warnings.
6324
6325         * threadpool.c (mono_thread_pool_finish): Fix warnings.
6326         (mono_async_invoke): Ditto.
6327
6328 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
6329
6330         * object.c (mono_remote_class_vtable): Need to create proxy vtable
6331         entries for __ComObject type in addition to ComImport types.
6332         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
6333         about hash table.
6334         
6335         All code is contributed under the MIT/X11 license.
6336
6337 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
6338
6339         * image.c: avoid tentative loading of modulerefs that contain
6340         no metadata (P/Invoke library names).
6341
6342 2006-07-28  Dick Porter  <dick@ximian.com>
6343
6344         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
6345         mono_loader_lock() somewhere, so don't delete the critical section
6346         for now.  Found by running and exiting monodevelop.
6347
6348 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6349
6350         * filewatcher.c: define the inotify syscalls when we're building on
6351         linux and have sys/syscall.h. The build system might not have support
6352         for inotify but the target system might have it.
6353
6354 2006-07-26  Miguel de Icaza  <miguel@novell.com>
6355
6356         * domain.c: Documentation updates.
6357
6358         * loader.c (mono_free_method): Do not release the method
6359         information if we are being profiled, as profilers will use this
6360         information at shut down to present some data to the user.
6361
6362         This is needed so that the profiler does not crash, as the
6363         profiler tends to keep MonoMethods around, and they might become
6364         invalid if we free these.
6365
6366         (mono_get_method_constrained): Return the original CIL stream
6367         method as well, so verification can be performed against it.
6368
6369 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6370
6371         * filewatcher.[ch]: support for inotify file system watcher.
6372         * icall.c: add new internal calls for the inotify file system watcher.
6373
6374 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6375
6376         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
6377         #78888.
6378
6379 2006-07-20  Dick Porter  <dick@ximian.com>
6380
6381         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
6382         warning.
6383
6384 2006-07-20  Dick Porter  <dick@ximian.com>
6385
6386         * threads.c (start_wrapper): Do the thread cleanup while we still
6387         hold a reference to its object.  Fixes bug 78123.
6388
6389 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
6390
6391         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
6392         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
6393           "managed-to-managed".
6394         * icall.c: Redirect string constructors that take sbyte* to
6395           ves_icall_System_String_ctor_RedirectToCreateString.
6396         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
6397           to CreateString () methods with matching signature.
6398         * reflection.c: Use original security informations for
6399           MONO_WRAPPER_MANAGED_TO_MANAGED.
6400         * security-manager.c: Use original security informations for
6401           MONO_WRAPPER_MANAGED_TO_MANAGED.
6402         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
6403           that is a placeholder and only its address should be used.
6404         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
6405           that is a placeholder and only its address should be used.
6406
6407 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
6408
6409         Begin implementing COM Interop.
6410         * appdomain.c: Increment corlib version.
6411         * class.c: Set ComImport classes' parent to __ComObject.
6412         * loader.c: Mark cominterop methods as such.
6413         * domain.c: Add __ComObject class to MonoDefaults structure.
6414         * image.c: Add 2 hashtables to the image for COM Interop related methods
6415         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
6416         using the mempool allocator
6417         
6418         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
6419         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
6420         declaration for mono_metadata_type_dup_mp.
6421         
6422         * debug-helpers.c: Added strings for two additional wrapper types
6423         * object.c: Create proxy objects for ComImport classes
6424         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
6425         and added __ComObject class to MonoDefaults structure.
6426         
6427         * object-internals.h: Finish MonoRealProxy definition, and add definition of
6428         MonoComInteropProxy and MonoComObject.
6429         
6430         * marshal.c: Added support for COM Interop
6431         (signature_cominterop): Converts managed signature to corresponding
6432         unmanaged COM signature.
6433         (cominterop_get_function_pointer): gets unmanaged function pointer via
6434         COM object vtable
6435         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
6436         (cominterop_get_method_interface): returns interface type that method is defined on
6437         (mono_mb_emit_cominterop_call): emits native call to function pointer
6438         gotten from vtable
6439         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
6440         that matches signature of unmanaged function.
6441         (cominterop_get_native_wrapper): wrapper around adjusted method call.
6442         (cominterop_get_invoke): forwards call from proxy to __ComObject
6443         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
6444         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
6445         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
6446         
6447         * marshal.h: Added Marshal icall declarations.
6448         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
6449         so we can access them in finalizer
6450         
6451 2006-07-14  Dick Porter  <dick@ximian.com>
6452
6453         * object.c (mono_type_initialization_cleanup): Fix a race
6454         condition by temporarily commenting out the critical section
6455         deletion.
6456
6457 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
6458
6459         * reflection.c (create_custom_attr): Fix some warnings.
6460         (create_custom_attr_data): Ditto.
6461         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
6462         types. Fixes #78855.
6463
6464 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
6465
6466         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
6467
6468         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
6469
6470 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
6471
6472         * reflection.c (resolve_object): Add support for DynamicMethod.
6473
6474         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
6475         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
6476
6477 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
6478
6479         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
6480         don't leak GPtrArray's pdata has we have no use (nor free) for it.
6481
6482 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
6483
6484         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
6485         Fixes #77888.
6486
6487 2006-06-30  Raja R Harinath  <rharinath@novell.com>
6488
6489         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
6490         slightly: remove a shadow local variable.
6491
6492 2006-06-29  Raja R Harinath  <rharinath@novell.com>
6493
6494         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
6495         definition that introduces the virtual function slot.
6496         Also fix Coverity #105.
6497
6498 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
6499
6500         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
6501         for dynamic assemblies. Fixes #78724.
6502
6503 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
6504
6505         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
6506         Fixes #78722.
6507
6508 2006-06-21  Martin Baulig  <martin@ximian.com>
6509
6510         * reflection.c
6511         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
6512         fixes #76484.
6513
6514 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
6515
6516         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
6517
6518 2006-06-20  Raja R Harinath  <rharinath@novell.com>
6519
6520         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
6521         nor TYPEREFs.
6522         * class.c (mono_class_create_from_typespec): Add 'context' argument.
6523         Inflate result if necessary.
6524         (mono_class_get_full): Remove old version.  Rename from
6525         'mono_class_get' and add 'context' argument.  Pass it to
6526         ..._create_from_typespec.
6527         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
6528         (mono_ldtoken): Revert change below.
6529
6530 2006-06-20  Martin Baulig  <martin@ximian.com>
6531
6532         * class.c (mono_ldtoken): Don't pass the generic context to
6533         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
6534
6535 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
6536
6537         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
6538         and later freeing it. Fixes #78638.
6539
6540 2006-06-15  Miguel de Icaza  <miguel@novell.com>
6541
6542         * icall.c (mono_class_get_throw): Revert over-zealous error
6543         throwing, the caller for mono_class_get_throw will cope with
6544         errors when classes are not properly initialized already.
6545
6546         The code still copes with loader exceptions though.
6547
6548         Fixes the regression in reftype1 and reftype3 from the CAS tests.
6549         
6550 2006-06-14  Miguel de Icaza  <miguel@novell.com>
6551
6552         Fixes the `make run1' version of RuntimeAbort (to be commited,
6553         source is in Bugzilla).
6554         
6555         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
6556         FALSE on class loading failure instead of returning true.
6557
6558         * class.c (mono_class_create_from_typedef): It is possible for
6559         mono_metadata_interfaces_from_typedef_full to fail if a class is
6560         not found, cope with this.
6561         
6562
6563 2006-06-14  Dick Porter  <dick@ximian.com>
6564
6565         * socket-io.c: 
6566         * process.c: Fix a bunch of signed/unsigned warnings from gcc
6567         4.1.1
6568
6569 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
6570
6571         * culture-info-table.h : oops, forgot to make it nsync with r61548.
6572
6573 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6574
6575         * icall.c: Another fix for building mono in Visual Studio.
6576
6577 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
6578
6579         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
6580         
6581 2006-06-09  Martin Baulig  <martin@ximian.com>
6582
6583         * debug-mono-symfile.c: Put this back and really fix it this
6584         time. Sorry for all the trouble.
6585
6586 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
6587
6588         * icall.c (mono_class_get_throw): Fix a warning.
6589         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
6590         ReflectionTypeLoadException if needed. Fixes #78606.
6591
6592         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
6593         (mono_class_init): Ditto.
6594
6595         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
6596         ref_only exceptions.
6597         (mono_loader_clear_error): Make this work even if there is no error.
6598
6599 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
6600
6601         * object-internals.h marshal.c marshal.h icall.c: Implement method 
6602         Marshal.GetComSlotForMethodInfo using internal call.
6603
6604 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
6605
6606         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
6607         a function for signalling it.
6608
6609         * class.c (mono_class_from_typeref): Use the new kind of loader error when
6610         a referenced assembly is not found.
6611
6612         * loader.c (mono_loader_error_prepare_exception): Add support for 
6613         LOADER_ERROR_ASSEMBLY. Fix formatting.
6614
6615 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6616
6617         * domain.c appdomain.c class-internals.h marshal.c: Add support 
6618         for VARIANT marshalling on windows and increment corlib version
6619         since Variant struct was added.
6620
6621 2006-06-03  Miguel de Icaza  <miguel@novell.com>
6622
6623         * debug-mono-symfile.c: Revert Martin's previous patch which broke
6624         stack trace line information:
6625
6626         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
6627         (Martin) when looking up B which is between A and C, return A not C.
6628
6629         Bug is #78573.
6630
6631         Thanks to Alexander Olk for tracking this down.
6632
6633 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
6634
6635         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
6636         
6637         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
6638         avoid clobbering its value.
6639         (mono_string_to_lpstr): Fix a warning on windows.
6640
6641 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6642
6643         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
6644
6645         * reflection.c loader.c: Removed references to 'dummy' flag.
6646
6647         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
6648
6649         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
6650         it gets GC tracking.
6651
6652         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
6653         GC tracking.
6654         
6655         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
6656
6657         * marshal.c threadpool.c: Update callers of mono_async_result_new.
6658
6659         * appdomain.c: Bump corlib version.
6660
6661 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6662
6663         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6664         CEE_STIND_REF when working with object references.
6665
6666 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
6667
6668         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
6669         Fixes #78539.
6670
6671 2006-05-30  Miguel de Icaza  <miguel@novell.com>
6672
6673         * loader.c (method_from_memberref): Fix argument value for
6674         mono_loader_set_error_method_load (I was passing the MonoClass
6675         instead of the class name char *).
6676
6677 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
6678
6679         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
6680         CEE_STIND_REF when working with object references.
6681
6682 2006-05-30  Martin Baulig  <martin@ximian.com>
6683
6684         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
6685         mono_method_full_name() change and replace the ':' with a '.'
6686         here.
6687
6688 2006-05-30  Martin Baulig  <martin@ximian.com>
6689
6690         * debug-mono-symfile.c
6691         (mono_debug_symfile_lookup_location): Fix the algorithm:
6692         when looking up B which is between A and C, return A not C.
6693
6694 2006-05-29  Martin Baulig  <martin@ximian.com>
6695
6696         * mono-debug.h
6697         (MonoDebugMethodInfo): Make the typedef public.
6698         (MonoDebugSourceLocation): New public struct.
6699
6700         * mono-debug.c
6701         (mono_debug_source_location_from_address): Removed.
6702         (mono_debug_source_location_from_il_offset): Removed.
6703         (mono_debug_il_offset_from_address): Removed.
6704         (mono_debug_address_from_il_offset): Removed.
6705         (mono_debug_lookup_method): New public function.
6706         (mono_debug_lookup_source_location): New public function; replaces
6707         the old mono_debug_source_location_from_*() functions; see the
6708         inline documentation.
6709         (mono_debug_free_source_location): New public function.
6710         (mono_debug_print_stack_frame): New public function; see the
6711         inline documentation.
6712
6713         * debug-mono-symfile.c
6714         (mono_debug_find_source_location): Renamed into
6715         mono_debug_symfile_lookup_location(); only take a
6716         `MonoDebugMethodInfo *' and an `offset' argument; added inline
6717         documentation.
6718         (mono_debug_find_method): Renamed into
6719         mono_debug_symfile_lookup_method().
6720
6721 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
6722
6723         * assembly.c (mono_assembly_open_full): Dont overwrite the status
6724         returned by mono_image_open_full ().
6725
6726         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
6727         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
6728         #78517.
6729
6730         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
6731         #78518.
6732
6733 2006-05-27  Miguel de Icaza  <miguel@novell.com>
6734
6735         * class.c (mono_class_from_typeref): handle missing images
6736         earlier, deals with bug #78418.   Refactor code; 
6737
6738         Fix a warning introduced in my previous commit (some stale code
6739         from before I revisited my patch).
6740
6741         * class.c (mono_class_create_from_typedef): On failure, remove the
6742         class from the MonoImage->class_cache as the class is not
6743         initialized;   Fixes the leak pointed out by Paolo.
6744
6745 2006-05-25  Dick Porter  <dick@ximian.com>
6746
6747         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
6748         DeleteCriticalSections until I figure out which one may still be
6749         sometimes locked when mono_thread_cleanup is called.
6750
6751 2006-05-24  Dick Porter  <dick@ximian.com>
6752
6753         * threads.c (mono_thread_cleanup): Move the threading cleanup out
6754         of mono_thread_manage and back into its own function, so it can be
6755         called after the finalizer thread has finished.
6756
6757         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
6758
6759 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
6760
6761         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
6762         Fixes #78495.
6763
6764         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
6765         with non-blittable elements.
6766         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
6767
6768 2006-05-24  Martin Baulig  <martin@ximian.com>
6769
6770         * mono-debug-debugger.h (MonoDebuggerEvent): Added
6771         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
6772
6773         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
6774         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
6775         `mono_debugger_event_handler' to NULL.
6776
6777 2006-05-24  Martin Baulig  <martin@ximian.com>
6778
6779         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
6780
6781 2006-05-24  Martin Baulig  <martin@ximian.com>
6782
6783         * mono-debug-debugger.h
6784         (mono_debugger_create_notification_function): Added
6785         `MonoCodeManager *' argument.
6786
6787 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
6788
6789         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
6790
6791 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
6792
6793         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
6794         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
6795         implementation.
6796
6797 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
6798
6799         * icall.c: precise GC support: objects can't be stored in unmanaged
6800         memory anymore, even if they are kept alive by other references: since
6801         they can move the GC needs to be able to always find them.
6802
6803 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
6804
6805         * object.c: precise GC support for static fields. Support
6806         for moving GCs: write barriers and pinned allocation for interned
6807         strings.
6808
6809 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
6810
6811         * domain.c, domain-internals.h: precise GC support for the MonoDomain
6812         structure.
6813
6814 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
6815
6816         * class.c, gc.c: sgen and precise GC updates.
6817
6818 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
6819
6820         * marshal.h, marshal.c: added write barrier wrapper and precise type
6821         fixes.
6822
6823 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
6824
6825         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
6826         support.
6827
6828 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
6829
6830         * reflection.c: precise and sgen GC updates.
6831
6832 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
6833
6834         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
6835
6836 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
6837
6838         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
6839
6840 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
6841
6842         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
6843         MONO_TYPE_OBJECT. Fixes #78462.
6844
6845 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
6846
6847         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
6848         and blittable types.
6849
6850 2006-05-17  Miguel de Icaza  <miguel@novell.com>
6851
6852         * class.c (mono_class_get_exception_for_failure): Implement parts
6853         of a TODO: if the loader error is set (instead of the class
6854         error), we return a Loader exception that can be properly thrown
6855         elsewhere.
6856
6857         This was exposed by some Winforms 2.0 code that I tried to run
6858         (Atsushi pointed me to it).
6859
6860 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
6861
6862         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
6863         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
6864         
6865         * marshal.c (emit_marshal_vtype): Add limited support for 
6866         UnmanagedType.LPStruct. Fixes #78427.
6867
6868         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
6869         Applied a patch from kangaroo to fix #77523.
6870
6871 2006-05-17  Martin Baulig  <martin@ximian.com>
6872
6873         * threads.c
6874         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
6875         (debugger_thread_created): Removed.
6876         (debugger_thread_exited): Removed.
6877
6878 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
6879
6880         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
6881
6882         * object-internals.h (MonoReflectionResource): Sync with managed version.
6883
6884 2006-05-12  Wade Berrier <wberrier@novell.com>
6885
6886         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
6887
6888 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
6889
6890         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
6891         functions try to allocate from the image mempool.
6892
6893 2006-05-12  Dick Porter  <dick@ximian.com>
6894
6895         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
6896
6897 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
6898
6899         * object.c: The FieldGetter and FieldSetter methods require the full
6900         name of the class, not only the name. Fixes bug #78277.
6901
6902 2006-05-11  Miguel de Icaza  <miguel@novell.com>
6903
6904         * loader.c (method_from_memberref): Do not pass the NULL klass to
6905         mono_loader_set_error_() methods.  Pass the non-NULL value
6906         (class). 
6907
6908 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
6909
6910         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
6911         (mono_assembly_close): Null out assembly->image->references after freeing it.
6912
6913         * image.c (mono_image_close): Free image->references.
6914         
6915         * reflection.c (mono_image_basic_init): Fix a small memory leak.
6916
6917 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6918
6919         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
6920         before checking if it's NULL (g_assert).
6921
6922 2006-05-10  Martin Baulig  <martin@ximian.com>
6923
6924         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
6925         I thought I already killed that two months ago, but now it somehow reappeared.
6926
6927 2006-05-10  Martin Baulig  <martin@ximian.com>
6928
6929         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
6930
6931 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
6932
6933         * reflection.c: Allocate memory for dynamically created methods in the image
6934         mempools.
6935
6936 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
6937
6938         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
6939         don't use the ad pointer before checking if it's NULL (g_assert).
6940
6941 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
6942
6943         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
6944         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
6945
6946         * marshal.c: Allocate all signatures from mempools.
6947
6948         * marshal.c: Allocate some more signatures from mempools.
6949
6950 2006-05-09  Miguel de Icaza  <miguel@novell.com>
6951
6952         * object.c (mono_load_remote_field): The code used to provide a
6953         temporary variable for returning results if the user did not
6954         provide a result pointer.  But our temporary variable was allocted
6955         on the satck.
6956
6957         Fix calling code to always pass a result area.   Coverity ID 103.
6958
6959 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
6960
6961         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
6962         value, not the old. Fixes #78312.
6963         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
6964
6965         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
6966         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
6967         per-image cache.
6968
6969         * assembly.c (mono_assembly_close): Free image->references.
6970
6971         * assembly.c (mono_assembly_names_equal): Fix a warning.
6972         (mono_assemblies_cleanup): Cleanup more global data.
6973
6974         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
6975
6976         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
6977         ptr_cache and image->modules.
6978
6979         * image.c (mono_image_init): Allocate array_cache lazily.
6980         
6981 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6982
6983         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
6984         behavior was changed recently and has bad side effects.
6985
6986 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
6987
6988         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
6989         
6990         * assembly.c (mono_assembly_close): Remove a debug printf.
6991
6992         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
6993
6994         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
6995         to also allow for temporary references between mono_image_open ()/close ().
6996
6997         * domain.c (get_runtimes_from_exe): Add a FIXME.        
6998
6999 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
7000
7001         * marshal.c: Fix support for dynamic methods.
7002
7003         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
7004
7005         * marshal.c (mono_marshal_cleanup): New cleanup function.
7006
7007         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
7008         image mempools.
7009
7010         * class.c (mono_class_init): Fix leaking class->nested_classes.
7011
7012         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
7013
7014         * image.c (mono_image_init): Initialize the new cashes.
7015
7016         * image.c (mono_image_close): Destroy the new cashes.
7017
7018         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
7019
7020         * mempool.c (mono_mempool_strdup): New helper function.
7021
7022         * class-internals.h: Add prototype for mono_loader_unlock ().
7023
7024         * domain.c (mono_jit_info_table_find): Fix a warning.
7025         (mono_debugger_check_runtime_version): Ditto.
7026
7027         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
7028         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
7029         functions to these modules.
7030
7031         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
7032         metadata modules.
7033         
7034         * marshal.c (mono_free_bstr): Fix a warning.
7035
7036         * assembly.c (mono_assembly_open_full): Fix another small leak.
7037
7038         * object.c: Fix some unload leaks in the remoting code.
7039
7040         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
7041         function.
7042
7043         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
7044
7045         * reflection.c: Fix some unload leaks in dynamic assemblies.
7046
7047 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
7048
7049         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
7050         * marshal.h: Add BSTR support on Win32
7051         * icall.c: Add BSTR icalls
7052         * metadata.h: Add BSTR enums
7053
7054 2006-04-28  Miguel de Icaza  <miguel@novell.com>
7055
7056         Work to catch the crash from #76795 and turn it into an
7057         exception.   As I stubbed out pieces of the VisualBasic support,
7058         I found a number of places where the code was failing and I added
7059         checks to those places. 
7060         
7061         * metadata.c (do_mono_metadata_parse_generic_class): Make this
7062         function return a status code.  If we fail to parse the signature
7063         from mono_metadata_parse_generic_inst, return FALSE.
7064
7065         * loader.c (mono_get_method_from_token): If we fail to load the
7066         method (mono_class_get) return NULL.   
7067
7068         * (method_from_memberref): Return NULL if we are unable to parse
7069         the method signature
7070
7071         (mono_loader_error_prepare_exception): Since we now use the
7072         loader_error flag internally to stop processing, and obtaining
7073         exceptions that might be thrown will walk this code path the
7074         proper way of going from a MonoLoaderError into a
7075         MonoException was convoluted.   This new routine encapsulates the
7076         process of turning the error into an exception and *clearing* the
7077         error afterwards.
7078         
7079 2006-04-27  Miguel de Icaza  <miguel@novell.com>
7080
7081         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
7082         with missing assemblies), and to cope with:
7083
7084                 * Missing fieldref from a non-existing assembly.
7085                 * Missing methodref from a non-existing assembly.
7086
7087         The first batch of work to address *some* of the issues from 76661.
7088         
7089         * object.c (mono_class_create_runtime_vtable): If we fail to
7090         initialize the class raise the exception here. 
7091
7092         * metadata.c (mono_class_get_overrides_full): If any methods fail
7093         to load return the failure to the caller.
7094
7095         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
7096         flagging assemblies that failed to load.   
7097
7098         Do not crash if we are unable to load the assembly.
7099
7100         (mono_assembly_close): Do nothing with REFERENCE_MISSING
7101         assemblies. 
7102
7103         * loader.c (mono_loader_set_error_type_load): Change the
7104         convention to always pass unallocated strings, so we make our own
7105         copies (I know our own code had duplicated strings before, but
7106         this keeps the normal conventions).
7107         (method_from_memberref): Call mono_loader_set_error_method_load
7108         for all possible failures of loading the class. 
7109         Remove assert, turn into a loader error.
7110
7111         (mono_loader_error_to_exception): Move this routine from mini
7112         (mini_loader_error_to_exception) there was no need to have that in
7113         mini. 
7114
7115         * class.c (mono_class_from_typeref): If we were not able to load
7116         the assembly with mono_assembly_load_reference, call the
7117         mono_loader_set_error_type_load to register the problem.
7118
7119         (mono_class_setup_fields): If we fail to load the type from
7120         mono_metadata_parse_type_full, call mono_class_set_failure and
7121         break from the loop.
7122
7123         If class->exception_type is set, we do not layout the fields as
7124         that might crash the runtime, and instead return (from breaking
7125         from the previous loop).
7126
7127         (mono_class_setup_vtable): This now returns a boolean indicating
7128         whether the table was properly setup.   The decision is driven by
7129         mono_class_get_overrides_full which might run into non-existing
7130         methods. 
7131         
7132         (mono_class_init): Returns TRUE on success or FALSE if there was a
7133         problem in loading the type (incorrect assemblies, missing
7134         assemblies, methods, etc).
7135
7136         When we call mono_class_setup_fields we also check for a potential
7137         error inside this call (either a class exception or a general
7138         loader exception).
7139
7140         (mono_class_create_from_typedef): If the parent fails to load
7141         (calling mono_class_get_full) return NULL.
7142         
7143         ** Important **
7144
7145         calls to mono_metadata_parse_type_full should be checked
7146         everywhere and set the mono_class_set_failure
7147         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
7148
7149         The current patch checks the places where my manually constructed
7150         tests show the errors are showing up, but we should do it
7151         everywhere. 
7152
7153         ** Important2 **
7154
7155         mono_class_init return values should be tested everywhere, like
7156         the previous case this is something that we should audit
7157         everywhere and not only on the cases exposed by the tests I
7158         created. 
7159
7160 2006-04-26  Miguel de Icaza  <miguel@novell.com>
7161
7162         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
7163         boolean parameter and instead pass the information on `options'
7164         parameter (FileOptions).
7165
7166         * icall.c: Register the new signature for MonoIO.Open.
7167
7168         * debug-helpers.c (dis_one): Trying to understand how coverity
7169         works.  Fix Run 5, item 78.
7170
7171 2006-04-26  Dick Porter  <dick@ximian.com>
7172
7173         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
7174         dereference.
7175
7176 2006-04-25  Martin Baulig  <martin@ximian.com>
7177
7178         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
7179
7180         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
7181         debugger_thread_created().
7182         (debugger_gc_push_all_stacks): Don't handle the main thread in any
7183         special way.
7184         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
7185         (mono_debugger_finalize_threads): New function; undo the effects
7186         of mono_debugger_init_threads().
7187         (mono_debugger_create_all_threads): Removed.
7188
7189 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
7190
7191         * image.c (mono_image_close): Tidy up trace messages.
7192
7193         * assembly.c (mono_assembly_close): Ditto.
7194
7195         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
7196         no longer references an already freed assembly. Fixes #78168.
7197
7198 2006-04-21  Dick Porter  <dick@ximian.com>
7199
7200         * threads.c (mono_thread_detach): Fix reference counting when
7201         detaching threads.
7202
7203 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
7204
7205         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
7206         #78155.
7207
7208 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
7209
7210         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
7211         (mono_type_to_stind): Ditto.
7212
7213         * marshal.c: Use the new helper functions to simplify code.
7214
7215         * image.c (mono_image_close): Add some code for help debug assembly unloading
7216         problems.
7217
7218         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
7219         image mempool.
7220
7221         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
7222         assembly was already loaded in another appdomain. Fixes #78083.
7223
7224 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
7225
7226         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
7227         referenced assemblies.
7228         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
7229
7230         * domain.c (mono_domain_free): Add a trace message.
7231
7232         * appdomain.c (add_assemblies_to_domain): Ditto.        
7233
7234         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
7235         field.  
7236
7237 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
7238
7239         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
7240
7241 2006-04-12  Martin Baulig  <martin@ximian.com>
7242
7243         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
7244         `USE_INCLUDED_LIBGC'.   
7245
7246 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
7247
7248         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
7249         the patch contains ../ and a small directory name later. Hopefully fixes
7250         #78035.
7251
7252 2006-04-10  Martin Baulig  <martin@ximian.com>
7253
7254         Clean up the debugger's thread-handling code.
7255
7256         The debugger's thread-handling code has been moved from
7257         ../mini/debug-debugger.c to threads.c.  We now iterate directly
7258         over the `threads' hash, keep track of exiting threads and also
7259         use proper locking.
7260
7261         We can now debug XSP and XSP based applications with the debugger.
7262
7263         * object-internals.h (MonoThread): Added `gpointer end_stack'.
7264
7265         * threads.h
7266         (MonoThreadCallbacks): Removed; this was only used by the debugger.
7267         (mono_install_thread_callbacks): Likewise.      
7268
7269         * threads.c (mono_thread_callbacks): Removed.
7270         (debugger_thread_created, debugger_thread_exited): New static functions.
7271         (start_wrapper): Call debugger_thread_created().
7272         (thread_cleanup): Call debugger_thread_exited().
7273         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
7274         (mono_debugger_init_threads): New public function.
7275         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
7276         iterate directly over the `threads' hash and also use proper locking.
7277
7278         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
7279
7280         * mono-debug-debugger.h
7281         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
7282
7283 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
7284
7285         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
7286         argument type=array. Fixes #78057.
7287
7288 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
7289
7290         * culture-info-table.h : regenerated. Fixed bug #69652.
7291
7292 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
7293
7294         * loader.c metadata.c: Reapply a variant r59116.
7295         
7296         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
7297
7298         * class.c (mono_class_setup_interface_offsets): New internal function.
7299
7300         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
7301         interfaces too. Fixes #77398.
7302
7303         * reflection.c (encode_cattr_value): Add support for 
7304         parameter type=object, argument type=array.
7305         (load_cattr_value): Ditto. Fixes #77916.
7306
7307         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
7308         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
7309
7310         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
7311         a byval char array and CharSet is Ansi.
7312
7313         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
7314
7315 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
7316
7317         * metadata.c: Add some locking comments.
7318         
7319         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
7320         mempool.
7321         (mono_metadata_free_method_signature): Don't free the signature itself.
7322
7323         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
7324
7325         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
7326         reference the same MonoImage.
7327         (mono_assembly_load_from_full): Add an assert.
7328
7329 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
7330
7331         * image.c (mono_image_close): Don't put the image we are about to free into the
7332         loaded_images_guid_hash.
7333
7334         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
7335         to reduce code duplication.
7336
7337         * marshal.c: Register the native functions called by this module as icalls, to
7338         somewhat centralize the creation of MonoMethodSignature's.
7339
7340         * loader.c (mono_method_signature): Add a cache for method signatures.
7341
7342         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
7343         the parameter attributes of a method.
7344         (mono_metadata_parse_method_signature_full): Refactored the computation of
7345         parameter attributes into a separate function. Also avoid one allocation in
7346         most cases.
7347
7348         * assembly.c (mono_assembly_close): Ditto.
7349
7350         * image.c (mono_image_close): Log trace messages with INFO level.
7351
7352         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
7353
7354         * image.c reflection.c: Correct reference counting of image modules.
7355         
7356         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
7357         of this function from the image mempool.
7358         
7359         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
7360         to allow more cached types to be used.
7361
7362         * mono-debug.c (mono_debug_add_method): Appled patch from
7363         David S. Miller  <davem@sunset.davemloft.net>: Access 
7364         minfo->lexical_blocks[] entry elements using read32().
7365
7366 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
7367
7368         * loader.c (mono_free_method): No longer free the method header for non-dynamic
7369         methods as it is allocated from the mempool.
7370
7371         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
7372         image mempool.
7373
7374         * metadata-internals.h: Add comments describing the reference counting scheme
7375         used for MonoImage and MonoAssembly.
7376
7377         * image.c assembly.c reflection.c: Rework reference counting of images and 
7378         assemblies so they are freed when the runtime is shut down. Free some 
7379         additional memory structures when an image is unloaded.
7380         
7381 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
7382
7383         * class.c loader.c reflection.c: Allocate more data structures in
7384         the image mempool.
7385
7386 2006-03-31  Miguel de Icaza  <miguel@novell.com>
7387
7388         * icall.c
7389         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
7390         build on pre glib 2.4 systems.
7391
7392 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
7393
7394         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
7395
7396         * icall.c: Fix some warnings.
7397
7398 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
7399
7400         * culture-info-table.h : regenerated.
7401
7402 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
7403
7404         * threads.c, object-internals.h, verify.c: changed the culture caching
7405         code to use a normal MonoArray for storage so the GC can keep track of
7406         them easily. Fixed bits of the cache logic, too and simplified the
7407         code.
7408
7409 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
7410
7411         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
7412         thread for non-Boehm GCs.
7413
7414 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
7415
7416         * domain.c, object.c, domain-internals.h: reduce the amount of memory
7417         needed to keep track of the data for static fields.
7418
7419 2006-03-29  Raja R Harinath  <rharinath@novell.com>
7420
7421         Fix #75172
7422         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
7423         for interface classes.  Use 'num_methods' instead.
7424         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
7425         before using '->vtable_size' field.
7426
7427 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
7428
7429         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
7430         doesn't contain managed pointers, so use a normal hashtable.
7431
7432 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
7433
7434         * reflection.c, class-internals.h, domain.c: fixed handling of types
7435         used as values for objects in custom attributes (bug #77915):
7436
7437 2006-03-24  Martin Baulig  <martin@ximian.com>
7438
7439         * class.c (mono_class_setup_fields): Added support for generic
7440         instances; fixes #77580.
7441
7442 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7443
7444         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
7445
7446 2006-03-24  Dick Porter  <dick@ximian.com>
7447
7448         * file-io.c (get_file_attributes): More stat macro breakage.
7449         Fixes bug 77759.
7450
7451 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
7452
7453         * profiler.c: added the file=filename option in the default profiler
7454         to output the profile data to filename.
7455
7456 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7457
7458         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
7459         bug #77877.
7460
7461 2006-03-22  Martin Baulig  <martin@ximian.com>
7462
7463         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
7464         allocated `MonoClassField *' in `fb->handle'.
7465
7466 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
7467
7468         * class.c, image.c, metadata-internals.h: implemented new mechanism to
7469         allocate interface ID to save memory and allow better ID reuse on
7470         appdomain unload. setup_generic_vtable () removal from Martin.
7471
7472 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7473
7474         * object.h, appdomain.c, domain.c, exception.c, icall.c,
7475         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
7476         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
7477         write barriers for reference stores with managed objects accessed with
7478         C structures in the runtime and in embedding programs.
7479
7480 2006-03-20  Raja R Harinath  <rharinath@novell.com>
7481
7482         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
7483         'interface_id' and 'max_interface_id' fields of MonoClasses
7484         representing open generic types.
7485
7486 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
7487
7488         * object.h, object.c, icall.c: added functions to deal with
7489         storing valuetypes that contain references in managed objects.
7490         * reflection.c, string-icalls.c, threads.c, marshal.c: small
7491         fixes and comments around uses of mono_array_addr ().
7492
7493 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
7494
7495         * object.h, icall.c, monitor.c: object.GetHashCode ()
7496         implementation that supports the moving garbage collector.
7497
7498 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
7499
7500         * icall.c, threads-types.h, threads.c: implemented finalizer for
7501         LocalDataStoreSlot.
7502
7503 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
7504
7505         * metadata.c (mono_type_size): Add a fixme.
7506         (mono_type_stack_size): Ditto.
7507
7508         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
7509         'type_forwarders' field.
7510
7511         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
7512         attribute from net 2.0.
7513
7514         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
7515         from class.c.
7516
7517         * class.c (mono_class_setup_fields): Fix a warning.
7518         
7519         * class.c (mono_class_from_name): Add support for assemblyref entries
7520         in the EXPORTEDTYPE table.
7521
7522         * reflection.c: Add support for handling type forwarders under net 2.0.
7523
7524         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
7525         
7526 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
7527
7528         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
7529         overwriting entries in ModuleBuild->types, also clean up the code
7530         a little. Fixes #77774.
7531
7532 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
7533
7534         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
7535         load friend assembly info when present.
7536
7537 2006-03-14  Raja R Harinath  <rharinath@novell.com>
7538
7539         Fix crasher on gtest-158.cs.
7540         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
7541         the return value if the MonoClass we want is yet in an
7542         inconsistent state.
7543         * class.c (mono_class_create_from_typedef): Add an comment
7544         explaining an order dependency between mono_class_setup_parent and
7545         mono_class_setup_mono_type.
7546
7547 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
7548
7549         * class.c: documentation updates and events bug fix.
7550
7551 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
7552
7553         * class.c: some cleanup, locking fixes.
7554
7555 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
7556
7557         * class.c: fix the generics code to setup nested
7558         type info to the instantiated type (bug #77770).
7559
7560 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
7561
7562         * marshal.c: fixed a few type correctness issues.
7563
7564 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7565
7566         * loader.c: the Set/Get/Addrtess array methods should be public.
7567
7568 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
7569
7570         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
7571         
7572         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
7573         info->wrapper.
7574
7575 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
7576
7577         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
7578
7579         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
7580
7581         * mempool.c (mono_mempool_alloc): Speed this up a bit.
7582         (mono_mempool_alloc0): Ditto.
7583
7584 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7585
7586         * socket-io.c:
7587         (create_object_from_sockaddr): it was allocating 4 extra bytes
7588         for the AF_UNIX data. Fixes bug #77747.
7589
7590 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
7591
7592         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
7593
7594 2006-03-09  Dick Porter  <dick@ximian.com>
7595
7596         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
7597         Fixes bug 76966 again.
7598
7599 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7600
7601         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
7602         names from r57532
7603         * appdomain.c: Bumped corlib version to 48 (due to r57532)
7604
7605 2006-03-07  Martin Baulig  <martin@ximian.com>
7606
7607         * object.c
7608         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
7609
7610 2006-03-07  Martin Baulig  <martin@ximian.com>
7611
7612         * class.c
7613         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
7614         regression introduced in r56970; see gtest-252.cs.
7615
7616         * loader.c (mono_get_method_constrained): Correctly handle generic
7617         methods; see gtest-253.cs.
7618
7619 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
7620
7621         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
7622
7623 2006-03-04  Martin Baulig  <martin@ximian.com>
7624
7625         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
7626         compute the parent type at runtime, just like we're already doing
7627         it for interfaces.
7628
7629         * reflection.c
7630         (mono_reflection_bind_generic_parameters): Don't compute the
7631         parent type anymore.
7632
7633         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
7634
7635 2006-03-04  Martin Baulig  <martin@ximian.com>
7636
7637         * mono-debug-debugger.h
7638         (mono_debugger_create_notification_function): Allocate memory at
7639         runtime and return a pointer to it.
7640
7641 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
7642
7643         * assembly.c: Fix windows build.
7644         
7645         * assembly.c: Fix build.
7646
7647         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
7648
7649         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
7650         
7651 2006-03-03  Dick Porter  <dick@ximian.com>
7652
7653         * process.c
7654         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
7655         Check parameters before dereferencing them.  Fixes Aaron's part of
7656         bug 77393.
7657
7658 2006-03-03  Raja R Harinath  <rharinath@novell.com>
7659
7660         Fix performance regression.
7661         * loader.c (find_method_in_class): Add 'from_class' argument.
7662         Rename 'klass' argument to 'in_class'.  The signature is compared
7663         against the method in 'in_class', and the corresponding method is
7664         returned from 'from_class'.
7665         (find_method): Walk both 'in_class' and 'from_class' in parallel.
7666         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
7667         type definition and generic instantiation in parallel.
7668         (mono_get_method_constrained): Update to changes.
7669
7670 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
7671
7672         * threads.c: make sure the domain is correct, too when doing
7673         mono_thread_attach ().
7674
7675 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
7676
7677         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
7678         windows. Fixes #77683.
7679
7680 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
7681
7682         * object.h, *: introduced specific way to set elements of an array
7683         of references to be used as write barrier. Still need to audit the
7684         uses of mono_array_addr.
7685
7686 2006-03-01  Miguel de Icaza  <miguel@novell.com>
7687
7688         * object-internals.h: New field to cache the assmebly name, patch
7689         from Tambet Ingo (tambet@ximian.com)
7690
7691 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
7692
7693         * decimal.h, class-internals.h, metadata-internals.h,
7694         file-io.h: mark a few function declarations as internal, to
7695         reduce the number of PLT entries.
7696
7697 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7698
7699         * file-io.c: fix typo in warning message.
7700
7701 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
7702
7703         * loader.c: on unix, lookup the "*A" version of a function
7704         if charset is auto as a second option before failing.
7705
7706 2006-02-28  Raja R Harinath  <rharinath@novell.com>
7707
7708         * class.h (mono_class_inflate_generic_method): Revert to two
7709         argument version.
7710         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
7711         (mono_class_inflate_generic_method_full): Add.
7712         * class.c (mono_class_inflate_generic_method_full): Rename from
7713         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
7714         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
7715         * loader.c, reflection.c: Update to changes.
7716
7717 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
7718
7719         * icall.c: const fixes and small improvements.
7720
7721 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7722
7723         * threadpool.c: for asynchronous connect(), enable the same workaround
7724         for BSD 6 as for the Mac. Fixes bug #77637.
7725
7726 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
7727
7728         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
7729         formatted classes. Fixes #77524.
7730
7731 2006-02-24  Raja R Harinath  <rharinath@novell.com>
7732
7733         * class.c (inflate_generic_type): Add a couple more
7734         micro-optimizations.
7735         (inflate_generic_context): Don't use the 'gmethod' from
7736         'inflate_with'.
7737         (mono_class_inflate_generic_method): If the method has generic
7738         parameters, but the passed-in context doesn't have a 'gmethod',
7739         create one.  Use the possibly simplified generic instantiation
7740         from the declaring class instead of the one passed in.
7741
7742 2006-02-24  Raja R Harinath  <harinath@gmail.com>
7743
7744         Make generic method signature and method header handling lazy.
7745         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
7746         (inflate_generic_header): Likewise.
7747         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
7748         parameter to avoid inflating types.
7749         (mono_get_inflated_method): Empty out.
7750         * class.h (mono_class_inflate_generic_method): Update to changes.
7751         * loader.c (mono_get_method_from_token): Don't parse signature for
7752         generic methods, nor methods of generic classes.
7753         (mono_method_signature): Rename from 'mono_method_signature'.
7754         Inflate signature on demand.
7755         (mono_method_get_header): Inflate method header on demand.
7756         * reflection.c: Update to changes.
7757
7758 2006-02-23  Raja R Harinath  <rharinath@novell.com>
7759
7760         * metadata.c (mono_metadata_inflate_generic_inst): If the
7761         instantiation is closed, don't bother expanding it in the new
7762         context.
7763         * class.c (inflate_generic_class): If the generic instantiation
7764         doesn't change after inflation, return the argument itself.
7765         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
7766         Add bounds checks.
7767         (inflate_generic_context): If neither the generic class nor the
7768         generic method instantiations change, return the original context.
7769         * reflection.c (mono_method_get_object): Do
7770         'mono_get_inflated_method' before accessing the ->klass field.
7771         (inflate_mono_method): Don't create a MonoGenericMethod unless
7772         necessary.
7773         (inflate_method): Don't pass a constructed type as the declaring
7774         type of a methodbuilder.
7775
7776 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
7777
7778         * object.c: fix memory overwrite.
7779
7780 2006-02-22  Dick Porter  <dick@ximian.com>
7781
7782         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
7783         it doesn't work any more.
7784         (mono_threads_request_thread_dump): Fix unused variable warnings.
7785
7786 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
7787
7788         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
7789         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
7790         the public header file.
7791
7792 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
7793
7794         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
7795
7796 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
7797
7798         * class-internals.h, object.c: reduce the size of MonoVTable
7799         and store the interface_offsets array at negative offsets.
7800
7801 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
7802
7803         * metadata.c: tweak table descriptors data structures to reduce
7804         size and runtime relocations.
7805
7806 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7807
7808         * marshal.c: fix some types and opcodes to be type-safe
7809         in marshaling wrappers.
7810
7811 2006-02-21  Ankit Jain  <jankit@novell.com>
7812
7813         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
7814
7815 2006-02-21  Raja R Harinath  <rharinath@novell.com>
7816
7817         * metadata.c (get_constraints): Relax debugging checks for monodis.
7818
7819 2006-02-21  Ankit Jain  <jankit@novell.com>
7820
7821         * metadata.c (mono_metadata_load_generic_params): Move the code
7822         checking for ambiguous generic params from here to mono/dis/get.c
7823         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
7824
7825 2006-02-21  Raja R Harinath  <harinath@gmail.com>
7826
7827         Fix assertion triggered when compiling nemerle.
7828         * class.c (mono_get_shared_generic_inst): Rename from
7829         get_shared_inst and make non-static.
7830         * loader.c (mono_get_shared_generic_method): New.  Used to create
7831         the MonoGenericContext-equivalent of a MonoGenericContainer.
7832         (mono_get_method_from_token): Initialize the 'context' field of
7833         the created MonoGenericContainer.
7834         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
7835         * metadata.c (get_constraints): Add sanity check.
7836         * class-internals.h: Add new internal methods.
7837
7838         * reflection.c (verify_safe_for_managed_space): New sanity check.
7839         Currently checks that owner-less generic parameters aren't allowed
7840         in managed space.
7841         (mono_type_get_object): Use it.
7842         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
7843         that are now in mono_type_get_object.
7844         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
7845
7846 2006-02-19  Raja R Harinath  <harinath@gmail.com>
7847
7848         * metadata.c (mono_type_create_from_typespec): Rename from
7849         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
7850         argument and caching of types in the generic container.
7851         (unwrap_arrays, find_generic_param): Remove.
7852         * metadata-internals.h: Update.
7853         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
7854
7855 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
7856
7857         * class.c (mono_class_get_exception_for_failure): Fix a warning.
7858
7859         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
7860         return values. Fixes #77581.
7861
7862         * class.c (mono_fnptr_class_get): Switch name and name_space.
7863
7864         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
7865         classes and add support for [In, Out] attributes.
7866         (mono_marshal_free_asany): Ditto. Fixes #77524.
7867
7868 2006-02-18  Raja R Harinath  <harinath@gmail.com>
7869
7870         * class.c (mono_class_from_generic_parameter): Make more robust to
7871         incomplete MonoGenericContainers from monodis.
7872
7873 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
7874
7875         * class-internals.h: added some more exception types.
7876         * class.c, metadata.c: added a few checks to handle missing
7877         types.
7878
7879 2006-02-17  Raja R Harinath  <rharinath@novell.com>
7880
7881         Use owner-less generic-params some more.
7882         * class.c (my_mono_class_from_generic_parameter): Remove.
7883         (mono_class_from_generic_parameter): Handle null image,
7884         param->name and param->owner.
7885         (mono_class_from_mono_type): Update.
7886         (mono_class_create_from_typespec): Remove 'container' parameter.
7887         If that parameter is non-null, the result is always inflated by
7888         'mono_class_get_full' anyway.
7889         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
7890         parameter.
7891         (mono_class_get_full): Update.
7892
7893         * class.c (inflate_generic_type) [GENERICINST]: If the generic
7894         instance is not open, don't bother inflating.
7895         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
7896         parse metadata for inflated classes.
7897         (_mono_class_get): Change GenericContext* parameter to
7898         GenericContainer*.
7899         (mono_class_create_from_typespec): Likewise.  Simplify, and
7900         implement trivially.  All the cases are handled in
7901         mono_class_from_mono_type.  Don't inflate returned class.
7902         (mono_class_get_full): Delegate GENERICINST optimization to
7903         inflate_generic_type.
7904         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
7905
7906 2006-02-16  Dick Porter  <dick@ximian.com>
7907
7908         * socket-io.c (create_object_from_sockaddr): Fix typo.
7909         (create_sockaddr_from_object): Check array lengths before
7910         potentially accessing items off the end.
7911         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
7912         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
7913         (ves_icall_System_Net_Sockets_Socket_Send_internal)
7914         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
7915         length checks to avoid wraparound overflows.
7916         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
7917         contents of the array of sockets
7918         (hostent_to_IPHostEntry2)
7919         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
7920         Check return value of inet_ntop ().
7921         (addrinfo_to_IPHostEntry): Fix typo
7922
7923 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7924
7925         Type metadata parsing doesn't use generic-instantiation information.
7926         * metadata.c (mono_metadata_parse_array_full): Change
7927         MonoGenericContext* parameter to MonoGenericContainer*.
7928         (mono_metadata_parse_type_full): Likewise.
7929         (mono_type_create_from_typespec_full): Likewise.
7930         (mono_metadata_parse_mh_full): Likewise.
7931         (mono_metadata_parse_generic_inst): Likewise.
7932         (do_mono_metadata_parse_generic_class): Likewise.
7933         (do_mono_metadata_parse_type): Likewise.
7934         * metadata-internals.h: Update to changes.
7935         * class.c (mono_class_find_enum_basetype): Likewise.
7936         (mono_class_setup_fields): Likewise.
7937         (mono_class_create_from_typespec): Likewise.
7938         * loader.c (method_from_methodspec): Likewise.
7939         (mono_get_method_from_token): Likewise.
7940         (mono_method_get_header): Likewise.
7941
7942 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
7943
7944         * marshal.c: handle additional GENERICINST case (patch from
7945         Thong Nguyen <tum@veridicus.com>).
7946         Fix a few cases where LDIND_I/STIND_I was used for references.
7947
7948 2006-02-16  Raja R Harinath  <rharinath@novell.com>
7949
7950         * reflection.c (mono_reflection_get_token): Remove unused variable.
7951
7952 2006-02-16  Martin Baulig  <martin@ximian.com>
7953
7954         * reflection.c (mono_reflection_get_token): Add support for fields
7955         in instantiated generic types.
7956
7957         * icall.c
7958         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
7959
7960 2006-02-15  Martin Baulig  <martin@ximian.com>
7961
7962         * icall.c
7963         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
7964         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
7965         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
7966         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
7967
7968 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
7969
7970         * class.c, metadata.c, metadata.h, object.c, icall.c,
7971         marshal.c: changed mono_type_get_underlying_type () to do
7972         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
7973         Fixed handling of instantiated generic valuetypes (bug #75479).
7974
7975 2006-02-15  Raja R Harinath  <rharinath@novell.com>
7976
7977         * metadata.c (mono_metadata_decode_signed_value): Simplify.
7978         Delegate to mono_metadata_decode_value, and work on the returned value.
7979
7980         * icall.c (ves_icall_MonoType_GetGenericArguments):
7981         Add consistency check here too.
7982         
7983 2006-02-15  Ankit Jain  <jankit@novell.com>
7984
7985         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
7986         char/short etc.
7987
7988 2006-02-15  Ankit Jain  <jankit@novell.com>
7989
7990         * metadata.c (mono_metadata_decode_signed_value): New function to decode
7991         signed values, used only for representing lower bounds of arrays.
7992         (mono_metadata_parse_array_full): Use new
7993         mono_metadata_decode_signed_value to decode lower bounds.
7994
7995 2006-02-14  Martin Baulig  <martin@ximian.com>
7996
7997         * reflection.c
7998         (mono_reflection_get_token): Support "MonoGenericMethod" and
7999         "MonoGenericCMethod" and allow generic instances / methods.
8000
8001 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
8002
8003         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
8004         to obtain the terminal size using an ioctl.
8005
8006         * object.c (mono_nullable_init): Revert this as nullable reference
8007         types are not valid.
8008         (mono_nullable_box): Ditto.
8009
8010 2006-02-09  Dick Porter  <dick@ximian.com>
8011
8012         * threads.c (mono_thread_detach): Drop a reference to the thread
8013         we're detaching.
8014
8015 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
8016
8017         * object.c (mono_nullable_init): Handle nullable reference types.
8018         (mono_nullable_box): Ditto. Fixes #77446.
8019
8020 2006-02-07  Martin Baulig  <martin@ximian.com>
8021
8022         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
8023
8024 2006-02-07  Ankit Jain  <jankit@novell.com>
8025
8026         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
8027         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
8028         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
8029         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
8030         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
8031         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
8032
8033 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
8034
8035         * class.c (mono_class_create_generic): Set type_token as well.
8036
8037         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
8038         compatible with MS.
8039
8040 2006-02-02  Martin Baulig  <martin@ximian.com>
8041
8042         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
8043         has never been used so far.
8044
8045 2006-02-02  Martin Baulig  <martin@ximian.com>
8046
8047         * mono-debug-debugger.h: Changed comment at the top of this file;
8048         the header is not installed, but it's safe to #include it from
8049         within the JIT.
8050
8051         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
8052         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
8053
8054 2006-02-02  Martin Baulig  <martin@ximian.com>
8055
8056         * mono-debug.h
8057         (MonoSymbolTable): Removed the `metadata_info' field.
8058
8059         * mono-debug.c
8060         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
8061
8062         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
8063         (mono_debugger_add_builtin_types): Removed.
8064         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
8065         (mono_debugger_create_notification_function): We now operate on a
8066         pre-allocated area; take a `gpointer' and return `void'.
8067
8068         * mono-debug-debugger.c
8069         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
8070         (mono_debugger_add_builtin_types): Removed.
8071
8072 2006-02-02  Martin Baulig  <martin@ximian.com>
8073
8074         * threads.c (mono_debugger_create_all_threads): New public method.
8075
8076 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
8077
8078         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
8079         breaks on several platforms.
8080
8081 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
8082
8083         * assembly.c: the VS.NET build doesn't supply default values for
8084         MONO_ASSEMBLIES and MONO_CFG_DIR.
8085
8086 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
8087
8088         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
8089         helper function.
8090
8091         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
8092
8093         * loader.c (method_from_memberref): Fix a warning.
8094
8095         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
8096
8097         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
8098         with explicit layout. Fixes #77433.
8099
8100 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
8101
8102         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
8103         max_interface_id is initialized before using it. Fixes #77398.
8104         (ves_icall_Type_GetInterfaces): Ditto.
8105
8106 2006-01-30  Raja R Harinath  <rharinath@novell.com>
8107
8108         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8109         allocate memory for parameter attributes when parsing memberref
8110         signatures.
8111         * loader.c (mono_loader_set_error_method_load): Don't warn.
8112         (method_from_memberref): Ensure MissingMethodException gets thrown
8113         if method is not found.  Make warning more informative.
8114
8115 2006-01-29  Raja R Harinath  <harinath@gmail.com>
8116
8117         Fix #77397
8118         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
8119         return true if is byref.
8120         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
8121         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
8122         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
8123
8124 2006-01-27  Raja R Harinath  <rharinath@novell.com>
8125
8126         Fix tests/find-method.2.il
8127         * loader.c (find_method, find_method_in_class): Remove is_inflated
8128         argument.  Revert 2006-01-18 change.
8129         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
8130         is generic, search for method in its generic definition.
8131         * class.c (mono_class_setup_vtable_general): Print generic
8132         arguments of generic types in debugging printf.
8133
8134 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
8135
8136         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
8137
8138         * threads.c (mono_threads_request_thread_dump): New helper function.
8139
8140 2006-01-25  Raja R Harinath  <rharinath@novell.com>
8141
8142         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
8143
8144 2006-01-25  Ankit Jain  <jankit@novell.com>
8145
8146         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
8147         move definition to ..
8148         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
8149         
8150 2006-01-25  Ankit Jain  <jankit@novell.com>
8151             Raja R Harinath  <rharinath@novell.com>
8152
8153         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
8154         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
8155         as necessary.
8156
8157 2006-01-25  Martin Baulig  <martin@ximian.com>
8158
8159         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
8160         `MonoDebuggerThread' into debug-debugger.c.
8161
8162 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
8163
8164         * profiler.c: fix printing of data.
8165
8166 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
8167
8168         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
8169           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
8170
8171 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
8172
8173         * object.c: fix deadlock related to string interning.
8174
8175 2006-01-23  Martin Baulig  <martin@ximian.com>
8176
8177         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
8178
8179         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
8180
8181 2006-01-23  Martin Baulig  <martin@ximian.com>
8182
8183         * mono-debug.h: Moved the prototypes of some functions which are
8184         used by the JIT here from mono-debug-debugger.h.
8185
8186 2006-01-21  Martin Baulig  <martin@ximian.com>
8187
8188         * Makefile.am: Don't install mono-debug-debugger.h.
8189
8190 2006-01-21  Martin Baulig  <martin@ximian.com>
8191
8192         * mono-debug-debugger.h: Enforce the private status of this header
8193         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
8194         Moved some stuff from mono-debugger-jit-wrapper.h here.
8195
8196 2006-01-20  Raja R Harinath  <rharinath@novell.com>
8197
8198         * class.c (mono_class_from_typeref): Add a sanity test to help
8199         catch lack of assembly load/search hooks.
8200
8201 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
8202
8203         * marshal.c (emit_struct_conv): Relax the fields with same offset
8204         check even more. Fixes #77230.
8205
8206 2006-01-18  Martin Baulig  <martin@ximian.com>
8207
8208         * loader.c (find_method_in_class): Added `gboolean is_inflated'
8209         argument; if false, we compare the uninstantiated signatures.
8210         (method_from_memberref): Compare the uninstantiated signatures;
8211         fixes #76417.
8212
8213 2006-01-18  Robert Jordan  <robertj@gmx.net>
8214
8215         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
8216         Clear the weak link. Fixes bug #77170.
8217
8218         * gc.c (mono_gchandle_free):
8219         Reflect *-gc.c changes (tiny optimization).
8220
8221 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
8222
8223         * metadata.c (mono_metadata_signature_dup): Applied patch from
8224         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
8225         Fixes #77288.
8226
8227 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
8228
8229         * marshal.c (emit_struct_conv): Allow fields with the same offset when
8230         marshalling from native to managed code. Fixes #77230.
8231
8232 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8233
8234         * threadpool.c: fix problem (Mac only) when more than one asynchronous
8235         connect. Fixes bug #77020.
8236
8237 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
8238
8239         * class.c: fixed id assignement for nested interfaces (bug #77275).
8240         Added also better info for --print-vtable debugging.
8241
8242 2006-01-12  Martin Baulig  <martin@ximian.com>
8243
8244         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
8245         interfaces on-the-fly; fixes #76625.
8246
8247         * class-internals.h
8248         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
8249         don't need that anymore.
8250
8251 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8252
8253         * socket-io.c
8254         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
8255         To avoid initing the nested_classes when not needed I turned the
8256         PeerCredData as a toplevel internal class, as it has to be shared
8257         anyways. 
8258
8259         Fixes the CASA issue.
8260
8261 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
8262
8263         * domain.c: Accessors for MonoJitInfo
8264
8265         * profiler-private.h: Add jitinfo to the end jit hook
8266
8267         * profiler.[ch]: Define new hooks, called after jitting which give
8268         the MonoJitInfo that was compiled
8269
8270 2006-01-10  Martin Baulig  <martin@ximian.com>
8271
8272         * class.c (mono_class_setup_events): Add support for generic
8273         classes; fixes #76440.
8274
8275 2006-01-06  Raja R Harinath  <rharinath@novell.com>
8276
8277         Fix #77160.
8278         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
8279         on passed-in method.
8280
8281 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
8282
8283         * object.c (mono_runtime_invoke_array): Add Nullable support.
8284
8285         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
8286
8287 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
8288
8289         * file-io.c: Don't consider sockets as directory and avoid an endless
8290         loop. Fix bug #76966.
8291
8292 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
8293
8294         * object.c (mono_nullable_init): New helper function.
8295         (mono_nullable_box): Ditto.
8296
8297         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
8298
8299         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
8300
8301         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
8302         
8303 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
8304
8305         * class.c (mono_class_is_assignable_from): Make T assignable to 
8306         Nullable<T>.
8307
8308 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
8309
8310         * appdomain.c: Bump corlib version to 46.
8311         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
8312         serialization purpose) and changed ves_icall_System_Reflection_
8313         Assembly_get_code_base signature to accept a boolean (to escape, or 
8314         not, the assembly code base).
8315
8316 2005-12-23  Dick Porter  <dick@ximian.com>
8317
8318         * icall.c: 
8319         * threads-types.h: 
8320         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
8321         CreateEvent icall now returns "created" boolean parameter.
8322
8323 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
8324
8325         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
8326         #76967.
8327
8328         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
8329         when attr_klass is an interface. Fixes #77045.
8330
8331 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
8332
8333         * marshal.c (emit_struct_conv): Fix previous patch.
8334         
8335         * marshal.c (emit_struct_conv): Add a check for fields with the same
8336         offset.
8337
8338 2005-12-20  Raja R Harinath  <rharinath@novell.com>
8339
8340         Fix regression in Mono.C5.
8341         * class.c (mono_class_create_generic): If 'klass' is an interface
8342         set up the interface offsets.
8343         (mono_class_is_assignable_from): Don't throw away generic arguments.
8344
8345 2005-12-19  Raja R Harinath  <rharinath@novell.com>
8346
8347         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
8348         type parameters.
8349
8350 2005-12-15  Raja R Harinath  <rharinath@novell.com>
8351
8352         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
8353         dead store.
8354         (do_mono_metadata_parse_generic_class): Don't pass the current
8355         generic context when parsing the type being instantiated: it
8356         cannot use it, anyway.
8357
8358         * loader.c (method_from_memberref): Don't inflate a signature if
8359         it doesn't contain any type parameters.
8360
8361 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
8362
8363         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
8364
8365 2005-12-14  Martin Baulig  <martin@ximian.com>
8366
8367         * class.c
8368         (mono_type_get_name_recurse): Don't return null for type
8369         parameters and open generic classes.
8370         (mono_class_setup_methods): Don't exclude generic instances.
8371         (mono_get_unique_iid): Use different IDs for different
8372         instantiations of the same generic type.
8373         (mono_class_setup_vtable): Only use setup_generic_vtable() for
8374         open generic instances; create a normal vtable for closed generic
8375         instances.
8376         (mono_class_setup_vtable_general): We're now also called for
8377         closed generic instances.
8378
8379         * reflection.c
8380         (mono_reflection_bind_generic_parameters): Correctly use
8381         mono_metadata_lookup_generic_inst() everywhere.
8382
8383 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
8384
8385         * object.c (mono_class_create_runtime_vtable): Call 
8386         mono_class_setup_vtable ().
8387
8388         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
8389         function.
8390         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
8391         #76959.
8392
8393         * loader.c (mono_loader_set_error_type_load): Print the type load
8394         warnings to the console so they are more visible to the user.
8395         (mono_loader_set_error_method_load): Ditto.
8396
8397         * reflection.c (ensure_runtime_vtable): Revert the last change as it
8398         is still broken.
8399         
8400         * reflection.c (ensure_runtime_vtable): Fix build.
8401
8402         * reflection.c (ensure_runtime_vtable): Disable an optimization which
8403         doesn't work in all cases.
8404
8405 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
8406
8407         * object.c (mono_array_new_full): Treat a single dimensional array
8408         with 0 lower bounds as an szarray. Fixes #76973.
8409
8410         * reflection.c (custom_attr_visible): Really fix this.
8411
8412 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
8413
8414         * reflection.c (custom_attr_visible): Allow nested public attributes
8415         as well.
8416
8417         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
8418         interface check.
8419
8420 2005-12-12  Raja R Harinath  <harinath@gmail.com>
8421
8422         * class.c (set_generic_param_owner): Delete.
8423         (mono_class_create_from_typedef): Don't set ->owner field of
8424         generic parameters to "param containers" of enclosing classes.
8425         * reflection.c (mono_reflection_initialize_generic_parameter):
8426         Likewise.
8427
8428 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
8429
8430         * reflection.c (custom_attr_visible): Fix build.
8431
8432 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
8433
8434         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
8435         private attributes.
8436         
8437         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
8438         handling of null parameter defaults.
8439
8440 2005-12-09  Raja R Harinath  <rharinath@novell.com>
8441
8442         * class.c (mono_class_from_generic_parameter): Don't set
8443         klass->generic_container.
8444         (my_mono_class_from_generic_parameter): Likewise.
8445
8446 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
8447
8448         * reflection.c (load_public_key): Fix a warning.
8449         (method_encode_code): Fix unaligned accesses.
8450
8451 2005-12-07  Martin Baulig  <martin@ximian.com>
8452
8453         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
8454
8455         * reflection.c
8456         (write_generic_param_entry): Encode our custom attrs.
8457
8458         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
8459
8460 2005-12-07  Martin Baulig  <martin@ximian.com>
8461
8462         * reflection.c (encode_new_constraint): Removed; we don't use the
8463         `NewConstraintAttribute' anymore.
8464
8465 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
8466
8467         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
8468         not fire a TypeResolve event when Assembly.GetType () is called.
8469
8470 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
8471
8472         Beginning of support for nullable types in the runtime. Parts of
8473         this patch are from Martin.
8474
8475         * appdomain.c (MONO_CORLIB_VERSION): Bump
8476
8477         * domain.c (mono_init_internal): get the nullable type
8478
8479         * class.c (mono_class_is_nullable): New method
8480         (mono_class_get_nullable_param): New mehod
8481         (mono_class_create_generic): In types T? set cast_class to T
8482
8483         * class-internals.h (MonoDefaults): new nullable default class
8484         (mono_class_get_nullable_param, mono_class_get_nullable_param):
8485         new methods.
8486
8487 2005-12-05  Raja R Harinath  <rharinath@novell.com>
8488
8489         * metadata.c (select_container): New.  Refactor code to select the
8490         appropriate GenericContainer given the type of generic parameter
8491         we are looking for.
8492         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
8493         not a MonoGenericContext.  Use select_container.  Update parameters.
8494         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
8495         and MONO_TYPE_MVAR.
8496         (unwrap_arrays): Remove duplicate tests.
8497         (find_generic_param): Rename from 'has_same_context'.  Now walks a
8498         generic instantiated class to find any arguments that are generic
8499         parameters.
8500         (mono_type_create_from_typespec_full): Use find_generic_param to
8501         avoid evicting some generic instantiations from the typespec
8502         cache.
8503
8504 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
8505
8506         * reflection.c: fixed writing of doubles on ARM FPA.
8507
8508 2005-12-02  Robert Jordan  <robertj@gmx.net>
8509
8510         * icall.c: Fixed EventInfo.ReflectedType (#76829).
8511
8512 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8513
8514         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
8515         least on SUSE 10 they are not the same (on debian, they are just the
8516         same thing).
8517
8518 2005-12-01  Raja R Harinath  <rharinath@novell.com>
8519
8520         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
8521         DeclaringType for VARs and MVARs.
8522         * class.c (set_generic_param_owner): Fix initialization of owner
8523         fields.
8524
8525 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
8526
8527         * icall.c: fixed Enum.ToObject() to correctly convert the values.
8528
8529 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8530
8531         * threadpool.c: workaround for a bug that shows up on the Mac:
8532         select()+connect() on a blocking socket is not like it should
8533         be, so we proceed to connect() in that case, wasting the I/O
8534         threadpool thread until connect succeedes. Fixes bug #75436.
8535
8536 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8537
8538         * threadpool.c: fix typo when setting file descriptor states.
8539
8540 2005-11-28  Raja R Harinath  <rharinath@novell.com>
8541
8542         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
8543         * metadata.c (mono_metadata_parse_method_signature_full): Don't
8544         create a temporary signature container.
8545         (mono_metadata_parse_generic_param): Update to changes.
8546         (mono_type_create_from_typespec_full): Update to changes.
8547         * loader.c (method_from_memberref): Don't use a
8548         MonoGenericContainer while parsing a memberref signature.
8549         (method_from_methodspec): Remove dead-store of the 'container'
8550         variable.  It's overwritten before use.
8551
8552         * metadata.c (mono_type_create_from_typespec_full): Make debugging
8553         checks tighter.
8554         (mono_metadata_parse_generic_param): Likewise.
8555         * loader.c (find_method_in_class): Does not need a
8556         MonoGenericContainer.  Use 'mono_method_signature' rather than
8557         'mono_method_signature_full'.
8558         (find_method, mono_get_method_constrained, method_from_memberref):
8559         Update to changes.
8560
8561         * metadata.c (mono_type_create_from_typespec_full): Ensure that
8562         owner-less generic-parameters are never evicted from the typespec
8563         cache.
8564
8565         * loader.c (method_from_memberref): Don't use the current context
8566         when parsing signatures.
8567         (method_from_methodspec, mono_get_method_from_token): Update to changes.
8568
8569         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
8570         side-effects in g_assert.
8571         * loader.c (mono_get_method_from_token): Resolve klass earlier so
8572         that we don't potentially lose information.
8573
8574 2005-11-26  Dick Porter  <dick@ximian.com>
8575
8576         * icall.c:
8577         * threads.c: icalls to implement basic (ie, not named)
8578         System.Threading.Semaphore.
8579
8580 2005-11-24  Dick Porter  <dick@ximian.com>
8581
8582         * process.c
8583         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
8584         Use GetProcessId() if it's available.
8585
8586 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
8587
8588         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
8589
8590 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8591             Ankit Jain  <jankit@novell.com>
8592
8593         * loader.c (mono_get_method_from_token): Initialize 'method' field
8594         of all generic parameters before parsing the signature.  Remove
8595         code that "fixed"-up MVAR references.
8596
8597 2005-11-23  Ankit Jain  <jankit@novell.com>
8598
8599         * metadata.c (mono_metadata_has_generic_params):
8600         (mono_metadata_load_generic_param_constraints):
8601         (mono_metadata_load_generic_params): Move duplicate code ...
8602         (mono_metadata_get_generic_param_row): ... here. Returns the
8603         first row-id in GenericParam table for a given owner (token).
8604         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
8605         prototype.
8606
8607 2005-11-23  Raja R Harinath  <rharinath@novell.com>
8608             Ankit Jain  <jankit@novell.com>
8609
8610         * metadata.c (mono_metadata_class_equal): Pass signature_only when
8611         comparing VARs too.
8612         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
8613         type->data.generic_param only if the type is an MVAR.
8614         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
8615         leak owner-less VARs and MVARs into managed space.
8616
8617 2005-11-21  Martin Baulig  <martin@ximian.com>
8618
8619         * class-internals.h
8620         (MonoMethod): Moved the `generic_container' here from
8621         `MonoMethodNormal' since we now also need it for
8622         `MonoMethodPInvoke';
8623         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
8624         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
8625         an union containing both `MonoMethodNormal' and
8626         `MonoMethodPInvoke'.
8627
8628         * loader.c
8629         (mono_get_method_from_token): Allow implementing generic methods
8630         as interncalls.
8631
8632         * threads.c
8633         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
8634         icall.
8635
8636 2005-11-17  Dick Porter  <dick@ximian.com>
8637
8638         * icall.c: 
8639         * process.h: 
8640         * process.c: Split the Process Start_internal icall into
8641         ShellExecuteEx_internal and CreateProcess_internal, which are
8642         called depending on whether UseShellExecute is true.  Fixes bug
8643         76670.
8644
8645         * appdomain.c (MONO_CORLIB_VERSION): Incremented
8646
8647 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
8648
8649         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
8650         'msize' parameters, use the information in 'mspec' instead.
8651         (emit_object_to_ptr_conv): Ditto.
8652
8653         * marshal.c (emit_struct_conv): Handle explicit layout structs with
8654         fields out of order. Fixes #76733.
8655
8656 2005-11-17  Ankit Jain  <jankit@novell.com>
8657
8658         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
8659
8660 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
8661
8662         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
8663           bug #76575.
8664
8665 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8666
8667         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
8668         for types with non-auto layout. Fixes #76717.
8669
8670 2005-11-16  Ankit Jain  <jankit@novell.com>
8671
8672         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
8673         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
8674         if generic_context is null.
8675           (mono_metadata_generic_param_equal): param->owner can be null.
8676           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
8677         null.
8678
8679 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
8680
8681         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
8682         the correct value.
8683
8684 2005-11-15  Martin Baulig  <martin@ximian.com>
8685
8686         * object.c (set_value): Use mono_class_from_mono_type() instead of
8687         the hack for generic instances; fixes #76136.
8688
8689 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
8690
8691         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
8692         fields.
8693
8694         * image.c (load_metadata_ptrs): Initialize the new fields.
8695
8696         * reflection.c (create_dynamic_mono_image): Ditto.
8697
8698         * reflection.c (build_compressed_metadata): Use the new fields.
8699
8700         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
8701         icall.
8702
8703         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
8704         icall.
8705         
8706 2005-11-15  Ankit Jain  <jankit@novell.com>
8707             Raja R Harinath  <harinath@gmail.com>
8708
8709         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
8710         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
8711         new per-generic_container cache if the cached MonoType's context matches
8712         the current context.
8713           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
8714         to the expected context.
8715           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
8716
8717 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8718
8719         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
8720         we changed the signature of an icall.
8721         * icall.c: Modify to mono_double_ParseImpl return true/false 
8722         depending on the success, instead of throwing the exception. This will
8723         help us in Double.TryParse methods.
8724         
8725 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
8726
8727         * marshal.c (emit_marshal_object): Throw an exception when
8728         marshalling 'object' instead of crashing. Fixes #76696.
8729
8730 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8731
8732         * class-internals.h: Add prototype for mono_type_get_full_name ().
8733
8734 2005-11-11  Dick Porter  <dick@ximian.com>
8735
8736         * threads.c (mono_thread_manage): Make sure the main thread has
8737         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
8738
8739 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
8740
8741         * loader.c (mono_loader_set_error_type_load): Log a warning to the
8742         console about the missing type.
8743         (mono_loader_set_error_method_load): Ditto.
8744
8745 2005-11-09  Miguel de Icaza  <miguel@novell.com>
8746
8747         * mono-config.c (mono_get_config_dir): Set the system defaults if
8748         none is specified.
8749
8750         * assembly.c (mono_set_dirs): New API entry point to set the
8751         assembly and the config directory in one call
8752
8753 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
8754
8755         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
8756         the ftnptr was created from a delegate in a domain other than the
8757         current domain. Fixes #75377.
8758
8759         * exception.h exception.c: Add mono_get_exception_not_supported ().
8760
8761 2005-11-08  Martin Baulig  <martin@ximian.com>
8762
8763         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
8764
8765 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
8766
8767         * security-manager.h: Added definitions to deal with strongname key 
8768         pairs bigger (and smaller) than 1024 bits.
8769         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
8770         adjust wrt the public key length being used.
8771
8772 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
8773
8774         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
8775           Windows build (r51396-51397).
8776
8777 2005-11-03  Martin Baulig  <martin@ximian.com>
8778
8779         * class.c (mono_class_setup_vtable_general): Also add generic
8780         methods to the vtable; fixes #76581.
8781
8782 2005-11-01  Miguel de Icaza  <miguel@novell.com>
8783
8784         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
8785         sure that we lookup GetString method from the System.Text.Encoding
8786         class, not the derived class or we get an empty method.
8787
8788         Fixed class #76612.
8789
8790 2005-10-25  Miguel de Icaza  <miguel@novell.com>
8791
8792         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
8793         if it has been previously set (embedders). 
8794
8795         Make mono_set_rootdir available also on Unix.
8796
8797 005-10-24  Robert Jordan  <robertj@gmx.net>
8798
8799         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
8800
8801 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
8802
8803         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
8804         only calls which are made to native code use this flag.
8805
8806         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
8807
8808 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
8809
8810         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
8811         Add support for FieldBuilders.
8812
8813 2005-10-29  Martin Baulig  <martin@ximian.com>
8814
8815         * mono-debug.c
8816         (mono_debug_using_mono_debugger): New public method; returns
8817         whether we're running inside the debugger.
8818
8819 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
8820
8821         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
8822         for Method/Constructor/FieldBuilders.
8823
8824 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
8825
8826         * reflection.c (module_add_cattrs): Save custom attributes for global methods
8827         and fields as well.
8828
8829 2005-10-26  Martin Baulig  <martin@ximian.com>
8830
8831         * mono-debug-debugger.c
8832         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
8833
8834 2005-10-24  Raja R Harinath  <harinath@gmail.com>
8835
8836         * icall.c (base64_to_byte_array): Don't pass an out-of-range
8837         integer to isspace.
8838
8839 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
8840
8841         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
8842         when passing valuetypes byref. Fixes #76502.
8843
8844 2005-10-19  Jackson Harper  <jackson@ximian.com>
8845
8846         * profiler.c: Don't put a . in front of types that are not in a
8847         namespace.
8848
8849 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
8850
8851         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
8852
8853 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
8854
8855         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
8856         #76436.
8857         (mono_marshal_get_ldflda_wrapper): Fix a warning.
8858
8859 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
8860
8861         * assembly.c metadata-internals.h icall.c: Define an additional
8862         parameter for mono_assembly_name_parse_full, so we can avoid creating
8863         S.R.AssemblyName.Version when no version info wasn't passed.
8864         
8865 2005-10-09  Miguel de Icaza  <miguel@novell.com>
8866
8867         * class.c (mono_type_get_full_name): Reimplement method that was
8868         removed. 
8869
8870         * image.c: Some docs
8871
8872 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
8873
8874         * profiler.c (output_newobj_profile): Fix printing of Total memory
8875         on x86.
8876
8877 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8878
8879         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
8880
8881 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
8882
8883         * threads.c: remove debug output.
8884
8885 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
8886
8887         * threads.c (mono_thread_manage): Fix crashes if more than 64
8888         threads need to be aborted. Hopefully fixes #75899.
8889
8890         * assembly.c (mono_stringify_assembly_name): New helper function.
8891
8892         * class.c: Use mono_stringify_assembly_name instead of the similar
8893         static function.
8894
8895         * assembly.h assembly.c: Add support for calling a postload search 
8896         hook if an assembly cannot be loaded.
8897
8898         * appdomain.c: Register new search hooks which call the AssemblyResolve
8899         events in AppDomain. Fixes #75231
8900
8901 2005-10-07  Martin Baulig  <martin@ximian.com>
8902
8903         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
8904         methods without debug info.
8905
8906 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
8907
8908         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
8909         wrappers.
8910
8911 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8912
8913         * file-io.c: now that we return symlinks, use lstat and, when the file
8914         is a symbolic link, stat, to get the file attributes. Also avoid the
8915         conversion to/from utf16/external.
8916
8917 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
8918
8919         * class.c (mono_class_layout_fields): Compute klass->has_references
8920         correctly if an embedded valuetype is not yet initialized. Fixes
8921         #76331.
8922
8923 2005-10-04  Martin Baulig  <martin@ximian.com>
8924
8925         * metadata.c
8926         (mono_metadata_load_generic_param_constraints): New public
8927         function; splitted the constraints loading out from
8928         mono_metadata_load_generic_params().
8929
8930         * class.c (mono_class_create_from_typedef): Call
8931         mono_metadata_load_generic_param_constraints() after setting up
8932         the type and creating our parent; fixes #75329.
8933
8934 2005-10-04  Martin Baulig  <martin@ximian.com>
8935
8936         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
8937         non-dynamic parent classes.
8938
8939 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
8940
8941         * file-io.c : win32 build fix (ETXTBSY seems not found).
8942
8943 2005-10-04  Martin Baulig  <martin@ximian.com>
8944
8945         * reflection.c
8946         (mono_image_get_methodspec_token): Make the cache actually work;
8947         fixes #75974.
8948
8949 2005-10-04  Martin Baulig  <martin@ximian.com>
8950
8951         * class.c (mono_class_name_from_token): Removed the unneccessary
8952         `MonoGenericContext *' argument.
8953
8954 2005-10-04  Martin Baulig  <martin@ximian.com>
8955
8956         * loader.c
8957         (method_from_methodspec): Make the caching work again; fixes the
8958         performance regression from #76262.
8959
8960 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8961
8962         * file-io.c:
8963         * file-io.h:
8964         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
8965         GetFileSystemEntries that performs the same work but without going
8966         into io-layer, locking, etc.
8967
8968 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
8969
8970         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
8971         ThreadState_Stopped as well. Fixes #76047.
8972
8973 2005-09-29  Martin Baulig  <martin@ximian.com>
8974
8975         * class.c
8976         (inflate_generic_context): If the new context has a `gmethod', set
8977         its `container' that that gmethod's `container'.
8978
8979         * metadata.c
8980         (mono_metadata_parse_generic_param): Simplify things;
8981         `generic_container = generic_context->container;' is just fine.
8982
8983         * loader.c (method_from_methodspec): Code cleanups.
8984
8985 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
8986
8987         * decimal.c: fix warning (and let gcc generate correct
8988         code on ARM with optimizations).
8989
8990 2005-09-28  Martin Baulig  <martin@ximian.com>
8991
8992         * loader.c
8993         (method_from_memberref): Added `MonoGenericContext *class_context'
8994         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
8995         (method_from_methodspec): If we're a memberref, use the enclosing
8996         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
8997
8998 2005-09-28  Martin Baulig  <martin@ximian.com>
8999
9000         * object.c (mono_runtime_invoke_array): Added support for
9001         MONO_TYPE_GENERICINST; fixes #75917.
9002
9003 2005-09-27  Martin Baulig  <martin@ximian.com>
9004
9005         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
9006         `k->byval_arg.type' to determine the actual type.
9007
9008         * loader.c (method_from_methodspec): Removed some hacks.
9009
9010 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
9011
9012         * class-internals.h (mono_field_is_deleted): Do the test for
9013         rtspecialname before we check the actual name of the field. This
9014         prevents us from dereferencing a pointer into the string table,
9015         saving us from accessing a few pages
9016
9017         * *.c: Replace the use of {Enter,Leave}CriticalSection with
9018         macros. This will allow a deadlock debugger to easily be plugged
9019         in.
9020
9021 2005-09-27  Martin Baulig  <martin@ximian.com>
9022
9023         * loader.c (method_from_methodspec): Create a "signature"
9024         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
9025
9026 2005-09-27  Martin Baulig  <martin@ximian.com>
9027
9028         * class.c
9029         (inflate_generic_class): Correctly set the new context's
9030         container.
9031
9032         * loader.c
9033         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
9034         instead of a `MonoGenericContext *'.
9035         (mono_method_signature_full): Take a `MonoGenericContainer *'
9036         instead of a `MonoGenericContext *'.
9037
9038         * metadata.c
9039         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
9040         instead of a `MonoGenericContext *'.
9041         (mono_metadata_parse_method_signature_full): Likewise.
9042
9043 2005-09-26  Martin Baulig  <martin@ximian.com>
9044
9045         * class.c
9046         (mono_class_from_generic_parameter): Set `klass->generic_container'
9047         (mono_class_from_generic_parameter): Likewise.
9048         (mono_bounded_array_class_get): We inherit the generic container
9049         from the element class.
9050
9051         * loader.c
9052         (find_method, find_method_in_class): Take a `MonoGenericContext *'
9053         argument rather than computing it here.
9054         (method_from_memberref): Correctly set the generic context before
9055         parsing the signature.  Fixes #75681.
9056
9057 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
9058
9059         * object.c (mono_class_has_special_static_fields): Fix warnings.
9060
9061 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9062
9063         * assembly.c: Add parse_public_key function, to
9064         par the public keys. Also added mono_assembly_name_parse_full,
9065         to define it the parsed key should be freed or not.
9066         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
9067         to parse a long format assembly name.
9068         * metadata-internals.h: Keep mono_assembly_name_parse_full as
9069         private, since calling it to preserve the key requires
9070         freeing it manually.
9071         
9072 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
9073
9074         * locales.c : removed HAVE_ICU part.
9075
9076 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
9077
9078         * object.c (mono_class_create_runtime_vtable): Avoid calling 
9079         field_is_special_static if the klass has no special static fields.
9080
9081         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
9082         (MonoCachedClassInfo): Likewise.
9083
9084         * object.c (mono_class_has_special_static_fields): New helper function.
9085
9086 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9087
9088         * class.c (mono_class_create_from_typedef): Don't call 
9089         interfaces_from_typedef_full for enums.
9090         (mono_class_create_from_typedef): Compute the base types of enums directly
9091         without calling mono_class_setup_fields ().
9092         (mono_class_find_enum_basetype): New helper function.
9093
9094         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
9095         one place inside the string heap.
9096         
9097 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
9098
9099         * class.c: locking fixes, code cleanups, some docs added.
9100         Allocate some data structures in the image mempool.
9101
9102 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9103
9104         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
9105         the example code.
9106         
9107 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
9108
9109         * class-internals.h, class.c, reflection.c: reduce memory taken by
9110         MonoClass.
9111
9112 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
9113
9114         * metadata.c, metadata.h, loader.h: documentation updates, code and
9115         API cleanups.
9116
9117 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
9118
9119         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
9120         the example code.
9121
9122         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
9123         page faults caused by the runtime while reading metadata.
9124
9125 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9126
9127         * socket-io.c: the field names were changed 3 months ago and no one
9128         realized until bug #76077 got filed!
9129
9130 2005-09-20  Martin Baulig  <martin@ximian.com>
9131
9132         * icall.c (assembly_icalls): Removed some unused debugger icalls.
9133
9134 2005-09-20  Martin Baulig  <martin@ximian.com>
9135
9136         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
9137         write the rank into the class entry.
9138
9139 2005-09-20  Martin Baulig  <martin@ximian.com>
9140
9141         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
9142
9143 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
9144
9145         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9146
9147         * icall.c (custom_attrs_defined_internal): New icall.
9148
9149         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
9150         function.
9151         (mono_custom_attrs_construct_by_type): New helper function.
9152
9153 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
9154
9155         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
9156         terminate the resulting string. Fixes #76123.
9157
9158 2005-09-16  Martin Baulig  <martin@ximian.com>
9159
9160         * mono-debug.c
9161         (mono_debug_add_method): Ignore inflated methods for the moment.
9162
9163 2005-09-14  Martin Baulig  <martin@ximian.com>
9164
9165         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
9166
9167 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
9168
9169         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
9170         return a success/failure indication.
9171         (mono_metadata_interfaces_from_typedef_full): Ditto.
9172         (get_constraints): Ditto.
9173
9174 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
9175
9176         * marshal.c (emit_marshal_array): Fix handling of null arrays.
9177         
9178         * marshal.c (emit_marshal_array): Add support for returning string
9179         arrays from delegates. Fixes #76063.
9180
9181         * marshal.c: Use the emit_ldloc/stloc macros where possible.
9182
9183 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
9184
9185         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
9186         icall.
9187
9188 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
9189
9190         * reflection.c icall.c: Fix after mono_get_exception_type_load
9191         signature change.
9192
9193         * assembly.c (mono_assembly_get_assemblyref): New helper function.
9194         (mono_assembly_load_reference): Use the new helper.
9195
9196         * class-internals.h (MonoLoaderError): New structure containing 
9197         information about type loading errors.
9198
9199         * class-internals.h loader.c: Add APIs to store per-thread loader
9200         error information.
9201
9202         * loader.c class.c: Set the loader error if needed.
9203
9204         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
9205
9206 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
9207
9208         * decimal.c: fixed to handle the broken ARM fp format.
9209
9210 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
9211
9212         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
9213         broken.
9214
9215 2005-09-06  Martin Baulig  <martin@ximian.com>
9216
9217         * domain.c (supported_runtimes): Added v2.0.50727.
9218
9219 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
9220
9221         * culture-info.h: reduce the size of some structures.
9222
9223 2005-09-05  Martin Baulig  <martin@ximian.com>
9224
9225         Reflect latest API changes in the August CTP.
9226
9227         * icall.c
9228         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
9229         ("MonoType.HasGenericArguments"): Removed.
9230         ("MonoMethod.BindGenericParameters"): Renamed to
9231         "MakeGenericMethod".
9232         ("MethodBuilder.BindGenericParameters"): Renamed to
9233         "MakeGenericMethod".    
9234
9235 2005-09-05  Martin Baulig  <martin@ximian.com>
9236
9237         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
9238
9239 2005-09-05  Martin Baulig  <martin@ximian.com>
9240
9241         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9242
9243         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
9244         generic_container is non-NULL.
9245
9246 2005-09-05  Martin Baulig  <martin@ximian.com>
9247
9248         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9249
9250         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
9251
9252 2005-08-29  Michal Moskal  <malekith@nemerle.org>
9253
9254         * reflection.c (encode_locals,
9255         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
9256         for large generic types.
9257
9258 2005-09-05  Martin Baulig  <martin@ximian.com>
9259
9260         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9261
9262         * class.c (mono_dup_array_type): New public method.
9263         (mono_metadata_signature_deep_dup): New public method.
9264         (dup_type): Correctly duplicate array and function types.
9265
9266 2005-09-05  Martin Baulig  <martin@ximian.com>
9267
9268         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9269
9270         * reflection.c (get_default_param_value_blobs): Handle generic types
9271         and generic methods.
9272
9273 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
9274
9275         * class.c: Fixed error reporting (method/class were inversed) for 
9276         inheritance demands.
9277         * security-manager.c|h: Added the AppDomain when calling the managed
9278         System.Security.SecurityManager.InheritanceDemand method.
9279
9280 2005-09-01  Raja R Harinath  <rharinath@novell.com>
9281
9282         * reflection.c (encode_marshal_blob): 'marshaltype' and
9283         'marshaltyperef' are alternate sources for the custom marshaler
9284         name.
9285
9286 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
9287
9288         * class.c: fix creation of array classes with rank == 1
9289         (patch by Ankit Jain <jankit@novell.com>).
9290
9291 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
9292
9293         * object.c: fix check for creating the bound data for arrays vs
9294         szarrays.
9295
9296 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9297
9298         * object.c: configuration file name is now based on the executable name,
9299         not the image name. Fixes bug #75931.
9300
9301 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
9302
9303         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
9304         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
9305
9306 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
9307
9308         * rand.c: Use wincrypt.h instead of WinCrypt.h.
9309
9310 2005-08-24  Ankit Jain  <jankit@novell.com>
9311             Raja R Harinath  <rharinath@novell.com>
9312
9313         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
9314           called by it recursively.
9315           (mono_class_init): Remove special case in pending_init handling, since it's
9316           superseded by the fix to mono_class_from_typeref.
9317
9318 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
9319
9320         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
9321         BROKEN_THREAD_START stuff.
9322
9323 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
9324
9325         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
9326         trampoline.
9327
9328         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
9329         
9330         * object.c (mono_delegate_ctor): Replace the original function address with
9331         a delegate trampoline.
9332
9333 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
9334
9335         * icall.c: add boolean argument to base64_to_byte_array and 
9336         InternalFromBase64String to control whether a whitespace-only string
9337         is allowed (or should casue a FormatException to be thrown). We need
9338         this as the behavior has changed between MS.NET 1.x and 2.0, and we
9339         to match the MS behaviour in both profiles.
9340         * appdomain.c: Bump corlib version.
9341
9342 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9343
9344         This patch implements a big portion of publisher policy
9345         support, used to bind assembly versions and redirect
9346         one assembly from version A to version B.
9347
9348         * assembly.c:
9349         New GSList loaded_assembly_bindings, for storing the cached
9350         assembly bindings.
9351         (assembly_binding_maps_name): New static function for checking if a 
9352         assembly binding information maps an assembly name.
9353         (mono_assembly_binding_info_free): New function for freeing
9354         assembly binding information resources.
9355         (get_publisher_policy_info): New static function for retrieving 
9356         assembly binding information from a MonoImage.
9357         (compare_versions): New static function for comparing an assembly
9358         binding information data and the version of an assembly name.
9359         (check_policy_versions): New static function for checking if an
9360         assembly binding info mapping an assembly name is valid for it.
9361         (mono_assembly_load_publisher_policy): New static function for
9362         loading the 'policy.major.minor.MyAssembly' image for an assembly
9363         with an assembly name 'aname'.
9364         (mono_assembly_bind_version): New static function for updating
9365         assembly redirection.
9366         (mono_assembly_apply_binding): New static function for applying
9367         assembly binding.
9368         (search_binding_loaded): New static function for searching 
9369         loaded assembly binding infos in the cache domain.
9370         (mono_assembly_load_full): Don't apply assembly binding for
9371         reflection only assemblies.
9372
9373         * metadata-internals.h: Add MonoAssemblyBindingInfo,
9374         which contains information about assembly binding. Also
9375         declare signature for mono_config_parse_publisher_policy ()
9376         function, used to retrieve pub policy info.
9377         
9378         * mono-config.c:
9379         (publisher_policy_start): New static function used to parse publisher 
9380         policy config files.
9381         (publisher_policy_parser): New static MonoParseHandler containing 
9382         the functions used when parsing config files.
9383         (mono_config_parse_publisher_policy): New function for parsing
9384         publisher policy files.
9385         
9386 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
9387
9388         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
9389
9390         * marshal.c (mono_delegate_free_ftnptr): Ditto.
9391
9392         * object.c (mono_get_addr_from_ftnptr): New helper function.
9393
9394         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
9395
9396         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
9397
9398 2005-08-19  Dick Porter  <dick@ximian.com>
9399
9400         * threads.c, threads.h, appdomain.c, appdomain.h,
9401         profiler-private.h, monitor.c, object.c, object-internals.h,
9402         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
9403         store the thread ID, so it can hold a 64 bit value if needed.
9404
9405 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
9406
9407         * reflection.c (mono_reflection_create_dynamic_method): Store the
9408         handle class into the method references as well so ldtoken works in
9409         dynamic methods.
9410
9411         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
9412         types.
9413
9414 2005-08-19  Ankit Jain <jankit@novell.com>
9415
9416         Fix #75847.
9417         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
9418           here rather than using the method signature of a arbitrary function
9419           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
9420           two arguments.
9421           Hack done with Harinath.
9422
9423 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9424
9425         * threadpool.c: disable printing stack traces when we get a exception
9426         in a threadpool thread. I need to do more testing to figure out which
9427         cases actually print this. Fixes bug #75828.
9428
9429 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9430
9431         * icall.c: there might be ignored whitespace after the last '='. This
9432         fixes length computation and bug #75840.
9433
9434 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
9435
9436         * assembly.c (mono_assembly_load_full): Consider .exe extension as
9437         well. Fixes #75809.
9438
9439         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
9440         #75784.
9441         
9442         * reflection.c (create_custom_attr_data): Ditto.
9443
9444 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
9445
9446         * locales.c, culture-info.h : removed RegionLCIDMap.
9447         * culture-info-tables.h : regenerated.
9448
9449 2005-08-16  Martin Baulig  <martin@ximian.com>
9450
9451         * class.c (mono_type_get_name_recurse): Small fix.
9452
9453 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
9454
9455         * locales.c : indentation fixie.
9456
9457 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
9458
9459         * object-internals.h,
9460           locales.h,
9461           locales.c,
9462           culture-info.h,
9463           icall.c : added RegionInfo table support.
9464         * culture-info-table.h : regenerated for region support.
9465
9466 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
9467
9468         * reflection.c (resolve_object): handle all kinds of MonoMethod
9469         including generic ones
9470
9471 2005-08-12  Ankit Jain <jankit@novell.com>
9472
9473         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
9474           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
9475
9476 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
9477
9478         * process.c: Don't close a thread handle when it's NULL. This is a
9479         workaround for bug #75733.
9480
9481 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
9482
9483         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
9484
9485 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
9486
9487         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
9488
9489 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9490
9491         * threadpool.c: if a work item in the thread pool has a callback that
9492         catches a exception, don't propagate it after invoking the callback.
9493         Fixes bug #75336.
9494
9495 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
9496
9497         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
9498
9499         * class-internals.h (MonoCachedClassInfo): Add some new fields.
9500
9501         * class.c (mono_class_init): Load field info lazily in the AOT case.    
9502
9503         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
9504
9505 2005-08-03  Ankit Jain  <jankit@novell.com>
9506
9507         Fix #75683.
9508         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
9509           PInvoke calling convention is 0.
9510
9511 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
9512
9513         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
9514         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
9515
9516 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
9517
9518         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
9519         to handle threads not started by the GC (patch by Michael Meeks
9520         <michael.meeks@novell.com>).
9521
9522 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
9523
9524         * reflection.c: Make buffer used in emitting types larger for some
9525         big generic types (patch by Michal Moskal).
9526
9527 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
9528
9529         * mono-debug.c: Fix some (not all) alignment problems.
9530
9531 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9532
9533         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
9534         Invoke mono_image_load_from_data_full passing the refonly
9535         parameter.
9536
9537         * assembly.c
9538         (mono_assembly_open_from_bundle): Add the refonly argument, 
9539         in order to pass it to other methods it calls to.
9540         (do_mono_assembly_open): Add the refonly argument, in order 
9541         to pass it to other methods it calls to.
9542         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
9543         the refonly parameter to it.
9544
9545         * image.c: Add loaded_images_refonly_hash and
9546         loaded_images_refonly_guid_hash to cache the reflection
9547         only loaded images.
9548         (mono_images_init): Initialize the hash tables used for
9549         caching the reflection only images.
9550         (load_modules): Invoke mono_image_open_full passing the refonly
9551         parameter to load the modules the correct way.
9552         (build_guid_table): Add the refonly argument, to re-build the 
9553         correct hash table.
9554         (do_mono_image_open): Added the refonly argument, in order to
9555         define it for the loaded image.
9556         (mono_image_loaded_full): New function, which receives an
9557         additional parameter to look for the image in the refonly or
9558         non-refonly section.
9559         (mono_image_loaded): Updated, using mono_image_loaded_full.
9560         (mono_image_loaded_by_guid_full): The same case that happens
9561         with mono_image_loaded_full.
9562         (mono_image_loaded_by_guid): Likewise.
9563         (register_image): Use the ref_only variable inside MonoImage
9564         to decide in which hash table store the current image.
9565         (mono_image_open_from_data_full): Rename
9566         mono_image_open_from_data to mono_image_open_from_data_full,
9567         adding the refonly argument, to define the ref_only variable 
9568         inside MonoImage.
9569         (mono_image_open_from_data): Return 
9570         mono_image_open_from_data_full.
9571         (mono_image_open_full): Rename mono_image_open to
9572         mono_image_open_full, receiving the new refonly argument,
9573         to pass it to inner methods.
9574         (mono_pe_file_open): Update this function, to open
9575         a MonoImage as a non-refonly image.
9576         (mono_image_close): Use the refonly variable inside
9577         MonoImage to remove the image from the correct caches.
9578
9579         * image.h: Add the signatures of mono_image_open_full,
9580         mono_image_open_from_data_full, mono_image_loaded_full,
9581         mono_image_loaded_by_guid_full.
9582
9583         * metadata-internals.h: Add the ref_only field to 
9584         MonoImage.
9585         
9586 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9587
9588         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
9589         Fix the last behavior, which used to load the assemblies and
9590         extract MonoReflectionAssemblyName information, instead of
9591         extract it from the metadata tables. Needed for Reflection
9592         Only assemblies.
9593         
9594 2005-07-29  Martin Baulig  <martin@ximian.com>
9595
9596         * mono-debug-debugger.c
9597         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
9598         not initialized.
9599
9600         * mono-debug.c
9601         (mono_debug_address_from_il_offset): Check whether we have
9602         debugging support before attempting to take the lock.
9603         (mono_debug_source_location_from_address): Likewise.
9604         (mono_debug_source_location_from_il_offset): Likewise.
9605         (mono_debug_il_offset_from_address): Likewise.
9606         (mono_debug_address_from_il_offset): Likewise.
9607
9608 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
9609
9610         * class.c (mono_class_from_name_case): Add support for dynamic images.
9611         Fixes #75650.
9612
9613         * object.c (mono_class_compute_gc_descriptor): Add a workaround
9614         for #75479.
9615
9616 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9617         
9618         * reflection.c (mono_method_get_object): Fix warning.
9619
9620 2005-07-28  Martin Baulig  <martin@ximian.com>
9621
9622         * mono-debug.c
9623         (mono_debug_add_wrapper): Also write the wrapper type.
9624
9625 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
9626
9627         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
9628         
9629         * class.c (mono_class_init): Avoid reading nested classes if the AOT
9630         data indicates the class has none.
9631
9632 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
9633
9634         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
9635         loader lock with the debugger lock. Prevents deadlocks for beagle.
9636
9637         Beagle can now run on an smp box for a weekend without any
9638         issues. Woohoo!
9639
9640 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
9641
9642         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
9643         in a module. Fixes #75629.
9644
9645 2005-07-26  Martin Baulig  <martin@ximian.com>
9646
9647         * mono-debug.c (mono_debug_add_wrapper): New static method.
9648         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
9649         interncall or a wrapper.
9650
9651         * mono-debug.h (MonoDebugWrapperData): New public typedef.
9652         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
9653         (MONO_DEBUGGER_VERSION): Bump to 51.
9654
9655         * mono-debug-debugger.c
9656         (mono_debugger_add_type): Removed this empty function.
9657         (mono_debugger_add_method): Likewise.
9658
9659 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
9660
9661         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
9662         before accessing method->slot.
9663
9664 2005-07-21  Jb Evain  <jbevain@gmail.com>
9665
9666         * reflection.c (method_encode_clauses/class): Handle filters clauses.
9667         Fixes #75010.
9668
9669 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
9670
9671         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
9672         #75587.
9673
9674 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
9675
9676         * image.h image.c: Add mono_image_get_guid () API function.
9677
9678 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
9679
9680         There were issues when multiple threads tried to load
9681         assemblies. A deadlock was created between assemblies_mutex and
9682         mono_domain_assemblies_lock. This fixes the issue by making the
9683         assembly ref counting be lock free. See bug 75586.
9684         
9685         * image.c (mono_image_close): The add ref function here was using
9686         Interlocked operations while the unref was using a mutex and a
9687         --. I don't think this was ever a bug that would be exposed in a
9688         non-pendantic way (ie, by an embedder doing a ref on one thread
9689         and an unref on another), but for the sake of correctness, this is
9690         now Interlocked.
9691
9692         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
9693         (mono_assembly_load_reference): Call mono_assembly_addref rather
9694         than touching the refcount ourselves.
9695         (mono_assembly_close): Use InterlockedDecrement to unref the
9696         assembly. Don't acquire the lock unless it is actually needed.
9697
9698 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9699
9700         * class.c (mono_class_layout_fields): Fix calculation of has_references
9701         for generic types.
9702
9703 2005-07-12  Martin Baulig  <martin@ximian.com>
9704
9705         Applying a patch from Michal Moskal <malekith@nemerle.org>.
9706
9707         * metadata.c
9708         (mono_type_hash): Provide better hashing for generic instances.
9709         (mono_generic_inst_hash): Improve hashing.
9710         (mono_generic_class_hash): Likewise.
9711
9712         * reflection.c (mymono_metadata_type_hash): Improve hashing for
9713         generic instances.
9714
9715 2005-07-12  Martin Baulig  <martin@ximian.com>
9716
9717         * reflection.c (mono_reflection_create_runtime_class): Remove the
9718         hack for generic type definitions and non-`Run' assemblies.
9719         (mono_reflection_bind_generic_parameters): Also use
9720         `klass->wastypebuilder' to check for TypeBuilders.
9721
9722 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
9723
9724         * class.c (mono_class_layout_fields): Fix calculation of has_references
9725         for generic types.
9726
9727         * class.c (inflate_generic_class): Fix a leak.
9728         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
9729         for generic types.
9730
9731 2005-07-11  Martin Baulig  <martin@ximian.com>
9732
9733         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
9734         on error.
9735
9736 2005-07-11  Martin Baulig  <martin@ximian.com>
9737
9738         * loader.c (find_method): Also lookup in
9739         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
9740
9741 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9742
9743         * appdomain.c (mono_domain_unload): Don't free the error message
9744         before passing it to mono_get_exception_...
9745
9746         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
9747         
9748 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
9749
9750         * threads.c: try to better guess an available RT signal (bug #75387).
9751
9752 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9753
9754         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
9755         and CACHE_OBJECT.
9756
9757 2005-07-07  Martin Baulig  <martin@ximian.com>
9758
9759         * class.c (mono_type_get_name_full): Return NULL for
9760         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
9761         fixes #75408.
9762
9763 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
9764
9765         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
9766         exit the appdomain as well being aborted.
9767
9768         * threadpool.c: Create all threadpool threads inside the root appdomain, and
9769         change back to the root domain after calling managed code. This enables
9770         appdomains using threadpools to be unloaded.
9771
9772 2005-07-07  Martin Baulig  <martin@ximian.com>
9773
9774         * class-internals.h
9775         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
9776         into `MonoDynamicGenericClass' since we only need it for dynamic
9777         types.
9778
9779         * reflection.c (mono_class_bind_generic_parameters): We don't need
9780         to compute the `parent' here.
9781
9782 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
9783
9784         * culture-info-table.h : regenerated.
9785
9786 2005-07-06  Martin Baulig  <martin@ximian.com>
9787
9788         * icall.c
9789         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
9790
9791         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
9792
9793 2005-07-06  Martin Baulig  <martin@ximian.com>
9794
9795         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
9796         we're doing a signature-only comparision; fixes #74945.
9797
9798 2005-07-06  Martin Baulig  <martin@ximian.com>
9799
9800         * class-internals.h (MonoGenericClass): Moved some things out into
9801         a new `MonoInflatedGenericClass' type.  
9802         (MonoInflatedGenericClass): New type; the `klass' of a
9803         `MonoGenericClass' is now computed lazyly in
9804         mono_get_inflated_generic_class().      
9805
9806         * class.c (mono_get_inflated_generic_class): New public function.
9807         (mono_class_inflate_generic_method): Removed the unused
9808         `MonoClass *' argument.
9809         (setup_generic_vtable): Don't call mono_get_inflated_method() on
9810         all the methods.
9811         (mono_class_create_generic): Make this static and merge it with
9812         mono_class_create_generic_2(); we're now called automatically from
9813         mono_get_inflated_generic_class().
9814
9815         * loader.c (mono_method_signature): Call
9816         mono_get_inflated_method() here.
9817
9818 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
9819
9820         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
9821         type of fields with RVA.
9822
9823         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
9824         for this pseudo class.
9825         (my_mono_class_from_generic_parameter): Likewise.
9826         (mono_class_init): Allow interfaces to have cctors.
9827
9828 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9829
9830         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
9831         lazily for AOT methods.
9832
9833 2005-07-05  Martin Baulig  <martin@ximian.com>
9834
9835         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
9836         returns FALSE for a successful match, not TRUE.
9837
9838 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
9839
9840         * loader.c (mono_method_get_index): Optimize this a bit.
9841
9842 2005-07-04  Martin Baulig  <martin@ximian.com>
9843
9844         * class.c
9845         (class_compute_field_layout): Move the check for generic type
9846         definitions into mono_class_layout_fields().  Fixes #74684.
9847         (mono_class_from_generic_parameter): Correctly compute
9848         `klass->parent'; fixes #75457.
9849
9850         * reflection.c (register_assembly, register_module): Make sure
9851         `domain->rejobject_hash' is already created.
9852
9853 2005-07-02  Martin Baulig  <martin@ximian.com>
9854
9855         * class-internals.h
9856         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
9857         `MonoDynamicGenericClass'.      
9858
9859 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
9860
9861         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
9862         returned by a field getter is null, since null is a valid value.
9863
9864 2005-07-01  Martin Baulig  <martin@ximian.com>
9865
9866         * reflection.c (mono_reflection_generic_class_initialize): Update
9867         the `dgclass->fields [i].parent' to the correct class.
9868         (mono_image_get_fieldref_token): Use the declaring type, not the
9869         reflected type.
9870
9871 2005-07-01  Martin Baulig  <martin@ximian.com>
9872
9873         * loader.c (find_method): Also look in the interfaces; fixes #75429.
9874
9875 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
9876
9877         * threads.c (thread_cleanup): assert that thread != NULL
9878         (wait_for_tids_or_state_change): We were using the wrong variable
9879         when accessing wait->threads. `i' was always out of the bounds of
9880         the array.
9881
9882 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9883
9884         * loader.c: map user32 and kernel32 to libMonoSupportW
9885
9886 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
9887
9888         * appdomain.c (unload_thread_main): Mark this as WINAPI.
9889
9890 2005-06-28  Martin Baulig  <martin@ximian.com>
9891
9892         * loader.c (method_from_methodspec): Fix #75334.
9893
9894 2005-06-28  Martin Baulig  <martin@ximian.com>
9895
9896         Fix #74953 - Arrays now implement the generic IList<T> interface
9897         on the 2.0 platform.
9898
9899         * class-internals.h (MonoDefaults): Added `generic_array_class'.
9900
9901         * reflection.c (mono_class_bind_generic_parameters): New public
9902         function; similar to mono_reflection_bind_generic_parameters(),
9903         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
9904
9905         * domain.c (mono_init_internal): Try to initialize.
9906         `mono_defaults.generic_array_class' here; this'll only succeed if
9907         we're using the 2.0 corlib.
9908
9909         * icall.c
9910         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
9911         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
9912         (mono_lookup_internal_call): Added support for nested classes.
9913
9914         * loader.c
9915         (mono_get_method_from_token): Set `result->signature->pinvoke' if
9916         we're an interncall and have generic arguments.
9917
9918         * class.c
9919         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
9920         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
9921         instance of System.Array.InternalArray<T> for arrays, so they
9922         implement the generic IList<T> interface.
9923
9924 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
9925
9926         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
9927         (chastamar@yahoo.com). Fixes #75374.    
9928
9929 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
9930
9931         * culture-info-table.h: regenerated.
9932
9933 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9934
9935         * icall.c: handle spaces correctly for base64 strings.
9936
9937 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
9938
9939         * *.c: Kill some warnings.
9940
9941 2005-06-23  Duncan Mak  <duncan@novell.com>
9942
9943         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
9944         that this builds on Solaris 10 (x86).
9945
9946 2005-06-23  Martin Baulig  <martin@ximian.com>
9947
9948         * class.c
9949         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
9950         generic type definitions.
9951
9952 2005-06-23  Martin Baulig  <martin@ximian.com>
9953
9954         Fix #75331.
9955
9956         * metadata.c (mono_class_get_overrides): Renamed to
9957         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
9958         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
9959         pass it to mono_get_method_full().
9960
9961 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
9962
9963         * reflection.c (mono_reflection_create_runtime_class): take the
9964         mono_domain_lock in this method. Prevents deadlocks
9965
9966 2005-06-22  Martin Baulig  <martin@ximian.com>
9967
9968         * loader.c (method_from_methodspec): Fix #75330.
9969
9970 2005-06-22  Martin Baulig  <martin@ximian.com>
9971
9972         * reflection.c (type_get_qualified_name): Use
9973         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
9974         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
9975         argument; use it if we don't have an assembly name.
9976
9977 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
9978
9979         * object.c: In mono_message_init, set "copy out" flag for in
9980         parameters with the [Out] flag.
9981
9982 2005-06-21  Martin Baulig  <martin@ximian.com>
9983
9984         * class.c
9985         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
9986         and MONO_TYPE_PTR.
9987
9988 2005-06-21  Martin Baulig  <martin@ximian.com>
9989
9990         * class.c (mono_class_init): Don't initialize `class->fields' for
9991         generic instances since they're initialized again in
9992         compute_field_layout(). 
9993         (compute_field_layout): Set the field's `generic_info' here; fix
9994         #75320. 
9995
9996 2005-06-21  Martin Baulig  <martin@ximian.com>
9997
9998         * class-internals.h
9999         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
10000
10001         * metadata.c (mono_metadata_generic_method_equal): Also
10002         distinguish the `generic_class'; fixes #75334.
10003
10004 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10005
10006         * domain.c:
10007         * appdomain.c:
10008         * domain-internals.h:
10009         * reflection.c: 'domain_assemblies' field is now protected by its own
10010         lock. Don't call into managed code to run the AssemblyLoad event if we
10011         now there are no registered delegates for it.
10012
10013 2005-06-20  Martin Baulig  <martin@ximian.com>
10014
10015         * class.c (mono_class_is_assignable_from): Use a custom version of
10016         mono_class_has_parent() to make things work for generic instances;
10017         fix #75300.
10018
10019 2005-06-20  Martin Baulig  <martin@ximian.com>
10020
10021         * loader.c (method_from_methodspec): Apply a patch from
10022         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
10023
10024 2005-06-20  Martin Baulig  <martin@ximian.com>
10025
10026         * class.c (mono_class_init): Reverted Zoltan's last change; it
10027         breaks generics.
10028
10029 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
10030
10031         * threads.c (wait_for_tids_or_state_change): Add missing locking.
10032
10033 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10034
10035         * socket-io.c: fix the index in the socket array for writable/error
10036         sockets. Fixes bug #75306.
10037
10038 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
10039
10040         * class.c (mono_class_init): Allow interfaces to have static ctors.
10041
10042 2005-06-17  Martin Baulig  <martin@ximian.com>
10043
10044         * loader.c (method_from_methodspec): Use `context->container' when
10045         parsing the `gmethod->inst'.
10046
10047 2005-06-17  Martin Baulig  <martin@ximian.com>
10048
10049         * class.c (mono_type_get_name_recurse): Don't add the assembly
10050         name for type arguments.
10051
10052 2005-06-15  Martin Baulig  <martin@ximian.com>
10053
10054         * reflection.c (mono_image_get_inflated_method_token): Encode
10055         correct klass; fixes #75260.
10056
10057 2005-06-13 Michal Moskal <malekith@nemerle.org>
10058
10059         * icall.c: Make GetCorrespondingMethod/Constructor take
10060         MonoReflectionMethod method not MonoMethod. Removed
10061         MonoType.GetCorrespondingField, and make
10062         MonoGenericType.GetCorrespondingField take name not
10063         MonoClassField.
10064
10065 2005-06-13  Michal Moskal <malekith@nemerle.org>
10066
10067         * reflection.c (field_encode_signature, encode_locals):
10068          Make sizes of buffers for types larger (for big generic types).
10069          (create_generic_typespec,
10070          mono_reflection_sighelper_get_signature_local,
10071          mono_reflection_sighelper_get_signature_field):
10072          Add asserts for too small buffers.
10073
10074 2005-06-15  Martin Baulig  <martin@ximian.com>
10075
10076         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
10077         if our parent is not a dynamic type.
10078
10079 2005-06-15  Martin Baulig  <martin@ximian.com>
10080
10081         * class-internals.h (MonoTypeNameFormat): New enum.
10082
10083         * class.c
10084         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
10085         (mono_type_get_full_name): Removed.
10086         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
10087         argument instead of the boolean's.
10088
10089         * icall.c (ves_icall_System_MonoType_getFullName):
10090         Added `gboolean assembly_qualified'.    
10091
10092         * reflection.h
10093         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
10094
10095         * reflection.c (mono_reflection_parse_type): Parse the new type
10096         name format.
10097
10098 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10099
10100         * icall.c: no need to convert from utf16 to utf8 and then back again
10101         after the call to GetLogicalDrives.
10102
10103 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10104
10105         * icall.c: frombase64. Fix problems exposed by new tests.
10106
10107 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10108
10109         * icall.c: added internal calls for converting char [] and strings in
10110         base64 into byte [].
10111
10112 2005-06-10  Martin Baulig  <martin@ximian.com>
10113
10114         * class.c (mono_class_create_generic_2): Read the nested classes
10115         from the metadata rather than from `gklass->nested_classes' since
10116         `gklass' might not be initialized yet.
10117
10118 2005-06-09  Duncan Mak  <duncan@novell.com>
10119
10120         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
10121         all public headers. Fixes #74919.
10122
10123 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
10124
10125         * domain.c: The key for proxy_vtable_hash is now a pointer
10126         array. Added new GHashFunc and GCompareFunc functions for this.
10127
10128         * class.h: The list of interfaces in MonoRemoteClass is known in
10129         advance and can't grow (we create a new MonoRemoteClass if needed),
10130         so now the interface array can be allocated together with
10131         MonoRemoteClass.
10132         
10133         * object.c: Added a new method create_remote_class_key.
10134         Fixed mono_remote_class so it does not depend on
10135         mono_upgrade_remote_class.
10136         Removed extend_interface_array.
10137         Added new method clone_remote_class(), which makes a copy of a remote
10138         class and adds a new interface or class to it.
10139         mono_upgrade_remote_class() now creates a new remote class (or gets
10140         it from the cache) if an vtable upgrade is needed. In this way
10141         we make sure that other objects sharing the same remote class
10142         don't get the new vtable with unwanted interfaces.
10143         
10144         * object-internals.h:
10145         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
10146         
10147         * marshal.c: Track changes in mono_upgrade_remote_class().
10148
10149 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
10150         * icall.c: Add runtime methods for obtaining members of inflated
10151         class, which were created from supplied non-inflated members. It
10152         is used in internal Get{Method,Constructor,Field} methods in
10153         System.Type
10154
10155 2005-06-09  Martin Baulig  <martin@ximian.com>
10156
10157         * reflection.c
10158         (mono_reflection_bind_generic_method_parameters): Fix #75169.
10159
10160 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10161         * reflection.c (mono_image_basic_init): Define
10162         Version in MonoDynamicAssembly. 
10163         
10164 2005-06-08  Martin Baulig  <martin@ximian.com>
10165
10166         Fix #75136.
10167
10168         * loader.c
10169         (mono_method_signature_full): New public method; takes a
10170         `MonoGenericContext *'.
10171         (find_method): Use mono_method_signature_full() and pass the
10172         klass'es context to it.
10173
10174         * class.c (mono_class_is_inflated_method): Use
10175         mono_method_signature_full() and pass the context to it.
10176
10177 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
10178
10179         * object.c: add proper locking in mono_remote_class_vtable(),
10180         fixes possible memory corruption.
10181
10182 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
10183
10184         * marshal.c (mono_remoting_marshal_init): set
10185         initialized after initialization.
10186
10187 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
10188
10189         * locales.c : hush.
10190
10191 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
10192
10193         * object.c (extend_interface_array): fix really silly
10194         memory corrupting / comparison bug.
10195
10196 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10197
10198         * reflection.c: Functions added to support the creation
10199         of CustomAttributeData, which includes Attribute data
10200         used by ReflectionOnly methods.
10201
10202         * reflection.h:  mono_reflection_get_custom_attrs_data and
10203          mono_custom_attrs_data_construct added (functions exposed).
10204
10205          * icall.c: Added mono_reflection_get_custom_attrs_data
10206          as icall.
10207         
10208 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
10209
10210         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
10211         lupus's request.
10212
10213 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
10214
10215         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
10216
10217         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
10218         dynamic DllImportAttribute.
10219
10220         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
10221         dynamic DllImportAttribute.
10222
10223         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
10224         Fixes #75162.
10225
10226 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10227
10228         * threads.c: avoid segfault when an unstarted thread is aborted.
10229
10230 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
10231
10232         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
10233         Returns the name and version of the runtime for reporting.
10234
10235 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10236
10237         * appdomain.c: bump corlib version.
10238         * object-internals.h: new field in MonoReflectionAssembly.
10239
10240 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10241
10242         * object-internals.h: Carlos forgot to add this field.
10243
10244 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10245
10246         * icall.c: Added create_version to create instances
10247         of Version of MonoReflectionAssemblyName. This change helps
10248         the AssemblyName tests to keep running fine.
10249         
10250 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
10251   
10252         * object.c (mono_method_return_message_restore): A somehow less
10253         intrusive fix for #75138.
10254
10255 2005-06-03  Raja R Harinath  <rharinath@novell.com>
10256
10257         * object.c (mono_method_return_message_restore): Fix computation
10258         of expected number of out args.
10259
10260 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
10261
10262         * reflection.c (mono_image_get_method_info): Fix the case when the
10263         charset is empty.
10264
10265 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
10266
10267         * object.c: Added missing null check in
10268           mono_method_return_message_restore.
10269
10270 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
10271
10272         * reflection.c (mono_image_get_method_info): Handle the case when
10273         dllentry is empty.
10274
10275 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
10276
10277         * object.c: When creating the vtable for a proxy, take into account
10278         all inherited interfaces, not only the ones registered in
10279         iclass->interfaces. This fixs bug #74996.
10280         Also, in mono_method_return_message_restore, verify that the array
10281         of out args has the expected lengh.
10282
10283 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10284
10285         * socket-io.c: update the timeout in Poll when the call is interrupte.
10286
10287 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10288
10289         * socket-io.c: support abort/suspend in Select_internal after last
10290         change.
10291
10292 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10293
10294         * threadpool.c: remove warning.
10295
10296 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10297
10298         * icall.c:
10299         * socket-io.[ch]: Select_internal uses poll() now when available, thus
10300         removing the 1024 limit from select(). Runtime part of the fix for
10301         bug #71203.
10302
10303 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10304
10305         * socket-io.c: when resolving the addresses for the same
10306         host returned by gethostname(), get the local IPs from the interface
10307         list. Loopback addresses are discarded if the are interfaces up with
10308         non-loopback ones. Fixes bug #63265.
10309
10310 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
10311
10312         * appdomain.c, verify.c, object-internals.h, reflection.c:
10313         bumped corlib number to 36, and added new extra_flags field
10314         to ReflectionMethodBuilder and friends.  Fixes #75060.
10315
10316 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
10317
10318         * gc.c: register a new weak link only if the object is non-null
10319         (fixes bug#75047).
10320
10321 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10322
10323         * culture-info.h : short time pattern too.
10324
10325 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
10326
10327         * culture-info.h : expand long time pattern string length.
10328
10329 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10330
10331         * culture-info-table.h : update (more French date format; #72788).
10332
10333 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
10334
10335         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
10336         the method is static. Fixes #75029.
10337
10338 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
10339
10340         * reflection.c: Update the table_idx field of method builders after
10341         saving the module, since it can change. This is a workaround for
10342         bug #74914. 
10343
10344 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
10345
10346         * culture-info-table.h : update (additional French date format).
10347
10348 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
10349
10350         * icall.c (ves_icall_type_Equals): Revert last change.
10351         
10352         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
10353
10354         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
10355
10356 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
10357
10358         * class-internals.h: Added executioncontext_class field to 
10359         MonoDefaults structure.
10360         * domain.c: Cache System.Threading.ExecutionContext class in 
10361         mono_defaults.
10362         * object.c: Capture the ExecutionContext for asynchroneous calls in
10363          mono_async_result_new.
10364         * object-internals.h: Added execution_context and original_context 
10365         fields to MonoAsyncResult. Added execution_context to MonoThread.
10366         * security-manager.c|.h: Added mono_get_context_capture_method to 
10367         return the capture method (if required by the security manager or by
10368         the framework version used).
10369         * threadpool.c: Apply capture (if present) ExecutionContext in 
10370         mono_async_invoke and revert to original context after it completes.
10371
10372 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
10373
10374         * culture-info-table.h : updated (real hacky solution for zh-CHT).
10375
10376 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
10377
10378         * culture-info-table.h : zh-CHT related workaround.
10379
10380 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
10381
10382         * marshal.c (emit_marshal_custom): Add some error checking and call the
10383         methods in the ICustomMarshaler interface. Fixes #74875.
10384         
10385         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
10386         native->managed wrappers.
10387
10388 2005-05-12  Martin Baulig  <martin@ximian.com>
10389
10390         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
10391         here and use the loader lock.
10392
10393         * mono-debug.c: Properly lock when the debugger is not attached.
10394         (mono_debug_init): Release the initial lock if we're not running
10395         in the debugger.
10396
10397 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
10398
10399         * marshal.c (emit_marshal_custom): Pass through NULL values without
10400         calling the custom marshalling routines.
10401
10402         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
10403         conversion in structures. Fixes #74882.
10404
10405 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
10406
10407         * culture-info-table.h : zh-* cultures were missing.
10408
10409 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
10410
10411         * threads.c: Added a new event background_change_event which is signaled
10412         when a thread changes its background mode.
10413         Moved here several checks previously done in managed code. The checks
10414         require the thread lock, and using the thread lock in managed code
10415         can result in deadlocks.
10416         Merged Start_internal and Thread_internal into a single method. Now 
10417         Thread_internal does all work of creating and starting a thread.
10418         Added icalls for setting and getting the state of the object. Moved from
10419         managed code to avoid locking there.
10420         Added wait_for_tids_or_state_change() which is called instad of
10421         wait_for_tids when waiting for non-backround threads to end. This method
10422         will return if one of the threads ends or the background_change_event
10423         is signaled.
10424         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
10425         the background mode. This method signals the background_change_event
10426         event.
10427         * icall.c:
10428         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
10429         removed Start_internal.
10430         
10431 2005-05-11  Martin Baulig  <martin@ximian.com>
10432
10433         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
10434         to order of some fields to get proper alignment on 64-bit machines.
10435
10436 2005-05-11  Martin Baulig  <martin@ximian.com>
10437
10438         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
10439         changes as they're broken and completely fuck up the debugger.
10440
10441         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
10442
10443 2005-05-10  Martin Baulig  <martin@ximian.com>
10444
10445         * reflection.c (mono_reflection_generic_class_initialize): Don't
10446         call mono_class_setup_parent() here.
10447
10448 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10449
10450         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
10451         send/receive timeout use an integer in milliseconds. We were using a
10452         struct timeval.
10453
10454 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10455
10456         * locales.c:
10457         (internal_get_cultures): reserve the first slot of the array for the
10458         InvariantCulture, which will be filled in managed code.
10459
10460 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
10461
10462         * reflection.c (mono_image_fill_module_table): Initialize the
10463         GENERATION field as well.
10464
10465 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10466
10467         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
10468         Monitor.Enter on the object.
10469
10470 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
10471
10472         * threads.c: Enable the wait for running threads when exiting.
10473         * icall.c: Suspend all threads before exiting.
10474
10475 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
10476
10477         * assembly.c (mono_assembly_load_reference): Fix warning.
10478
10479 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10480
10481         * threadpool.c: changed the default number of threads per cpu. From now
10482         on, the default will be 20 + (5 * number of cpus) instead of 50.
10483
10484 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
10485
10486         * loader.c (mono_method_get_signature_full): Add locking here.
10487
10488 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
10489
10490         * appdomain.c: Moved methods for parsing and freeing assembly
10491         names to assembly.c.
10492         * assembly.c, domain-internals.h: Created public methods for parsing
10493         assembly names. Fixed mono_assembly_load_with_partial_name:
10494         it now finds the best match, taking into account the version,
10495         token and culture specified in the partial name. Also return
10496         the latest version if no version information is specified.
10497
10498 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
10499
10500         * threadpool.c: replace check for SocketAsyncCall class.
10501
10502 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10503
10504         * threadpool-internals.h:
10505         * Makefile.am: added threadpool-internals.h
10506
10507         * threadpool.c: call mono_unhandled_exception on exceptions not handled
10508         that happen in threadpool threads (tested on MS).
10509         (mono_thread_pool_remove_socket): new function that dispatch any pending
10510         AIO call on a socket that is closing. By now only epoll really needs it,
10511         as select/poll wake up when the socket closes.
10512
10513
10514         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
10515
10516 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
10517
10518         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
10519
10520 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
10521
10522         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
10523
10524 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
10525
10526         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
10527         has an abort request, convert it into a suspend request.
10528
10529 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
10530
10531         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
10532         warning for the usage of `UnmanagedFunctionPointerAttribute' which
10533         is not supported yet.
10534
10535 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10536
10537         * image.c: register assemblies loaded from data (bundles) in the loaded
10538         assemblies hash. Fixes bug #74772.
10539
10540 2005-04-29  Martin Baulig  <martin@ximian.com>
10541
10542         * class.c (mono_type_get_name_recurse): Update to the new naming
10543         schema from the latest .NET 2.x beta2.
10544         (mono_class_setup_vtable_general): If we're a generic instance,
10545         copy the vtable from our generic type definition and inflate all
10546         the methods in it.
10547
10548         * loader.c (find_method): Update to the new naming schema from the
10549         latest .NET 2.x beta2.
10550
10551 2005-04-29  Raja R Harinath  <harinath@gmail.com>
10552
10553         * class.c (mono_class_init): Add a mono_loader_unlock to the
10554         #74734 fix.
10555
10556 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
10557
10558         * icall.c (ves_icall_System_Environment_Exit): Remove the 
10559         suspend_all_other_threads () call for the time being, since it can hang.
10560
10561         * threads.c (mono_thread_manage): Similarly, disable the waiting for
10562         the background threads to exit, since it can also hang.
10563
10564         * class.c (mono_class_init): Applied patch from Ankit Jain 
10565         (radical@gmail.com). Avoid pending init errors when a field refers
10566         to a nested class using a typeref. Fixes #74734.
10567
10568         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
10569         this for dynamic modules.
10570
10571 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10572
10573         * threads.c: don't wait for threads that are in the process of aborting
10574         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
10575         and waiting for background threads to finish. This makes xsp and
10576         mod-mono-server exit without random length delays and/or hangs.
10577
10578 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10579
10580         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
10581
10582 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
10583
10584         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
10585         dynamic types to prevent infinite loops. Fixes #74727.
10586
10587         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
10588         ..._is_assignable_to.
10589
10590 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
10591
10592         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
10593
10594 2005-04-25  Martin Baulig  <martin@ximian.com>
10595
10596         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
10597
10598         * domain.c
10599         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
10600
10601         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
10602
10603         * reflection.c (build_compressed_metadata): Set metadata header
10604         version to 2.0.
10605
10606 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
10607
10608         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
10609         number into an integral and a decimal part. Fixes #70473.
10610
10611         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
10612
10613 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
10614
10615         * culture-info-table.h : reflected the latest locale-builder output.
10616
10617 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10618
10619         * threadpool.c: check for SuspendRequested too when deciding if
10620         mono_thread_interruption_checkpoint should be called.
10621
10622 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10623
10624         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
10625         * threads.c: remove interruption_mutex and use Interlocked instead. When
10626         suspending all the threads, wait for all the suspended events at once.
10627         If we're shutting down and get an APC that is going to be queued,
10628         call mono_thread_execute_interruption immediately, as the thread might
10629         be sleeping on a pthread condition or mutex.
10630
10631         * icall.c: call mono_runtime_set_shutting_down before suspending the
10632         threads.
10633
10634         Fixes bug #74693. And now xsp is happier when exiting.
10635
10636 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
10637
10638         * loader.c (mono_stack_walk): Fix #74690.
10639
10640 2005-04-22  Martin Baulig  <martin@ximian.com>
10641
10642         * mono-debug.h (MonoDebugMethodJitInfo): Added
10643         `MonoDebugMethodJitInfo *jit'.
10644
10645         * mono-debug.c (mono_debug_read_method): Cache the
10646         MonoDebugMethodJitInfo in `address->jit'.
10647         (mono_debug_free_method_jit_info): New public method.
10648
10649 2005-04-22  Martin Baulig  <martin@ximian.com>
10650
10651         * class.c (mono_class_is_assignable_from): Disallow
10652         type parameter -> interface.
10653
10654 2005-04-21  Dick Porter  <dick@ximian.com>
10655
10656         * threads.c (mono_thread_create): Turn an assertion into an error.
10657
10658 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
10659
10660         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
10661         
10662         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
10663         Fix some gcc 4.0 warnings.
10664
10665 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
10666
10667         * file-io.c: fix alt dir separator char on unix systems
10668         and cleanup (fixes bug #71214).
10669
10670 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
10671
10672         * marshal.c: Use CALLVIRT instead of CALL when dispatching
10673         a call to a remote domain, since the method may be an
10674         interface method in the client domain. This fixes bug #74192.
10675
10676 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10677
10678         * threadpool.c: recv/send are now performed before going back to managed
10679         code to save one transition.
10680
10681 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10682
10683         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
10684
10685         * metadata/threadpool.c: removed hack to workaround the bug above.
10686
10687         Fixes bug #74618.
10688
10689 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
10690
10691         * reflection.c reflection.h: Fix handling of parameter defaults in
10692         dynamic methods. Also fixes handling of parameter attributes.
10693         Fixes #74609.
10694
10695         * mono-debug.c (mono_debug_close_image): Fix warning.
10696
10697 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10698
10699         * socket-io.h: replaced old unused field with new 'blocking'.
10700         * threadpool.c: restore socket blocking state on windows(tm).
10701
10702 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
10703
10704         * icall.c: don't return the codebase in the AssemblyName[] returned by
10705         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
10706         * object-internals.h: Removed FIXME (fields were presents) and fixed
10707         versioncompat declaration.
10708
10709 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10710
10711         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
10712         not closed, so don't cleanup when it happens.
10713
10714 2005-04-13  Chris Toshok  <toshok@ximian.com>
10715
10716         * mono-debug-debugger.h: change prototype for
10717         mono_debugger_lookup_type.
10718
10719         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
10720         this function, although it should probably be named
10721         mono_debugger_init_type.
10722
10723 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10724
10725         * threadpool.c: fix non-AIO case.
10726
10727 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
10728
10729         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
10730         the built-in profiler to measure just JIT compilation times.
10731
10732 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10733
10734         * threadpool.c: the epollfd might be closed by another thread at
10735         any time, so ignore EBADF at treat it as a "we're closing" sign.
10736
10737 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10738
10739         * threadpool.c: release the semaphores with a count equals to the number
10740         of working threads in both IO and regular pools. Fixed typo that messed
10741         up the count of IO pool threads. Don't initialize the pipe handles if
10742         we're using epoll.
10743
10744 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10745
10746         * threadpool.c: some systems don't like a NULL when deleting the socket
10747         from epoll.
10748
10749 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10750
10751         * threadpool.c: fix semaphore allocation.
10752
10753 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10754
10755         * threadpool.c: added epoll() based implementation for asynchronous IO
10756         that is used instead of the default poll() when available.
10757         It can be disabled by setting MONO_DISABLE_AIO.
10758
10759 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10760
10761         * threadpool.c: windows needs 'closesocket' and instead of returning
10762         0 when the stream is closed while in select, it returns -1. Fixes bug
10763         #74573.
10764
10765 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
10766
10767         * class.c (class_compute_field_layout): Fix the regression caused by
10768         the previous try.
10769
10770 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10771
10772         * threadpool.c: separate pool for socket async. IO.
10773         * threadpool.h: mono_max_worker_threads is not a global any more.
10774
10775 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
10776
10777         * class.c (class_compute_field_layout): Fix #74549.
10778
10779 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10780
10781         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
10782         use 2 connected sockets instead.
10783
10784 2005-04-08  Miguel de Icaza  <miguel@novell.com>
10785
10786         * mono-config.c: Add new entry point for mkbundle
10787         mono_config_parse_memory. 
10788
10789 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10790
10791         * threadpool.c: removed another unused function.
10792
10793 2005-04-08  Ankit Jain  <radical@corewars.org>
10794
10795         * reflection.c (get_default_param_value_blobs): Add 'types'
10796         parameter to get the types encoded in the constant table.
10797         (mono_param_get_objects): Use the type from the constant table,
10798         not the type of the parameter, when creating default values.
10799         Handle null default values correctly.
10800
10801 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10802
10803         * file-io.c:
10804         * file-io.h:
10805         * threadpool.c:
10806         * threadpool.h:
10807         * icall.c:
10808         * socket-io.c: removed dead code for async IO.
10809
10810 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10811
10812         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
10813
10814         * threadpool.c: intercept socket async. calls and pass them to a thread
10815         that is polling and dispatching the job items to the threadpool as
10816         socket become ready. Fixes bugs #71217, #71933.
10817
10818         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
10819         between char and short/ushort arrays.
10820
10821         * socket-io.c: remove dead code.
10822
10823 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10824
10825         * locales.c,
10826           icall.c : removed InternalToUpper_Comp() and
10827           InternalToLower_Comp().
10828
10829 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
10830
10831         * char-conversions.h : The tables were incorrectly generated. Should
10832           be generated against invariant culture.
10833
10834 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
10835
10836         * object.c (mono_runtime_invoke_array): Fix return value when 
10837         passing pre-created valuetype objects to ctors.
10838
10839         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
10840         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
10841         Fixes #74338.
10842
10843 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
10844
10845         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
10846         only used with --security and hides the wrong corlib version error.
10847
10848 2005-03-30  Joshua Tauberer  <tauberer@for.net>
10849
10850         * class.c: Changed mono_class_name_from_token so that types
10851         outside of a namespace don't have an initial period.  Improved
10852         the g_warning message used in _mono_class_get when loading
10853         fails.
10854         * assembly.c: In mono_assembly_load_reference, when an assembly
10855         can't be found, "No such file or directory" is misleading and
10856         unhelpful because a few paths were checked for the presence of
10857         the assembly.  When that happens (ENOENT), display a nicer
10858         message indicating the directories that were searched.  In all
10859         cases, the warning is made easier to read for non-hackers.
10860
10861 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
10862
10863         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
10864         project/solution.
10865         * appdomain.h|domain.c: Removed inline from functions.
10866         * appdomain.c: Reduced warnings when compiling on windows.
10867         * icall.c: Fixed output_debug declaration to gunichar2*.
10868         * mono-config.c: Reduced warnings when compiling on windows.
10869         * rand.c: Added missing "windows.h". Added missing return value.
10870         * rawbuffer.c: Added missing winsock2.h for windows.
10871         * sysmath.h: Added mono-compiler.h header to allow/ease 
10872         compilation with non-GCC compilers.
10873         * threads.c: Fixed declarations to compile with VS.NET C compiler.
10874         Removed cast warnings.
10875
10876         Adapted from the work of J Lothian (for VC6).
10877
10878 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
10879
10880         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
10881         from default_path.
10882
10883 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
10884
10885         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
10886         the 2.0 profile.
10887
10888 2005-03-27  Raja R Harinath  <harinath@gmail.com>
10889
10890         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
10891         has to be in $(exec_prefix).  $(prefix) is for arch-independent
10892         stuff, and it would probably use $(prefix)/share rather than
10893         $(prefix)/lib.
10894
10895 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10896
10897         * console-io.c: added 2 includes that might be missing.
10898
10899 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
10900
10901         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
10902         profile.
10903
10904         * reflection.c (create_custom_attr): Allocate the params array using
10905         alloca so it gets GC tracking.
10906
10907 2005-03-23  Chris Toshok  <toshok@ximian.com>
10908
10909         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
10910         out some spew.
10911
10912 2005-03-24  Raja R Harinath  <rharinath@novell.com>
10913
10914         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
10915         changes to pick up any changes in prefix, etc.
10916
10917 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10918
10919         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
10920         
10921         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
10922         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
10923
10924 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
10925
10926         * class-internals.h object-internals.h class.c reflection.c: Extend the
10927         mono_lookup_dynamic_token () function to return the class of the
10928         token as well. 
10929
10930         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
10931         well. Fixes #73848.
10932
10933 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
10934
10935         * security-manager.c: Skip inheritance checks for intra-corlib
10936         class inheritance and method overrides. This skips a lot of checks
10937         and (anyway) permissions cannot work until corlib is loaded.
10938
10939 2005-03-23  Martin Baulig  <martin@ximian.com>
10940
10941         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
10942         MONO_TYPE_GENERICINST.  
10943
10944 2005-03-23  Martin Baulig  <martin@ximian.com>
10945
10946         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
10947
10948 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
10949
10950         * class.c: added locking comments to some functions.
10951         Cache the interface offsets arrays (saves about 20 KB
10952         of runtime memory in a typical app).
10953         Reduce the time overhead in mono_class_setup_supertypes ().
10954
10955 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
10956
10957         * icall.c: speedup and fix leaks in GetMethodsByName and
10958         GetPropertiesByName.
10959
10960 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
10961
10962         * reflection.c: some locking fixes.
10963
10964 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
10965
10966         * metadata.c: added missing break in case statement.
10967
10968 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
10969
10970         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
10971         typedbyref return values. Fixes #73941.
10972
10973 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
10974
10975         * security-manager.c|h: Added demandunmanaged method and 
10976         suppressunmanagedcodesecurity class to MonoSecurityManager.
10977         Renamed aptc class to allowpartiallytrustedcallers.
10978
10979 2005-03-17  Martin Baulig  <martin@ximian.com>
10980
10981         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
10982
10983 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
10984
10985         * file-io.c: disabled file async. IO using aio_*. It uses the
10986         threadpool now. Workaround for bug #73718.
10987
10988 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
10989
10990         * assembly.h, mono-config.c: added code to deal with bundled configs
10991         for bundled assemblies.
10992
10993 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
10994
10995         * *.c, private.h: cleanup, removing old private.h header file.
10996
10997 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
10998
10999         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
11000         and throw_on_unmappable_char attributes.
11001
11002 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
11003
11004         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
11005         _ProcessName_internal.
11006
11007 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
11008
11009         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
11010         #73631.
11011
11012         * icall.c threads.c threads-types.h: Remove slothash icalls as they
11013         are no longer used.
11014
11015 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
11016
11017         * object.c (compute_class_bitmap): Add support for generics. Fixes
11018         #73527.
11019
11020 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
11021
11022         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
11023
11024 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11025
11026         * filewatcher.c: commented out the code for windows watcher, as we don't
11027         use it (we use the managed implementation instead).
11028
11029 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
11030
11031         * object-internals.h (MonoThread): Remove 'unused1' field.
11032
11033         * appdomain.c: Bump corlib version.
11034
11035         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
11036
11037         * reflection.c (mono_reflection_create_runtime_class): Remove the
11038         AssemblyBuilder.Save optimization since it causes too many problems.
11039
11040 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
11041
11042         * exception.c|h: Added mono_get_exception_reflection_type_load to
11043         create a ReflectionTypeLoadException object.
11044         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
11045         to return NULL is a InheritanceDemand fails during reflection. Updated
11046         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
11047         ReflectionTypeLoadException if an InheritanceDemand fails during 
11048         reflection. Added icall mapping for GetLinkDemandSecurity.
11049         * security-manager.c|h: Added ves_icall_System_Security_
11050         SecurityManager_GetLinkDemandSecurity internal call to return the
11051         class and methods permissions set for a LinkDemand. Removed unused
11052         fields in MonoSecurityManager.
11053
11054 2005-03-10  Martin Baulig  <martin@ximian.com>
11055
11056         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
11057         it's a generic instance.
11058
11059 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
11060
11061         * reflection.c (mono_get_object_from_blob): Applied patch from
11062         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
11063
11064         * class.c (mono_class_is_assignable_from): Another try at fixing 
11065         #73469 without breaking anything.
11066
11067 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
11068
11069         * class.c: (mono_class_is_assignable_from): Revert the last changes
11070         since they don't work with generics.
11071         
11072         * class.c (mono_class_is_assignable_from): Fix build bustage.
11073
11074         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
11075         the managed IsAssignableFrom method. Fixes #73469.
11076
11077         * reflection.c (mono_reflection_call_is_assignable_from): New helper
11078         function.
11079
11080 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
11081
11082         * object.c (mono_load_remote_field_new): Fix returning uninitialized
11083         memory when the remoting callback does not sets the out arguments.
11084         Fixes #73007.
11085
11086         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
11087         by mistake.
11088
11089         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
11090
11091         * object-internals.h (MonoStackFrame): Sync with managed object layout.
11092
11093         * appdomain.c: Bump corlib version.
11094
11095 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
11096
11097         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
11098         function.
11099
11100         * threads.c (mono_thread_attach): Detect threads which are not started
11101         by the GC pthread wrappers.
11102
11103 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
11104
11105         * icall.c: Added new icall for RNG.
11106         * rand.c|h: Added new icall to open the RNG. This allows to share a 
11107         single handle on Linux to access /dev/urandom and fix #73183.
11108
11109 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
11110
11111         * object.c: setting the new vtable in a transparent proxy object must
11112         not change the GC descriptor.
11113
11114 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11115
11116         * object.c: fixed compilation without GCJ support.
11117         * reflection.c: for runtime-created types ensure klass->has_references
11118         is correct (bug #73215).
11119
11120 2005-03-02  Martin Baulig  <martin@ximian.com>
11121
11122         * class.c (mono_class_is_assignable_from): Make this work if
11123         `oklass' is a generic instance; fixes #72831.
11124
11125 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
11126
11127         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
11128         with hasthis set.
11129         
11130         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
11131
11132         * marshal.c: Reorganize native->managed marshalling code to also use
11133         the emit_marshal_... functions.
11134
11135 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
11136
11137         * object.c: typed allocs have issues with bitmap sizes > 30,
11138         so check for max_set >= 30.
11139
11140 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
11141
11142         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
11143         managed code. Fixes #73012.
11144
11145         * metadata.h (MonoMarshalSpec): Add elem_mult field.
11146
11147         * metadata.c reflection.c: Load/Emit elem_mult as well.
11148         
11149         * metadata.h (MonoMarshalSpec): Add comment.
11150
11151         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
11152
11153         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
11154         num_elem to -1 if not given.
11155
11156         * object-internals.h (MonoReflectionMarshal): Add has_size field.
11157
11158         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
11159         given values.
11160
11161 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
11162
11163         * null-gc.c (mono_gc_free_fixed): Was not compilable.
11164
11165 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
11166
11167         * reflection.c (encode_marshal_blob): Encode param_num field as well.
11168
11169         * object-internals.h (MonoReflectionMarshal): Add param_num field.
11170
11171 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
11172
11173         * object.c: generalized the reference bitmap creation
11174         and added hooks for the new GC.
11175         * class-internals.c: removed the gc_bitmap field from MonoClass.
11176
11177 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11178
11179         * domain.c: help the compiler to produce better code
11180         in mono_jit_info_table_find ().
11181
11182 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
11183
11184         * object.c: make all allocations look typed.
11185
11186 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11187
11188         * socket-io.c: load Mono.Posix if it's not loaded already
11189         (fixes bug#73033).
11190
11191 2005-02-24  Martin Baulig  <martin@ximian.com>
11192
11193         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
11194         * reflection.c (dup_type): Likewise.
11195
11196 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
11197
11198         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
11199         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
11200
11201 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11202
11203         * domain.c, threads.c, object-internals.h: make the critical thread
11204         local vars use the fast access mode (even when we're compiled in
11205         a lib). Provide accessors to be used by the jit during codegen.
11206
11207 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11208
11209         * appdomain.c: Changed hook functios behavior to include
11210         support for the reflection only assemblies. Some icalls were changed
11211         to support the mentioned assemblies too. Signatures of static methods
11212         try_assembly_resolve and real_load now have an additional parameter:
11213         refonly.
11214
11215         * assembly.c: General changes to mono_assembly_ methods to support
11216         reflection only api. Functions mono_assembly_open, mono_assembly_load,
11217         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
11218         suffix, to support an additional gbool parameter to specify whether
11219         the assembli is reflection only or not. Created some new hook functions 
11220         to add support for reflection only assemblies. Signatures of static 
11221         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
11222         have now an additional parameter: refonly.
11223
11224         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
11225         indicating whether the assembly is reflection only or not.
11226
11227         * exception.c: Add mono_get_exception_invalid_operation.
11228
11229         * icall.c: Throw an InvalidOperationException when trying to invoke
11230         a property/method/event, or trying to set/get the value of a field.
11231         Also add an icall to retrieve the ref_only flag to the
11232         MonoReflectionAssembly.
11233
11234 2005-02-23  Chris Toshok  <toshok@ximian.com>
11235
11236         Part of fix for #72827.
11237         * mono-debug.c (mono_debug_add_method): add lexical block data to
11238         the info we write.  Kind of a hack at the moment - we copy the
11239         lexical block info from the MonoDebugMethodInfo to the
11240         MonoDebugMethodJitInfo here, before writing it.
11241         (mono_debug_read_method): read the lexical block info.
11242
11243         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
11244
11245         * debug-mono-symfile.h: add lexical block support.
11246
11247         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
11248         support.
11249
11250 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
11251
11252         * loader.c (mono_lookup_pinvoke_call): Fix warning.
11253
11254         * object.c (mono_runtime_free_method): Call mono_free_method () and
11255         put the TODOs there.
11256
11257         * loader.c (mono_free_method): Free up most memory allocated for 
11258         dynamic methods.
11259
11260 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
11261
11262         * reflection.c: properly flag a Type argument to a
11263         named custom attr value (bug #72248).
11264
11265 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
11266
11267         * reflection.c: reduce code duplication in named custom
11268         attribute encoding.
11269
11270 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
11271
11272         * reflection.c: properly encode custom attrs of type object
11273         (bug #72649).
11274
11275 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
11276
11277         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
11278
11279 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
11280
11281         * socket-io.c: load System.dll if it's not loaded already
11282         (bug #72850 and #70477).
11283
11284 2005-02-21  Martin Baulig  <martin@ximian.com>
11285
11286         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
11287         generic instances.
11288
11289 2005-02-21  Martin Baulig  <martin@ximian.com>
11290
11291         * reflection.c (mono_image_build_metadata): We also need to
11292         "fixup" the MethodImpl table after we computed the final method
11293         indices.  Call fixup_methodimpl() to do that.
11294         (fixup_methodimpl): New private method.
11295
11296 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
11297
11298         * assembly.c: special case mscorlib.dll (bug#72536),
11299         patch from Carlos Alberto Cortez.
11300
11301 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
11302
11303         * threads-types.h threads.c: Fix build bustage.
11304
11305         * threads.c: Use a union for long<->double conversions.
11306
11307         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
11308         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
11309
11310         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
11311         containing the checkpoint call with NOT_TAKEN.
11312         
11313         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
11314         checkpoint before pushing the arguments, so they won't have to be
11315         spilled to stack.
11316
11317 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11318
11319         * domain.c, assembly.c, domain-internals.h: make some data
11320         const and relocation-free.
11321
11322 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
11323
11324         * object.c, appdomain.c, class-internals.h: introduce the
11325         MonoClassRuntimeInfo structure to hold the info needed to
11326         use a class at runtime. Made mono_class_vtable() lock-free
11327         for all the appdomains.
11328
11329 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
11330
11331         * metadata-internals.h, image.c: introduce a per-image mempool to
11332         be used for memory that has the same lifetime as the image.
11333
11334 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
11335
11336         * domain.c: In mono_init_internal(), instead of selecting the first
11337         runtime version supported by an executable, get a list of all
11338         supported versions and select the one for which an mscorlib exists
11339         (since even if the runtime supports a given version, it doesn't mean
11340         that the framework for that version is installed).
11341         Modified get_runtimes_from_exe to support this behavior.
11342         In supported_runtimes, added information about additional system
11343         assembly versions.
11344         
11345         * assembly.c: Added support for more than one system assembly version
11346         per runtime version. Updated the assembly list.
11347         In mono_assembly_remap_version, removed the initial version check,
11348         since we don't know to which version we need to compare until we
11349         get the version set on which the assembly is based.
11350         Moved the code for loading corlib into the new method
11351         mono_assembly_load_corlib(), so it can be used by the initialization
11352         code.
11353         
11354         * domain-internals.h: Updated data structures and added declaration
11355         for mono_assembly_load_corlib.
11356
11357 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
11358
11359         * reflection.c (resolve_object): Fix the creation of the signature in 
11360         the SignatureHelper case.
11361
11362         * assembly.c (mono_assembly_remap_version): Fix binary search.
11363         
11364 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
11365  
11366         * class.c: Added inheritance check when a method is overloaded (from a
11367         virtual method or when implementing an interface) and when a class is
11368         inherited. Added functions to set a failure for a class and to 
11369         retreive the exception from a failure.
11370         * class-internals.h: Added fields to MonoClass to keep the exception
11371         information status for inheritance (or other exceptions) to be thrown
11372         later (i.e. not at load time).
11373         * object.c: Throw the inheritance SecurityException when a type is to 
11374         be created with either class or method inheritance violations.
11375         * reflection.c|h: Fix when getting declsec from a class. Removed 
11376         unrequired code for class. Improved sanity in parameter naming.
11377         * security-manager.c|h: Added functions to check for class and method
11378         inheritance.
11379
11380 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
11381
11382         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
11383         and has_finalize in dynamic types as well.
11384
11385 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
11386
11387         * culture-info-table.h : fixed currency format for en-GB (and so on).
11388
11389 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
11390
11391         * gc.c: ensure the GC handles never have 0 as a value.
11392
11393 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
11394
11395         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
11396         a pointer to a struct to unmanaged code. Fixes #72625.
11397
11398 2005-02-16  Martin Baulig  <martin@ximian.com>
11399
11400         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
11401
11402 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
11403
11404         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
11405
11406 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
11407
11408         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
11409
11410         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
11411         UnmanagedFunctionPointerAttribute, use it for determining calling convention
11412         etc. Fixes #71471.
11413
11414         * reflection.c (mono_custom_attrs_get_attr): New helper function.
11415
11416         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
11417
11418 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
11419
11420         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
11421         changes to make the current context a field in MonoThread.
11422
11423 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
11424
11425         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
11426         the last change.
11427         
11428         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
11429         extracted from mono_marshal_get_native_wrapper.
11430
11431         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
11432         to create wrappers around native functions.
11433
11434         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
11435         delegates for arbitrary function pointers. Fixes #71472.
11436
11437 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11438
11439         * threads.c: cleaned up the code a little.
11440
11441 2005-02-15  Martin Baulig  <martin@ximian.com>
11442
11443         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
11444         the data table.
11445
11446         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
11447         allocate larger chunks if needed.
11448
11449 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11450
11451         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
11452         in by mistake.
11453
11454 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
11455
11456         * domain.c: keep the domains in an array and ensure the domain ids
11457         are kept small, so they can be used as indexes to domain-specific data
11458         with a small memory overhead.
11459
11460 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
11461
11462         * icall.c: Handle byref types in Type icalls. Fixes #72544.
11463
11464 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
11465
11466         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
11467
11468 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
11469
11470         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
11471
11472         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
11473         values.
11474
11475         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
11476         
11477 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
11478
11479         * domain-internals.h: add the hashtable here.
11480
11481         * class-internals.h: Remove `info' from MonoMethod
11482
11483         * domain.c: Add a new hashtable, jit_trampoline_hash
11484
11485 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
11486
11487         * object.c: don't set the value of static fields
11488         (fixes bug#72494).
11489
11490 2005-02-11  Martin Baulig  <martin@ximian.com>
11491
11492         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
11493         (mono_debug_add_method): Silently ignore the method if it's too big.
11494         (mono_debug_add_type): Likewise.
11495
11496 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
11497
11498         * threads.c, appdomain.c: remove #ifdefs from the code.
11499
11500 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
11501
11502         * metadata-internals.h: Added flags to MonoAssembly to cache the most
11503         common security informations. This allows us to stay in unmanaged code
11504         when doing LinkDemand and it's special cases (except for the first 
11505         time for initialization). The flags a very much used with --security.
11506         * reflection.c|h: Added code to get declarative security attributes 
11507         for LinkDemand and InheritanceDemand. This required to refactor the
11508         existing code for Demand.
11509         * security-manager.c|h: Added new method fields for the special cases
11510         of LinkDemand.
11511
11512 2005-02-10  Martin Baulig  <martin@ximian.com>
11513
11514         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
11515         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
11516
11517 2005-02-10  Martin Baulig  <martin@ximian.com>
11518
11519         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
11520         debugging code; this is almost a complete rewrite.
11521
11522         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
11523
11524 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11525
11526         * domain.c, object.h: expose mono_string_equal () and 
11527         mono_string_hash ().
11528         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
11529         it's implemented in managed code.
11530
11531 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11532
11533         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
11534         lo leak objects between appdomains.
11535
11536 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11537
11538         * assembly.c: old compilers compilation fix from 
11539         robertj@gmx.net (Robert Jordan).
11540
11541 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
11542
11543         * class-internals.h: Little reminder for the future.
11544
11545         * debug-helpers.c: Fix up wrapper_type_names
11546
11547 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11548
11549         * image.c, metadata-internals.h: when loading an image from a file,
11550         mmap all of it and use the same codepaths as when using a
11551         in-memory image: the code is simpler and we use less memory
11552         (both writable and readonly).
11553
11554 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11555
11556         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
11557         API to alloc runtime data structures that need to be tracked by the
11558         GC and contain pointers.
11559         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
11560         make the code more readable and eventually use a different GC.
11561
11562 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
11563
11564         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
11565         for out arguments.
11566         
11567 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
11568
11569         * object.c: In release_type_locks(), don't release the cctor lock
11570         if it has already been released. This fixes a crash in the
11571         thread5 test.
11572
11573 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
11574
11575         * gc.c, marshal.c, icall.c: register a delegate for finalization
11576         only when the native function pointer has been allocated for it.
11577
11578 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11579
11580         * object.c: cleaned up some code, allocate objects that are
11581         pointer free with the atomic malloc variant. Allocate memory
11582         for static data from the mempool if it's pointer-free.
11583         Allocate the bounds array at the end of the array data, when needed.
11584         * object-internals.h, object.h: move a private function in a private
11585         header.
11586         * class.c: handle missing case in tracking references in fields.
11587
11588 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
11589
11590         * class.c, class-internals.h: keep track if a type has
11591         reference fields in either the instance or static fields.
11592
11593 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
11594
11595         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
11596         and renamed to MonoRuntimeInfo. Added fields to store the expected
11597         framework assembly version. Changed mono_get_framework_version and
11598         mono_get_runtime_version for a single mono_get_runtime_info method.
11599         
11600         * assembly.c: Added method to remap system assembly versions to the
11601         current executing runtime version. Removed old mapping code.
11602         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
11603         
11604         * icall.c, reflection.c: Track api changes.
11605
11606 2005-02-06  Miguel de Icaza  <miguel@novell.com>
11607
11608         * loader.c (method_from_memberref): Improve error reporting,
11609         produce the class name instead of the typeref/typedef index. 
11610
11611 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
11612
11613         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
11614
11615 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11616
11617         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
11618         stdcall and charset name mangling.  Reorganize the code and add
11619         some tracing stuff.
11620
11621 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11622
11623         * monodiet.c: More iters!
11624
11625         * marshal.c: Iter usage.
11626
11627         * icall.c: Iter usage.
11628
11629         * object.c: Use iters.
11630
11631         * debug-helpers.c: More iters
11632
11633 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11634
11635         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
11636         under win32.
11637
11638 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
11639
11640         * mono-debug-debugger.c: use iters
11641
11642         * class.c, class-internals.h: mono_class_setup_events is static
11643         now
11644
11645         * All callers: use iters
11646
11647 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
11648
11649         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
11650         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
11651
11652 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11653
11654         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
11655
11656         * marshal.h: Add prototypes for ldfld/stfld_remote.
11657
11658         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
11659         this is called during startup.
11660         
11661 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
11662
11663         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
11664         MonoThreadsSync struct private in monitor.c. Changed the way
11665         MonoThreadsSync is allocated so it's faster and there is no
11666         need to keep track of it with a finalizer and it uses less memory.
11667         This also finally allows us to allocate mono objects as ptrfree when
11668         there are no reference fields.
11669
11670 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
11671
11672         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
11673         disappearing link to the GC interface and use them to simplify
11674         the gchandles code.
11675
11676 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
11677
11678         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
11679         stfld_remote which call mono_load/store_field_new. This allows methods
11680         calling ldfld/stfld wrappers to be AOTed.
11681
11682         * console-io.c: Include sys/filio.h under solaris.
11683         
11684         * console-io.c: Include curses.h if needed correctly.
11685
11686 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11687         
11688         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
11689         method->klass as well.
11690
11691         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
11692
11693         * class.c (mono_class_init): Switch on lazy initialization of 
11694         methods.
11695
11696         * class.c (mono_class_get_finalizer): Handle the case when the 
11697         finalizer is inherited.
11698
11699 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11700
11701         * console-io.c: <curses.h> is needed by term.h on solaris.
11702
11703 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
11704
11705         * icall.c, class-internals.h, monodiet.c, class.c: Remove
11706         mono_class_setup_properties where possible. Remove this ftn from
11707         the header file, and make it static.
11708
11709 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
11710
11711         * loader.c: Add missing setup_... call.
11712
11713         * class.c: Add missing setup_... calls.
11714
11715         * class.c (mono_class_init): Switch on lazy initialization of 
11716         the generic vtable.
11717         
11718         * class.c (mono_class_init): Fix generics broken by the recent changes.
11719
11720         * monodiet.c (handle_type): Add missing setup_... calls.
11721
11722         * class.c: Back out garbage in previous patch.
11723         
11724         * class.c: Add missing setup_... calls.
11725
11726         * class.c (mono_class_get_method_from_name_flags): Avoid calling
11727         mono_class_setup_methods () if possible.
11728
11729         * class-internals.h (MonoClass): Add 'has_cctor' flag.
11730
11731         * class-internals.h (MonoCachedClassInfo): New structure.
11732
11733         * class.c: Initialize properties and events fields of MonoClass lazily.
11734
11735         * class.c: Add infrastructure for lazily initializing the methods and
11736         vtable fields of MonoClass. Not yet used.
11737
11738         * class.c (mono_class_get_finalizer): New helper function.
11739
11740         * class.c: Add infrastructure for loading some class related data from
11741         an AOT file.
11742
11743         * object.c: Add infrastructure for initializing the vtable from data
11744         in the AOT file.
11745
11746         * gc.c (run_finalize): Use mono_class_get_finalizer ().
11747
11748         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
11749         appropriate initialization function before accessing parts of the
11750         MonoClass structure.
11751
11752         * marshal.c: Fix warnings.
11753         
11754         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
11755
11756         * mono-debug-debugger.c (get_exception_message): Use 
11757         mono_class_get_method_from_name_flags ().
11758
11759 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
11760
11761         * reflection.c, appdomain.c: Replace a few manual searches that
11762         Zoltan missed. (Paolo approved this part of my initial patch).
11763
11764 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
11765
11766         * profiler.c: disable recording statistical events at report time.
11767
11768 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11769
11770         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
11771         to byteswap arrays of enum values, too (bug #72080).
11772
11773 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
11774
11775         * appdomain.c (set_domain_search_path): Allow this to be called if
11776         domain->setup is not yet set.
11777
11778         * loader.c (mono_method_get_index): New helper function.
11779
11780         * loader.c reflection.c: Use mono_method_get_index ().
11781
11782         * class.c (mono_class_get_method_from_name_flags): New helper method.
11783
11784         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
11785         this.
11786
11787         * class.c (mono_class_get_cctor): New helper method.
11788
11789         * string-icalls.c object.c class.c marshal.c reflection.c: Use
11790         mono_class_get_method () to look up methods.
11791
11792 2005-02-01  Miguel de Icaza  <miguel@novell.com>
11793
11794         * console-io.c: Fix the build, this should work on Windows.
11795
11796 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
11797
11798         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
11799         be set to null to keep things valid
11800
11801 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11802
11803         * icall.c: added Console 2.0 icalls.
11804         * Makefile.am: added console-io.[ch]
11805         * console-io.[ch]: internal calls for Console 2.0 API.
11806
11807 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11808
11809         * class.c: make sure we consider all the interfaces
11810         when calculating max_interface_id (bug found by
11811         Jeroen Frijters running ikvm).
11812
11813 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
11814
11815         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
11816         valuetype fields to null.
11817
11818         * object.c (set_value): Ditto. Fixes #71669.    
11819
11820 2005-01-31  Martin Baulig  <martin@ximian.com>
11821
11822         * metadata.c (mono_metadata_has_generic_params): New public
11823         function; checks whether something is a generic method.
11824
11825 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
11826
11827         * appdomain.c: fix infinite recursion when adding assemblies.
11828
11829 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
11830
11831         * object.c: Fix small typo to return all items for Environment.
11832         GetCommandLineArgs.
11833
11834 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
11835
11836         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
11837         reflection.c: more domain and assembly-unload related fixes
11838         and memory leaks plugs.
11839
11840 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
11841
11842         * 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.
11843
11844 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
11845
11846         * loader.c (mono_method_signature): Make this method lazy
11847         (mono_get_method_from_token): Don't computate the signature here.
11848
11849         Doing this saves quite a bit of memory. I got 90 kb on starting up
11850         monodoc. It should also save some disk reads on startup.
11851
11852         * *: MonoMethod->signature might be NULL now. You *MUST* use
11853         mono_method_signature.
11854
11855 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
11856
11857         * object.c (mono_runtime_get_main_args): Return an array from the
11858         current domain here. Fixes #71938.
11859
11860 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
11861
11862         * monitor.c: formatting changes to comply with the
11863         mono coding style and remove #ifdefs from the code.
11864
11865 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11866
11867         * metadata.c, private.h: remove some unneeded data
11868         and use a more compact representation for table schemas.
11869
11870 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
11871
11872         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
11873         to get a better distribution in hash tables.
11874         * *.c: use mono_aligned_addr_hash() where appropriate.
11875         * assembly.c: make var static.
11876
11877 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
11878
11879         * domain-internals.h: Put MonoJitInfo on a diet.
11880
11881         * domain.c: Fix a warning.
11882
11883 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
11884
11885         * gc.c: rework the gc handles code to reuse handles
11886         when freed.
11887
11888 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
11889
11890         * domain.c: fixed long standing bug in mono_string_equal() which
11891         was brought to light with the ldstr changes.
11892
11893 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
11894
11895         * reflection.c: Remove warning by adding missing include for marshal.h
11896
11897 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
11898
11899         * domain.c, object.c: change the ldstr_table to hold
11900         MonoString* as keys: makes the runtime isinterned lookup
11901         faster and simplifies memory management.
11902
11903 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
11904  
11905         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
11906         possible to add imperative security checks before calling the icall.
11907         * reflection.c: Return security attributes on the original MonoMethod
11908         (and not the wrapped one). This fix permissions on icalls.
11909
11910 2005-01-25  Dick Porter  <dick@ximian.com>
11911
11912         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
11913         the check for mktime() support actually test the mktime() return
11914         value.  "Fixes" bug 71682, though the output is still different to
11915         MS.
11916
11917 2005-01-25  Martin Baulig  <martin@ximian.com>
11918
11919         * class.c (mono_class_is_assignable_from): Make this work for
11920         generic instances.
11921
11922 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
11923
11924         * marshal.c (mono_string_utf8_to_builder)
11925         (mono_string_builder_to_utf16): We might not have ownership of the
11926         string. In thise case, we need to create a new buffer.
11927
11928         * object-internals.h (mono_stringbuilder_capacity): sb->str might
11929         be null, in which case, use the default capacity.
11930
11931 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
11932
11933         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
11934         GC events to the profiler.
11935
11936 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
11937
11938         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
11939         if you don't want the GC to run.
11940
11941 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
11942
11943         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
11944         start providing a GC API and keeping different implementations in
11945         their own file.
11946         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
11947
11948 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
11949
11950         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
11951         mmap rather than allocating a huge buffer.
11952         (mono_debug_close_mono_symbol_file): Free the buffer allocated
11953         above.
11954
11955 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
11956
11957         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
11958         and CheckExecutionRights.
11959         * reflection.c|h: Keep the index of the declarative security to be 
11960         used, instead of the pointer, when AOT compiler is used. Also add 
11961         class initialization when requesting demands.
11962         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
11963         CheckExecutionRights. Both properties are now FALSE by default, and
11964         unmodifiable, unless the --security option is used.
11965
11966 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
11967
11968         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
11969         reflection.c: properly refcount images and assemblies, many leaks fixed.
11970
11971 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11972
11973         * threadpool.c: increase the timeout for threads in the thread pool to
11974         10s.  Fixes bug #67159.
11975
11976 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
11977
11978         * class-internals.h: Sun's compiler insists on explicit
11979         signed on bit fields to handle then correctly.
11980
11981 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
11982
11983         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
11984         Make the size of the array fit only the number of invalid path
11985         chars that we have.
11986
11987         * class.c (_mono_class_get): Improve the error reporting when a
11988         class referenced is not found, to assist debugging. 
11989
11990 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
11991
11992         * threads.c: fix off-by-one error.
11993         * domain.c: free data allocated in the domain.
11994
11995 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
11996
11997         * reflection.c (mono_method_body_get_object): Fill out exception info
11998         as well.
11999
12000         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
12001         structure.
12002         
12003 2005-01-19  Martin Baulig  <martin@ximian.com>
12004
12005         * loader.c (mono_get_method_constrained): Make this work again.
12006
12007 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
12008
12009         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
12010         guint16 to match the managed side.
12011
12012         * reflection.c (mono_reflection_body_get_object): Fill out local
12013         variables array.
12014
12015         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
12016         as well.
12017
12018         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
12019         'local_var_sig_token'.
12020
12021 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
12022
12023         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
12024         System.Drawing.
12025
12026         * reflection.c (mono_method_body_get_object): Handle abstract and
12027         runtime methods.
12028
12029 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
12030
12031         * marshal.c, loader.c, class-internals.h, reflection.c:
12032         store the emthod data for a wrapper in an array instead of a list.
12033
12034 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
12035
12036         * marshal.c: change the code to allocate memory more
12037         conservatively for method wrappers.
12038
12039 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
12040
12041         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
12042         fields from MonoClass to the marshal info structure where they belong.
12043
12044 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
12045
12046         * class.c, object.c, class-internals.h, marshal.c: rearrange
12047         some fields and tweak some types to lower memory usage.
12048
12049 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
12050
12051         * threads.c (signal_thread_state_change): Handle the case when the
12052         target thread is the current thread.
12053
12054         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
12055
12056         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
12057         emit_ptr_to_object_conv. 
12058
12059         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
12060         marshalling. Fixes #71352.
12061
12062 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
12063
12064         * metadata.h, blob.h: move table enum to blob.h so it can be included
12065         in any header.
12066         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
12067         cut the size of MonoImage/MonoDynamicImage.
12068
12069 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
12070
12071         * profiler.c (mono_profiler_install_simple): Fix default arguments.
12072
12073 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
12074
12075         * reflection.c, reflection.h, icall.c: add a function to check
12076         if an attribute type is defined for a metadata object.
12077
12078 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
12079
12080         * object-internals.h: Added some needed fields from StringBuilder class.
12081         * marshal.c: Set the maxCapacity when creating a StringBuilder.
12082
12083 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
12084
12085         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
12086         threads before shutting down the runtime.
12087
12088         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
12089
12090 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
12091
12092         * object-internal.h, threads.c: implement stacksize and 
12093         parameterized thread start functionality (requires
12094         matching corlib). Marked broken code for later removal.
12095
12096 2005-01-12  Martin Baulig  <martin@ximian.com>
12097
12098         * class-internals.h (MonoGenericClass): Moved the `initialized'
12099         flag to MonoDynamicGenericClass, removed `init_pending'.
12100         (MonoGenericInst): Added `is_reference' flag.
12101
12102 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
12103
12104         * reflection.c (mono_image_create_pefile): Only set the pe_offset
12105         inside the MSDOS header. Fixes #71201.
12106
12107         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
12108         gc thread.
12109         (mono_domain_finalize): Ditto.
12110
12111 2005-01-12  Martin Baulig  <martin@ximian.com>
12112
12113         * class.c (mono_get_shared_generic_class): Use the cache for
12114         non-dynamic generic classes.
12115
12116         * class-internals.h (mono_class_create_generic_2): Removed
12117         function prototype, this function is now static inside class.c.
12118
12119         * class.c (mono_class_create_generic_2): Made this static, only
12120         call it from mono_class_init() and mono_class_setup_parent().
12121         (collect_implemented_interfaces_aux): Call mono_class_init() on
12122         the interfaces we collect.
12123         (mono_class_setup_vtable): Call mono_class_init (class->parent).
12124
12125 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
12126
12127         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
12128         it a real thread handle.
12129
12130         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
12131         MonoJitExceptionInfo, since each catch clause needs its own variable.
12132         
12133 2005-01-11  Dick Porter  <dick@ximian.com>
12134
12135         * image.c (mono_pe_file_open): New variant on mono_image_open()
12136         that does not set up the CLI metadata; used for FileVersionInfo so
12137         it can get the data for windows binaries too.
12138         
12139         * process.c (process_read_string_block): Don't read off the end of
12140         the StringTable block.
12141
12142         These both fix bug 70766.
12143
12144 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
12145
12146         * gc.c: set some fields to NULL at GC cleanup time.
12147         * threads.c: if we quit the main thread, call exit ().
12148
12149 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
12150
12151         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
12152
12153 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
12154
12155         * threads.h, threads.c, object.c: added accessor and settor for
12156         main_thread. Handle it specially when exiting from it: wait
12157         for other foreground threads to exit.
12158
12159 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
12160
12161         * process.c, verify.c: remove some bloat.
12162
12163 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
12164
12165         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
12166         the calling convention to cdecl under win32.
12167
12168 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
12169
12170         * object.c (mono_object_get_size): New function to get the size of
12171         an object instance.
12172
12173         * profiler.c (simple_allocation): Use above.
12174
12175 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
12176
12177         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
12178         ves_icall_System_AppDomain_getRootDomain (as it's not required to
12179         get an appdomain by it's id and we can't assume the root's id is 0).
12180         * domain-internals.h: Change the function prototype to match.
12181         * icall.c: Change the icall table for AppDomain.
12182
12183 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
12184
12185         * locales.c (string_invariant_compare_char): Only compute
12186         GUnicodeTypes in the case where we need them.  Test for ordinality
12187         first and return if so.
12188
12189         From the commit:
12190
12191                 /*
12192                  * FIXME: here we must use the information from c1type and c2type
12193                  * to find out the proper collation, even on the InvariantCulture, the
12194                  * sorting is not done by computing the unicode values, but their
12195                  * actual sort order.
12196                  */
12197
12198 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
12199
12200         * loader.c: for P/Invoke methods, allow the "Internal" shared
12201         library name to refer to the calling process symbol namespace.
12202
12203 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
12204
12205         * Makefile.am: Add the security manager to the build.
12206         * security-manager.c|h: New. Initialization of the security manager.
12207
12208 2005-01-07  Dick Porter  <dick@ximian.com>
12209
12210         * threads.c: 
12211         * monitor.c: Update thread state during Monitor and WaitHandle
12212         waits.  Fixes bug 71031.
12213
12214 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
12215
12216         * reflection.c (property_encode_signature): Correctly handle when the
12217         property has no methods.
12218
12219 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
12220
12221         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
12222         
12223         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
12224         fields from mb, not rmb. Fixes #71017.
12225
12226         * marshal.c (emit_ptr_to_str_conv): Add support for 
12227         ByValTStr -> string conversion. Fixes #71015.
12228
12229         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
12230
12231         * mempool.c (mono_mempool_contains_addr): New helper function.
12232
12233 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
12234
12235         * metadata.c (mono_metadata_compute_size): Fix size calculation of
12236         HasSematics encoded fields.
12237         
12238         * metadata.c (mono_type_to_unmanaged): Improve error message for 
12239         invalid string marshalling.
12240
12241         * metadata.c: Fix warnings.
12242         
12243 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
12244
12245         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
12246         profiler support.
12247
12248 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
12249
12250         * domain.c object.c domain-internals.h: Revert part of r38077 since the
12251         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
12252         tests.
12253
12254 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
12255
12256         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
12257         so methods containing these can be AOTed.
12258
12259 2005-01-03  Martin Baulig  <martin@ximian.com>
12260
12261         * loader.c (find_method): Removed the hack for generic instances.
12262         (method_from_memberref): If our parent is a generic instance, pass
12263         its generic type definition to find_method() and then inflate the
12264         method.
12265         (mono_get_method_constrained): Pass the generic type definition to
12266         find_method() and inflate the method later.
12267
12268         * class-internals.h (MonoStats): Added `generic_class_count'.
12269
12270         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
12271         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
12272
12273         * reflection.c (mono_custom_attrs_from_params): Don't ignore
12274         generic type definitions.
12275
12276 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
12277
12278         * loader.c icall.c: Fix warnings.
12279
12280 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
12281
12282         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
12283         blittable types. Fixes #70864.
12284
12285 2004-12-29  Martin Baulig  <martin@ximian.com>
12286
12287         * icall.c
12288         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
12289
12290         * reflection.c (mono_method_get_object): Create a
12291         "System.Reflection.MonoGenericMethod" for inflated methods; don't
12292         call mono_get_inflated_method().
12293
12294         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
12295
12296 2004-12-27  Martin Baulig  <martin@ximian.com>
12297
12298         * class-internals.h (MonoMethod): Added `is_inflated' flag.
12299         (MonoMethodInflated): Added `inflated' field.
12300
12301         * class.c (mono_class_inflate_generic_method): Don't really
12302         inflate the method here; just set the `is_inflated' flag in the
12303         MonoMethod.
12304         (mono_class_get_inflated_method): Actually inflate the method here
12305         if it's not already inflated; we use the MonoMethodInflated's new
12306         `inflated' field as a cache.
12307
12308 2004-12-26  Martin Baulig  <martin@ximian.com>
12309
12310         * class.c
12311         (inflate_generic_class): Moved some code out of inflate_generic_type().
12312         (mono_class_inflate_generic_method): If we're already inflated,
12313         inflate the context and use the declaring method; ie. make sure
12314         the declaring method of an inflated method is always the generic
12315         method definition.
12316         (mono_class_create_from_typedef): Create
12317         `class->generic_container->context->gclass'.
12318
12319 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
12320
12321         * metadata-internals.h, marshal.c, reflection.c: More
12322         MonoGHashTable->GHashTable.
12323
12324         * domain-internals.h, class.c: Change MonoGHashTable's into
12325         GHashTables for some cases where no gc stuff is used
12326
12327         All users: update apis
12328
12329 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
12330
12331         * metadata.c (builtin_types): Make this `const'. Makes this get
12332         put into the shareable section.
12333         (mono_metadata_init): Casts to make gcc happy.
12334
12335 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
12336
12337         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
12338
12339 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
12340
12341         * icall.c: Added an internal call to retrieve the position and length
12342         of assembly-level declarative security attributes (RequestMinimum, 
12343         RequestOptional and RequestRefuse). This is used by the Assembly class
12344         to re-create the corresponding permission sets.
12345
12346 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
12347
12348         * marshal.c: fix the stelemref wrapper to be type correct
12349         (and faster).
12350
12351 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
12352
12353         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
12354         to do key & 0x7fffffff. Hashtable already does this. It just
12355         results in longer code.
12356
12357 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
12358
12359         * appdomain.c: Bump corlib version.
12360         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
12361         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
12362         * reflection.c|h: Add functions to get declarative security infos
12363         (blob position and length) for assemblies, classes and methods.
12364
12365 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
12366
12367         * reflection.c: sort the constant table (bug #70693).
12368
12369 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
12370
12371         * object-internals.h, threads.c, domain.c: add accessors for
12372         the MonoThread and MonoDomain tls keys.
12373
12374 2004-12-18  Martin Baulig  <martin@ximian.com>
12375
12376         * class.c (inflate_generic_type): If we're inflating a generic
12377         instance, set `ngclass->context->container = context->container';
12378         ie. the container we inflated into.
12379
12380         * metadata.c (mono_metadata_parse_generic_param): Reflect above
12381         inflate_generic_type() changes.
12382
12383 2004-12-17  Martin Baulig  <martin@ximian.com>
12384
12385         * class-internals.h
12386         (MonoGenericClass): Replaced `MonoType *generic_type' with
12387         `MonoClass *generic_class'.  Removed `dynamic_info'; if
12388         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
12389         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
12390
12391 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
12392
12393         * exception.c (mono_exception_from_token): New helper function.
12394
12395 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
12396
12397         * assembly.c (mono_assembly_load_with_partial_name): Call 
12398         mono_assembly_loaded before invoking the preload hooks. Fixes
12399         #70564.
12400
12401         * object-internals.h (MonoThread): Change culture_info and 
12402         ui_culture_info into an array.
12403
12404         * threads.c: Cache culture info objects from more than one appdomain.
12405
12406         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
12407         current UI culture.
12408
12409 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
12410
12411         * threads.h threads.c appdomain.c: Clear the culture_info field of
12412         all threads during unloading if they point to an object in the dying
12413         appdomain.
12414
12415 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
12416
12417         * culture-info.h (TextInfoEntry): New struct
12418         * object-internals.h: sync with managed
12419         * locales.c: fill the `text_info_data' field
12420         * culture-info-tables.h: update
12421
12422 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
12423
12424         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
12425         collector.
12426
12427 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
12428
12429         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
12430         (ves_icall_ModuleBuilder_getMethodToken): Ditto
12431
12432 2004-12-12  Martin Baulig  <martin@ximian.com>
12433
12434         * mono-debug-debugger.c (write_type): If we're an enum and the
12435         builtin types have already been initialized, call mono_class_init().
12436
12437 2004-12-11  Martin Baulig  <martin@ximian.com>
12438
12439         * metadata.c (mono_metadata_load_generic_params): Added
12440         `MonoGenericContainer *parent_container' argument; automatically
12441         compute `container->is_method'; pass the correct owner to
12442         get_constraints().      
12443
12444         * reflection.c (compare_genericparam): Sort the GenericParam table
12445         according to increasing owners. 
12446
12447 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
12448
12449         * profiler.c: allow disabling the default profiler.
12450
12451 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
12452
12453         * decimal.c, icall.c: allow disabling System.Decimal support.
12454
12455 2004-12-09  Marek Safar <marek.safar@seznam.cz>
12456
12457         * reflection.c: Add support for null attribute arguments.
12458
12459 2004-12-09  Martin Baulig  <martin@ximian.com>
12460
12461         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
12462         names to get rid of compiler warnings.
12463
12464 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12465
12466         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
12467         mono_marshal_load_type_info (). Fixes #69625.
12468         (mono_marshal_get_ptr_to_struct): Likewise.
12469
12470 2004-12-08  Martin Baulig  <martin@ximian.com>
12471
12472         * mono-debug.h: Bumped version number to 47.
12473
12474         * mono-debug-debugger.c
12475         (mono_debugger_event_handler, mono_debugger_event): Take two
12476         guint64 arguments insteed of a gpointer and a guint32.  
12477
12478 2004-12-08  Martin Baulig  <martin@ximian.com>
12479
12480         * debug-mono-symfile.h
12481         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
12482         `address' to `native_offset'.
12483
12484 2004-12-08  Martin Baulig  <martin@ximian.com>
12485
12486         * class.c (mono_class_create_from_typespec): Only inflate if we
12487         either have `context->gclass' or `context->gmethod'.
12488
12489 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
12490
12491         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
12492
12493         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
12494
12495         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
12496
12497         * reflection.c (mono_assembly_get_object): Remove the workaround put
12498         in for the release.
12499         
12500         * appdomain.c: Use the corlib_internal field from MonoAssembly.
12501
12502         * appdomain.c: Bump corlib version.
12503
12504         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
12505         be visible in other appdomains.
12506
12507 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
12508
12509         * threads.c: Interlocked inc and dec for longs were messed up,
12510         use a KISS based impl for this. Fixes 70234
12511
12512 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
12513
12514         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
12515
12516 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
12517
12518         * icall.c: fix to follow policy not to allow struct
12519         arguments in icalls.
12520
12521 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12522
12523         * process.c: make the patch that handles spaces in file paths work
12524         on mono/windows too.
12525
12526 2004-12-06  Martin Baulig  <martin@ximian.com>
12527
12528         * class.c (mono_class_create_generic): Call
12529         mono_class_setup_supertypes() if we're dynamic.
12530         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
12531
12532 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
12533
12534         * object-internals.h: Add new fields to MonoThread.
12535
12536         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
12537
12538         * icall.c threads-types.h threads.c: Add new icalls.
12539
12540         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
12541
12542         * object-internals.h (MonoReflectionAssembly): Sync object layout with
12543         managed side.
12544
12545         * appdomain.c: Bump corlib version.
12546
12547         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
12548         internal assemblies. Fixes #69181.
12549
12550 2004-12-05  Martin Baulig  <martin@ximian.com>
12551
12552         * class.c (mono_class_inflate_generic_signature): Make this a
12553         no-op if `context' is NULL or we don't have any type parameters;
12554         also copy `sentinelpos'.        
12555
12556 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
12557
12558         * image.c: Add unbox_wrapper_cache.
12559
12560         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
12561
12562         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
12563         function generator.
12564         
12565         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
12566         Fixes #70173.
12567
12568         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
12569         
12570 2004-12-04  Martin Baulig  <martin@ximian.com>
12571
12572         * loader.c (mono_method_get_signature_full): New public function;
12573         like mono_method_get_signature(), but with an additional
12574         `MonoGenericContext *' argument.
12575
12576         * class.c (mono_class_inflate_generic_signature): Formerly known
12577         as inflate_generic_signature(); make this public.
12578
12579 2004-12-04  Martin Baulig  <martin@ximian.com>
12580
12581         * metadata.c
12582         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
12583         instead of a `MonoGenericContainer *'.  
12584         (mono_metadata_parse_array_full): Likewise.
12585         (mono_metadata_parse_signature_full): Likewise.
12586         (mono_metadata_parse_method_signature_full): Likewise.
12587         (mono_metadata_parse_generic_inst): Likewise.
12588         (mono_metadata_parse_generic_param): Likewise.
12589         (mono_metadata_parse_mh_full): Likewise.
12590         (mono_type_create_from_typespec_full): Likewise.
12591
12592 2004-12-03  Martin Baulig  <martin@ximian.com>
12593
12594         * class-internals.h (MonoGenericContainer): Replaced the
12595         `MonoGenericContext * pointer with a `MonoGenericContext'
12596         structure and made it the first element.
12597
12598 2004-12-03  Martin Baulig  <martin@ximian.com>
12599
12600         * class.c
12601         (inflate_generic_type): Set the `context->container' when creating
12602         a new MonoGenericContext.
12603         (mono_class_inflate_generic_method): Likewise.
12604         (mono_class_create_from_typespec): Just use `context->container'
12605         to get the container.
12606
12607         * loader.c (method_from_methodspec): Set `context->parent' from
12608         `context->container' - and if that's a method container, use its
12609         parent.  Also set the `context->container' when creating a new
12610         MonoGenericContext.
12611         (mono_get_method_from_token): Use just `context->container' to get
12612         the container.
12613
12614         * metadata.c (do_mono_metadata_parse_generic_class): Also set
12615         `gclass->context->container'.
12616
12617         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
12618         the `context->container' when creating a new MonoGenericContext.
12619
12620 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
12621
12622         * reflection.c (compare_genericparam): Sort params with identical
12623         owner by their number. Fixes gen-111 on sparc.
12624
12625 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12626
12627         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
12628         around the domain changes.
12629
12630         * appdomain.c (mono_domain_unload): Handle the case when the thread
12631         calling Unload is itself being aborted during unloading. Fixes #70022.
12632
12633         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
12634
12635         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
12636         checkpoint_func as an icall so it gets a wrapper.
12637         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
12638         in the cross-appdomain wrappers too.
12639
12640         * threads.c (mono_thread_has_appdomain_ref): Make this public.
12641
12642         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
12643
12644         * reflection.c: Fix some memory leaks.
12645         
12646 2004-12-02  Martin Baulig  <martin@ximian.com>
12647
12648         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
12649
12650         * metadata.c (generic_class_cache): New static hashtable.
12651         (mono_metadata_lookup_generic_class): New public method.
12652
12653 2004-12-02  Martin Baulig  <martin@ximian.com>
12654
12655         * class.c (mono_class_create_from_typedef): Call
12656         mono_class_setup_parent() and mono_class_create_mono_type() before
12657         parsing the interfaces.
12658
12659 2004-12-02  Martin Baulig  <martin@ximian.com>
12660
12661         * metadata.c (generic_inst_cache): New static hashtable.
12662         (mono_metadata_lookup_generic_inst): New public function.
12663         (mono_metadata_inflate_generic_inst): New public function.
12664         (mono_metadata_parse_generic_inst): New public function.
12665         (do_mono_metadata_parse_generic_class): Use the new
12666         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
12667         since this'll also use the cache.
12668
12669         * reflection.c (mono_reflection_bind_generic_method_parameters):
12670         Use mono_metadata_lookup_generic_inst() to use the new cache.
12671
12672         * class.c (inflate_mono_type): Use
12673         mono_metadata_inflate_generic_inst() to inflate a generic
12674         instance; this'll also use the new cache.
12675
12676         * loader.c (method_from_methodspec): Use
12677         mono_metadata_parse_generic_inst() and
12678         mono_metadata_inflate_generic_inst() rather than parsing it
12679         manually, so we can use the new cache.
12680
12681 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
12682
12683         * threads.c (wait_for_tids): Do not incorrectly free threads when 
12684         the wait times out.
12685
12686 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
12687
12688         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
12689         iter->args based on whether parameters are passed in registers (i.e.
12690         MONO_ARCH_REGPARMS is defined)
12691
12692 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
12693
12694         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
12695         the exception message. Fixes #70070.
12696         (method_from_methodspec): Fix warnings.
12697
12698 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12699
12700         * process.c: (complete_path) return the path quoted
12701
12702 2004-12-01  Martin Baulig  <martin@ximian.com>
12703
12704         * class-internals.h (MonoGenericInst): New structure.
12705         (MonoGenericClass): Replaced `type_argc', `type_argv' and
12706         `is_open' with `MonoGenericInst *inst'.
12707         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
12708         `is_open' with `MonoGenericInst *inst'.
12709
12710 2004-11-30  Martin Baulig  <martin@ximian.com>
12711
12712         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
12713
12714         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
12715         to `generic_class_cache'.
12716
12717         * metadata.c
12718         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
12719         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
12720         (mono_generic_inst_is_valuetype): Renamed to
12721         mono_generic_class_is_valuetype().
12722
12723         * class-internals.h
12724         (MonoGenericInst): Renamed to MonoGenericClass.
12725         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
12726         (MonoClass): Renamed `generic_inst' to `generic_class'.
12727         (MonoGenericContext): Renamed `ginst' to `gclass'.
12728
12729         * object-internals.h
12730         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
12731
12732         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
12733         mono_reflection_generic_class_initialize().
12734
12735         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
12736         now known as "System.Reflection.MonoGenericClass".
12737         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
12738
12739 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
12740
12741         * class-internals.h: Added a flag field to MonoClass to cache the
12742         declarative security attributes actions associated with the class.
12743         * domain-internals.h: Added booleans to MonoJitInfo to cache the
12744         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
12745         applicable to the JITted method.
12746         * reflection.c|h: Added functions to extract (as flags) which security
12747         actions are available (declaratively) for a method, class or assembly.
12748         * metadata.c|h: Added functions to search the declarative security
12749         table in the metadata.
12750         
12751 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
12752
12753         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
12754         EXPORTEDTYPES are already in the class name cache, so there is no
12755         need to add extra code here to look at them. Just removes a bit of
12756         cruft.
12757
12758         (ves_icall_System_Environment_get_TickCount): No need for #if
12759         WINDOWS. We already have the code in io-layer.
12760
12761 2004-11-28  Martin Baulig  <martin@ximian.com>
12762
12763         * loader.c
12764         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
12765         Fixes gen-112.cs.
12766
12767 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
12768
12769         * assembly.c (do_mono_assembly_open): Instead of having a
12770         conditional WITH_BUNDLE, incorporate support for bundles here, by
12771         having a global `bundles' variable holding a pointer to the actual
12772         bundles. 
12773
12774         (mono_register_bundled_assemblies): New API call used by the
12775         bundle code. 
12776
12777         See mkbundle.1 for details.
12778         
12779 2004-11-27  Martin Baulig  <martin@ximian.com>
12780
12781         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
12782         the vtable for generic methods.
12783
12784 2004-11-26  Martin Baulig  <martin@ximian.com>
12785
12786         * metadata.c
12787         (mono_metadata_generic_method_hash): New public function.
12788         (mono_metadata_generic_method_equal): Likewise.
12789
12790         * class-internals.h
12791         (MonoGenericContainer): Added `GHashTable *method_hash'.
12792
12793         * reflection.c (ReflectionMethodBuilder): Added
12794         `MonoGenericContainer *generic_container'.
12795         (reflection_methodbuilder_to_mono_method): Don't create a new
12796         MonoGenericContainer each time we're called.
12797         (mono_reflection_bind_generic_method_parameters): Use
12798         `container->method_hash' to cache the results so we don't create a
12799         different method if we're called several times with the same
12800         arguments.
12801
12802         * loader.c (method_from_methodspec): Use the new
12803         `container->method_hash' here, too.
12804
12805 2004-11-26  Martin Baulig  <martin@ximian.com>
12806
12807         * class.c (inflate_generic_signature): Correctly compute
12808         `res->has_type_parameters'.
12809         (mono_class_vtable): Use the `has_type_parameters' flag to
12810         determine whether we're a generic method.
12811
12812         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
12813
12814 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
12815
12816         * object.c (mono_runtime_run_main): Fix a small memory leak.
12817
12818 2004-11-25  Martin Baulig  <martin@ximian.com>
12819
12820         * class.c (set_generic_param_owner): Fixed the loop.
12821
12822 2004-11-25  Martin Baulig  <martin@ximian.com>
12823
12824         * object.c (mono_class_vtable): Don't create any JIT wrappers for
12825         generic methods.
12826
12827 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
12828
12829         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
12830         names. Fixes #69787.
12831
12832 2004-11-24  Martin Baulig  <martin@ximian.com>
12833
12834         * class.c (mono_class_create_generic_2): If we don't have a
12835         `ginst->parent', inflate `gklass->parent' to get our parent.
12836
12837 2004-11-24  Martin Baulig  <martin@ximian.com>
12838
12839         * reflection.c (compare_genericparam): Correctly sort the
12840         GenericParam table; fixes #69779.
12841
12842 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
12843
12844         * reflection.c: When writing a PE file, don't create a huge
12845         buffer in memory. Just write the arrays we have to the file.
12846         This reduces memory usage.
12847
12848         * metadata-internals.h: MonoDynamicStream pefile is no longer used
12849         globally.
12850
12851 2004-11-17  Martin Baulig  <martin@ximian.com>
12852
12853         * class.c (mono_class_init): Don't setup `class->parent' for
12854         dynamic instances; moved this to mono_class_generic_2().
12855         (mono_class_create_generic): Also set `klass->inited' for dynamic
12856         generic instances.
12857         (mono_class_create_generic_2): Don't do anything for dynamic
12858         generic instances.  Set `klass->parent' here and also call
12859         mono_class_setup_parent() here. 
12860
12861         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
12862         `MonoType *parent' argument; set `ginst->parent' before calling
12863         mono_class_create_generic_2(), so we set the correct parent.
12864
12865 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
12866
12867         * reflection.c: allow getting attributes from ModuleBuilder
12868         (used by ikvm).
12869
12870 2004-11-17  Martin Baulig  <martin@ximian.com>
12871
12872         * class.c (mono_class_create_from_typedef): If a type parameter is
12873         inherited from an outer class, set its owner to that class.
12874
12875 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
12876
12877         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
12878           for (int*) written size. This fixes bug #69592.
12879
12880 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
12881
12882         * icall.c: Added IsAuthenticodePresnet internal call.
12883         * image.c|h: New function that check a MonoImage for an Authenticode
12884         signature in the certificate PE data directory.
12885         * security.c|h: New internal call to ask the runtime if an 
12886         Authenticode signature seems referenced in the PE header.
12887
12888 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
12889
12890         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
12891
12892         * reflection.c (mono_image_create_pefile): Free the assembly streams
12893         after writing out the assembly file.
12894
12895         * object.c (mono_runtime_run_main): Fix small memory leak.
12896
12897         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
12898         property access modifiers. Fixes #69389.
12899
12900 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
12901
12902         * domain.c, object.c, object-internals.h, domain-internals.h,
12903         object.h, marshal.c: keep dynamic code info per domain.
12904
12905 2004-11-15  Martin Baulig  <martin@ximian.com>
12906
12907         * class.c (mono_type_get_name_recurse): Put type arguments in
12908         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
12909         see bug #68387.
12910
12911 2004-11-15  Martin Baulig  <martin@ximian.com>
12912
12913         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
12914         (mono_class_setup_vtable): When computing `the_cname' for a
12915         generic instance, don't include the namespace since we'd otherwise
12916         add it twice.
12917
12918 2004-11-15  Martin Baulig  <martin@ximian.com>
12919
12920         * class.c (mono_class_create_generic): Changed return type to void.
12921         (mono_class_create_generic_2): New public function; setup
12922         `class->method', `class->field' and `class->interfaces' here
12923         instead of in mono_class_init().
12924
12925         * class.h (mono_class_create_generic): Moved to class-internals.h.
12926
12927 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
12928
12929         * reflection.c (mono_image_create_pefile): take a file HANDLE.
12930         rather than writing to memory, write to this file. Right now,
12931         we are just writting into a buffer, and copying that. However
12932         we can avoid the buffer later.
12933
12934         (mono_dynamic_stream_reset): new function
12935
12936         * icall.c, object-internals.h: update for the above.
12937
12938 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
12939
12940         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
12941         have been using gc'd memory. First it is slower, unlikely
12942         the comment in the source code said, secondly, it increases
12943         our footprint to do it in the gc.
12944
12945         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
12946         the method so that it does not have to copy to managed code.
12947
12948 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
12949
12950         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
12951
12952 2004-11-12  Martin Baulig  <martin@localhost>
12953
12954         * reflection.c (mono_image_create_token): Allow generic method
12955         definitions here, since they may appear in an `.override'; see
12956         gen-98/gen-99 for an example.
12957
12958 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
12959
12960         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
12961         #69365.
12962
12963         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
12964         descriptive.
12965
12966 2004-11-11  Martin Baulig  <martin@ximian.com>
12967
12968         * class.c (mono_class_setup_vtable): In an explicit interface
12969         implementation, the method name now includes the arity.
12970
12971 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
12972
12973         * object.c (mono_array_full_copy): Fix warning.
12974
12975 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
12976
12977         * appdomain.c: Removed look_for_method_by_name(). Use the new method
12978         mono_class_get_method_from_name() instead.
12979         
12980         * class-internals.h: Added two new types of wrappers. 
12981         Added MonoRemotingTarget enum. Added new trampoline function type, which
12982         takes an additional MonoRemotingTarget value as parameter, so it is
12983         possible to request a trampoline for a specific target.
12984         
12985         * class.c: Added new mono_class_get_method_from_name() method.
12986         
12987         * class.h: In MonoRemoteClass, we can have now to vtables, one for
12988         general remoting sinks and one specific for cross domain calls.
12989         
12990         * debug-helpers.c: Added new wrapper names.
12991         
12992         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
12993         of a remote class.
12994         
12995         * image.c: Porperly delete value objects form the remoting invoke hashtable.
12996         
12997         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
12998         with several other methods (mono_marshal_get_xappdomain_dispatch,
12999         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
13000         and others) can generate a fast remoting wrapper for cross domain calls.
13001         More information can be found in docs/remoting.
13002         Other changes: Removed mono_find_method_by_name, and used
13003         mono_class_get_method_from_name instead.
13004         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
13005         is stored in the remoting invoke hashtable.
13006         
13007         * marshal.h: published the new method for getting the xdomain wrapper,
13008         and also added a method for getting the adequate wrapper for a given
13009         method and target.
13010         
13011         * object-internals.h, object.c: Added a couple of methods for capying and
13012         cloning arrays.
13013         Modified mono_install_remoting_trampoline, which takes the new remoting
13014         trampoline that has a remoting target as parameter.
13015         mono_class_proxy_vtable now also takes a remoting target as parameter, and
13016         will return the most suitable vtable for the target.
13017         Added mono_remote_class_vtable, which returns the vtable of a remote class
13018         (which can be the normal remoting vtable or the xdomain vtable).
13019         
13020         * threads.c: the xdomain invoke and dispatch wrappers must also be
13021         protected against interruptions.
13022
13023 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13024
13025         * icall.c: use memmove in BlockCopyInternal when the source and
13026         destination arrays are the same.
13027
13028 2004-11-09  Martin Baulig  <martin@ximian.com>
13029
13030         * class-internals.h (MonoGenericContainer): Removed `method' and
13031         `signature', replaced them with `is_method' and `is_signature'
13032         flags.  Added `context'.
13033
13034         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
13035         instead of a `MonoGenericContainer *'.
13036
13037         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
13038         for dynamic type parameters.
13039         (mono_metadata_load_generic_params): Setup `container->context'.
13040
13041         * reflection.c (mono_reflection_setup_generic_class): Setup
13042         `tb->generic_container->context'.
13043         (do_mono_reflection_bind_generic_parameters): Use
13044         mono_class_inflate_generic_type() to correctly inflate types,
13045         rather than using our own hack just for MONO_TYPE_VAR.
13046
13047 2004-11-09  Martin Baulig  <martin@ximian.com>
13048
13049         * class.c (mono_class_inflate_generic_method): Small fix; don't
13050         crash here.
13051
13052         * icall.c
13053         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
13054         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
13055         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
13056         (ves_icall_Type_BindGenericParameters): Likewise.
13057         (ves_icall_Type_get_IsGenericInstance): Likewise.
13058         (ves_icall_Type_GetGenericParameterPosition): Likewise.
13059         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
13060         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
13061         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
13062
13063 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
13064
13065         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
13066         assembly versions and public key tokens. Fixes #69113.
13067
13068 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
13069
13070         * metadata.c: fix bug introduced with the type cache changes
13071         on 2004-11-06.
13072
13073 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
13074
13075         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
13076         the MonoClass pointer instead of the token in exception clauses.
13077         * reflection.c: updates for the above and make the code not depend
13078         on the structure of MonoExceptionClause.
13079
13080 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
13081
13082         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13083         Add support for dynamic assemblies. Fixes #69114.
13084
13085         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
13086
13087 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
13088
13089         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
13090         since most only those methods use it. the code member of
13091         MonoMethodPInvoke was dead, so that can be removed too. Also,
13092         remove inline_count (again, not used), and move slot so that it
13093         can share bits with some other flags. This saves 8 bytes in the
13094         structure and gives us about 50 kb back for mcs helloworld.cs
13095
13096         * *.[ch]: Do naming changes for the above.
13097
13098         * loader.c (mono_method_get_header): Lazily init the header
13099         on first access.
13100         (mono_get_method_from_token): don't init the header here
13101         (mono_free_method): the header may never be allocated
13102
13103         Overall, this saves 150 kb of unmanaged allocations
13104         for mcs helloworld.cs. That accounts for 10% of the unmanaged
13105         memory at runtime.
13106         
13107         * loader.c, loader.h (mono_method_get_header): new accessor.
13108
13109         * *.[ch]: use the above method. Prepares us to lazily load
13110         the header.
13111
13112         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
13113         three warnings, which are actual bugs (see 69206).
13114
13115         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
13116         unused. Saves a cool 4 bytes / method.
13117
13118 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
13119
13120         * metadata.c (builtin_types): Add types for System.Object here.
13121         (mono_metadata_parse_type_full): Cache MonoType*'s that are
13122         for a class or valuetype from klass->this_arg or klass->byval_arg.
13123
13124         On mcs for a hello world, this gets us down from 21836 MonoType's
13125         to 14560.
13126
13127         (mono_metadata_free_type): Account for the above change.
13128
13129 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
13130
13131         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
13132         exception instead of asserting if name is null.
13133         (ves_icall_System_AppDomain_GetData): Ditto.
13134
13135 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
13136
13137         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
13138         EnumBuilder.
13139
13140         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
13141         Return NULL when the domain does not have entry_assembly set.
13142
13143         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
13144         Add a 'resource_modules' argument.
13145         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
13146
13147         * reflection.c (mono_reflection_create_runtime_class): Move setting
13148         of wastypebuilder here, so mono_get_type_object () returns a MonoType
13149         for enums too.
13150
13151         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
13152         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
13153         Throw an ArgumentNullException if 'ptr' is null.
13154
13155         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
13156         assemblies here. Fixes #69020.
13157
13158 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
13159
13160         * reflection.c (build_compressed_metadata): Fix the previous patch for
13161         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
13162         the stack.
13163
13164 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
13165
13166         * assembly.c (mono_assembly_names_equal): Allow a match if one of
13167         the cultures is false. Fixes #69090.
13168
13169         * reflection.c (build_compressed_metadata): Fix invalid memory read 
13170         detected by valgrind.
13171         
13172         * reflection.c (mono_reflection_get_type): Avoid triggering a 
13173         TypeResolve multiple times for the same type. Fixes #65577.
13174
13175 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
13176
13177         * marshal.c: Avoid using ldftn to call managed functions. It is
13178         much slower than just a call.
13179
13180         * reflection.c (mono_module_get_object): free the basename we
13181         allocate here from glib.
13182         
13183         * reflection.c (ensure_runtime_vtable): make sure to free
13184         overrides.  Also, we were allocating an array of MonoMethod not an
13185         array of MonoMethod*.
13186
13187         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
13188
13189         * image.c (mono_image_close): free image->guid here.
13190
13191 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
13192
13193         * reflection.c: Fix some spec conformance issues with the PE file
13194         structures so mcs compiled apps run on the Net 2.0 beta.
13195
13196 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
13197
13198         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
13199         Implement this. Fixes #67264.
13200
13201         * debug-helpers.h debug-helpers.c marshal.c: Move 
13202         mono_find_method_by_name to debug-helpers.c.
13203
13204 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
13205
13206         * object.c (mono_release_type_locks): type_initialization_hash is
13207         a GHashTable.
13208
13209         * reflection.c object.c object-internals.h: Fix warnings.
13210
13211         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
13212         without accessors. Fixes #61561.
13213
13214         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
13215         application base from the root domain if not set. Fixes #65641.
13216         (mono_runtime_init): Fix warning.
13217
13218 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13219
13220         * appdomain.c: call mono_thread_pool_init.
13221         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
13222         of worker threads based on the number of CPUs and the environment
13223         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
13224         for non-windows (windows) systems.
13225
13226 2004-10-27  Chris Toshok  <toshok@ximian.com>
13227
13228         * mono-debug-debugger.c (write_class): don't call mono_class_init
13229         here, as even with the check for (!klass->init_pending), we get
13230         into a situation where we're hitting cycles in class
13231         initialization.  Fixes #68816.
13232
13233 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
13234
13235         * image.c: Avoid overwriting values in the loaded_images_hash when an
13236         assembly is loaded multiple times. Fixes #61152.
13237
13238         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
13239         so multiple satellite assemblies for the same name can be loaded.
13240         Fixes #68259.
13241
13242         * mono_domain_assembly_preload: Actually return the loaded assembly, 
13243         not NULL.
13244
13245         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
13246         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
13247
13248         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
13249         pending finalizers are not invoked after the appdomain has been 
13250         unloaded. Fixes #67862.
13251
13252 2004-10-22  Martin Baulig  <martin@ximian.com>
13253
13254         * mono-debug-debugger.c
13255         (mono_debugger_runtime_invoke): Don't box valuetypes.
13256
13257 2004-10-22  Chris Toshok  <toshok@ximian.com>
13258
13259         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
13260         don't hide private methods.
13261
13262 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
13263
13264         * icall.c: Allows the runtime to "share" (when known) the public key
13265         token of an assembly. This avoid the need to recalculate the token 
13266         (from the public key) in managed code.
13267
13268 2004-10-21  Chris Toshok  <toshok@ximian.com>
13269
13270         * debug-helpers.c (append_class_name): argh, revert last patch.
13271         
13272 2004-10-21  Chris Toshok  <toshok@ximian.com>
13273
13274         * debug-helpers.c (append_class_name): use '+' as the delimiter,
13275         not '/', so that it matches what the debugger uses to look up
13276         methods.
13277
13278 2004-10-21  Martin Baulig  <martin@ximian.com>
13279
13280         * mono-debug-debugger.c (mono_debugger_throw_exception): New
13281         public method; this is called each time an exception is thrown and
13282         allows the debugger to use exception catch points.
13283
13284 2004-10-21  Martin Baulig  <martin@ximian.com>
13285
13286         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
13287         the stack pointer and the exception object in some struct and pass
13288         that to the debugger.
13289
13290 2004-10-21  Chris Toshok  <toshok@ximian.com>
13291
13292         * mono-debug-debugger.c (do_write_class): add instance/static
13293         event support.  We don't expose "raise" or "other" yet.
13294         (event_is_static): new method.
13295
13296 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
13297
13298         * mono-debug-debugger.c
13299         (mono_debugger_handle_exception): Remove
13300         bogus return value for fussy compilers.
13301
13302 2004-10-20  Martin Baulig  <martin@ximian.com>
13303
13304         * mono-debug-debugger.c
13305         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
13306         (mono_debugger_handled_exception): Likewise.
13307
13308 2004-10-20  Martin Baulig  <martin@ximian.com>
13309
13310         * mono-debug-debugger.h (MonoDebuggerEvent): Added
13311         MONO_DEBUGGER_EVENT_EXCEPTION.
13312
13313         * mono-debug-debugger.c (mono_debugger_handle_exception): New
13314         public function to send the debugger a notification for an
13315         exception and inform it about a catch/finally clause.
13316
13317 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
13318
13319         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
13320         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
13321         fix 2.95 build. 
13322
13323         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
13324
13325 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
13326
13327         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
13328         marshalled as [In,Out]. Fixes #58325.
13329
13330 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
13331
13332         * reflection.c (mono_method_body_get_object): Implement some fields.
13333
13334 2004-10-12  Martin Baulig  <martin@ximian.com>
13335
13336         * reflection.c (mono_reflection_bind_generic_parameters): Small
13337         fix, correctly retrieve our parent from a generic instance.
13338
13339 2004-10-12  Martin Baulig  <martin@ximian.com>
13340
13341         * metadata.c (mono_metadata_generic_param_equal): We always have
13342         an owner.
13343
13344         * class.c
13345         (mono_class_from_generic_parameter): We need to have an owner.
13346         (my_mono_class_from_generic_parameter): Likewise.
13347
13348         * reflection.c (mono_reflection_setup_generic_class): Renamed to
13349         mono_reflection_create_generic_class() and added a new
13350         mono_reflection_setup_generic_class().  
13351         (mono_reflection_initialize_generic_param): If we're a nested
13352         generic type and inherited from the containing class, set our
13353         owner to the outer class.
13354
13355 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
13356
13357         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
13358
13359         * reflection.c (mono_method_body_get_object): New function to create
13360         a MethodBody object.
13361
13362         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
13363
13364 2004-10-11  Martin Baulig  <martin@ximian.com>
13365
13366         * metadata.c (_mono_metadata_type_equal): Renamed to
13367         do_mono_metadata_type_equal() and made static.
13368
13369 2004-10-11  Martin Baulig  <martin@ximian.com>
13370
13371         * appdomain.c: Bump corlib version number to 28.
13372
13373 2004-10-10  Martin Baulig  <martin@ximian.com>
13374
13375         * class-internals.h
13376         (MonoGenericInst): Added `MonoGenericContainer *container'.
13377         (MonoGenericMethod): Likewise.
13378         (MonoGenericContext): Likewise.
13379         (MonoGenericParam): Added `MonoGenericContainer *owner'.
13380
13381         * metadata.c
13382         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
13383         (do_mono_metadata_parse_generic_inst): Likewise.
13384         (mono_metadata_parse_type_full): New public method.  This is the actual
13385         mono_metadata_parse_type() implementation - with an additional
13386         `MonoGenericContainer *' argument.
13387         (mono_metadata_parse_array_full): Likewise.
13388         (mono_metadata_parse_signature_full): Likewise.
13389         (mono_metadata_parse_method_signature_full): Likewise.
13390         (mono_metadata_parse_mh_full): Likewise.
13391         (mono_type_create_from_typespec): Likewise.
13392         (mono_metadata_interfaces_from_typedef_full): New public method;
13393         this is similar to the other _full() methods, but we take a
13394         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
13395         (mono_metadata_parse_generic_param): Take an additional
13396         `MonoGenericContainer *' argument and lookup the MonoGenericParam
13397         from that container.
13398         (mono_metadata_generic_param_equal): New static method to compare
13399         two type parameters.
13400         (_mono_metadata_type_equal): New static method; takes an
13401         additional `gboolean signature_only' argument - if true, we don't
13402         compare the owners of generic parameters.
13403         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
13404         with a TRUE argument - do a signature-only comparision.
13405
13406         * loader.c: Use the new _full() methods and pass the
13407         MonoGenericContainer to them.
13408
13409         * object-internals.h (MonoReflectionTypeBuilder): Added
13410         `MonoGenericContainer *generic_container' field.
13411         (MonoReflectionMethodBuilder): Likewise.
13412
13413 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
13414
13415         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
13416         case initial images of dynamic assemblies.
13417
13418         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
13419
13420         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
13421
13422         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
13423         length of event->other array.
13424         (typebuilder_setup_events): Ditto.
13425
13426         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
13427         'assembly_by_name' and add an 'assemblies' list.
13428
13429         * assembly.h assembly.c: Add a new search hook for determining whenever
13430         an assembly is already loaded. Use this instead of searching in the
13431         loaded_assemblies list.
13432
13433         * domain.c appdomain.c: Implement the new search hook so loaded 
13434         assemblies are now scoped by appdomain. Fixes #67727.
13435
13436 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
13437
13438         * threads.c (mono_thread_attach): Initialize synch_lock field so
13439         mono_thread_detach works again.
13440
13441         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
13442         'lib' too. Fixes #63130.
13443
13444 2004-10-06  Jackson Harper  <jackson@ximian.com>
13445
13446         * culture-info-tables.h: regenerated.
13447
13448 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
13449
13450         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
13451         implemented by other interfaces in the result. Fixes #65764.
13452         
13453         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13454         Handle unloadable modules without crashing.
13455
13456         * image.c (load_modules): Revert the previous patch since modules must
13457         have a fixed index inside the array.
13458         
13459         * image.c (load_modules): Don't include native modules in the modules
13460         array.
13461
13462 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
13463
13464         * reflection.h: Add param_defaults field.
13465
13466         * reflection.c: Add support for parameter defaults in dynamic methods.
13467         Fixes #64595.
13468
13469         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
13470         an empty string when a type has no namespace. Fixes #64230.
13471
13472 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
13473
13474         * tabledefs.h: Added "internal" security actions to support non-CAS
13475         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
13476         Note: they do not seems to be used anymore in 2.0 (new metadata format)
13477
13478 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
13479
13480         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
13481         constructor of abstract class. Fixes #61689.
13482
13483 2004-10-04  Martin Baulig  <martin@ximian.com>
13484
13485         * class-internals.h (MonoGenericContainer): New type.
13486         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
13487         `MonoGenericContainer *generic_container'.
13488         (MonoClass): Replaced `gen_params' and `num_gen_params' with
13489         `MonoGenericContainer *generic_container'.
13490
13491         * metadata.c (mono_metadata_load_generic_params): Return a
13492         `MonoGenericContainer *' instead of a `MonoGenericParam *';
13493         removed the `num' argument.
13494
13495 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
13496
13497         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
13498         for dynamic images.
13499
13500         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
13501         machine fields.
13502
13503         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
13504
13505         * reflection.c: Save pe_kind and machine values into the generated
13506         image file.
13507
13508         * appdomain.c: Bump corlib version number.
13509
13510         * object-internals.h: Reorganize layout of LocalBuilder.
13511
13512         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
13513         New helper function.
13514
13515         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
13516         created MonoType for dynamic types. Fixes #66180.
13517
13518 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
13519
13520         * threadpool.c: the ares hashtable needs a critical section around it.
13521         this prevents some nasty segfaults
13522
13523 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
13524
13525         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
13526         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
13527         bug 67324).
13528         
13529 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13530
13531         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
13532         
13533 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
13534
13535         * image.c: Always canonicalize image file names, to avoid loading
13536         the same assembly twice when referenced using a relative path.
13537
13538 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
13539
13540         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
13541
13542         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
13543
13544         * marshal.c: Fix warnings.
13545
13546 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
13547
13548         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
13549         attempting to marshal the delegate_trampoline as the method_addr.
13550         This patch has a static hashtable of marshalled delegates so that 
13551         we can map delegate_trampoline addresses back to delegates.  This
13552         allows a delegate passed to managed code to be passed back into native
13553         code.  Fixes #67039
13554
13555 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13556
13557         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
13558
13559         * reflection.c (method_encode_code): Align method headers properly.
13560         Fixes #66025.
13561
13562 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13563
13564         * marshal.c: In the runtime invoke wrapper, reset the abort
13565         exception if it is cached. This avoids the automatic rethrowal of 
13566         the exception after the catch of the wrapper. Also check for pending
13567         interruptions before calling the managed method. This is done using
13568         the new method emit_thread_force_interrupt_checkpoint, since the
13569         normal checkpoint method is ignored when running the invoke wrapper.
13570         * object.c: If the abort exception is rethrown, set the abort_exc
13571         field of the thread, so it will be rethrown aftere every catch.
13572         * threadpool.c: Only run an interruption checkpoint if what has been
13573         requested is a stop of the thread (aborts will be ignored).
13574         * threads.c: By default, a thread will now never be interrumped while
13575         running the runtime invoke wrapper (this ensures that runtime_invoke
13576         will always return to the caller if an exception pointer is provided).
13577         There is a new special method mono_thread_force_interruption_checkpoint()
13578         to force an interruption checkpoint even if running a protected
13579         wrapper, which is used by the same runtime invoke wrapper to do a check
13580         at a safe point.
13581
13582 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
13583
13584         * object.c, object-internals.h: Implemented mono_release_type_locks,
13585         which releases the cctor locks held by a thread.
13586         * threads.c, threads.h: In thread_cleanup, release cctor locks held
13587         by a thread. Added mono_thread_exit() method to be used to safely stop
13588         a thread.
13589
13590 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13591
13592         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13593         Move null check before dereference.  Avoid indexing beyond the end
13594         of the 'modules' array.
13595
13596 2004-09-28  Raja R Harinath  <rharinath@novell.com>
13597
13598         * metadata-internals.h (MonoImage): Add module_count field.
13599         * image.c (load_modules): Set image->module_count.
13600         (mono_image_load_file_for_image): Use image->module_count.
13601         * reflection.c (mono_image_load_module): Append to image->modules array 
13602         of dynamic assembly.
13603         (mono_module_get_object): Fix loop to actually increment index.
13604         Use image->module_count.
13605         * assembly.c (mono_assembly_load_references): Use image->module_count.
13606         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
13607         Likewise.
13608
13609 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
13610
13611         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
13612         Avoid assert on generic types.
13613
13614 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
13615
13616         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
13617
13618         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
13619
13620         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
13621         function to convert a MarshalSpec structure to its managed counterpart.
13622
13623         * reflection.c: Fix warnings.
13624         
13625         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
13626         field.
13627
13628         * icall.c (mono_create_icall_signature): Fix build.
13629
13630 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
13631
13632         * icall.c: Add MakePointType icall.
13633
13634         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
13635         warnings.
13636
13637 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13638
13639         * threadpool.c: reuse allocated slots in the queue.
13640
13641 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
13642
13643         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
13644
13645         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
13646
13647         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
13648         previous change.
13649
13650         * tabledefs.h: Add constants for pinvoke attributes BestFit and
13651         ThrowOnUnmappableChar.
13652
13653         * icall.c (ves_icall_Type_GetPacking): New icall.
13654
13655 2004-09-24  Martin Baulig  <martin@ximian.com>
13656
13657         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
13658
13659 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13660
13661         * appdomain.c:
13662         (mono_domain_set): allow setting a domain that is being unloaded.
13663         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
13664         being unloaded.
13665
13666 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13667
13668         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
13669         the GetCustomAttributes icall.
13670
13671 2004-09-23  Martin Baulig  <martin@ximian.com>
13672
13673         * object-internals.h (MonoReflectionGenericParam): Replaced
13674         'has_ctor_constraint', `has_reference_type' and `has_value_type'
13675         with `guint32 attrs'.
13676
13677 2004-09-23  Martin Baulig  <martin@ximian.com>
13678
13679         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
13680
13681 2004-09-23  Martin Baulig  <martin@ximian.com>
13682
13683         * object-internals.h (GenericParameterAttributes): New enum.
13684
13685 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
13686
13687         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
13688         
13689         * class.c (init_events): Fill out event->other field.
13690
13691         * class.c: Fix warnings.
13692
13693         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
13694
13695 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
13696
13697         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
13698         walk which doesn't supply the IL offset.
13699
13700 2004-09-22  Martin Baulig  <martin@ximian.com>
13701
13702         * reflection.c (mono_reflection_setup_internal_class): If we're
13703         System.ValueType, System.Object or System.Enum, set
13704         `klass->instance_size' and create the vtable.
13705         (mono_reflection_create_internal_class): If we're an enum type,
13706         get the base class from our current corlib.
13707
13708 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
13709
13710         * reflection.h (MonoResolveTokenError): New type.
13711
13712         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
13713         icall.
13714
13715         * icall.c: Add an 'error' argument to the ResolveToken icalls.
13716
13717 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
13718
13719         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
13720         Support also calling constructors, but only for already allocated objects.
13721
13722 2004-09-17  Geoff Norton <gnorton@customerdna.com>
13723
13724         * reflection.c (type_get_qualified_name): If the klass is null
13725         return the typename to avoid a NullRefEx.
13726         (encode_cattr_value): Get the qualified name of the boxed type,
13727         not the underlying enumtype.  Fixes #62984.
13728
13729 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
13730
13731         * marshal.c: Fix problems with previous checkin.
13732
13733 2004-09-21    <vargaz@freemail.hu>
13734
13735         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
13736         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
13737
13738         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
13739
13740 2004-09-21  Geoff Norton <gnorton@customerdna.com>
13741
13742         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
13743         should only return a type for pointers, arrays, and passbyref types.
13744         Fixes bug #63841.
13745
13746 2004-09-21  Martin Baulig  <martin@ximian.com>
13747
13748         * domain.c (mono_debugger_check_runtime_version): New public
13749         function.
13750
13751         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
13752
13753 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
13754
13755         * reflection.c: Added missing sort to the declarative security 
13756         attributes table. MS implementation stops seeing the attributes if the
13757         token number regress in the table (as shown by ildasm and permview).
13758
13759 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
13760
13761         * object-internals.h (MonoReflectionModule): Add 'token' field.
13762         
13763         * reflection.c (mono_reflection_get_token): Add support for Module
13764         and Assembly.
13765         (mono_module_get_object): Set 'token' field.
13766         (mono_module_file_get_object): Set 'token' field.
13767
13768         * icall.c: Add new Assembly and Module icalls.
13769
13770         * appdomain.c: Bump corlib version.
13771
13772 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
13773
13774         * loader.h loader.c class.h class.c: Add helper functions for obtaining
13775         tokens of metadata objects.
13776
13777         * reflection.h reflection.c (mono_reflection_get_token): New function
13778         to obtain the token of a metadata object.
13779
13780         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
13781
13782 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
13783
13784         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
13785         
13786         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
13787
13788 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
13789
13790         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
13791         * object-internals.h: Added 3 MonoArray* members to MonoReflection
13792         AssemblyBuilder to access the permissions set in the class lib.
13793         * reflection.c: Added security attributes encoding step in 
13794         mono_image_build_metadata.
13795         * tabledefs.h: Added new security actions defined in 2.0:
13796         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
13797
13798 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13799
13800         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
13801         macro parameter.
13802
13803 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
13804  
13805         * locales.c: nullify the ICU_collator member of CompareInfo when it is
13806           finalized. There where random SIGSEVs at program termination, when
13807           an object being finalized was trying to do a string comparison and
13808           the current culture was already finalized.
13809  
13810 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13811
13812         * threads.c: call thread_cleanup before finishing the thread if we get
13813         there.
13814
13815 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
13816
13817         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
13818         assemblies from the parent. Fixes #65665.
13819
13820 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
13821
13822         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
13823         modifiers.
13824
13825 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
13826
13827         * reflection.h: add prototype for mono_get_dbnull_object
13828         * reflection.c: add prototypes for get_default_param_value_blobs 
13829         and mono_get_object_from_blob for fussier compilers
13830
13831 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
13832  
13833         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
13834         false deadlock checks in class initialization.
13835  
13836 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
13837
13838         * image.c (mono_image_addref): Fix comment.
13839
13840         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
13841         possible.
13842
13843 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
13844
13845         * reflection.c (mono_param_get_objects): Modified to return
13846         ParameterInfo.DefaultValue object.
13847
13848         (get_default_param_value_blobs):
13849         (mono_get_object_from_blob):
13850         (mono_get_dbnull_object): New helper routines. 
13851
13852         * object.c (mono_get_constant_value_from_blob): New helper routine
13853         carved out from get_default_field_value ()
13854
13855         * object-internals.h (mono_get_constant_value_from_blob): Added
13856         function declaration.
13857
13858 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
13859
13860         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
13861         referenced assemblies. Fixes #62135.
13862
13863         * exception.h exception.c (mono_get_exception_file_not_found2): New
13864         helper function.
13865
13866 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
13867
13868         * class.h class.c: Add mono_type_get_underlying_type ().
13869
13870 2004-09-09  Geoff Norton <gnorton@customerndna.com>
13871
13872         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
13873         Fix GetTypes() to support dynamically created assemblies.
13874
13875 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
13876
13877         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
13878         
13879         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
13880         previous patch.
13881
13882         * reflection.h reflection.c loader.c: Allow dynamic construction of
13883         pinvoke methods. Fixes #65571.
13884         
13885         * reflection.c (mono_reflection_get_type): Revert previous change since
13886         it causes regressions.
13887
13888 2004-09-08  Martin Baulig  <martin@ximian.com>
13889
13890         * class.c (class_compute_field_layout): Don't call
13891         mono_class_layout_fields() for open generic instances.
13892
13893 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
13894         * threads.c appdomain.c: fix typo in GC macro
13895
13896 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13897
13898         * threads.c: don't call mono_thread_detach() in start_wrapper(),
13899         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
13900
13901 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
13902
13903         * image.c (mono_image_close): Applied patch from 
13904         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
13905         assembly is loaded multiple times from data.
13906         
13907         * image.c (mono_image_open): Fix warning.
13908
13909 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13910
13911         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
13912         once. Fixes #58334.
13913         
13914         * reflection.c (mono_reflection_create_runtime_class): Initialize
13915         klass->nested_classes. Fixes #61224.
13916
13917 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
13918
13919         * threads.c: sched_yield() on exit, to allow threads to quit.
13920
13921 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13922
13923         * object.c (mono_unhandled_exception): Remove leftover debug code.
13924
13925 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
13926
13927         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
13928
13929 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
13930
13931         * marshal.c (emit_marshal_array): Really null terminate string arrays.
13932         
13933         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
13934
13935 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13936
13937         * marshal.c (emit_marshal_array): Null terminate string arrays.
13938         
13939         * marshal.c (raise_auto_layout_exception): Fix warning.
13940
13941         * reflection.c (mono_param_get_objects): Initialize the default value
13942         with DBNull.Value, not null. Fixes #62123.
13943
13944 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
13945
13946         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
13947         throw an exception with a cute explanation.
13948
13949 2004-09-06  Dick Porter  <dick@ximian.com>
13950
13951         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
13952         Close the new process's thread handle, as we don't use it.  The
13953         handle stays around forever otherwise.
13954
13955 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13956
13957         * object.c (arith_overflow): Fix warning.
13958
13959         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
13960         calling conventions in method refs. Fixes #65352.
13961
13962         * reflection.c: Fix warnings.
13963
13964 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13965
13966         * icall.c: Add a new icall for Array.Clear
13967
13968 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
13969
13970         * object.c: When allocating an array, we have to throw
13971         an overflow exception if any of the lengths are < 0.
13972
13973 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
13974
13975         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
13976         properly. Also move implementation of string array marshalling to 
13977         managed code. Fixes #42316.
13978
13979 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13980
13981         * assembly.c: provide more information when loading an assembly fails.
13982
13983 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13984
13985         * filewatcher.c: don't expect the development fam package to be
13986         installed.
13987
13988 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
13989
13990         * marshal.c: Make a copy of the signature cookie since it will be
13991         freed by the caller.
13992         
13993         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
13994
13995         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
13996
13997         * metadata.c (mono_metadata_free_marshal_spec): New function to free
13998         marshal specs.
13999
14000         * marshal.c: More refactoring.
14001         
14002         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
14003         smaller functions.
14004
14005 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
14006
14007         * object.c: In mono_message_invoke, fill the output parameter array after
14008           calling the managed method (it was done before the call). This fixes
14009           bug #59299.
14010
14011 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
14012
14013         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
14014         as well.
14015
14016 2004-09-02  Martin Baulig  <martin@ximian.com>
14017
14018         * class.c (mono_class_instance_size): Don't allow generic type
14019         definitions or open generic instances.
14020         (mono_class_array_element_size): If we're a value type, call
14021         mono_class_instance_size() on the original class.
14022
14023         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
14024         handle generic instances.
14025
14026         * mono-debug-debugger.c (write_type): Handle generic instances
14027         like classes.
14028
14029 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
14030
14031         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
14032         the allocation request fails. Fixes #65089.
14033
14034         * object.c (mono_runtime_free_method): Do not call mono_free_method.
14035         
14036         * object.c (mono_runtime_free_method): New function to free a dynamic
14037         method.
14038
14039         * marshal.c (mono_delegate_free_ftnptr): New function to free the
14040         delegate trampoline.
14041
14042         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
14043         with hasthis as dynamic,
14044
14045         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
14046
14047         * domain.c (mono_jit_info_table_remove): New function to remove an
14048         entry from the jit info table.
14049
14050         * class-internals.h (MonoMethod): Add 'dynamic' field.
14051
14052         * loader.c: Fix warnings.
14053
14054 2004-09-01  Martin Baulig  <martin@ximian.com>
14055
14056         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
14057         instead of mono_debugger_lock() because the latter one is a no-op
14058         unless running in the debugger.
14059
14060 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
14061
14062         * class.c (class_compute_field_layout): Classes with auto-layout or
14063         reference fields are not blittable.
14064         
14065 2004-09-01  Dick Porter  <dick@ximian.com>
14066
14067         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
14068         mono_image_get_filename() to get the assembly location.
14069
14070         * icall.c:
14071         * metadata.h: Fix compile warnings
14072
14073 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
14074
14075         * class.c (class_compute_field_layout): System.Object is blittable.
14076
14077         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
14078         as in/out. Fixes #59909.
14079
14080 2004-09-01  Martin Baulig  <martin@ximian.com>
14081
14082         * metadata.h (MONO_TYPE_ISREFERENCE): Call
14083         mono_metadata_generic_inst_is_valuetype() if we're a generic
14084         instance to check whether our underlying type is a reference type.
14085
14086 2004-09-01  Martin Baulig  <martin@ximian.com>
14087
14088         * metadata.c (mono_type_size): If we're a generic instance, call
14089         mono_class_value_size() for value types.
14090
14091 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
14092
14093         * marshal.c: Implement more custom marshalling functionality. Fixes
14094         #64915.
14095
14096 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
14097
14098         * mono-debug.c, debug-mono-symfile.c: add some locking love.
14099
14100 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
14101
14102         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
14103
14104         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
14105
14106         * icall.c: Fix some warnings.
14107
14108         * threads.c (abort_appdomain_thread): Fix unref errors.
14109         (mono_thread_current): Fix THREAD_DEBUG define.
14110
14111 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
14112
14113         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
14114
14115         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
14116
14117 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
14118
14119         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
14120         string arrays.
14121
14122 2004-08-28  Martin Baulig  <martin@ximian.com>
14123
14124         * metadata.c
14125         (mono_metadata_generic_inst_is_valuetype): New public function.
14126
14127         * metadata.h (MONO_TYPE_ISSTRUCT): Call
14128         mono_metadata_generic_inst_is_valuetype() if we're a generic
14129         instance to check whether our underlying type is a valuetype.
14130
14131 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
14132
14133         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
14134         #63768.
14135
14136 2004-08-25  Martin Baulig  <martin@ximian.com>
14137
14138         * loader.c (mono_get_method_from_token): Abstract methods can also
14139         be generic and thus have type parameters.
14140
14141         * metadata-internals.h
14142         (MonoDynamicImage): Added `GPtrArray *gen_params'.
14143
14144         * reflection.c (mono_image_get_generic_param_info): Don't create a
14145         metadata row, just add an entry to the `gen_params' array.
14146         (build_compressed_metadata): Sort the `gen_params' array and then
14147         actually create the metadata.
14148
14149 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14150
14151         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
14152
14153 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
14154
14155         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
14156
14157 2004-08-24  Martin Baulig  <martin@ximian.com>
14158
14159         * class.cs (mono_class_is_subclass_of): Like an interface, a
14160         generic instance also derives from System.Object.
14161
14162 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
14163
14164         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
14165         custom modifiers to be in any order. Fixes #61990.
14166
14167 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
14168
14169         * object.c: Register mono_object_new_fast icall.
14170         
14171         * object.c (mono_class_get_allocation_ftn): Return to calling
14172         mono_object_new_fast, since it seems faster to compute the object 
14173         size in unmanaged code than passing it as a parameter.
14174
14175         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
14176
14177         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
14178         this function with Boehm as the oom handler, so we don't have to check
14179         the result of GC_malloc.
14180
14181         * object.c: Remove checks for oom.
14182
14183         * object.h object.c (mono_class_get_allocation_ftn): New function to
14184         return the icall which can be used to allocate an instance of a given
14185         class. 
14186
14187         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
14188
14189         * class-internals.h: Add 'enabled' field.
14190
14191 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
14192
14193         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
14194
14195 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
14196         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
14197         value 0x0010.
14198
14199 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
14200
14201         * appdomain.c: use the Tls function for appdomain too,
14202         at Zoltan's request. Actually return in mono_context_get
14203
14204         * appdomain.c, profiler.c, threads.c: use __thread
14205
14206 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
14207
14208         * appdomain.c threads.c: Call GC_CreateThread on windows.
14209
14210         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
14211         multiple libraries since this don't work on windows.
14212
14213 2004-08-18  Martin Baulig  <martin@ximian.com>
14214
14215         * class-internals.h
14216         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
14217         MonoMethodHeader.
14218
14219         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
14220         MonoMethodNormal since we also need it for abstract and interface
14221         methods.
14222
14223         * reflection.c
14224         (build_compressed_metadata): Sort the GenericParam table.
14225         (mono_image_create_token): Added `gboolean create_methodspec'
14226         argument; this is false when generating a MethodImpl token.
14227         (reflection_methodbuilder_to_mono_method): Abstract and interface
14228         methods may also have generic parameters.
14229
14230 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
14231
14232         * appdomain.c: thread local alloc
14233
14234 2004-08-17  Martin Baulig  <martin@ximian.com>
14235
14236         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
14237
14238         * icall.c
14239         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
14240         argument.
14241
14242         * class.c (mono_type_get_full_name): New public function.
14243         (mono_type_get_name): Don't include the type arguments.
14244
14245 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
14246
14247         * Makefile.am: Build static versions of libmetadata and libmonoruntime
14248         for inclusion into the mono executable.
14249
14250 2004-08-16  Martin Baulig  <martin@ximian.com>
14251
14252         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
14253         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
14254
14255 2004-08-14  Martin Baulig  <martin@ximian.com>
14256
14257         * class.c (dup_type): Also copy the `byref' field.
14258
14259 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
14260
14261         * reflection.c (create_dynamic_mono_image): Revert the last change 
14262         since it breaks bootstrap.
14263
14264 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
14265
14266         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
14267
14268         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
14269         not free them with g_free.
14270
14271 2004-08-11  Martin Baulig  <martin@ximian.com>
14272
14273         * reflection.c (mono_reflection_setup_internal_class): Also call
14274         mono_class_setup_mono_type() if we already have a `tb->type.type'.
14275
14276 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
14277
14278         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
14279         called during default (first) AppDomain creation. Keep track of
14280         Evidence when loading assemblies.
14281
14282 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
14283
14284         * opcodes.c, opcodes.h: reduce runtime relocations.
14285
14286 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
14287
14288         * culture-info.h, locales.c: fixes and chages to sue the new
14289         optimized format of the locale data.
14290         * culture-info-tables.h: regenerated.
14291
14292 2004-08-06  Geoff Norton <gnorton@customerdna.com>
14293         
14294         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
14295
14296 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
14297
14298         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
14299         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
14300         * domain-internals.h: icall declaration.
14301         * icall.c: icall registration.
14302         * object-internals.h: New fields in MonoAssembly for CAS.
14303
14304 2004-08-05  Duncan Mak  <duncan@ximian.com>
14305
14306         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
14307         CEE_LDELEM_ANY.
14308
14309 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
14310
14311         * reflection.c: fix to deal with object[] arrays in custom ctors
14312         (bug #62550).
14313
14314 2004-08-05  Martin Baulig  <martin@ximian.com>
14315
14316         * class.c (mono_class_array_element_size): Added support for
14317         generic instances and correctly handle "recursive" types.
14318
14319 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
14320
14321         * assembly.c: Fix warnings.
14322
14323 2004-08-04  Martin Baulig  <martin@ximian.com>
14324
14325         * class.c
14326         (mono_type_get_name_recurse): Added `gboolean include_arity'
14327         argument specifying whether or not we should include the generic
14328         arity in the type name.
14329         (_mono_type_get_name): New static function.
14330         (mono_class_setup_vtable): If we're a generic instance, don't
14331         include the generic arity in the names of explicit method
14332         implementations.        
14333
14334 2004-08-03  Martin Baulig  <martin@ximian.com>
14335
14336         * class.c (mono_type_get_name_recurse): Enclose the generic type
14337         arguments in `<', '>'.
14338
14339 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
14340
14341         * gc.c: make GC warning messages use the trace API, they are just
14342         noise to most of the users.
14343
14344 2004-08-03  Martin Baulig  <martin@ximian.com>
14345
14346         * debug-mono-symfile.c (read_string): Correctly read the string.
14347
14348 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
14349
14350         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
14351         
14352         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
14353         icalls.
14354         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
14355
14356 2004-07-30  Martin Baulig  <martin@ximian.com>
14357
14358         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
14359         Reflect latest symbol writer changes.   
14360
14361 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14362
14363         * object.c: always create an object if null is passed
14364         to Invoke() where a valuetype is expected.
14365
14366 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
14367
14368         * marshal.c (mono_marshal_init): make managed
14369         signatures match native ones better for 64bits.
14370
14371 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14372
14373         * appdomain.c: hack to build correctly the private bin path on windows.
14374         Fixes bug #61991.
14375
14376 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
14377
14378         * assembly.c: Load mscorlib from the correct framework directory
14379           (mono/<version>/mscorlib.dll).
14380         * appdomain.h: Added prototypes for new functions.
14381         * internals.h: Added some prototypes.
14382         * domain.c: When initializing the runtime, get from the executable and
14383           the configuration files the runtime version that the app supports.
14384           Added support methods for reading app.exe.config. Added list of versions
14385           supported by the JIT. Added two new methods: mono_init_from_assembly,
14386           which initializes the runtime and determines the required version from
14387           the provided exe file, and mono_init_version, which initializes
14388           the runtime using the provided version.
14389         * icall.c: Get machine.config from version-specific directory.
14390         * reflection.c: When generating an image, embed the version number
14391           of the current runtime.
14392
14393 2004-07-28  Dick Porter  <dick@ximian.com>
14394
14395         * socket-io.c
14396         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
14397         returned sockaddr size before creating the remote address object.
14398         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
14399         61608.
14400
14401 2004-07-28  Dick Porter  <dick@ximian.com>
14402
14403         * locales.c (string_invariant_compare_char): Fix invariant char
14404         compares between upper and lower cases.  Fixes bug 61458.
14405
14406 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
14407         
14408         * marshal.c: actually cache stelem.ref wrappers.
14409         
14410 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
14411
14412         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
14413         sections and remove the mono_cli_rva_map () function.
14414
14415 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
14416
14417         * debug-mono-symfile.c: fix one more endianess issue, from a patch
14418         by Geoff Norton (<gnorton@customerdna.com>).
14419
14420 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
14421
14422         * class.c: fix class loads for pointer types (typeof(int) !=
14423         typeof(int*)).
14424
14425 2004-07-27  Martin Baulig  <martin@ximian.com>
14426
14427         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
14428         reading the debugging information from an external ".mdb" file.
14429
14430 2004-07-24  Martin Baulig  <martin@ximian.com>
14431
14432         * reflection.c (mono_image_get_type_info): Only write a class
14433         layout entry if we actually have a size or a packing size.
14434
14435 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14436
14437         * reflection.c (type_get_fully_qualified_name): 
14438         insert cast to get type checking of ?: with non-gcc compilers
14439
14440 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
14441
14442         * rand.c: use g_getenv for both lookups of
14443         MONO_EGD_SOCKET
14444
14445 2004-07-17  Martin Baulig  <martin@ximian.com>
14446
14447         * reflection.c (mono_reflection_bind_generic_method_parameters):
14448         Set `gmethod->reflection_info'.
14449
14450 2004-07-17  Martin Baulig  <martin@ximian.com>
14451
14452         * class.c (mono_class_create_from_typedef): Insert the newly
14453         created class into the hash table before computing the interfaces
14454         since we could be called recursively.
14455
14456 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
14457
14458         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
14459         function to implement stelem.ref in managed code
14460         * class-internals.h, debug-helpers.c: a new wrapper type
14461         for the above.
14462
14463 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
14464
14465         * gc.c: allow GC handles to work even when no GC is compiled in.
14466         Fix part of bug #61134 (GetAddrOfPinnedObject).
14467
14468 2004-07-13  Peter Williams  <peter@newton.cx>
14469  
14470         * process.c (complete_path): Make sure we don't attempt to execute
14471         directories.
14472  
14473 2004-07-12  Geoff Norton <gnorton@customerdna.com>
14474
14475         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
14476           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
14477           and will add/subtract the hour if needed
14478
14479 2004-07-12  Martin Baulig  <martin@ximian.com>
14480
14481         * reflection.c (mono_field_get_object): If we have
14482         `field->generic_info', take the attributes from
14483         `field->generic_info->generic_type'.    
14484
14485 2004-07-12  Martin Baulig  <martin@ximian.com>
14486
14487         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
14488         This function must be called before initializing the runtime.
14489         (mono_debug_init_1): New function; call this after initializing
14490         the runtime, but before loading the assembly.  It tells the
14491         debugger to load corlib and the builtin types.
14492
14493         * mono-debug-debugger.c: Did some larger changes in the debugging
14494         code; support recursive class declarations, make sure we actually
14495         add all classes.
14496
14497 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14498
14499         * debug-helpers.c: undo my previous patch and fixed the real issue in
14500         ../mini/exceptions-x86.c
14501
14502 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14503
14504         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
14505         when no HOME env. variable was set and a NullRef was thrown in a .cctor
14506         called from other .cctors.
14507
14508 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
14509
14510         * loader.c: Removed the mono_loader_wine_init hack now that we are
14511         doing a managed version of Windows.Forms.
14512
14513 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
14514
14515         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
14516         threadpool.c, threads.c: remove static data from rootset.
14517
14518 2004-07-09  Dick Porter  <dick@ximian.com>
14519
14520         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
14521         Don't do any more processing if the matched length was 0.  It was
14522         increasing the size of the string before.  Fixes bug 61167.
14523
14524 2004-07-09  Dick Porter  <dick@ximian.com>
14525
14526         * socket-io.h:
14527         * socket-io.c
14528         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
14529         Add support for SO_PEERCRED if its available.
14530
14531 2004-07-09  Peter Bartok <pbartok@novell.com>
14532         * loader.c: winelib.exe.so error message is now only displayed if
14533         MONO_DEBUG is set. To help us avoid questions when people are trying
14534         out the new Managed.Windows.Forms.
14535
14536 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
14537
14538         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
14539         for isinst and castclass wrappers.
14540
14541         * class-internals.h icall.c: Move registration and lookup of JIT icalls
14542         to libmetadata from the JIT, so they could be used by the marshalling
14543         code and the interpreter.
14544
14545         * marshal.c: Register marshalling related JIT icalls here instead of
14546         in mini.c. Use CEE_MONO_ICALL instead of the family of 
14547         CEE_MONO_PROC<x> opcodes to call marshalling functions.
14548
14549         * metadata.h: Remove unneeded marshalling conversions.
14550
14551         * opcodes.c: Update for new opcodes.
14552         
14553 2004-07-08  Martin Baulig  <martin@ximian.com>
14554
14555         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
14556         (mono_debug_get_domain_data): Make this function static.
14557
14558 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14559
14560         * gc.c, object.h: add nice GC handle API for embedders.
14561
14562 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
14563
14564         * reflection.c: more changes for the new api
14565
14566         * object.c: When we reflect on a field w/ a constant value, it
14567         will not have a memory location, so we must access metadata. Also,
14568         allow easier reading of strings so that we can read them from
14569         the constant data.
14570
14571         * class.c (mono_class_layout_fields): no need for literal fields here.
14572
14573         * class-internals.h: api changes for const fields
14574
14575         * icall.c (ves_icall_get_enum_info): use new apis for const fields
14576
14577 2004-07-06  Martin Baulig  <martin@ximian.com>
14578
14579         * mono-debug.h: Increment version number to 44.
14580
14581         * mono-debug.c (mono_debug_add_wrapper): The second argument is
14582         now a gpointer, rewrote this whole method.
14583
14584         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
14585         function.  Add information about the wrapper in a new "misc table".
14586
14587         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
14588         for the new misc table.
14589
14590 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
14591
14592         * metadata-internals.h image.c: Add a cache for helper signatures.
14593
14594         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
14595
14596 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
14597
14598         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
14599         delegates from a delegate. Fixes #61033.
14600         
14601         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
14602         marshalling of stringbuilder arrays. Fixes #59900.
14603
14604 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
14605
14606         * icall.c: Add EnumBuilder:setup_enum_type icall.
14607
14608 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
14609
14610         * icall.c: Added a new icall for the property version of
14611         OffsetOfStringData.
14612
14613 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
14614
14615         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
14616         it has a constant size across platforms.
14617
14618         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
14619         stack trace.
14620
14621 2004-06-29  Martin Baulig  <martin@ximian.com>
14622
14623         * mono-debug.c (mono_debug_add_method): Protect the whole function
14624         in mono_debugger_lock(), not just parts of it.
14625
14626 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
14627
14628         * reflection.c: make sure padding bytes in heaps are zeroed.
14629
14630 2004-06-24  David Waite  <mass@akuma.org>
14631
14632         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
14633         image.c, loader.c, locales.c, marshal.c, metadata.c,
14634         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
14635         string-icalls.c, threads.c: change to C90-style comments from C99 /
14636         C++ -style
14637
14638 2004-06-24  Dick Porter  <dick@ximian.com>
14639
14640         * threads.c
14641         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
14642         return createdNew.  Fixes bug 60412.
14643
14644         * threads-types.h: 
14645         * icall.c: Add createdNew parameter to CreateMutex icall
14646
14647 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14648
14649         * reflection.c, object-internals.h: save default value in params.
14650
14651 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14652
14653         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
14654         no need to build a new path combining that with the application base.
14655         Fixes bug #60442.
14656
14657 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
14658
14659         * reflection.c: fixed minor standard compliance issues.
14660
14661 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
14662
14663         * reflection.c: fixed issue with encoding some custom attributes
14664         (arrays in properties and fields, bug #60411).
14665
14666 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14667
14668         * reflection.c: fix start address when copying the public key token.
14669
14670 2004-06-23  Martin Baulig  <martin@ximian.com>
14671
14672         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
14673         the `exc' object in a static object to put it into the GC's root set.
14674
14675 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
14676
14677         * reflection.c: make mono_reflection_setup_internal_class ()
14678         callable a second time to setup a new parent class.
14679
14680 2004-06-23  Dick Porter  <dick@ximian.com>
14681
14682         * threads.c: Check for WAIT_IO_COMPLETION return values.
14683
14684 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
14685
14686         * appdomain.c: Removed the g_free on the public key token. Now copy 
14687         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
14688         * assembly.c: Added public key token string value when loading 
14689         assemblies. Fix bug #60439.
14690         * icall.c: Added missing informations (like public key) in 
14691         GetReferencedAssemblies. Fix #60519.
14692         * image.h: Changed definition for public key token from const char*
14693         public_tok_value to guchar public_key_token [17];
14694         * reflection.c: Updated for changes to public key token.
14695
14696 2004-06-22  Lluis Sanchez Gual
14697
14698         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
14699         for the field in base classes.
14700
14701 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14702
14703         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
14704         mark headers as not supported, they are installed only for use by the
14705         debugger.
14706
14707 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
14708
14709         * *.c, *.h: avoid namespace pollution in public headers.
14710
14711 2004-06-21  Martin Baulig  <martin@ximian.com>
14712
14713         * exception.c (mono_get_exception_security): It's in
14714         "System.Security", not in "System".
14715
14716         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
14717         the exception classes.
14718
14719 2004-06-21  Martin Baulig  <martin@ximian.com>
14720
14721         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
14722         Protect the exception object from being finalized.
14723
14724 2004-06-21  Martin Baulig  <martin@ximian.com>
14725
14726         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
14727         public function.
14728
14729 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
14730
14731         * reflection.c: Load the assembly in mono_reflection_type_from_name,
14732         if it was not loaded before. Fix parts of #60439.
14733
14734 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
14735
14736         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
14737         code that was broken since Ben's change: wrappers are now
14738         dependent on the method signature only again.
14739
14740 2004-06-21  Martin Baulig  <martin@ximian.com>
14741
14742         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
14743         added interface support.
14744
14745 2004-06-21  Martin Baulig  <martin@ximian.com>
14746
14747         * class.c (mono_vtable_get_static_field_data): New public method.
14748
14749 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
14750
14751         * filewatcher.c : Windows build fix to be compliant with API changes.
14752
14753 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14754
14755         * class.h, class.c: more accessors.
14756         * metadata.h, metadata.c: prepare for hiding MonoType and
14757         MonoMethodSignature: people should use the accessors from now on
14758         outside of the tree.
14759
14760 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
14761
14762         * *.c, *.h: more API cleanups.
14763
14764 2004-06-18  Jackson Harper  <jackson@ximian.com>
14765
14766         * assembly.c: Trace loading assemblies.
14767         * loader.c: Trace loading native libraries.
14768         * mono-config.c: Trace loading config files.
14769         
14770 2004-06-18  Dick Porter  <dick@ximian.com>
14771
14772         * locales.c: Tell ICU the lengths of strings, it can cope with
14773         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
14774
14775 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
14776
14777         * image.c: swapped name/filename;
14778
14779 2004-06-18  Martin Baulig  <martin@ximian.com>
14780
14781         * mono-debug-debugger.c (write_class): Write the parent class at
14782         the end of the header.
14783
14784 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
14785
14786         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
14787
14788 2004-06-17  Raja R Harinath  <rharinath@novell.com>
14789
14790         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
14791         (bundle_obj): New conditional define.
14792         (BUILT_SOURCES): Remove.
14793         ($(bundle_srcs)): Make parallel-make safe.
14794         (libmonoruntime_la_LIBADD): Make unconditional.
14795         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
14796         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
14797
14798 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
14799
14800         * culture-info-tables.h: It was inconsistent with the latest
14801           supp info files.
14802
14803 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
14804
14805         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
14806         be loaded.
14807
14808         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
14809         with gcc 2.95.
14810
14811 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
14812
14813         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
14814         cleaned up public header threads.h.
14815
14816 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
14817
14818         * Makefile.am, *.c, *.h: more API cleanups.
14819
14820 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
14821
14822         * Makefile.am: removed monosn from compilation.
14823         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
14824         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
14825         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
14826         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
14827         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
14828         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
14829
14830 2004-06-15  Jackson Harper  <jackson@ximian.com>
14831
14832         * assembly.c: Make locales lower case when searching the GAC for
14833         assemblies. gacutil will always make locales lowercase when
14834         installing so this effectively makes them case insensitive.
14835         
14836 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
14837
14838         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
14839         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
14840           parameter which allows to choose whether the wait can be interrupted or 
14841           not. Also added the method mono_monitor_enter(), which locks the monitor
14842           using an infinite wait and without allowing interruption.
14843           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
14844           interrupted.
14845         * object.h: Added new fields in MonoThread. suspend_event holds the event
14846           used to susped/resume the thread. synch_lock is the lock object to use for
14847           modifying the thread state.
14848         * threads.c: Use the new synch_lock object for locking, instead of "this",
14849           which can generate deadlocks.
14850           Moved thread state change in Thread.Sleep and Thread.Join from managed
14851           to unmanaged code. This avoids a deadlock when the thread was suspended
14852           just after acquiring the thread lock.
14853           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
14854           Implemented Thread.Suspend using an event instead of ThreadSuspend,
14855           which is not fully implemented in the io-layer.
14856         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
14857
14858 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
14859
14860         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
14861         threads-types.h: more API cleanups.
14862
14863 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
14864
14865         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
14866         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
14867         threadpool.c, threads.c: first pass at the exported API cleanup.
14868
14869 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
14870
14871         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
14872
14873 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14874
14875         * icall.c: added internalGetHome.
14876
14877 2004-06-14  Dick Porter  <dick@ximian.com>
14878
14879         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
14880         possible to return successfully when '.' or '..' were the only
14881         entries in a directory, but were skipped.  The MonoIOStat was not
14882         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
14883         Fixes bug 59574.
14884
14885 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
14886
14887         * reflection.c: make binaries run on .Net 1.1 by default.
14888
14889 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
14890
14891         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
14892
14893 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
14894
14895         * marshal.c: keep track of struct size with explicit layout
14896         (bug #59979).
14897
14898 2004-06-12  Martin Baulig  <martin@ximian.com>
14899
14900         * mono-debug-debugger.c: Comment out a debugging g_message().
14901
14902 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
14903
14904         * reflection.c, reflection.h: do not free custom attrs that are cached.
14905         * icall.c: use braces to make code clearer.
14906
14907 2004-06-11  Martin Baulig  <martin@ximian.com>
14908
14909         * class.h (MonoInflatedField): New type.
14910         (MonoClassField): Replaced `MonoType *generic_type' with
14911         `MonoInflatedField *generic_info'.
14912
14913         * icall.c
14914         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
14915
14916 2004-06-11  Martin Baulig  <martin@ximian.com>
14917
14918         * reflection.c (mono_image_create_method_token): Correctly encode
14919         varargs methods.
14920
14921 2004-06-11  Martin Baulig  <martin@ximian.com>
14922
14923         * metadata.c (mono_metadata_parse_method_signature): When parsing
14924         a MethodDef which has VarArgs, also set sentinelpos if we don't
14925         have any parameters.
14926
14927 2004-06-11  Martin Baulig  <martin@ximian.com>
14928
14929         * verify.c (mono_method_verify): In CEE_CALL, use
14930         mono_method_get_signature() to get the method's signature, unless
14931         we're a PInvoke method.
14932
14933 2004-06-10  Jackson Harper  <jackson@ximian.com>
14934
14935         * assembly.c: Use <path>/lib/mono/gac for the extra paths
14936         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
14937         logical name as the supplied path is just a prefix to the gac not
14938         the direct path to it.
14939         
14940 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
14941
14942         * reflection.c: make the token for a created method match
14943         the token of the MethodBuilder it was created from
14944         (IKVM requires this behaviour now).
14945
14946 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
14947
14948         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
14949         reflection.c, socket-io.c: leak fixes.
14950
14951 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
14952
14953         * icall.c: handle sentinel pos in vararg methods in position different
14954         from 0.
14955
14956 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
14957
14958         * culture-info-tables.h: freshly generated.
14959
14960 2004-06-09  Martin Baulig  <martin@ximian.com>
14961
14962         * loader.c (mono_get_method_constrained): Call `mono_class_init
14963         (constrained_class)'.   
14964
14965 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
14966
14967         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
14968         any methods. Fixes #59629.
14969
14970 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
14971
14972         * culture-info-tables.h: reflecting locale-builder updates.
14973
14974 2004-06-08  Dick Porter  <dick@ximian.com>
14975
14976         * object.h:
14977         * locales.c: Fixed compile warnings, including a real bug in
14978         CompareInfo_internal_compare.
14979         
14980 2004-06-08  Dick Porter  <dick@ximian.com>
14981
14982         * locales.c
14983         (ves_icall_System_Globalization_CompareInfo_internal_index):
14984         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14985         Double-check the resuls of usearches, because ICU currently
14986         ignores most of the collator settings here.  Fixes bug 59720.
14987         
14988 2004-06-08  Dick Porter  <dick@ximian.com>
14989
14990         * locales.c
14991         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
14992         Fix memory leak and segfault-causing typo.  No idea how this one
14993         lasted so long without being noticed.
14994
14995 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
14996
14997         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
14998         any methods. Fixes #59629.
14999
15000 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15001
15002         * assembly.c:
15003         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
15004         own the critical section before). Removed dead code (that's done
15005         in the preload hook).
15006
15007         (mono_assembly_load_with_partial_name): call the preload hook.
15008
15009 2004-06-08  Martin Baulig  <martin@ximian.com>
15010
15011         * metadata.c (mono_metadata_signature_alloc): Default
15012         `sentinelpos' to -1.
15013
15014         * reflection.c (mono_image_get_array_token): Likewise.
15015
15016 2004-06-08  Martin Baulig  <martin@ximian.com>
15017
15018         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
15019
15020         * metadata.c (mono_metadata_parse_method_signature): When parsing
15021         a MethodDef which has VarArgs, set sentinelpos.
15022
15023         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
15024         `gint16' since we're using -1 for non-varargs methods.
15025
15026         * reflection.c
15027         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
15028         (method_encode_signature): Added varargs support.
15029         (method_builder_encode_signature): Likewise.
15030         (mono_image_get_varargs_method_token): New static method.
15031         (mono_image_create_method_token): New public method; this is
15032         called via an icall instead of mono_image_create_token() when
15033         calling a varargs method.       
15034
15035 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
15036
15037         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
15038
15039 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
15040
15041         * culture-info-tables.h : Reflecting the latest locale-builder that
15042           fixed empty array representation ({} to {0}).
15043
15044 2004-06-07  Jackson Harper  <jackson@ximian.com>
15045
15046         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
15047         looking up extra gac paths. This allows MONO_GAC_PATH to act
15048         exactly like a prefix.
15049         
15050 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
15051
15052         * reflection.c (mono_reflection_type_from_name): Make a copy of the
15053         type name before modifying it. Fixes #59405.
15054
15055 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
15056
15057         * culture-info.h: added fields for "all datetime patterns".
15058         * locales.c: (  ves_icall_System_Globalization_CultureInfo
15059           _construct_datetime_format ()): fill xxx_patterns fields.
15060         * object.h: added fields for "all datetime patterns" to
15061           MonoDateTimeFormatInfo.
15062         * culture-info-tables.h: reflecting locale-builder updates.
15063
15064 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
15065
15066         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
15067         the event has no add and remove methods. Fixes #59629.
15068
15069 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
15070
15071         * object.c: Fixed possible integer overflow when allocating large
15072         strings.
15073
15074 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
15075
15076         * culture-info-tables.h: reflecting locale-builder updates.
15077
15078 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
15079
15080         * culture-info-tables.h: reflecting locale-builder updates.
15081
15082 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
15083
15084         * culture-info-tables.h: reflecting locale-builder updates.
15085
15086 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
15087
15088         * threads.c: Made Thread.Sleep abortable.
15089
15090 2004-06-02  Martin Baulig  <martin@ximian.com>
15091
15092         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
15093
15094         * debug-mono-symfile.h: Bumped symbol file version number to 37.
15095
15096 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
15097
15098         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
15099
15100 2004-05-30  Jackson Harper  <jackson@ximian.com>
15101
15102         * reflection.c: Do not hardcode assembly versions or public key
15103         tokens anymore. All of this except the corlib section was dead
15104         code anyways.
15105         
15106 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
15107
15108         * object.c (mono_runtime_invoke_array): Automatically create boxed
15109         objects for byref valuetypes if needed. Fixes #59300.
15110         
15111         * object.c (mono_method_return_message_restore): Handle 
15112         MONO_TYPE_OBJECT as well.
15113
15114 2004-05-28  Jackson Harper  <jackson@ximian.com>
15115
15116         * reflection.c: The modified type encoding was causing build
15117         problems. Reverted for now.
15118         
15119 2004-05-28  Jackson Harper  <jackson@ximian.com>
15120
15121         * reflection.c/h: Take an assembly ref so that we dont create
15122         fully qualified names when encoding types in the same assembly as
15123         the custom attribute being emitted.
15124         * appdomain.c: Increment version number.
15125         
15126 2004-05-26  Duncan Mak  <duncan@ximian.com>
15127
15128         * icall.c
15129         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
15130         Set the full version number (major, minor, build, revision).
15131
15132 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
15133
15134         * marshal.c (emit_struct_conv): increment src/dst after blit
15135         (mono_marshal_get_managed_wrapper,
15136         mono_marshal_get_native_wrapper): make sure we have marshalling
15137         info before marshalling params (info computation affects
15138         blittable)
15139
15140         * class.c (class_compute_field_layout): correctly deal with
15141         blittable
15142         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
15143         value types (as per what windows dows by default)
15144         (mono_class_setup_mono_type): System.ValueType is blittable
15145         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
15146         blittable
15147
15148         * marshal.c (mono_marshal_load_type_info): flag types  as
15149         non-blittable if the native layout doesn't match the managed
15150         layout
15151
15152 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15153
15154         * appdomain.c: don't add stuff in the private search path that is
15155         above the application base. If application base is not set, there's
15156         no private search path.
15157
15158 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
15159
15160         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
15161         byref struct arguments in native->managed marshalling.
15162
15163 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
15164
15165         * marshal.c (mono_marshal_get_runtime_invoke): correctly
15166         cache methods using signature (special case for methods
15167         that are value type or string class)
15168         
15169         * image.c (mono_image_close): clean up allocated GSList's
15170         in runtime_invoke_cache.
15171
15172 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15173
15174         * mono-config.c: set the correct path for mono_cfg_dir on windows when
15175         there's no MONO_CFG_DIR environment variable defined.
15176
15177 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15178
15179         * threads.c: windows version must be >= 0x0500 to include OpenThread.
15180
15181 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
15182
15183         * threadpool.c: Really wait for 500ms after the async call, even if the wait
15184           is interrumped.
15185         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
15186           before waiting for it, and call CloseHandle after the wait to unref it.
15187           This will make sure that handles are not disposed too early.
15188
15189 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15190
15191         * appdomain.c:
15192         * appdomain.h:
15193         * icall.c: removed
15194         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
15195         needed now.
15196
15197         * object.c: se the application_base only for the domain that runs
15198         Main. Fixes bug #59216,
15199
15200 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15201
15202         * appdomain.c:
15203         * object.c: only the domain in which Main is run have
15204         SetupInformation.ConfigurationFile set, so moved a few lines from
15205         appdomain.c to object.c.
15206
15207 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15208
15209         * appdomain.c: we tried to load [name].(dll|exe), but according
15210         to bug #57710, we must also try [culture]/[name].(dll|exe) and
15211         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
15212         There's a test case attached to bug #58922.
15213
15214 2004-05-27  Dick Porter  <dick@ximian.com>
15215
15216         * icall.c:
15217         * file-io.c: Implemented icalls for locking and unlocking regions
15218         in a file.
15219         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
15220         FALSE on error (fixes both compiler warning and real bug.)
15221
15222 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
15223
15224         * culture-info-tables.h: reflecting locale-builder updates.
15225
15226           (Added missing ChangeLog entry for 05/26)
15227
15228 2004-05-27  Jackson Harper  <jackson@ximian.com>
15229
15230         * locales.c: Fix some cut and paste errors.
15231         
15232 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15233
15234         * mono-config.c: set the correct path for config. directory on windows.
15235
15236 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
15237
15238         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
15239           on win32.
15240
15241 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
15242
15243         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
15244         from pinvoke functions.
15245         
15246         * marshal.c (mono_ftnptr_to_delegate): Implement this.
15247
15248 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
15249
15250         * culture-info-tables.h: reflecting locale-builder updates.
15251
15252 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
15253
15254         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
15255         #59086.
15256
15257 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
15258
15259         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
15260         * icall.c: Modified icalls for RNG.
15261         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
15262         Windows (CryptoAPI).
15263
15264 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
15265
15266         * locales.c: Fix build.
15267
15268 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
15269
15270         * culture-info-tables.h: reflecting locale-builder updates.
15271
15272 2004-05-25  Jackson Harper  <jackson@ximian.com>
15273
15274         * locales.c: When creating the current culture use the $LANGs
15275         specific culture. So DateTimeFormat and NumberFormat entries are created.
15276         
15277 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
15278
15279         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
15280         a char array as parameter.
15281
15282 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
15283
15284         * image.c: In mono_image_open(), always use an absolute path name to
15285           look for already loaded images.
15286
15287 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
15288
15289         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
15290         missing in the windows build (like older cygwin include files).
15291
15292 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
15293
15294         * icall.c: Fixed check for possible integer overflow in Buffer_
15295         BlockCopy icall. Replaced comments style // by /* */.
15296
15297 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
15298
15299         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
15300         
15301         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
15302         check after MONO_VTADDR. Fixes pinvoke2.exe.
15303
15304         * marshal.h marshal.c metadata.h: Add beginnings of support for
15305         ftnptr -> delegate marshalling.
15306
15307 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
15308
15309         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
15310         * threads.c: Fix warnings.
15311
15312 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
15313
15314         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
15315         * icall.c: Registered icalls for Suspend and Resume.
15316         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
15317           Thread.Abort.
15318         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
15319         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
15320         * process.c: Use WaitForSingleObjectEx.
15321         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
15322           checkpoints.
15323         * threads.c, threads.h: Make use of new Ex wait methods. Improved
15324           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
15325           for Suspend and Resume. Added new mono_thread_stop, used for stoping
15326           background threads. Added basic support for Abort in Windows.
15327           Start new threads using a managed delegate invoke wrapper. This wrapper
15328           has an interruption checkpoint that is needed since an interruption
15329           can be requested before the thread leaves the unmanaged code that starts 
15330           the thread.
15331         * marshal.c: Added interruption checkpoint after every native call, and
15332           also before managed calls for wrappers called from unmanaged code to
15333           go into managed code.
15334         * object.h: Added new field in MonoThread to keep track of interruption
15335           requests.
15336
15337 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
15338
15339         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
15340         calls.
15341
15342 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15343
15344         * appdomain.c:
15345         * assembly.c:
15346         * gc.c:
15347         * locales.c:
15348         * mono-config.c:
15349         * rand.c: getenv -> g_getenv (windows!)
15350
15351         * process.c: complete_path is also used on non-windows platforms.
15352
15353 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15354
15355         * icall.c: new signature for Process_Start.
15356
15357         * process.[ch]: new signature for Process_Start. If we're on windows
15358         and UseShellExecute is false, we have to search for the program by
15359         ourselves if we don't get a full path.
15360
15361 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
15362
15363         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
15364         marshalling and call CleanUpNativeData if needed. Fixes #58646.
15365
15366 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15367
15368         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
15369         Fixes bug #58373.
15370
15371 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15372
15373         * process.c: use double quotes to quote program name and arguments on
15374         windows. Fixes bug #58575.
15375
15376 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15377
15378         * file-io.c: don't return "." and ".." when using windows Find*File.
15379
15380 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
15381
15382         * marshal.c: Don't pass wrappers to message init because method 
15383         addressed used to lookup metadata. part of remoting[2|3] fix.
15384
15385 2004-05-15  Jackson Harper  <jackson@ximian.com>
15386
15387         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
15388         path is essentially the same as MONO_PATH except that it points to
15389         GACs instead of lib directories.
15390         * loader.h: The user gac is gone so we dont need function to
15391         enable/disable it.
15392         * mono-config.c: user gac option is now gone.
15393         
15394 2004-05-15  Jackson Harper  <jackson@ximian.com>
15395
15396         * culture-info.h: Make defines more consistent, add calendar data
15397         to the culture info table.
15398         * culture-info-tables.h: Add basic calendar data. Basically
15399         everyone gets default gregorian until all the data is
15400         updated.
15401         * locales.c: Use the new consistent defines. Set calendar data for
15402         culture info objects.
15403         * object.h: add a field for calendar data to CultureInfo
15404         
15405 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
15406
15407         * image.c: image->runtime_invoke_cache is keyed on signatures now.
15408         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
15409         a signature.
15410         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
15411         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
15412         an extra param that is the pointer of the method to invoke. The IL for
15413         the invoke method is no longer specific to the method, but to the
15414         signature of the method. Thus, we can share the same code for multiple
15415         methods. This reduces the number of methods that have to be compiled.
15416
15417 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
15418
15419         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
15420
15421         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
15422
15423         * icall.c: Optimize Buffer.BlockCopy.
15424
15425 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15426
15427         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
15428         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
15429         quote). Changed them to "MMMM yyyy".
15430
15431 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
15432
15433         * rand.c
15434         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
15435
15436 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
15437
15438         * reflection.h: Updated after changes to managed structures.
15439
15440         * appdomain.c: Bump corlib version.
15441
15442 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15443
15444         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
15445         windows.
15446
15447 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15448
15449         * Makefile.am: link to ../os/libmonoos.la on windows.
15450
15451         * assembly.c:
15452                 -If MONO_DEBUG, warn about non-existing directories in
15453                 MONO_PATH.
15454                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
15455                 compile time variable.
15456                 -Removed init_default_path and call mono_set_rootdir from
15457                 libmonoos.a instead (windows only).
15458
15459         * assembly.h: declare mono_assembly_getrootdir().
15460
15461         * domain.c:
15462         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
15463
15464         * loader.c: s/getenv/g_getenv/
15465
15466 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
15467
15468         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
15469
15470         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
15471
15472         * metadata.h: Add new marshalling conversions.
15473
15474         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
15475         function.
15476
15477         * reflection.c (mono_reflection_get_type): Lookup the type in all
15478         modules of a multi-module assembly. Fixes #58291.
15479
15480 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
15481
15482         * threads.c: Before aborting a background, set the StopRequested
15483         state.  This avoids throwing the Abort exception.
15484         In mono_thread_manage, don't continue with the shutdown until all
15485         aborted threads have actually stopped.
15486
15487 2004-05-10  Jackson Harper  <jackson@ximian.com>
15488
15489         * locales.c: Remove the modifier from culture names.
15490         
15491 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15492
15493         * Makefile.am: monosn is not installed any more. It has been deprecated
15494         in favor of sn.
15495
15496 2004-05-07  Jackson Harper  <jackson@ximian.com>
15497
15498         * locales.c
15499         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
15500         Fix array construction, add bailout if the length is 0.
15501
15502 2004-05-07  Dick Porter  <dick@ximian.com>
15503
15504         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
15505         machine doesn't have a DNS entry.  Patch by Urs Muff
15506         (umuff@quark.com), fixes bug 57928.
15507
15508 2004-05-06  Jackson Harper  <jackson@ximian.com>
15509
15510         * reflection.c: Handle null PublicTokens properly. alloc mem for
15511         assembly names culture so we dont crash when freeing it.
15512         
15513 2004-05-06  Jackson Harper  <jackson@ximian.com>
15514
15515         * assembly.c: Check the usergac when loading with partial names.
15516         
15517 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15518
15519         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
15520         does nothing for now (not required for Linux/Windows) but the class
15521         library can call it (and a newer or modified runtime could need it).
15522         * icall.c: Registred icall.
15523
15524 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15525
15526         * loader.c: prints a message on module loading error we set MONO_DEBUG
15527         environment variable.
15528
15529 2004-05-05  Jackson Harper  <jackson@ximian.com>
15530
15531         * appdomain.c: Handle PublicKeyToken=null properly.
15532         
15533 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
15534
15535         * environment.c|h: Added icall ves_icall_System_Environment_
15536         GetOSVersionString to get the current OS version as a string.
15537         * icall.c: Registred icall.
15538
15539 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
15540
15541         * object.c: in mono_object_get_virtual_method(), take into account that
15542         non-virtual methods don't have a slot in the vtable. Check needed when
15543         the object is a proxy.
15544
15545 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
15546
15547         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
15548         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
15549
15550         * object.c (mono_class_compute_gc_descriptor): Fix warning.
15551
15552         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
15553         passed when a valuetype is expected.
15554
15555         * object.c (mono_unhandled_exception): Only set the exit code if the
15556         exception happens in the main thread. Fixes thread5.exe.
15557
15558         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
15559         invalid names. Fixes #58047.
15560
15561 2004-05-03  Jackson Harper  <jackson@ximian.com>
15562
15563         * assembly.c: This line was committed accidently and is unneeded.
15564         
15565 2004-05-03  Jackson Harper  <jackson@ximian.com>
15566
15567         * icall.c: Add new icall for Assembly::LoadWithPartialName
15568         * assembly.c/.h: new function that probes the GAC to load partial
15569         assembly names by Paolo Molaro.
15570         
15571 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15572
15573         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
15574         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
15575         (type_get_fully_qualified_name): Added PublicKeyToken when building a
15576         full type name.
15577
15578 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15579
15580         * appdomain.c: fixed check for 'neutral' culture and removed warning.
15581         * reflection.c: fix bug when parsing a full type name and Version is not
15582         the last thing in the string.
15583
15584 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
15585
15586         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
15587         crashes when it is freed.
15588
15589 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15590
15591         * assembly.c: print the compat warning to stderr.
15592
15593 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
15594
15595         * assembly.c (mono_assembly_load_references): Add a compatibility
15596         hack to run old applications that might be still referencing the
15597         3300-based assemblies, only do this for System.xxx.
15598
15599 2004-05-01  Jackson Harper  <jackson@ximian.com>
15600
15601         * appdomain.c: If the culture is neutral we set it to "".
15602         
15603 2004-04-29  Jackson Harper  <jackson@ximian.com>
15604
15605         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
15606
15607 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
15608  
15609         * string-icalls.c: added low overhead function for copying chars
15610         * icall.c: added needed icall for the above function
15611  
15612 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15613
15614         * icall.c: fix return value of get_global_assembly_cache.  Implemented
15615         Environment.GetLogicalDrives.
15616
15617 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
15618
15619         * rand.c: try and talk to egd or prngd
15620         for random bytes if opening devices fail.
15621
15622 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
15623
15624         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
15625         alignment for the type using the native alignment of its members 
15626         instead of using klass->min_align.
15627
15628         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
15629
15630 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15631
15632         * file-io.c:
15633         * socket-io.c: added check for sys/aio.h.
15634
15635 2004-04-28  Dick Porter  <dick@ximian.com>
15636
15637         * threads.c: Don't abort a thread thats already aborting, when
15638         terminating everything.
15639
15640 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15641
15642         * icall.c: added 2 new async calls for Socket.
15643
15644         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
15645         IO on *nix systems.
15646
15647         * threadpool.c: removed unused variable.
15648
15649 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
15650
15651         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
15652
15653 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
15654
15655         * locales.c: put back string_invariant_tolower () and
15656         string_invariant_toupper ().
15657
15658 2004-04-26 David Waite <mass@akuma.org>
15659
15660         * file-io.h:
15661         * socket-io.h:
15662         * threads.h:
15663         * unicode.h: remove comma from end of enumeration declarations
15664
15665 2004-04-26 David Waite <mass@akuma.org>
15666
15667         * debug-mono-symfile.h:
15668         * decimal.c:
15669         * mono_debug.h:
15670         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
15671
15672
15673 2004-04-26  Jackson Harper  <jackson@ximian.com>
15674
15675         * appdomain.c: Increment version number.
15676         
15677 2004-04-26  Jackson Harper  <jackson@ximian.com>
15678
15679         * appdomain.c: Set assembly references public token value when
15680         PublicKeyToken is specified, not the hash_value. Free public token
15681         values when free assembly name data. Previously the public key
15682         token was hex decoded, however we are using hex encoded public key
15683         tokens, so this is not neccasary.
15684         * assembly.c: Lookup assemblies in the gac if their public token
15685         value is set. Add function to allow enabling user gac
15686         lookups. Specify whether or not the assembly was loaded from the
15687         GAC. Compare full assembly names when checking the cache for
15688         assemblies (Temporarily disabled see comment in code). Remove
15689         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
15690         specifies trace-loader they get extra info to stdout on the
15691         loading of assemblies.
15692         * image.h: Add a field for an assembly references public token
15693         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
15694         whether an assembly has been loaded from the GAC.
15695         * image.c: Remove a corlib -> mscorlib name mapping.
15696         * loader.h: Add function to enable/disable the user gac.
15697         * mono-config.c: Check if the usergac is enabled in the config
15698         file.
15699         * icall.c: New icall to determine whether or not an assembly has
15700         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
15701         * tabldefs.h: Add constant for assemblyref flag that specifies a
15702         full public key is used instead of a public token.
15703         * reflection.c: Remove mscorlib -> corlib mappings. Set
15704         PublicTokenValue instead of hash value. This value is a hex
15705         string so it does not need to be expanded.
15706
15707 2004-04-26  Martin Baulig  <martin@ximian.com>
15708
15709         * mono-debug-debugger.c (mono_debugger_initialize): Set
15710         `mono_debugger_initialized' before calling mono_debug_lock().
15711
15712 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
15713
15714         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
15715           InternalToUpper/InternalToLower.
15716         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
15717           removed invariant culture shortcut.  This is now done in managed code.
15718         * locales.c: (string_invariant_toupper/tolower) removed.
15719
15720 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15721
15722         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
15723         Added Poll internal call.
15724
15725         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
15726         call for Poll. Select was too heavy for polling a single socket.
15727
15728         * threadpool.[ch]: added mono_threadpool_cleanup.
15729         * threads.c: use it. Don't use Thread_Abort on windows.
15730
15731 2004-04-23  Martin Baulig  <martin@ximian.com>
15732
15733         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
15734
15735 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
15736
15737         * icall.c: Registred new icalls for key pair protection and added an
15738         icall for Environment.GetFolderPath on Windows.
15739         * security.c|h: Added new icalls for key pair protection.
15740
15741 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15742
15743         * socket-io.c: don't display the non-supported family warning for known
15744         families. Now this is not displayed on windows when checking support
15745         for IPv4/IPv6.
15746
15747 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15748
15749         * class.c: don't display the layout warning for static fields.
15750
15751 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
15752
15753         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
15754         * locales.c, locales.h: Added new icalls for culture-specific
15755         Char.ToLower and Char.ToUpper.
15756
15757 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15758
15759         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
15760         by David Waite.
15761
15762 2004-04-20  Martin Baulig  <martin@ximian.com>
15763
15764         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
15765         of the type name before passing it to mono_reflection_type_from_name().
15766
15767 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
15768
15769         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
15770         encodings here. Fixes #56965.
15771
15772 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
15773
15774         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15775         fix test on strstr result not that I can see anything that
15776         relies on the result.
15777
15778 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
15779
15780         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
15781         Fixes #57081.
15782
15783         * marshal.c (mono_marshal_get_string_encoding): New helper function.
15784
15785         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
15786         function to determine which marshalling to use for strings. Fixes
15787         #56965.
15788
15789         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
15790
15791         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
15792
15793 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
15794
15795         * icall.c: #include mono-config.h
15796
15797 2004-04-15  Jackson Harper  <jackson@ximian.com>
15798
15799         * culture-info-tables.h: Fix date formats for en-US culture.
15800         
15801 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
15802
15803         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
15804         ThreadPool.SetMinThreads.
15805         * threadpool.c: Implemented ThreadPool.GetMinThreads and
15806         ThreadPool.SetMinThreads.
15807
15808 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
15809
15810         * mono-config.c: also load the .config file in the directory
15811         where the assembly was found.
15812
15813 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
15814
15815         * assembly.c: load per-assembly config files.
15816         * icall.c: decrapified code to get the config dir and moved to
15817         mono-config.c.
15818         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
15819         per-assembly config files. When doing a dll map lookup give precedence
15820         to the per-assembly data.
15821
15822 2004-04-14  Martin Baulig  <martin@ximian.com>
15823
15824         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
15825         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
15826         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
15827
15828         * mono-debugger-debugger.c: While the debugger is locked, remember
15829         whether the symbol tables have changes and send one single
15830         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
15831
15832 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
15833
15834         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
15835
15836         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
15837         function.
15838
15839         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
15840         account when marshalling string arrays. Fixes #56965.
15841
15842 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
15843
15844         * icall.c: Add new icalls mapping for security.
15845         * security.c|h: Add internal calls for WindowsIdentity,
15846         WindowsImpersonationContext and WindowsPrincipal.
15847
15848 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
15849
15850         * class.c: Added comment to ensure the System.MonoDummy class
15851         is removed when no longer necessary
15852
15853 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
15854
15855         * appdomain.c: Pass arguments to the bootstraping exceptions to
15856         minimize JITed methods at boot
15857
15858         * metadata.c (mono_exception_from_name_two_strings): Allow for the
15859         second string to be null.
15860
15861         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
15862         Change the protocol to minimize the JIT methods at startup.  Now
15863         it Returns the internal codepage, if the value of "int_code_page"
15864         is 1 at entry, and we can not compute a suitable code page
15865         number, returns the code page as a string.
15866
15867 2004-04-13  Jackson Harper  <jackson@ximian.com>
15868
15869         * culture-info-tables.h: Fix number of decimal digits for all
15870         english locales.
15871
15872 2004-04-13  Jackson Harper  <jackson@ximian.com>
15873
15874         * icall.c: Clairfy out of sync error message. It is not always
15875         your corlib that is out of sync.
15876
15877 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
15878
15879         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
15880         properties when only the set accessor is overriden. Fixes #55874.
15881
15882 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
15883
15884         * assembly.c (mono_assembly_load_references): Make this thread safe.
15885         Fixes #56327.
15886
15887 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
15888
15889         * monosn.c: Add missing initialization calls.
15890
15891 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
15892
15893         * locales.c:
15894         ves_icall_System_Globalization_CultureInfo_construct_number_format
15895         Fix g_assert so it compiles on fussier compilers re int/ptr
15896         mismatch
15897
15898 2004-04-08  Dick Porter  <dick@ximian.com>
15899
15900         * socket-io.h:
15901         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
15902         53992.  Also rearrange the code so that the internal calls return
15903         an error value and exceptions are thrown from managed code.
15904
15905         * icall.c: Add type info to the socket icalls.
15906
15907 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
15908
15909         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
15910         owes me a beer.
15911
15912 2004-04-07  Martin Baulig  <martin@ximian.com>
15913
15914         * class.c (mono_class_from_generic_parameter): Don't default
15915         `klass->parent' to `mono_defaults.object_type'.
15916
15917 2004-04-07  Martin Baulig  <martin@ximian.com>
15918
15919         * reflection.c (mono_reflection_initialize_generic_parameter): Set
15920         `param->pklass->reflection_info'.       
15921
15922 2004-04-07  Jackson Harper  <jackson@ximian.com>
15923
15924         * culture-info-tables.h: Fix date separator symbol.
15925         
15926 2004-04-07  Martin Baulig  <martin@ximian.com>
15927
15928         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
15929         from System.Type to System.MonoType.
15930
15931 2004-04-07  Martin Baulig  <martin@ximian.com>
15932
15933         * reflection.h
15934         (MonoReflectionGenericParam): Added `has_reference_type' and
15935         `has_value_type' fields.
15936
15937         * reflection.c (mono_image_get_generic_param_info): Encode the
15938         correct flags if we have the `class' or `struct' constraint.
15939
15940 2004-04-07  Martin Baulig  <martin@ximian.com>
15941
15942         * reflection.h
15943         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
15944
15945 2004-04-07  Jackson Harper  <jackson@ximian.com>
15946
15947         * appdomain.c: Revert extra patches, just wanted to bump the
15948         version number.
15949         
15950 2004-04-07  Jackson Harper  <jackson@ximian.com>
15951
15952         * Makefile.am: Add culture-info private headers.
15953         * icall.c: Add new icalls for contructing locales.
15954         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
15955         * locales.h: Declare new culture info construction methods.
15956         * object.h: Add new fields used to avoid the CultureMap to
15957         MonoCultureInfo.
15958         * culture-info.h: Definition of structs used in the culture info
15959         tables.
15960         * culture-info-tables.h: Autogenerated tables that contain culture
15961         info data. This file was generated with the locale-builder tool.
15962         * appdomain.c: Incement corlib version number.
15963         
15964 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
15965
15966         * appdomain.c: (mono_runtime_init) move mono_thread_init
15967         to before mono_object_new calls so critical sections
15968         are initialized before use.
15969
15970 2004-04-07  Martin Baulig  <martin@ximian.com>
15971
15972         * icall.c
15973         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
15974         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
15975         (ves_icall_MonoGenericParam_initialize): Removed.
15976         (monogenericparam_icalls): Removed.
15977         (generictypeparambuilder_icalls): Added new table for
15978         System.Reflection.Emit.GenericTypeParameterBuilder.
15979
15980         * reflection.c
15981         (mono_reflection_define_generic_parameter): Removed.
15982         (mono_reflection_initialize_generic_parameter): This is now called
15983         from GenericTypeParameterBuilder's .ctor.
15984
15985 2004-04-06  Martin Baulig  <martin@ximian.com>
15986
15987         * class.c (mono_class_init): Don't inflate nested classes in a
15988         generic instance.
15989         (mono_type_get_name_recurse): Include the generic arguments for
15990         generic instances and generic type declarations.
15991         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
15992         (_mono_class_get_instantiation_name): Removed.
15993         (mono_class_create_generic): Always use `gklass->name' as our name.
15994
15995         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
15996
15997         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
15998         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
15999         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
16000         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
16001         closed generic methods here.
16002
16003         * reflection.c
16004         (mono_reflection_generic_inst_get_nested_types): Removed.
16005         (inflate_mono_method): Copy the generic parameters from the
16006         MonoMethodHeader into out MonoGenericMethod.
16007
16008 2004-04-06  Martin Baulig  <martin@ximian.com>
16009
16010         * row-indexes.h
16011         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
16012
16013         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
16014
16015         * reflection.c (build_compressed_metadata): If we have any entries
16016         in the GenericParam, MethodSpec or GenericParamConstraint tables,
16017         set the header version to 1.1.
16018
16019 2004-04-06  Martin Baulig  <martin@ximian.com>
16020
16021         * class.c (mono_class_init): If we're a generic instance,
16022         initialize our nested classes, too.
16023         (_mono_class_get_instantiation_name): Deal with the new `!%d'
16024         suffix. 
16025
16026 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16027
16028         * process.c: quote the argument passed to the shell on windows.
16029
16030 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
16031
16032         * threads.c (mono_alloc_special_static_data): Allow this to be
16033         called during startup.
16034
16035 2004-04-02  Martin Baulig  <martin@ximian.com>
16036
16037         * icall.c
16038         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
16039
16040 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
16041
16042         * icall.c: Fix build.
16043
16044 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
16045
16046         * Makefile.am: Added security.c|h.
16047         * icall.c: Added icall for get_UserName;
16048         * security.c: New file for security related icalls. Added function
16049         get_UserName for System.Environment (fix #56144).
16050         * security.h: New. Header file for security.c
16051
16052 2004-04-02  Dick Porter  <dick@ximian.com>
16053
16054         * icall.c: Deleted the icalls that were obsoleted some time ago
16055         by the ICU string code, and which were mixed into the icall
16056         rearranging.  Fixes bug 55969.
16057
16058         * string-icalls.h: 
16059         * string-icalls.c: Deleted the code that those icalls reference.
16060
16061 2004-04-01  Martin Baulig  <martin@ximian.com>
16062
16063         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
16064
16065         * class.c (mono_class_from_generic_parameter): Don't set 
16066         TYPE_ATTRIBUTE_INTERFACE.
16067         (my_mono_class_from_generic_parameter): Likewise.
16068
16069 2004-04-01  Martin Baulig  <martin@ximian.com>
16070
16071         * loader.c (find_method): Added an optional `MonoClass *ic'
16072         argument to search in a specific interface.
16073         (mono_get_method_constrained): New public function.
16074
16075 2004-04-01  Martin Baulig  <martin@ximian.com>
16076
16077         * reflection.c (mono_image_get_generic_field_token): Use the
16078         `handleref' cache here.
16079
16080 2004-04-01  Martin Baulig  <martin@ximian.com>
16081
16082         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
16083
16084         * reflection.c (create_generic_typespec): Use the `typespec' hash
16085         here, not the `typeref' one.    
16086
16087 2004-04-01  Martin Baulig  <martin@ximian.com>
16088
16089         * class.c (mono_class_inflate_generic_type): Moved the
16090         functionality into a new static inflate_generic_type() which
16091         returns NULL if it didn't do anything.  Only increment the
16092         `mono_stats.inflated_type_count' if we actually inflated
16093         something.
16094         (mono_class_get_full): Check the classes type to see whether we
16095         need to inflate it; also inflate MONO_TYPE_(M)VAR.
16096
16097 2004-04-01  Jackson Harper  <jackson@ximian.com>
16098
16099         * reflection.c: Set culture for assembly references.
16100         
16101 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
16102
16103         * reflection.[ch], icall.[ch], Fix support for pinning variables.
16104
16105 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16106
16107         * assembly.c:
16108         (do_mono_assembly_open): the critical section also covers
16109         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
16110
16111 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16112
16113         * threads.c:
16114         (mono_manage_threads): abort the background threads when finishing.
16115         Fixes bug #47232.
16116
16117 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16118
16119         * gc.c: only close the done_event handle if there was no timeout.
16120         C-ified comments.
16121
16122 2004-03-30  Martin Baulig  <martin@ximian.com>
16123
16124         * icall.c (icall_entries): It's called "System.Activator", not
16125         "System.Activation".    
16126
16127 2004-03-30  Martin Baulig  <martin@ximian.com>
16128
16129         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
16130         (mono_class_create_from_typespec): Likewise.
16131
16132 2004-03-30  Martin Baulig  <martin@ximian.com>
16133
16134         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
16135         `has_ctor_constraint' and `initialized'.
16136
16137 2004-03-30  Martin Baulig  <martin@ximian.com>
16138
16139         * reflection.c (encode_new_constraint): New static function to add
16140         the constructor constraint attribute to a type parameter.
16141         (encode_constraints): Call encode_new_constraint() if necessary.
16142
16143         * reflection.h
16144         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
16145
16146         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
16147         
16148 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
16149
16150         * reflection.c, icall.c: add support for pinning variables. 
16151
16152 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
16153
16154         * marshal.c (mono_marshal_get_managed_wrapper):
16155         init bool local with zero rather than null.
16156
16157 2004-03-29  Martin Baulig  <martin@ximian.com>
16158
16159         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
16160         the "official" behavior here.
16161         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
16162
16163 2004-03-29  Martin Baulig  <martin@ximian.com>
16164
16165         * icall.c: Reflect latest API changes.
16166
16167 2004-03-29  Martin Baulig  <martin@ximian.com>
16168
16169         * loader.c (mono_get_method_from_token): Also call
16170         mono_metadata_load_generic_params () for abstract and interface
16171         methods; replace the type arguments in the method signature with
16172         the ones which are loaded from the metadata.
16173
16174 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
16175
16176         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
16177         of the lock is not the current thread. MS.NET don't do it, in spite of
16178         what the documentation says. See bug #56157.
16179
16180 2004-03-28  Martin Baulig  <martin@ximian.com>
16181
16182         * class.c (mono_class_init): Don't call init_properties() and
16183         init_events() for generic instances; set `prop->parent' when
16184         inflating properties.
16185
16186         * reflection.c (mono_generic_inst_get_object): Call
16187         `mono_class_init (ginst->klass)'.
16188         (mono_type_get_object): Only create a MonoGenericInst if your
16189         generic type is a TypeBuilder.
16190         (do_mono_reflection_bind_generic_parameters): Only set
16191         `ginst->is_dynamic' if our generic type is a TypeBuilder.
16192
16193 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
16194
16195         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
16196         Fixes #56091.
16197
16198 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16199
16200         * icall.c: added Kill_internal icall.
16201         * process.[ch]: added Kill_internal icall.
16202
16203 2004-03-25  Martin Baulig  <martin@ximian.com>
16204
16205         * class.h (MonoStats): Added `generic_instance_count',
16206         `inflated_method_count', `inflated_type_count' and
16207         `generics_metadata_size'.       
16208
16209 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16210
16211         * reflection.c: no warnings now.
16212
16213 2004-03-25  Martin Baulig  <martin@ximian.com>
16214
16215         * class.c (mono_class_get_full): New public function; does a
16216         mono_class_get(), but also takes a `MonoGenericContext *'.
16217
16218         * loader.c (mono_field_from_memberref): Renamed to
16219         `field_from_memberref', made static and added `MonoGenericContext *'
16220         argument.
16221         (mono_field_from_token): Added `MonoGenericInst *' argument.
16222         (method_from_memberef): Likewise.
16223         (mono_get_method_from_token): Likewise.
16224         (mono_get_method_full): New public function; does a
16225         mono_get_method(), but also takes a `MonoGenericContext *'.
16226
16227         * verify.c (mono_method_verify): Get the method's generic context
16228         and pass it to mono_field_from_token(), mono_get_method_full() and
16229         mono_class_get_full().
16230
16231 2004-03-25  Martin Baulig  <martin@ximian.com>
16232
16233         * class.c (mono_class_inflate_generic_type): Take a
16234         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
16235         `MonoGenericMethod *'.
16236
16237 2004-03-25  Martin Baulig  <martin@ximian.com>
16238
16239         * loader.h (MonoMethodInflated): Store the MonoGenericContext
16240         instead of the MonoGenericMethod here.
16241
16242 2004-03-25  Martin Baulig  <martin@ximian.com>
16243
16244         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
16245         each time we create a new MonoGenericInst, we also create a new
16246         context which points back to us.
16247
16248         * class.c (inflate_method): Use `ginst->context' instead of
16249         creating a new context.
16250
16251         * loader.c (method_from_memberref): Use
16252         `klass->generic_inst->context' instead of creating a new context.
16253
16254 2004-03-25  Martin Baulig  <martin@ximian.com>
16255
16256         * class.h (MonoGenericContext): New struct.
16257         (MonoGenericMethod): Removed `generic_inst'.
16258
16259         * class.c (mono_class_inflate_generic_method): Take a
16260         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
16261
16262 2004-03-25  Martin Baulig  <martin@ximian.com>
16263
16264         * loader.h (MonoMethodInflated): New typedef.
16265
16266         * metadata.h (MonoMethodSignature): Removed `gen_method', make
16267         `generic_param_count' consume just 30 bits, added `is_inflated'
16268         and `has_type_parameters' flags (one bit each).
16269
16270         * class.c (mono_class_inflate_generic_method): Create a
16271         MonoMethodInflated instead of a MonoMethodNormal and set
16272         `is_inflated' in the method signature.
16273
16274         * class.h (MonoGenericMethod): Removed `generic_method'.
16275
16276 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
16277
16278         * image.c: Make sure the name of a MonoImage is always an absolute path.
16279           This fixes bug #54415.
16280
16281 2004-03-24  Martin Baulig  <martin@ximian.com>
16282
16283         * class.c (mono_class_setup_vtable): If we're a generic instance,
16284         use our generic type's vtable size.
16285
16286 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
16287
16288         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
16289         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
16290         problems.
16291
16292 2004-03-23  Martin Baulig  <martin@ximian.com>
16293
16294         * class.h (MonoDynamicGenericInst): Added `int count_events' and
16295         `MonoEvent *events'.
16296
16297         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
16298         (typebuilder_icalls): Added "get_event_info"; calls
16299         mono_reflection_event_builder_get_event_info(). 
16300
16301         * reflection.c (mono_reflection_generic_inst_initialize): Added
16302         `MonoArray *events'.
16303         (mono_reflection_event_builder_get_event_info): New function.
16304
16305 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
16306
16307         * object.h: add mono_type_initialization_init
16308
16309         * object.c (mono_runtime_class_init): 
16310         implement class constructor synchronization rules
16311         to cope with threading issues.  
16312         add mono_type_initialization_init
16313
16314         * appdomain.c (mono_runtime_init): call 
16315         mono_type_initialization_init
16316
16317         * class.h: removing initializing field from MonoVTable
16318
16319 2004-03-23  Martin Baulig  <martin@ximian.com>
16320
16321         * class.c (my_mono_class_from_generic_parameter): Use
16322         `param->name' if it's not NULL. 
16323
16324 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
16325
16326         * class.c: do not insert non-virtual methods in the vtable.
16327         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
16328         that means the method is non-virtual. This never would have
16329         happened before.
16330
16331 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
16332
16333         * profiler.c: Added lock for accessing coverage_hash.
16334
16335 2004-03-22  Martin Baulig  <martin@ximian.com>
16336
16337         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
16338         `method->method->signature->generic_param_count != 0' to make it
16339         work for interface methods.
16340
16341 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16342
16343         * process.c: quote the string passed to the shell using g_shell_quote.
16344
16345 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16346
16347         * threads.c:
16348         (mono_threads_manage): don't remove the finalizer thread and self
16349         from the threads hash table so that mono_thread_manage can be called
16350         more than once.
16351
16352 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16353
16354         * process.c: quote the arguments when UseShellExecute is true. Fixes
16355         bug #55790.
16356
16357 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16358
16359         * threads.c: set mono_thread_detach as a cleanup routine for every
16360         thread. This way it's always executed upon thread termination, either
16361         aborted or finished normally. No more xsp hangs!
16362
16363 2004-03-17  Martin Baulig  <martin@ximian.com>
16364
16365         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
16366         `int count_nested' and a `MonoType **nested'.
16367
16368         * reflection.c (mono_reflection_bind_generic_parameters): Moved
16369         most of the functionality into a new static
16370         do_mono_reflection_bind_generic_parameters() and don't take a
16371         `MonoType *nested_in' argument any more.  Don't compute nested
16372         types here.
16373         (mono_reflection_generic_inst_get_nested_types): New public method
16374         to get nested types.
16375
16376         * class.c (mono_class_create_generic): Set `klass->nested_in' if
16377         we're a nested class.
16378
16379         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
16380         mono_reflection_generic_inst_get_nested_types() to compute the
16381         nested types.
16382
16383 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
16384
16385         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
16386         descriptive error message under windows.
16387         
16388 2004-03-17  Martin Baulig  <martin@ximian.com>
16389
16390         * class.c (dup_type): Added `const MonoType *original' argument;
16391         copy the attrs from the original type.
16392
16393 2004-03-17  Martin Baulig  <martin@ximian.com>
16394
16395         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
16396         `m->generic_inst_cache' here.
16397
16398 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
16399
16400         * exception.h exception.c: Add stack_overflow_exception.
16401
16402 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16403
16404         * threadpool.c:
16405         (overlapped_callback): call SetEvent *after* invoking the callback.
16406         No need to call CloseHandle.
16407
16408 2004-03-16  Martin Baulig  <martin@ximian.com>
16409
16410         * reflection.c (mono_image_get_fieldref_token): Take a
16411         `MonoReflectionField *' instead of a `MonoClassField *' and a
16412         `MonoClass *'; store the `MonoReflectionField *' in the hash.
16413
16414 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16415
16416         * appdomain.c: don't add the culture to the filename we're looking for
16417         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
16418
16419 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16420
16421         * locales.c: don't ignore symbols when doing case insensitive compares.
16422         Thanks Dick! Fixes bug #54046.
16423
16424         * threads.c: surround 'threads' usage with enter/leave in
16425         mono_thread_manage.
16426
16427 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
16428
16429         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
16430         implicitly marshalled as [Out]. Fixes #55450.
16431
16432         (mono_marshal_get_runtime_invoke): Zero out the result if there is
16433         an exception.
16434
16435 2004-03-16  Martin Baulig  <martin@ximian.com>
16436
16437         * class.c (mono_class_from_generic_parameter): Use the actual
16438         parameter name. 
16439
16440 2004-03-16  Martin Baulig  <martin@ximian.com>
16441
16442         * reflection.c (type_get_signature_size): New static function.
16443         Compues the size of the type in a method signature.
16444         (method_get_signature_size): New static function; calls
16445         type_get_signature_size() to compute the actual size of the
16446         method's signature.
16447         (method_encode_signature): Use method_get_signature_size() to get
16448         the signature's size rather than using `nparams * 10'.
16449
16450 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16451
16452         * file-io.h: define here WapiOverlapped on windows. I don't want the
16453         regular OVERLAPPED one.
16454
16455         * file-io.c:
16456         * threadpool.c: somehow, BindIoCompletionCallback is not found.
16457         Disabling AIO on windows.
16458
16459 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16460
16461         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
16462         bug #55385.
16463
16464 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16465
16466         * appdomain.c: upgraded corlib version.
16467
16468         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
16469         and BeginWrite. Allow opening files for asynchrnous operations.
16470
16471         * file-io.h: new struct that maps FileStreamAsyncResult.
16472         * icall.c: added new icalls.
16473         * process.[ch]: support setting child process environment variables
16474         and use the SHELL or COMSPEC when UseShellExecute is true.
16475
16476         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
16477         callback for async. IO is here and also BindHandle.
16478
16479         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
16480         from here.
16481
16482 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
16483
16484         * reflection.c (create_custom_attr): Allow len == 0.
16485
16486         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
16487         computation on big-endian machines.
16488
16489 2004-03-13  Martin Baulig  <martin@ximian.com>
16490
16491         * class.h (MonoGenericInst): Added `int count_ifaces'.
16492
16493         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
16494         `ginst->count_ifaces' instead `klass->interface_count' since we
16495         may get called before the vtable is created.
16496
16497         * loader.c (mono_method_get_param_names): If we're a generic
16498         instance, return and don't initialize the class.
16499
16500         * reflection.c (mono_reflection_setup_generic_class): Don't call
16501         ensure_runtime_vtable().
16502         (mono_reflection_bind_generic_parameters): Set
16503         `ginst->count_ifaces'.
16504
16505 2004-03-11  Jackson Harper <jackson@ximian.com>
16506
16507         * icall.c:
16508         * unicode.c:
16509         * unicode.h: Remove unused System.Char icalls.
16510         
16511 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
16512
16513         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
16514         code when we P/Invoke the first library in Windows.Forms, instead
16515         of when we first open the assembly.
16516
16517         * assembly.c: Drop the lookup from here.
16518
16519 2004-03-10  Martin Baulig  <martin@ximian.com>
16520
16521         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
16522         class for properties, fields and events.  Finally fixes #54945.
16523
16524 2004-03-10  Martin Baulig  <martin@ximian.com>
16525
16526         * metadata.c (mono_metadata_class_equal): New static function;
16527         checks whether two generic instances or two generic parameters are
16528         equal.
16529         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
16530         compare classes.        
16531
16532 2004-03-10  Martin Baulig  <martin@ximian.com>
16533
16534         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
16535
16536         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
16537         argument and write it into the `reflection_info' field.
16538
16539         * icall.c
16540         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
16541         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
16542
16543 2004-03-09  Jackson Harper  <jackson@ximian.com>
16544
16545         * char-conversions.h: use 8 bits for numeric data its all we need
16546         * icall.c: numeric data is only 8 bits now.
16547
16548 2004-03-09  Martin Baulig  <martin@ximian.com>
16549
16550         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
16551
16552         * class.c (init_properties, init_events): Initialize the new
16553         `parent' field.
16554
16555         * reflection.c (typebuilder_setup_properties): Likewise.
16556         (typebuilder_setup_events): Likewise.
16557
16558         * reflection.h (MonoEventInfo): Replaced `parent with
16559         `declaring_type' and `reflected_type'.
16560
16561         * icall.c (ves_icall_get_property_info): Distinguish between
16562         declaring and reflected type.
16563         (ves_icall_get_event_info): Likewise.
16564
16565 2004-03-09  Martin Baulig  <martin@ximian.com>
16566
16567         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
16568         (ves_icall_Type_GetField): Correctly set field->klass.
16569
16570 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
16571
16572         * loader.h: Fix warning.
16573
16574 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
16575
16576         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
16577         library routine if present.  Notice that it will still continue
16578         executing even if its missing, for those working on the Gtk#
16579         edition of Windows.Forms.
16580
16581         * assembly.c (do_mono_assembly_open): If loading the
16582         System.Windows.Forms call mono_loader_wini_init.
16583
16584 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
16585
16586         * class.h: Added MonoRemoteClass struct.
16587         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
16588         function for MonoStrings.
16589         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
16590         Added internal call for getting the proxy type.
16591         * marshal.c: Get the type of transparent proxies from its remote_class.
16592         Added methods that generate the IL for type checks and casts:
16593         mono_marshal_get_isinst, mono_marshal_get_castclass, 
16594         mono_marshal_get_proxy_cancast.
16595         * marshal.h: Declaration of the previous new methods.
16596         * object.c: Added new moethods for creating and updating MonoRemoteClass
16597         instances: mono_remote_class, mono_upgrade_remote_class, 
16598         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
16599         * verify.c: FIx transparent_proxy_fields layout.
16600         * appdomain.c: Bump corlib version.
16601
16602 2004-03-04  Jackson Harper  <jackson@ximian.com>
16603
16604         * icall.c: Add icall to access char conversion tables.
16605         * char-conversions.h: Character conversion tables.
16606         * Makefile.am: Add char-conversions.h private header file.
16607         
16608 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
16609
16610         * appdomain.c (unload_thread_main): Increase unloading timeout to
16611         10 sec as a temporary workaround for Nant problems.
16612
16613 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
16614
16615         * gc.c: Add checks for GC_enable and GC_disable.
16616
16617         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
16618         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
16619         (bug #54988).
16620         
16621 2004-02-27  Martin Baulig  <martin@ximian.com>
16622
16623         * reflection.c (mono_reflection_bind_generic_parameters): Take a
16624         `MonoReflectionType *' instead of a `MonoType *'.
16625
16626 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
16627
16628         * gc.c (run_finalize): Avoid finalizing the object representing the
16629         finalizer thread.
16630         (finalizer_thread): Fix warning.
16631
16632 2004-02-25  Martin Baulig  <martin@ximian.com>
16633
16634         * class.c (_mono_class_get_instantiation_name): Added `int offset'
16635         argument for nested types.
16636         (mono_class_create_generic): Added support for nested generictypes.
16637
16638         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
16639         `GList *nested'.
16640
16641         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
16642
16643         * reflection.c (method_encode_signature): Increase the minimum
16644         value of `size' from 10 to 11.
16645         (mono_reflection_bind_generic_parameters): Take `int type_argc'
16646         and `MonoType **types' arguments instead of the `MonoArray
16647         *types'; added `MonoType *nested_in'.  Recursively instantiate
16648         nested classes. 
16649
16650 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
16651
16652         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
16653         stack_overflow_ex members which are used by exception handling.
16654
16655         * appdomain.c (mono_runtime_init): Initialize the new members.
16656
16657         * gc.c (mono_gc_enable): New helper function.
16658         * gc.c (mono_gc_disable): New helper function.
16659
16660 2004-02-23  Martin Baulig  <martin@ximian.com>
16661
16662         * icall.c: I must have been really stupid - make it actually work
16663         this time ;-)
16664
16665 2004-02-23  Martin Baulig  <martin@ximian.com>
16666
16667         * loader.c (method_from_memberref): Only inflate the method if
16668         it's in another klass.
16669
16670 2004-02-23  Martin Baulig  <martin@ximian.com>
16671
16672         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
16673         (mono_class_init): If we're a generic instance and an interface,
16674         compute `class->interface_id'; also create `class->interfaces'
16675         here and inflate them.
16676
16677         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
16678         `ginst->is_open'.
16679         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
16680
16681         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
16682
16683 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
16684
16685         * reflection.c (method_encode_code): Improved the error message
16686         generated by the exception.
16687
16688 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16689
16690         * icall.c: Martin did not do what he said in the ChangeLog for
16691         2004-02-18, but put back the changes for properties and events.
16692         Commenting those changes out again and adding comment to bug #54518.
16693         
16694         * process.c: removed warning.
16695
16696 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
16697
16698         * marshal.c (emit_struct_conv): Print an error message instead of
16699         asserting when a type does not have the StructLayout attribute.
16700
16701 2004-02-20  Martin Baulig  <martin@ximian.com>
16702
16703         * reflection.c (mono_type_get_object): Also use the cache for
16704         generic instances.
16705         (mono_reflection_bind_generic_parameters): Always compute
16706         `ginst->ifaces'.        
16707
16708 2004-02-20  Martin Baulig  <martin@ximian.com>
16709
16710         * class.h (MonoGenericMethod): Removed `klass'.
16711
16712         * class.c (mono_class_inflate_generic_method): Added `MonoClass
16713         *klass' argument.
16714
16715 2004-02-20  Martin Baulig  <martin@ximian.com>
16716
16717         * reflection.c (method_encode_methodspec): Actually use the
16718         uninflated signature for the memberref.
16719
16720 2004-02-20  Martin Baulig  <martin@ximian.com>
16721
16722         * class.h (MonoGenericMethod): Removed `declaring'.
16723
16724         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
16725         is NULL, compute it here.
16726
16727 2004-02-20  Martin Baulig  <martin@ximian.com>
16728
16729         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
16730
16731         * metadata.c (mono_metadata_generic_inst_hash): New method.
16732         (mono_metadata_generic_inst_equal): New method.
16733
16734         * reflection.c (mono_reflection_bind_generic_parameters): Use the
16735         `klass->image->generic_inst_cache' cache to avoid creating
16736         duplicate MonoGenericInst's.
16737
16738         * class.c (mono_class_inflate_generic_type): Use the cache.
16739
16740 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
16741
16742         * object.c: fixed gc descriptor calculation for embedded valuetypes.
16743
16744 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16745
16746         * icall.c: added Socket.WSAIoctl icall.
16747
16748         * socket-io.[ch]: implemented
16749         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
16750
16751 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
16752
16753         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
16754
16755 2004-02-18  Urs C Muff  <umuff@quark.com>
16756
16757         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
16758         this work on PPC and other big-endian architectures.
16759
16760         * debug-mono-symfile.h: Prepended the names of all the `guint32'
16761         fields with an underscore to make sure they're only accessed by
16762         the read32() macro.
16763
16764 2004-02-18  Martin Baulig  <martin@ximian.com>
16765
16766         * icall.c: Put the klass->refclass changes back for methods and
16767         fields, but not for properties and events.  We're currently not
16768         distinguishing between DeclaringType and ReflectedType for
16769         properties and events, that's what caused the regressions.
16770
16771 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16772
16773         * object.c:
16774         (mono_async_result_new): the handle can be NULL.
16775
16776         * threadpool.c: Use an event instead of a semaphore, don't initialize
16777         it until needed. This saves quite a few semaphores from being created
16778         when using the threadpool.
16779
16780 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
16781
16782         * object.c (mono_string_is_interned_lookup): Fix interning of long
16783         strings. Fixes #54473.
16784
16785         * domain.c (ldstr_equal): Optimize if the two strings are equal.
16786
16787         * icall.c: Revert the klass->refclass changes since they introduce
16788         regressions (bug #54518).
16789
16790 2004-02-18  Martin Baulig  <martin@ximian.com>
16791
16792         * class.c (mono_class_init): If we're a generic instance and don't
16793         come from a TypeBuilder, inflate our members here.
16794         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
16795         (mono_class_create_generic): New public method.
16796         (mono_class_initialize_generic): Removed.
16797         (get_instantiation_name): Renamed to
16798         _mono_class_get_instantiation_name() and made it public.
16799
16800 2004-02-18  Martin Baulig  <martin@ximian.com>
16801
16802         * class.c (mono_class_inflate_generic_type): Clear the new
16803         instance's `nginst->klass' when inflating a generic instance.
16804         (mono_class_is_subclass_of): Added (basic) support for generic
16805         instances.
16806
16807 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
16808
16809         * appdomain.h, domain.c: use a MonoCodeManager instead of a
16810         MonoMempool to hold compiled native code.
16811
16812 2004-02-17  Martin Baulig  <martin@ximian.com>
16813
16814         * class.h (MonoDynamicGenericInst): Added `count_properties' and
16815         `properties'.
16816
16817         * reflection.c (mono_reflection_generic_inst_initialize): Added
16818         `MonoArray *properties' argument.
16819
16820         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
16821
16822 2004-02-17  Martin Baulig  <martin@ximian.com>
16823
16824         * icall.c (ves_icall_Type_GetFields): Renamed to
16825         ves_icall_Type_GetFields_internal() and added a
16826         `MonoReflectionType *rtype' argument; pass it to
16827         mono_field_get_object() to set the field's "reflected" type.
16828         (ves_icall_Type_GetConstructors): Likewise.
16829         (ves_icall_Type_GetEvents): Likewise.
16830         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
16831         argument; pass it to mono_method_get_object() to set the method's
16832         "reflected" type.       
16833
16834 2004-02-17  Martin Baulig  <martin@ximian.com>
16835
16836         * class.h (MonoDynamicGenericInst): New type.
16837         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
16838
16839         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
16840         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
16841         (ves_icall_MonoGenericInst_GetFields): New interncall.
16842
16843         * class.c (mono_class_from_generic): Don't call
16844         mono_class_initialize_generic() if this is a dynamic instance;
16845         ie. it's being created from a TypeBuilder.
16846         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
16847         `class->byval_arg.type'.
16848
16849         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
16850         to `inflate_method' and made static.
16851         (mono_reflection_inflate_field): Removed.
16852         (mono_reflection_generic_inst_initialize): New public method.
16853
16854         * reflection.h (MonoReflectionGenericInst): Removed `methods',
16855         `ctors' and `fields'; added `initialized'.
16856
16857 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
16858
16859         * debug-helpers.c (mono_method_full_name): Fix output for empty
16860         namespaces.
16861
16862 2004-02-12  Martin Baulig  <martin@ximian.com>
16863
16864         * class.h (MonoClassField): Added `MonoType *generic_type'.
16865
16866         * reflection.c (mono_image_get_fieldref_token): Added support for
16867         instantiated generic types.
16868         (field_encode_inflated_field): Removed.
16869         (mono_image_get_inflated_field_token): Removed.
16870         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
16871
16872         * reflection.h (MonoReflectionInflatedField): Removed.
16873
16874 2004-02-12  Martin Baulig  <martin@ximian.com>
16875
16876         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
16877         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
16878
16879         * reflection.c (mono_image_get_methodspec_token): Take a
16880         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
16881         (mono_image_create_token): Check whether we have a
16882         `method->signature->gen_method' and call
16883         mono_image_get_methodspec_token() if appropriate.
16884         (inflated_method_get_object): Removed.
16885         (mono_reflection_bind_generic_method_parameters): Return a
16886         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
16887         (mono_reflection_inflate_method_or_ctor): Likewise.
16888
16889         * reflection.h (MonoReflectionInflatedMethod): Removed.
16890
16891 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
16892
16893         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
16894         for custom valuetype marshalling.
16895
16896         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
16897
16898 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
16899
16900         * icall.c: fixed WSAGetLastError_internal name.
16901
16902 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
16903
16904         * threads.c (mono_thread_attach): Allow this to be called multiple
16905         times for a thread.
16906         
16907         * threads.c (build_wait_tids): Do not wait for ourselves.
16908
16909         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
16910         appdomain list is empty.
16911
16912         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
16913         memory returned by mono_string_builder_to_utf16, since it points into
16914         managed memory. Thanks to Bernie Solomon for noticing this.
16915
16916         * icall.c: Add AppDomainSetup icalls.
16917
16918         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
16919
16920         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
16921         types.
16922
16923         * reflection.c (reflection_methodbuilder_to_mono_method): Save
16924         custom attributes to the method_aux struct. Also fix array indexes etc.
16925
16926         * loader.c (mono_method_get_param_names): Make dynamic case work again.
16927         
16928 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
16929
16930         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
16931         (both static and runtime) and reduce startup time.
16932
16933 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
16934
16935         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
16936         AsAny marshalling conversion instead of crashing.
16937
16938         * marshal.c: Fix warnings.
16939
16940 2004-02-09  Martin Baulig  <martin@ximian.com>
16941
16942         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
16943
16944         * reflection.h (MonoReflectionInflatedMethod): Removed the
16945         `declaring' field, it's now in the unmanaged MonoGenericMethod.
16946
16947         * reflection.c (method_encode_methodspec): Removed the `method'
16948         argument; we get it from `gmethod->declaring'.
16949         (inflated_method_get_object): Removed the `declaring' argument.
16950
16951 2004-02-09  Martin Baulig  <martin@ximian.com>
16952
16953         * class.h (MonoGenericMethod): New type.
16954         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
16955         `generic_method'.
16956
16957         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
16958         a `MonoGenericMethod *gen_method' one.
16959
16960         * class.c (mono_class_inflate_generic_type): Take an additional
16961         `MonoGenericMethod * argument.  This is only non-NULL if we're
16962         inflating types for a generic method.   
16963         (mono_class_inflate_generic_signature): Renamed to
16964         inflate_generic_signature() and made static; take a
16965         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16966         (inflate_generic_header): Take a `MonoGenericMethod *' argument
16967         instead of a `MonoGenericInst *' one.
16968         (mono_class_inflate_generic_method): Likewise.
16969
16970         * reflection.c (encode_generic_method_sig): Take a
16971         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
16972         (method_encode_methodspec): Likewise.
16973         (inflated_method_get_object): Likewise. 
16974
16975         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
16976         field with a `MonoGenericMethod *gmethod' one.  
16977
16978 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
16979
16980         * class.h (mono_class_has_parent): add parens to expansion
16981         so you can ! this.
16982
16983 2004-02-08  Martin Baulig  <martin@ximian.com>
16984
16985         * image.h (MonoImage): Removed `generics_cache'.
16986
16987         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
16988         instead of a `MonoType *' argument; removed the `inflate_methods'
16989         argument.  Don't inflate methods here.
16990
16991         * loader.c (find_method): If it's a generic instance, call
16992         mono_class_init() on the `sclass->generic_inst->generic_type'.
16993
16994         * metadata.c (mono_type_size): Make this work on uninitialized
16995         generic instances; call it on the `ginst->generic_type's class.
16996
16997         * reflection.c (mono_reflection_bind_generic_parameters): Call
16998         mono_class_from_generic() to create the `ginst->klass'.
16999
17000 2004-02-08  Martin Baulig  <martin@ximian.com>
17001
17002         * class.h (MonoClass): Changed type of `generic_inst' from
17003         `MonoType *' to `MonoGenericInst *'.
17004
17005 2004-02-08  Martin Baulig  <martin@ximian.com>
17006
17007         * icall.c (ves_icall_Type_BindGenericParameters): Just call
17008         mono_type_get_object(), this is now creating a `MonoGenericInst'
17009         for MONO_TYPE_GENERICINST.
17010         (ves_icall_MonoGenericInst_GetParentType): Likewise.
17011         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
17012
17013         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
17014         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
17015         (inflated_method_get_object): Added `MonoClass *refclass' argument.
17016         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
17017         and reflected type.
17018
17019         * reflection.h (MonoReflectionInflatedMethod): Removed
17020         `declaring_type' and `reflected_type'.
17021
17022 2004-02-08  Martin Baulig  <martin@ximian.com>
17023
17024         * class.h (MonoGenericInst): Added `MonoType *parent' and
17025         `MonoType **ifaces'.
17026
17027         * reflection.h (MonoReflectionGenericInst): Removed `klass',
17028         `parent' and `interfaces'.
17029
17030         * reflection.c (mono_reflection_bind_generic_parameters): Take a
17031         `MonoType *' argument and return a `MonoType *'.
17032
17033         * icall.c
17034         (ves_icall_MonoGenericInst_GetParentType): New interncall.
17035         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
17036
17037 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
17038
17039         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
17040         valuetype marshalling.
17041
17042 2004-02-06  Martin Baulig  <martin@ximian.com>
17043
17044         * class.c
17045         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
17046         (my_mono_class_from_generic_parameter): Likewise.
17047
17048 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
17049
17050         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
17051         contents of the symbol files lazily.
17052
17053         * object.h (MonoThread): Add 'name' and 'name_len' fields.
17054
17055         * threads.h threads.c icall.c: New icalls for getting and setting the
17056         threads name.
17057
17058 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
17059
17060         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
17061         Raise an exception when the domain is not found.
17062
17063 2004-02-03  Martin Baulig  <martin@ximian.com>
17064
17065         * reflection.c (mono_image_get_methodspec_token): Use the
17066         uninflated signature; fixes gen-33.
17067
17068 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
17069
17070         * gc.c threads.c: Make the finalizer thread a normal managed thread so
17071         the finalizer code can use thread functionality.
17072
17073         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
17074         the finalizer thread.
17075
17076         * threads.c: Make some functions more robust.
17077
17078         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
17079
17080         * metadata.h: Add new marshalling conventions.
17081
17082         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
17083         stringbuilder marshalling. Fixes #53700.
17084
17085         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
17086
17087         * reflection.c (mono_image_get_type_info): Save declarative security
17088         info.
17089
17090         * reflection.c (mono_image_get_field_info): Handle uninitialized 
17091         unmanaged fields as well.
17092
17093         * appdomain.c: Bump corlib version.
17094
17095 2004-02-01  Martin Baulig  <martin@ximian.com>
17096
17097         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
17098         method type arguments.  
17099
17100 2004-01-30  Duncan Mak  <duncan@ximian.com>
17101
17102         * marshal.h: Add prototype for
17103         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
17104         and
17105         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
17106         fix the build.
17107
17108 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
17109
17110         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
17111         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
17112
17113 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
17114
17115         * marshal.c (mono_marshal_get_native_wrapper): Add support for
17116         custom marshalling of valuetypes.
17117
17118         * marshal.c: Fix some warnings.
17119
17120 2004-01-29  Martin Baulig  <martin@ximian.com>
17121
17122         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
17123         for generic method parameters.
17124
17125         * reflection.c (method_encode_methodspec): Write the uninflated
17126         signature into the methodspec table.
17127         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
17128         is always the uninflated method.
17129         (reflection_methodbuilder_to_mono_method): Copy the generic
17130         parameters from the MethodBuilder into `header->gen_params'.
17131
17132 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
17133
17134         * class.c (mono_class_from_generic_parameter): Fix warning.
17135
17136 2004-01-27  Martin Baulig  <martin@ximian.com>
17137
17138         * class.c (mono_class_from_generic_parameter): Don't create
17139         `klass->methods' here.  
17140
17141 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
17142
17143         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
17144         extension since it does not work with libraries named lib<FOO>.dll.so.
17145
17146 2004-01-25  Martin Baulig  <martin@ximian.com>
17147
17148         * class.c (mono_class_inflate_generic_type): Added support for
17149         MONO_TYPE_GENERICINST.
17150
17151         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
17152         inflate methods on open constructed types.      
17153
17154 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17155
17156         * object.c: fire ProcessExit event in the root AppDomain after running
17157         Main. Fixes bug #53299.
17158
17159 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17160
17161         * socket-io.c: include the new socket-wrappers.h header.
17162         Use the wrappers instead of the unix socket functions to make the code
17163         more clear.
17164
17165 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
17166
17167         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
17168
17169         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
17170         Fixes #22532.
17171
17172 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
17173
17174         * reflection.c (mono_image_create_pefile): Handle the case when the
17175         entry point is not a MethodBuilder.
17176
17177         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
17178         field to ReflectionMethod since it is not allways a builder.
17179
17180         * reflection.c (type_get_fully_qualified_name): New helper function to
17181         return the fully qualified name of a type.
17182
17183         * reflection.c (encode_marshal_blob): Always emit the fully qualified
17184         type name for custom marshallers.
17185
17186         * reflection.c (mono_marshal_spec_from_builder): Ditto.
17187
17188         * class.c (mono_class_setup_vtable): If a parent class already 
17189         implements an interface, use the implementing methods from that class.
17190         Fixes #53148.
17191
17192 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17193
17194         * threadpool.c: just return instead of ExitThread to allow for thread
17195         clean up earlier.
17196
17197 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
17198
17199         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
17200         when closing resource modules.
17201
17202         * reflection.c (mono_image_create_pefile): Handle the case when the
17203         entry point is not a MethodBuilder.
17204
17205         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
17206         field to ReflectionMethod since it is not allways a builder.
17207
17208 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
17209
17210         * marshal.c (mono_marshal_get_managed_wrapper): 
17211         mono_marshal_alloc takes native int so CONV_I
17212         the arg for 64bits.
17213
17214 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
17215
17216         * reflection.c (fixup_cattrs): New function to fixup the methoddef
17217         tokens in the cattr table. Fixes #53108.
17218
17219 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17220
17221         * loader.c: don't trim ".dll" before looking up in the config file.
17222         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
17223
17224 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
17225
17226         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
17227         Return the module which contains the resource as well.
17228         (ves_icall_System_Reflection_Module_Close): New icall.
17229
17230         * appdomain.c: Bump corlib version number.
17231
17232         * image.c (mono_image_addref): New public function.
17233
17234         * assembly.c: Call mono_image_addref.
17235
17236         * reflection.c (mono_module_get_object): Increase reference count of 
17237         the image.
17238
17239         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
17240         Fixes #22532.
17241
17242         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
17243         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
17244         proper exceptions on DllImport problems.
17245
17246 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
17247
17248         * class.c, metadata.c: eliminate CSIZE macro.
17249
17250 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
17251
17252         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
17253         * object.h: Added async_callback field in MonoAsyncResult.
17254         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
17255         * verify.c: Added async_callback in MonoAsyncResult layout.
17256
17257 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
17258
17259         * reflection.c (mono_reflection_get_custom_attrs): Add support
17260         for Modules.
17261
17262 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17263
17264         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
17265         marshalling.
17266         (mono_marshal_method_from_wrapper): Add null pointer check.
17267
17268 2004-01-16  Martin Baulig  <martin@ximian.com>
17269
17270         * debug-mono-symfile.h: Set version number to 36 and reflect
17271         latest symbol writer changes.
17272
17273 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
17274
17275         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
17276         multi-dimensional arrays.
17277         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
17278         (mono_class_from_mono_type): Use bounded_array_class_get.
17279         
17280         * class.c (mono_bounded_array_class_get): New function which takes
17281         a 'bounded' bool argument to distinguish vectors from one dimensional
17282         arrays.
17283
17284         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
17285         bounded_array_class_get if the array has bounds.
17286
17287         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17288         Search modules loaded using AssemblyBuilder:AddModule as well.
17289
17290 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17291
17292         * appdomain.c: increased corlib version.
17293         * filewatcher.c: removed g_print.
17294         * icall.c:
17295         (get_property_info): only allocate what is actually requested.
17296         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
17297
17298 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17299
17300         * Makefile.am: added filewatcher.[ch]
17301         * filewatcher.[ch]: FileSystemWatcher runtime support.
17302         * icall.c: added new FSW icalls.
17303
17304 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
17305
17306         * string-icalls.c: fix stringbuilder regression as suggested by
17307         Iain McCoy <iain@mccoy.id.au>.
17308
17309 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
17310
17311         * process.c (process_read_stringtable_block): Recognize '007f' as
17312         a language neutral stringtable block.
17313
17314 2004-01-12  Patrik Torstensson
17315
17316         * object.h (MonoStringBuilder) : Changed layout to support our
17317         new stringbuilder class.
17318         * marshal.c: Change marshalling to support the new layout of 
17319         string builder.
17320         * appdomain.c: increased version number because new layout of
17321         string builder.
17322
17323 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
17324
17325         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
17326         assembly name as an string instead of an AssemblyName, since it is
17327         easier to extract info from it.
17328
17329         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
17330         the culture subdirectories too. Fixes #52231.
17331
17332 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17333
17334         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
17335         It takes 2 new parameters with an optional name for the method to look
17336         for and case ignoring info.
17337
17338         * threadpool.c: removed unused variable.
17339
17340 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17341
17342         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
17343         It takes 2 new parameters with an optional name for the property to look
17344         for and case ignoring info.
17345         Fixes bug #52753.
17346
17347 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
17348
17349         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
17350         Fix #52451.
17351
17352 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17353
17354         * appdomain.c:
17355         * assembly.c: escape the uri before passing it to g_filename_from_uri.
17356         Fixes bug #52630.
17357
17358 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
17359
17360         * reflection.c: Add support for more than one unmanaged resource.
17361
17362         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
17363         in field->def_value, as done in all other cases.
17364
17365         * reflection.c (mono_reflection_get_custom_attrs): Add support for
17366         TypeBuilders.
17367
17368         * reflection.c (mono_reflection_create_runtime_class): Remove 
17369         errorneous assignment to klass->element_class, since it is already
17370         done in mono_reflection_setup_internal_class.
17371
17372 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17373
17374         * gc.c: added missing LeaveCriticalSection.
17375         * icall.c: indented a couple of lines.
17376         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
17377         if we call EndInvoke inside a callback. Fixes bug #52601.
17378
17379 2004-01-07  Martin Baulig  <martin@ximian.com>
17380
17381         * mono-debug-debugger.h
17382         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
17383
17384 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
17385
17386         * appdomain.c: Use messages in NotImplementedException.
17387
17388         * exception.c (mono_get_exception_not_implemented): Now this takes
17389         a message argument.
17390
17391         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
17392         exception instead of g_asserting an aborting when something is not
17393         implemented.
17394
17395         Add some inline docs.
17396
17397 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
17398
17399         * reflection.h: Update after changes to object layout.
17400
17401         * reflection.c: Implement saving of unmanaged aka win32 resources.
17402
17403         * appdomain.c: Bump version number.
17404
17405         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
17406         Handle missing domains gracefully.
17407
17408 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
17409
17410         * file-io.c : On Windows, there are much more invalid_path_chars.
17411
17412 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17413
17414         * class.h, object.c: prepare for GetType () speedup.
17415
17416 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
17417
17418         * profiler.c: workaround for --profile null reference exception on
17419           cygwin. Patch by Patrik Torstensson.
17420
17421 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
17422
17423         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
17424         make work for unaligned access.
17425
17426 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
17427
17428         * class.c: small cleanup (class->fields [i] -> field).
17429         * image.c: check address of metadata is valid.
17430
17431 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
17432
17433         * assembly.h assembly.c (mono_assembly_loaded): New public function to
17434         search the list of loaded assemblies.
17435
17436         * reflection.c (mono_reflection_type_from_name): Use 
17437         mono_assembly_loaded instead of mono_image_loaded.
17438
17439         * reflection.c: Fix warnings.
17440
17441 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
17442
17443         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
17444         is dynamic. This is needed since an assembly can contain both dynamic and
17445         non-dynamic images.
17446
17447         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
17448         assembly->dynamic.
17449
17450         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
17451
17452         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
17453         to store modules loaded using AddModule.
17454
17455         * reflection.c (mono_image_fill_file_table): Generalize this so it works
17456         on Modules.
17457
17458         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
17459
17460         * reflection.c (mono_image_fill_export_table_from_module): New function to
17461         fill out the EXPORTEDTYPES table from a module.
17462
17463         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
17464         into a separate function. Also handle loaded non-dynamic modules.
17465
17466         * reflection.c (mono_image_basic_init): Fix memory allocation.
17467
17468         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17469
17470         * assembly.c (mono_assembly_load_references): Make this public.
17471
17472 2003-12-19  Martin Baulig  <martin@ximian.com>
17473
17474         * class.c (mono_class_initialize_generic): Made this static, take
17475         a `MonoGenericInst *' instead of a `MonoClass *'.
17476         (mono_class_from_generic): Call mono_class_initialize_generic()
17477         unless we're already initialized or being called from
17478         do_mono_metadata_parse_generic_inst().
17479
17480         * class.h (MonoGenericInst): Added `initialized' and
17481         `init_pending' flags.
17482
17483         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
17484         `mono_class_init (gklass)' or mono_class_initialize_generic()
17485         here; set `generic_inst->init_pending' while parsing the
17486         `type_argv'.
17487
17488 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
17489
17490         * locales.c: include string.h for memxxx prototypes
17491
17492 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
17493
17494         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
17495         constructor when accessing literal fields.
17496
17497 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
17498
17499         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
17500
17501         * reflection.c (assembly_add_resource_manifest): New function to fill
17502         the MANIFESTRESOURCE table.
17503
17504         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
17505
17506         * reflection.h: Update to changes in class layout.
17507
17508         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
17509         Reenable call to mono_runtime_is_shutting_down ().
17510
17511         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
17512         determine if the runtime is shutting down.
17513
17514 2003-12-16  Jackson Harper <jackson@ximian.com>
17515
17516         * icall.c: comment out call to mono_runtime_is_shutting_down to
17517         fix build.
17518         
17519 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
17520
17521         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
17522         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
17523
17524 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
17525
17526         * reflection.c: move definition of swap_with_size
17527         to before its first call
17528
17529 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
17530
17531         * appdomain.c (mono_runtime_is_shutting_down): New public function.
17532
17533         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
17534         icall.
17535
17536         * object.c: Fix warnings.
17537
17538         * icall.c (ves_icall_Type_Get...): Only consider inherited static
17539         members if FlattenHierarchy is set.
17540
17541         * reflection.c (mono_image_add_decl_security): New function to emit
17542         declarative security.
17543
17544         * reflection.h reflection.c: Add support for declarative security.
17545
17546         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17547         
17548 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
17549
17550         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
17551         
17552         * appdomain.c verify.c: Moved corlib version checking into its own
17553         function in appdomain.c since it needs to create vtables etc.
17554
17555 2003-12-13  Patrik Torstensson <p@rxc.se>
17556
17557         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
17558         instead of unwrapped server.
17559
17560 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
17561
17562         * verify.c (check_corlib): Fix field index.
17563
17564 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
17565
17566         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
17567         GetGacPath icall.
17568
17569 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
17570
17571         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
17572         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
17573         cope with sizeof(size_t) != sizeof(guint32).
17574
17575 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17576
17577         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
17578         in case of failure.
17579
17580 2003-12-10  Mark Crichton <crichton@gimp.org>
17581
17582         * icall.c: removed the GetNonZeroBytes.  We now handle this case
17583         in managed code.
17584
17585         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
17586
17587 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
17588
17589         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
17590         marked as deleted.
17591
17592 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
17593
17594         * verify.c (check_corlib): Handle the case when the version field is 
17595         initialized by a static constructor.
17596
17597 2003-12-08  Patrik Torstensson  <p@rxc.se>
17598
17599     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
17600
17601 2003-12-08  Martin Baulig  <martin@ximian.com>
17602
17603         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
17604         a MonoReflectionGenericParameter, also take the parameter index
17605         and name as arguments.
17606         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
17607         (ves_icall_MonoGenericParam_initialize): New interncall.
17608         (ves_icall_Type_make_byref_type): New interncall.
17609
17610         * reflection.h (MonoReflectionGenericParam): Derive from
17611         MonoReflectionType, not just from MonoObject.  Added `refobj' and
17612         `index' fields.
17613
17614         * reflection.c (mono_reflection_define_generic_parameter): Create
17615         and return a new MonoReflectionGenericParam; don't initialize the
17616         constraints here.
17617         (mono_reflection_initialize_generic_parameter): New public method;
17618         initializes the constraints and creates the `param->pklass'.
17619
17620 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
17621
17622         * reflection.h reflection.c: Use the new fields 'num_types', 
17623         'num_fields' and 'num_methods' to track the number of types etc.
17624
17625         * verify.c (check_corlib): Check corlib version number.
17626
17627 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
17628
17629         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
17630         function works on all methods.
17631
17632 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
17633
17634         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
17635         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
17636         the custom_type_info flag of the transparent proxy.
17637         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
17638         objects that supports IRemotingTypeInfo.
17639         * object.h: Added custom_type_info field in transparent proxy.
17640
17641 2003-12-06  Martin Baulig  <martin@ximian.com>
17642
17643         * class.c (mono_class_create_from_generic): Removed.
17644         (mono_class_from_generic): Check `ginst->klass' before doing
17645         anything else.  This is important to fully support "recursive"
17646         generic types.
17647
17648         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
17649         empty `generic_inst->klass' before doing anything else.
17650
17651 2003-12-06  Dick Porter  <dick@ximian.com>
17652
17653         * verify.c: 
17654         * object.h:
17655         * icall.c:
17656         * locales.c: Use C structs to access class fields.  Don't do a
17657         conversion between MonoString and UChar because both are
17658         platform-endian UTF-16.  Compare now takes startindex and count
17659         parameters.  Add a char overload for IndexOf.  Speed up the
17660         invariant string IndexOf.
17661
17662 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
17663
17664         * Makefile.am (monosn_LDADD): Fix parallel build.
17665
17666 2003-12-04  Martin Baulig  <martin@ximian.com>
17667
17668         * icall.c
17669         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
17670         (ves_icall_Type_make_array_type): New interncall.       
17671
17672 2003-12-04  Martin Baulig  <martin@ximian.com>
17673
17674         * locales.c: also change it in the !HAVE_ICU case.
17675
17676 2003-12-04  Dick Porter  <dick@ximian.com>
17677
17678         * icall.c:
17679         * locales.c: construct_compareinfo is now in CompareInfo, not
17680         CultureInfo.
17681
17682 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
17683
17684         * image.c (mono_image_load_file_for_image): Cache loaded images in the
17685         image->files array.
17686
17687         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
17688         table as well.
17689
17690         * assembly.c (mono_assembly_load_references): Only load references
17691         once.
17692
17693         * class.c (mono_class_from_name): Avoid linear search of the 
17694         EXPORTEDTYPE table.
17695
17696         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
17697
17698 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
17699
17700         * image.h (MonoImage): Add 'field_cache' field.
17701
17702         * loader.c (mono_field_from_token): Cache field lookups.
17703         
17704         * reflection.c (mono_module_get_object): Fix name property.
17705
17706         * icall.c (ves_icall_get_enum_info): Update after changes to 
17707         mono_metadata_get_constant_index ().
17708
17709         * icall.c: Get rid of get_type_info icall, use a separate icall for
17710         each type property to avoid needless memory allocations. Fixes #51514.
17711
17712         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
17713         to avoid needless binary searches.
17714
17715         * class.c (class_compute_field_layout): Move the initialization of
17716         field->def_value to mono_class_vtable ().
17717
17718         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
17719         non-corlib types.
17720
17721         * object.c (mono_object_allocate): Make it inline.
17722
17723         * object.c (mono_object_allocate_spec): Make it inline.
17724         
17725 2003-12-02  Dick Porter  <dick@ximian.com>
17726
17727         * locales.c (create_NumberFormat): NumberFormatInfo construction.
17728         Patch by Mohammad DAMT (mdamt@cdl2000.com).
17729
17730 2003-12-01  Dick Porter  <dick@ximian.com>
17731
17732         * threads.c: Fix signature and call in CreateMutex and
17733         CreateEvent.
17734
17735 2003-12-01  Dick Porter  <dick@ximian.com>
17736
17737         * icall.c: 
17738         * locales.c: Implement string compares and searching
17739
17740         * object.h: Add extra Thread field
17741
17742 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
17743
17744         * reflection.c (fixup_method): Add support for MonoCMethod.
17745
17746 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
17747
17748         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
17749
17750         * reflection.c (assembly_name_to_aname): Allow extra characters in
17751         assembly names. Fixes #51468.
17752
17753 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
17754
17755         * exception.c (mono_exception_from_name_domain): New helper function.
17756
17757         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
17758         exception object in the correct domain.
17759
17760         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
17761         formatting + make a copy a the input data.
17762
17763         * loader.c (mono_get_method_from_token): Methods which contain
17764         native code do not have entries in the ImplMap.
17765
17766         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
17767         Thanks to Gonzalo for spotting this.
17768         
17769         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
17770         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
17771
17772         * assembly.h (mono_assembly_load_from): Split the second part of 
17773         assembly loading into a new public function.
17774
17775         * exception.h (mono_get_exception_bad_image_format): New function.
17776
17777 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
17778
17779         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
17780         Enumerate all modules inside a dynamic assembly. Fixes #51293.
17781         
17782         * icall.c: Add new icall for creating dynamic methods.
17783
17784         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
17785
17786         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
17787
17788         * reflection.c (mono_reflection_create_dynamic_method): New icall to
17789         create a dynamic method.
17790
17791         * reflection.c (resolve_object): New helper function.
17792
17793         * reflection.c: Generalize ReflectionMethodBuilder and the functions
17794         which manipulate it so they can also work on dynamic methods.
17795
17796         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
17797         creating the MonoReflectionMethodAux structure if it is not needed.
17798         
17799         * reflection.h verify.c: Update after changes to object layout.
17800
17801         * reflection.c (method_builder_encode_signature): Fix compilation on
17802         gcc 2.95.x.
17803
17804 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
17805
17806         * appdomain.h: Added support for context static fields. Added static_data
17807           field to MonoAppContext and renamed thread_static_fields to a more
17808           generic special_static_fields in MonoAppDomain, since it can now contain
17809           context static fields.
17810         * domain.c: Updated hashtable name.
17811         * object.c: Replaced field_is_thread_static() for a more generic
17812           field_is_special_static() which also checks for context static attribute.
17813           In mono_class_vtable(), added support for static context fields.
17814         * threads.c: Changed methods that manage thread static fields to more
17815           generic methods so they can be reused both for thread and context static
17816           data.
17817         * threads.h: Declared some new methods.
17818
17819 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
17820
17821         * reflection.h: Update after changes to the managed types.
17822
17823         * reflection.c (encode_custom_modifiers): New helper function.
17824
17825         * reflection.c (method_encode_signature): Emit custom modifiers.
17826
17827         * reflection.c (field_encode_signature): Emit custom modifiers.
17828
17829 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
17830
17831         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
17832
17833         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
17834         implementation.
17835
17836         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
17837         icall.
17838
17839         * object.c (mono_field_get_value_object): New function.
17840
17841         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
17842         specific.
17843
17844 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
17845
17846         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
17847         return a preallocated out-of-memory exception instance.
17848
17849         * object.c (out_of_memory): Use the new function.
17850
17851         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
17852         flag is before the custom modifiers. Fixes #49802.
17853
17854 2003-11-16  Martin Baulig  <martin@ximian.com>
17855
17856         * class.c (mono_class_is_open_constructed_type): Implemented the
17857         MONO_TYPE_GENERICINST case.
17858
17859 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
17860
17861         * assembly.c (mono_assembly_fill_assembly_name): New function to
17862         fill out the MonoAssemblyName structure.
17863         (mono_assembly_open): Use the new function.
17864
17865         * icall.c (fill_reflection_assembly_name): New helper function.
17866
17867         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
17868         new function.
17869
17870         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
17871
17872 2003-11-15  Martin Baulig  <martin@ximian.com>
17873
17874         * class.c (mono_class_is_open_constructed_type): New public
17875         function; checks whether a type is an open constructed type,
17876         ie. whether it still contains type parameters.
17877         (mono_class_inflate_generic_type): If we're a type parameter and
17878         the inflated type is also a MONO_TYPE_(M)VAR, return the original
17879         type.
17880
17881         * class.h (MonoGenericInst): Added `guint32 is_open'.
17882
17883         * loader.c (method_from_methodspec): Check whether we're an open
17884         or closed constructed type and set `ginst->is_open'.
17885
17886         * reflection.c (mono_reflection_bind_generic_parameters): Check
17887         whether we're an open or closed constructed type and set
17888         `ginst->is_open'.
17889         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
17890         from open constructed types.
17891
17892 2003-11-15  Martin Baulig  <martin@ximian.com>
17893
17894         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17895         a generic instance (instead of a generic type declaration) with
17896         unbound generic parameters, bind them to our actual types.
17897
17898 2003-11-14  Martin Baulig  <martin@ximian.com>
17899
17900         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
17901
17902         * reflection.c (mono_reflection_bind_generic_parameters): If we're
17903         an interface type, populate `res->interfaces' with instantiated
17904         versions of all the interfaces we inherit.
17905
17906 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
17907
17908         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
17909         when MONO_PATH is set but doesn't contain the install dir.
17910
17911 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
17912
17913         * icall.c:
17914         (ves_icall_Type_GetInterfaces): don't return an interface twice when
17915         it's also implemented in base classes. Fixes bug #50927.
17916
17917 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
17918
17919         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
17920         if this method is called from a finalizer. Fixes #50913.
17921
17922 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
17923
17924         * threads.c: Implement VolatileRead/VolatileWrite
17925
17926         * icall.c: Add new icalls for VolatileRead/VolatileWrite
17927
17928 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17929
17930         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
17931         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
17932         2.95.3.
17933
17934         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
17935         from Peter Ross (pro@missioncriticalit.com).
17936         
17937 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
17938
17939         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
17940
17941 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17942
17943         * assembly.c (mono_assembly_load_references): Disable check because it
17944         triggers on older corlibs which lots of people have.
17945
17946 2003-11-12  Jackson Harper  <jackson@ximian.com>
17947
17948         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
17949         load corlib.dll if mscorlib.dll is not found.
17950         * assembly.h: Remove corlib name define.
17951         * class.c:
17952         * domain.c:
17953         * image.c: Change corlib name to mscorlib.
17954         
17955 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
17956
17957         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
17958
17959 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
17960
17961         * appdomain.h: Added loader_optimization here to sync with the C#
17962         code, and add disallow_binding_redirects field.
17963
17964 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17965
17966         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
17967
17968         * reflection.c (mono_image_build_metadata): Fix crash on modules
17969         with no types.
17970
17971         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
17972
17973         * icall.c (ves_icall_get_method_info): Return callingConvention as
17974         well.
17975
17976         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
17977         namespaces from the EXPORTEDTYPE table as well.
17978
17979         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
17980         from all modules inside the assembly.
17981         
17982 2003-11-11  Martin Baulig  <martin@ximian.com>
17983
17984         * reflection.c (mono_reflection_bind_generic_parameters): Make
17985         this work for interfaces.
17986
17987 2003-11-11  Martin Baulig  <martin@ximian.com>
17988
17989         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
17990
17991 2003-11-11  Martin Baulig  <martin@ximian.com>
17992
17993         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
17994         "MonoInflatedMethod" and "MonoInflatedCtor".
17995
17996 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
17997
17998         * reflection.c (resolution_scope_from_image): Use the assembly table
17999         from the manifest module, since other modules don't have it.
18000
18001         * debug-helpers.c (mono_type_full_name): New helper function.
18002
18003         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
18004
18005         * image.c (mono_image_load_file_for_image): New public function which
18006         is a replacement for the load_file_for_image in class.c.
18007
18008         * assembly.c (mono_assembly_load_module): A wrapper for the function
18009         above which does assembly association and reference loading too.
18010
18011         * class.c (mono_class_from_name): Call mono_assembly_load_module.
18012
18013 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18014
18015         * appdomain.c: not all of the attributes for the full assembly name
18016         are required and the order doesn't matter. Fixes bug #50787.
18017
18018 2003-11-10  Dick Porter  <dick@ximian.com>
18019
18020         * locales.c: Use platform-endian UTF16
18021
18022 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
18023
18024         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
18025         
18026 2003-11-10  Martin Baulig  <martin@ximian.com>
18027
18028         * metadata.c
18029         (mono_metadata_load_generic_params): Make this actually work.
18030
18031         * reflection.c (mono_reflection_bind_generic_parameters): If our
18032         parent is a generic instance, pass all the `types' to it, no
18033         matter whether it has the same number of type parameters or not.
18034
18035 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
18036
18037         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
18038
18039         * assembly.c (mono_assembly_load_references): Move the image<->assembly
18040         assignment code to this function so it gets called recursively for all
18041         modules.
18042
18043         * image.c (load_modules): Remove the assembly assignment since it is
18044         now done by mono_assembly_load_references.
18045         
18046         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
18047         Add 'module' argument.
18048         (mono_module_get_types): New helper function.
18049         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
18050
18051 2003-11-08  Martin Baulig  <martin@ximian.com>
18052
18053         * class.c (mono_class_inflate_generic_method): Interface method
18054         don't have a header.
18055
18056         * reflection.c (mono_image_get_methodspec_token): Take an
18057         additional `MonoGenericInst *' argument instead of reading it from
18058         the header; this is necessary to support interfaces.
18059         (mono_image_create_token): Pass the `MonoGenericInst *' from the
18060         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
18061         (inflated_method_get_object): Take an additional `MonoGenericInst *'
18062         argument.
18063
18064         * reflection.h (MonoReflectionInflatedMethod): Added
18065         `MonoGenericInst *ginst'.
18066
18067 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
18068
18069         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
18070
18071 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
18072
18073         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
18074
18075 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
18076
18077         * reflection.c 
18078         (reflection_methodbuilder_from_method_builder):
18079         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
18080         initialize a ReflectionMethodBuilder structure.
18081         (mono_image_get_methodbuilder_token):
18082         (mono_image_get_ctorbuilder_token): New functions to emit memberref
18083         tokens which point to types in another module inside the same assembly.
18084
18085         * reflection.c: Use the new helper functions.
18086         
18087         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
18088
18089         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
18090         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
18091
18092         * reflection.c (resolution_scope_from_image): Emit a moduleref if
18093         neccesary.
18094
18095         * reflection.c (mono_image_build_metadata): Emit metadata only for the
18096         current module. Emit the manifest only for the main module.
18097
18098         * reflection.c (mono_image_create_token): Add assertion when a 
18099         memberref needs to be created.
18100
18101         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
18102
18103         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
18104         larger buffer for the custom attribute blob. Fixes #50637.
18105         
18106 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18107
18108         * threadpool.c: notify listener on async processing handles after
18109         invoking the async callback. Thanks to Zoltan.
18110
18111 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18112
18113         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
18114         avoid code duplication.
18115
18116         * reflection.h (MonoDynamicImage): New type which is currently unused,
18117         but will be used through the ref.emit code in place of 
18118         MonoDynamicAssembly.
18119
18120         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
18121         object layout.
18122
18123         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
18124         a MonoDynamicImage instead of just a MonoImage.
18125         
18126         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
18127         icalls to ModuleBuilder but keep their semantics, so they will work
18128         with moduleb->assemblyb. This will change later.
18129         
18130 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18131
18132         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
18133         object layout.
18134
18135         * reflection.c (mono_image_build_metadata): Avoid creation of a default
18136         main module, since it is now done by the managed code.
18137
18138 2003-11-03  Martin Baulig  <martin@ximian.com>
18139
18140         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
18141         `ginst->klass' here.
18142         (method_encode_methodspec): Don't use the `ginst->generic_method's
18143         klass if it's a generic instance, use `ginst->klass' in this case.
18144
18145 2003-11-03  Martin Baulig  <martin@ximian.com>
18146
18147         * reflection.c (mono_image_get_generic_method_param_info):
18148         Removed, use mono_image_get_generic_param_info() instead.
18149         (mono_image_get_type_info): Write the GenericParam table before
18150         the Method table.  This is neccessary because in the GenericParam
18151         table, type parameters of the class (ie. '!0' etc.) must come
18152         before the ones from its generic methods (ie. '!!0' etc).
18153
18154 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
18155
18156         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
18157
18158 2003-11-02  Martin Baulig  <martin@ximian.com>
18159
18160         * reflection.c (create_generic_typespec): Take a
18161         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
18162         the generic parameters from it.
18163
18164 2003-11-02  Martin Baulig  <martin@ximian.com>
18165
18166         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
18167         instead of a `MonoClassField *' since we just need the type.
18168         (create_generic_typespec): New static function.  Creates a
18169         TypeSpec token for a generic type declaration.
18170         (mono_image_get_generic_field_token): New static function.
18171         (mono_image_create_token): If we're a FieldBuilder in a generic
18172         type declaration, call mono_image_get_generic_field_token() to get
18173         the token.
18174
18175 2003-11-02  Martin Baulig  <martin@ximian.com>
18176
18177         * reflection.h
18178         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
18179         `MonoReflectionGenericInst *declaring_type' and
18180         `MonoReflectionGenericInst *reflected_type' fields.
18181
18182         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
18183         `MonoReflectionGenericInst *declaring_type' and a
18184         `MonoReflectionGenericInst *reflected_type' argument instead of a
18185         single `MonoReflectionGenericInst *type' one.  Set
18186         `res->declaring_type' and `res->reflected_type' from them.
18187         (mono_reflection_inflate_field): Likewise.      
18188
18189 2003-11-02  Martin Baulig  <martin@ximian.com>
18190
18191         * class.c (mono_class_setup_vtable): Don't store generic methods
18192         in the vtable.  
18193
18194 2003-11-02  Martin Baulig  <martin@ximian.com>
18195
18196         * reflection.h (MonoReflectionGenericInst): Added
18197         `MonoReflectionType *declaring_type'.
18198
18199         * reflection.c (mono_reflection_bind_generic_parameters): Use
18200         `if (tb->parent)' instead of `klass->parent'.
18201
18202 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
18203
18204         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
18205         with an empty ASSEMBLY table.
18206
18207         * reflection.c (mono_image_build_metadata): Avoid using the same loop
18208         variable in the inner and outer loops.
18209
18210 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
18211
18212         * metadata.h (mono_metadata_make_token): Put parentheses around macro
18213         argument.
18214
18215         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
18216         
18217         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
18218         icalls. Instead, do everything in managed code. This is needed since
18219         it is hard to restore the original domain etc. in unmanaged code in the
18220         presence of undeniable exceptions.
18221
18222         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
18223         New icalls to push and pop appdomain refs.
18224
18225 2003-10-31  Martin Baulig  <martin@ximian.com>
18226
18227         * class.c (inflate_generic_type): Renamed to
18228         mono_class_inflate_generic_type() and made it public.
18229
18230         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
18231         New interncall.
18232
18233         * loader.c (mono_field_from_memberref): Also set the retklass for
18234         typespecs.
18235
18236         * fielder.c (mono_image_get_inflated_field_token): New static
18237         method; creates a metadata token for an inflated field.
18238         (mono_image_create_token, fixup_method): Added support for
18239         "MonoInflatedField".
18240         (fieldbuilder_to_mono_class_field): New static function.
18241         (mono_reflection_inflate_field): New public function.
18242
18243         * reflection.h
18244         (MonoReflectionGenericInst): Added `MonoArray *fields'.
18245         (MonoReflectionInflatedField): New typedef.     
18246
18247 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
18248
18249         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
18250         for Solaris and other platforms without s6_addr16
18251
18252 2003-10-30  Martin Baulig  <martin@ximian.com>
18253
18254         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
18255         argument instead of two.
18256         (mono_class_inflate_generic_signature): Likewise.
18257         (inflate_generic_header): Likewise.
18258         (mono_class_inflate_generic_method): Likewise.  In addition, if
18259         `ginst->klass' is set, it becomes the new `method->klass'.
18260
18261         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
18262         field.
18263
18264         * reflection.c (encode_generic_method_sig): Write a 0xa as the
18265         first byte. [FIXME]
18266         (method_encode_methodspec): If we have generic parameters, create
18267         a MethodSpec instead of a MethodRef.
18268         (fixup_method): Added support for "MonoInflatedMethod" and
18269         "MonoInflatedCtor".
18270         (mono_image_create_token): Added support for "MonoInflatedMethod"
18271         and "MonoInflatedCtor".
18272         (inflated_method_get_object): New static function; returns a
18273         managed "System.Reflection.MonoInflatedMethod" object.
18274         (mono_reflection_bind_generic_method_parameters): Return a
18275         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
18276         (mono_reflection_inflate_method_or_ctor): Likewise.
18277         (mono_image_get_generic_method_param_info): Initialize unused
18278         fields to zero.
18279         (mono_image_get_generic_param_info): Likewise.
18280
18281         * reflection.h (MonoReflectionInflatedMethod): New public
18282         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
18283         "S.R.MonoInflatedCtor" classes.
18284
18285         * loader.c (method_from_memberref): If we're a TypeSpec and it
18286         resolves to a generic instance, inflate the method.
18287
18288 2003-10-28  Dick Porter  <dick@ximian.com>
18289
18290         * object.c (mono_runtime_run_main): Convert command-line arguments
18291         into utf8, falling back to the user's locale encoding to do so.
18292
18293 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
18294
18295         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
18296         at this time.
18297
18298         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
18299
18300         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
18301         up icalls at method definition time. Partially fixes #33569.
18302
18303 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
18304
18305         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
18306         marshalling of arrays. Fixes #50116.
18307
18308         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
18309
18310         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
18311         points to a vtable in the dying appdomain.
18312
18313         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
18314         listeners into unmanaged code inside the lock.
18315
18316         * object.c (mono_class_vtable): Turn off typed allocation in non-root
18317         domains and add some comments.
18318
18319 2003-10-25  Martin Baulig  <martin@ximian.com>
18320
18321         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
18322
18323         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
18324
18325         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
18326         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
18327         currently parsing.  Create the generic class and store it in
18328         `generic_inst->klass' before parsing the type arguments.  This is
18329         required to support "recursive" definitions; see mcs/tests/gen-23.cs
18330         for an example.
18331         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
18332         to support recursive typespec entries.
18333
18334         * class.c (mono_class_setup_parent): If our parent is a generic
18335         instance, we may get called before it has its name set.
18336         (mono_class_from_generic): Splitted into
18337         mono_class_create_from_generic() and mono_class_initialize_generic().
18338
18339 2003-10-25  Martin Baulig  <martin@ximian.com>
18340
18341         * icall.c (ves_icall_Type_BindGenericParameters): Return a
18342         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
18343         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
18344         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
18345
18346         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
18347         (create_typespec): Likewise.
18348         (mono_reflection_bind_generic_parameters): Return a
18349         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
18350         (mono_reflection_inflate_method_or_ctor): New public function.
18351
18352         * reflection.h (MonoReflectionGenericInst): New typedef.        
18353
18354 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
18355
18356         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
18357         inside the domain lock. Fixes #49993.
18358         
18359         * object.c (mono_class_vtable): When typed allocation is used, 
18360         allocate vtables in the GC heap instead of in the mempool, since the
18361         vtables contain GC descriptors which are used by the collector even
18362         after the domain owning the mempool is unloaded.
18363
18364         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
18365
18366         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
18367         reflect what it does. Also invalidate mempools instead of freeing
18368         them if a define is set.
18369
18370         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
18371         of the appdomain.
18372         
18373         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
18374         hold the finalizable objects in this domain.
18375
18376         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
18377         appdomain.
18378
18379         * appdomain.c (mono_domain_set): New function to set the current
18380         appdomain, but only if it is not being unloaded.
18381
18382         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
18383         appdomain which is being unloaded.
18384         
18385         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
18386         unloading of the root appdomain.
18387
18388         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
18389         icall to execute a method in another appdomain. Intended as a 
18390         replacement for InternalSetDomain, which can confuse the code 
18391         generation in the JIT.
18392
18393         * appdomain.c (mono_domain_is_unloading): New function to determine
18394         whenever an appdomain is unloading.
18395
18396         * appdomain.c (mono_domain_unload): New function to correctly unload
18397         an appdomain.
18398
18399         * assembly.c (mono_assembly_load_references): Check that an assembly
18400         does not references itself.
18401
18402         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
18403         domain manually, it asks the finalizer thread to do it, then waits for
18404         the result. Also added a timeout.
18405
18406         * icall.c: Register the new icalls.
18407
18408         * threads.h threads.c: Export the mono_gc_stop_world and 
18409         mono_gc_start_world functions.
18410         
18411         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
18412         function to fill out the mempool with 0x2a.
18413
18414 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
18415
18416         * reflection.h (MonoReflectionMethodAux): New structure to store
18417         information which is rarely used, thus is not in the MonoMethod
18418         structure.
18419
18420         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
18421         store the aux info.
18422
18423         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
18424         and marshalling info into the aux structure.
18425
18426         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
18427         from the aux structure.
18428
18429         * loader.c (mono_method_get_param_names): Retrieve the param names from
18430         the aux structure.
18431         
18432 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
18433
18434         * exception.h exception.c: Add AppDomainUnloadedException && fix 
18435         warning.
18436
18437 2003-10-21  Dick Porter  <dick@ximian.com>
18438
18439         * socket-io.c
18440         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
18441         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
18442
18443 2003-10-21  Martin Baulig  <martin@ximian.com>
18444
18445         * reflection.c (mono_reflection_bind_generic_parameters):
18446         `klass->parent' is NULL for interfaces.
18447
18448 2003-10-21  Martin Baulig  <martin@ximian.com>
18449
18450         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
18451
18452 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
18453
18454         * exception.c (mono_exception_from_name_msg): New helper function for
18455         creating exceptions and initializing their message field.
18456
18457         * exception.c: Simplify functions using the new helper.
18458
18459         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
18460         New function.
18461
18462         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
18463         mono_raise_exception, since otherwise gcc doesn't generate the function
18464         epilog for raise_exception, confusing the stack unwinding in the JIT.
18465         Fixes #45043.
18466
18467         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
18468         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
18469         Fixes #49499.
18470
18471 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18472
18473         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
18474         utf8.
18475
18476 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
18477
18478         * icall.c: Removed GetUninitializedObject method because
18479           AllocateUninitializedClassInstance does the same.
18480
18481 2003-10-18  Martin Baulig  <martin@ximian.com>
18482
18483         * class.c (inflate_generic_signature): Renamed to
18484         mono_class_inflate_generic_signature() and made it public.
18485         (my_mono_class_from_generic_parameter): New static function; if we
18486         don't already have the generic parameter's MonoClass, create a
18487         very simple one which is just used internally in the runtime and
18488         not passed back to managed code.
18489
18490         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
18491
18492         * metadata.h (MonoMethodSignature): Moved the
18493         `MonoGenericParam *gen_params' to the MonoMethodHeader.
18494         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
18495
18496         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
18497         ves_icall_MonoMethod_GetGenericArguments(); this is now an
18498         interncall on the MonoMethod class, not on MethodInfo.
18499         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
18500         calling mono_reflection_bind_generic_method_parameters() directly.
18501
18502         * loader.c (mono_method_get_signature): If this is a MethodSpec;
18503         return the already computed `method->signature'.
18504         (method_from_methodspec): New static function to load a method
18505         from a MethodSpec entry.
18506         (mono_get_method_from_token): Call the new method_from_methodspec()
18507         for MethodSpec tokens.  
18508         (mono_get_method_from_token): If we're a generic method, load the
18509         type parameters.
18510
18511         * reflection.c (mono_image_get_memberref_token): Allow
18512         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
18513         table.
18514         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
18515         (mono_image_create_token): First check whether it's a generic
18516         method (so we'd need to create a MethodSpec), then do the other
18517         two alternatives.
18518         (mono_reflection_bind_generic_method_parameters): Return a
18519         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
18520         called directly from the interncall.
18521
18522 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
18523
18524         * reflection.c (load_public_key): Move loading of the public key
18525         into managed code.
18526
18527         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
18528
18529         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
18530         fields.
18531
18532         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
18533         culture, hash_alg and public_key. Fixes #49555.
18534
18535 2003-10-17  Martin Baulig  <martin@ximian.com>
18536
18537         * class.h (MonoGenericInst): Moved this declaration here and added
18538         `MonoMethod *generic_method'.
18539
18540         * icall.c
18541         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
18542         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
18543
18544         * metadata.c (mono_metadata_type_equal): Two types of
18545         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
18546         index; ie. don't compare the address of the `MonoGenericParam'
18547         structure.
18548         (mono_metadata_load_generic_params): Removed the `MonoMethod
18549         *method' argument.
18550
18551         * metadata.h (MonoGenericInst): Moved declaration to class.h.
18552         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
18553
18554         * reflection.c (method_encode_signature): Encode the number of
18555         generic parameters.
18556         (encode_generic_method_sig): New static function.
18557         (method_encode_methodspec): New static function; creates an entry
18558         in the MethodSpec table for a generic method.
18559         (mono_image_get_methodspec_token): New static function.
18560         (mono_image_create_token): Call mono_image_get_methodspec_token()
18561         for generic methods.
18562         (mono_reflection_bind_generic_method_parameters): New public
18563         function.  Instantiates a generic method.
18564
18565 2003-10-16  Martin Baulig  <martin@ximian.com>
18566
18567         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
18568         *gen_params' here from MonoMethodHeader.
18569
18570         * metadata.c (mono_metadata_parse_method_signature): If we have
18571         generic parameters, initialize `method->gen_params' and then set
18572         the correct `type->data.generic_param' in all the parameters.
18573
18574 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
18575
18576         * threads.c (mono_threads_get_default_stacksize): New function to 
18577         return the default stacksize.
18578
18579         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
18580         termination of the finalizer thread, since the previous method had
18581         race conditions. Fixes #49628.
18582
18583         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
18584         as for the other managed threads.
18585
18586 2003-10-16  Martin Baulig  <martin@ximian.com>
18587
18588         * class.c (inflate_generic_signature): Copy `generic_param_count'
18589         and `gen_params'.
18590
18591         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
18592         New interncall.
18593
18594         * metadata.c (mono_metadata_parse_method_signature): Actually set
18595         the `method->generic_param_count' here.
18596         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
18597
18598 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
18599
18600         * object.h: Add a new field to TypedRef to simplify the implementation
18601         of the REFANY opcodes in the JIT.
18602
18603         * icall.c: Make use of the new field.
18604
18605         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
18606         dynamically.
18607
18608 2003-10-15  Martin Baulig  <martin@ximian.com>
18609
18610         * class.c (mono_class_from_gen_param): Renamed to
18611         mono_class_from_generic_parameter() and moved most of the
18612         functionality from mono_reflection_define_generic_parameter()
18613         here; ie. we create a "real" class here.
18614         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
18615         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
18616         previously been called.
18617
18618         * class.h (MonoGenericParam): Moved the declaration of this struct
18619         here from metadata.h and added `MonoMethod *method'.
18620
18621         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
18622         interncall.
18623
18624         * loader.c (mono_get_method_from_token): If we have any generic
18625         parameters, call mono_metadata_load_generic_params() to read them
18626         from the MONO_TABLE_GENERICPAR.
18627
18628         * metadata.c (mono_metadata_load_generic_params): Added
18629         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
18630
18631         * metadata.h (MonoMethodSignature): Replaced
18632         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
18633         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
18634
18635         * reflection.c (mono_reflection_define_generic_parameter): Moved
18636         most of the functionality into the new
18637         mono_class_from_generic_parameter(); set the `method' field if
18638         we're a method parameter.       
18639
18640 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
18641
18642         * marshal.c (emit_struct_conv): if native size is 0
18643         emit no code.
18644
18645 2003-10-14  Martin Baulig  <martin@ximian.com>
18646
18647         * icall.c: The generics API has changed in the spec since it was
18648         added to System.Type; these modifications make it match the spec
18649         again.
18650         (ves_icall_Type_GetGenericParameters): Renamed to
18651         `ves_icall_Type_GetGenericArguments'.
18652         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
18653         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
18654         `ves_icall_MonoType_get_HasGenericArguments'.
18655         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
18656         `ves_icall_MonoType_get_IsGenericParameter'.
18657         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
18658         this is no interncall anymore.
18659         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
18660         `ves_icall_TypeBuilder_get_IsGenericParameter'.
18661
18662 2003-10-14  Martin Baulig  <martin@ximian.com>
18663
18664         * reflection.c (mono_reflection_bind_generic_parameters): Also
18665         inflate generic methods if we're reading the class from IL.
18666
18667 2003-10-13  Martin Baulig  <martin@ximian.com>
18668
18669         * reflection.c (mono_reflection_define_generic_parameter): This
18670         method isn't called directly from the icall anymore; take a
18671         `MonoReflectionAssemblyBuilder *' so we can use this for type and
18672         method generic parameters.
18673         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
18674         (method_builder_encode_signature): Encode generic parameters.
18675         (mono_image_get_method_info): Write generic params to the
18676         MONO_TABLE_GENERICPARAM table.
18677
18678         * reflection.h (MonoReflectionMethodBuilder): Added
18679         `MonoArray *generic_params'.
18680
18681         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
18682
18683         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
18684         wrapper for mono_reflection_define_generic_parameter().
18685         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
18686
18687 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
18688
18689         * marshal.h: Add missing function to fix build.
18690
18691         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
18692         the SetLastError pinvoke attribute.
18693
18694         * marshal.c (mono_marshal_set_last_error): New helper function called
18695         by the generated code.
18696         
18697         * marshal.c (mono_mb_emit_branch): New helper function.
18698
18699         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
18700
18701         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
18702         classes as parameters and return values of delegates. Fixes #29256. 
18703
18704 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
18705
18706         * locales.c: use gint32 in non HAVE_ICU case
18707
18708 2003-10-11  Martin Baulig  <martin@ximian.com>
18709
18710         * mono-debug.c (mono_debug_add_method): Added a workaround for
18711         bug #48591.
18712
18713 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
18714
18715         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
18716         delegates passed to native code must use the STDCALL calling 
18717         convention. Fixes #35987.
18718
18719 2003-10-10  Martin Baulig  <martin@ximian.com>
18720
18721         * class.c (inflate_generic_type): If we're inflating for a generic
18722         type instance (and not for a generic method), return
18723         MONO_TYPE_MVAR unchanged.
18724
18725 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18726
18727         * string-icalls.c: Join ignores null strings in the source array.
18728         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
18729         * threads.c: GetAvailableTheads is slightly more accurate.
18730
18731 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
18732
18733         * threads.h threads.c : add mono_threads_set_default_stacksize
18734         and pass default to CreateThread calls.
18735
18736 2003-10-09  Dick Porter  <dick@ximian.com>
18737
18738         * icall.c:
18739         * locales.h:
18740         * locales.c: Internal calls for constructing CultureInfo and
18741         related objects from libicu (if its available.)
18742
18743 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
18744
18745         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
18746
18747 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18748
18749         * threadpool.c: added an argument to async_invoke_thread that is the
18750         item to process, pass the MonoAsyncResult to the thread start function
18751         when creating a new thread. This way we don't need to acquire any lock
18752         when we're creating a new thread. Readded a semaphore for faster
18753         response times (instead of that Sleep i added).
18754
18755 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
18756
18757         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
18758         get daylight change dates better on Windows, fix handling
18759         of platforms without tm_gmtoff.
18760
18761 2003-10-06  Martin Baulig  <martin@ximian.com>
18762
18763         * class.c (inflate_generic_method): Renamed to
18764         mono_class_inflate_generic_method() and made public.
18765         (mono_class_init): Don't inflate the generic methods here.
18766         (mono_class_from_generic): Added `gboolean inflate_methods'
18767         argument.  Inflate the methods here.
18768
18769         * loader.c (mono_method_get_param_names): Ignore instances of
18770         generic types for the moment.
18771
18772         * reflection.c (fixup_method): Added support for inflated methods.
18773         (mono_image_create_token): Use mono_image_get_methodref_token()
18774         for inflated methods.
18775         (mono_custom_attrs_from_param): Ignore instances of generic types
18776         for the moment.
18777         (mono_reflection_bind_generic_parameters): New public function.
18778         Moved all the functionality from
18779         ves_icall_Type_BindGenericParameters() here and added support for
18780         dynamic types.
18781         (mono_reflection_define_generic_parameter): Initialize
18782         `klass->methods' here.
18783
18784         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
18785         functionality into mono_reflection_define_generic_parameter().
18786         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
18787         TypeBuilder, return that TypeBuilder.
18788
18789 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18790
18791         * appdomain.c: removed mono_delegate_semaphore.
18792
18793         * threadpool.c:
18794         (mono_thread_pool_add): moved hash table creation inside and the thread 
18795         creation outside of the critical region.
18796         (mono_thread_pool_finish): removed obsolete code.
18797         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
18798         continue or exit the thread depending on the queue.
18799
18800 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
18801
18802         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
18803         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
18804         handle more bool marshalling options
18805
18806 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
18807
18808         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
18809         arrays of structs. Also add a more descriptive error message when
18810         a structure member is marshalled as LPArray.
18811
18812 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
18813
18814         * marshal.c (mono_marshal_get_native_wrapper): Add support for
18815         marshalling arrays of complex types. Fixes #29098. Also remove an
18816         usused and incomplete function.
18817
18818 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
18819
18820         * gc.c: report heap_size - free_bytes as total memory allocated
18821         (bug#49362).
18822
18823 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
18824
18825         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
18826         fix timezone handling problems on Windows.
18827         
18828         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
18829         asserts when the year is outside the range handled by ms the functions.
18830
18831         * class.c (setup_interface_offsets): If the class is an interface,
18832         fill out its interface_offsets slot.
18833
18834 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18835
18836         * threadpool.c: mark threadpool threads as background.
18837
18838 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
18839
18840         * decimal.c - define DECINLINE to nothing if not using GCC
18841
18842 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
18843
18844         * assembly.c: More refcount fixes.
18845
18846 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18847
18848         * string-icalls.c: if we're not trimming, return the same string.
18849         When not splitting, don't create a new string.
18850
18851 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18852
18853         * image.c:
18854         (mono_image_open): increment the ref_count inside the critical section.
18855
18856 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
18857
18858         * image.c (mono_image_open): Fix reference counting bug.
18859
18860 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
18861
18862         * marshal.c (mono_marshal_type_size) struct alignment changed for 
18863         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
18864         64bits. Avoid leak in mono_marshal_get_native_wrapper when
18865         mono_lookup_pinvoke_call throws.        
18866
18867 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
18868
18869         * reflection.c (mono_reflection_parse_type): Fix #49114.
18870
18871         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
18872         temporary workaround for cygwin header problem.
18873
18874         * object.c (mono_object_isinst): Synchronize this with the code
18875         generated by the JIT for casts.
18876
18877 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
18878
18879         * reflection.c (encode_type): Fix #38332.
18880
18881 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
18882
18883         * marshal.c (mono_marshal_method_from_wrapper): New function to return
18884         the original method from the wrapper method.
18885
18886 2003-09-25  Martin Baulig  <martin@ximian.com>
18887
18888         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
18889         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
18890         (ves_icall_Type_get_IsGenericInstance): New interncall.
18891
18892 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
18893
18894         * object.c: fix cast warning in big endian code.
18895
18896 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
18897
18898         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
18899         
18900 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
18901
18902         * assembly.c: don't call check_env from mono_assembly_load. It's
18903         already done once in mono_assemblies_init and may cause headaches when
18904         multiple threads are loading assemblies.
18905
18906 2003-09-19  Martin Baulig  <martin@ximian.com>
18907
18908         * reflection.c (mono_reflection_define_generic_parameter): Don't
18909         allocate `klass->methods', set `klass->flags' to
18910         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
18911
18912 2003-09-18  Martin Baulig  <martin@ximian.com>
18913
18914         * class.c (mono_class_init): Don't create `class->methods' if it's
18915         already initialized.
18916
18917         * metadata.c (mono_metadata_load_generic_params): Make this
18918         actually work.
18919
18920         * reflection.c (mono_reflection_define_generic_parameter): Set
18921         parent class and interfaces from the constraints.
18922
18923         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
18924         to keep this struct in sync with the declaration in TypeBuilder.cs.
18925
18926 2003-09-17  Martin Baulig  <martin@ximian.com>
18927
18928         * metadata.h (MonoType): Replaced the data's `int type_param'
18929         field with `MonoGenericParam *generic_param'.
18930         (MonoGenericParam): Added `MonoClass *klass'.
18931
18932         * class.c (mono_class_from_gen_param): Removed the
18933         `MonoImage *image' and `int type_num' arguments.
18934
18935         * metadata.c (mono_metadata_parse_generic_param): New static
18936         method; creates a MonoGenericParam which just contains the index.
18937         (do_mono_metadata_parse_type): Call
18938         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
18939         MONO_TYPE_MVAR.
18940
18941         * reflection.c (mono_image_typedef_or_ref): Generic type
18942         parameters may be in the same assembly, but never use a typedef
18943         for them.
18944         (mono_reflection_define_generic_parameter): We're now creating a
18945         "real" class for the type parameter; it's now safe to call
18946         mono_class_from_mono_type() on the class'es type, it'll do the
18947         right thing.
18948
18949 2003-09-16  Martin Baulig  <martin@ximian.com>
18950
18951         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
18952         `symfile->range_entry_size' and `symfile->class_entry_size' here;
18953         the `symfile' data structure must be fully initialized before it
18954         gets added to the table.
18955
18956 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
18957
18958         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
18959
18960         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
18961         class init trampolines.
18962
18963 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
18964
18965         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
18966         to the built-in profiler to turn off time and allocation profiling
18967         respectively.
18968
18969 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
18970
18971         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
18972         g_direct_equal.
18973
18974         * debug-helpers.c (mono_method_full_name): Print the wrapper type
18975         in human readable form.
18976
18977 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
18978
18979         * reflection.c icall.c: Fixed warnings.
18980
18981         * image.c (load_class_names): Use a temporary hash table to hold the
18982         namespaces in order to avoid doing many string comparisons.
18983
18984         * image.h: Fix typo.
18985
18986         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
18987         Pass NULL instead of g_direct_equal to the GHashTable constructor 
18988         since the NULL case is short-circuited inside g_hash_table_lookup, 
18989         leading to better performance.  
18990
18991         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
18992         obtain the first custom attribute for a given index. Depends on the
18993         CustomAttribute table being sorted by the parent field.
18994
18995         * reflection.c (mono_custom_attrs_from_index): Use the new function 
18996         for better performance.
18997
18998 2003-09-07  Martin Baulig  <martin@ximian.com>
18999
19000         * class.c (mono_class_init): If we're a generic instance, inflate
19001         all our methods instead of loading them from the image.
19002         (mono_class_from_generic): Set `class->methods = gklass->methods'.
19003
19004 2003-09-07  Martin Baulig  <martin@ximian.com>
19005
19006         * mono-debug-debugger.c: Added support for constructors.
19007
19008 2003-09-06  Martin Baulig  <martin@ximian.com>
19009
19010         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
19011         New interncall.
19012
19013         * reflection.c (mono_reflection_setup_generic_class): Call
19014         ensure_runtime_vtable() to create the vtable.
19015
19016 2003-09-05  Martin Baulig  <martin@ximian.com>
19017
19018         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
19019         MONO_TYPE_MVAR.
19020
19021 2003-09-04  Martin Baulig  <martin@ximian.com>
19022
19023         * reflection.c (mono_reflection_define_generic_parameter): Generic
19024         parameters start with zero.
19025
19026 2003-09-04  Martin Baulig  <martin@ximian.com>
19027
19028         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
19029
19030         * reflection.h (MonoReflectionGenericParam): New typedef.
19031         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
19032         the generic parameters from the managed TypeBuilder.
19033
19034         * reflection.c (mono_reflection_define_generic_parameter): New function.
19035         (mono_reflection_create_runtime_class): Encode generic parameters.
19036         (mono_reflection_setup_generic_class): New function; this is
19037         called after adding adding all generic params to the TypeBuilder.
19038         (encode_type): Added MONO_TYPE_VAR.
19039
19040 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
19041
19042         * class.h class.c (mono_class_needs_cctor_run): Moved this method
19043         here from the JIT.
19044
19045         * assembly.h assembly.c: Moved the AOT loading code into an assembly
19046         load hook.
19047
19048 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
19049
19050         * reflection.h reflection.c class.h class.c: Delete duplicate 
19051         definition of mono_type_get_name () from reflection.c and export the
19052         one in class.c.
19053
19054         * class.c: Class loading fixes from Bernie Solomon 
19055         (bernard@ugsolutions.com).
19056
19057         * reflection.c: Endianness fixes from Bernie Solomon 
19058         (bernard@ugsolutions.com).
19059         
19060 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
19061
19062         * assembly.h assembly.c: Define a file format version for AOT
19063         libraries.
19064         
19065         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
19066
19067         * appdomain.h (MonoJitInfo): New field to determine whenever the
19068         code is domain neutral.
19069         
19070 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
19071
19072         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
19073
19074 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
19075
19076         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
19077         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
19078         Avoid caching the result since strings must be domain specific. Fixes
19079         #48050.
19080
19081 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
19082
19083         * marshal.c (mono_marshal_init): Make this callable multiple times
19084         since it is hard to find a correct place to call it.
19085
19086         * object.c (mono_runtime_class_init): Execute static constructors in
19087         the correct appdomain.
19088
19089         * image.c (build_guid_table): Handle the case when multiple images have
19090         the same GUID.
19091
19092 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19093
19094         * icall.c: added a couple of icalls for System.Web.
19095
19096 2003-08-28  Martin Baulig  <martin@ximian.com>
19097
19098         * icall.c (ves_icall_Type_BindGenericParameters): Use
19099         `klass->generic_inst' instead of `&klass->byval_arg' in the
19100         mono_type_get_object() call.  The returned type must be
19101         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
19102
19103 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
19104
19105         * NOTES: New file.
19106
19107         * object.c (mono_class_proxy_vtable): Make it thread safe.
19108
19109         * pedump.c: Fix warning.
19110
19111         * object.c appdomain.h: Get rid of metadata_section. 
19112         It is no longer needed and it was causing deadlocks with domain->lock.
19113
19114         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
19115
19116 2003-08-26  Martin Baulig  <martin@ximian.com>
19117
19118         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
19119
19120 2003-08-26  Martin Baulig  <martin@ximian.com>
19121
19122         * pedump.c (main): Call mono_metadata_init(),
19123         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
19124         and mono_loader_init().
19125
19126 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
19127
19128         * loader.h: Add missing include to fix build.
19129
19130         * image.h: mono_image_load_references is no more.
19131
19132         * assembly.c: Reworked assembly loading to make it really thread safe.
19133         After these changes, the assembly returned by mono_assembly_open is
19134         fully initialized, i.e. all its references assemblies are loaded.
19135
19136         * assembly.c (mono_image_load_references): Renamed to 
19137         mono_assembly_load_references, and made private, since clients no
19138         longer need to call it.
19139
19140         * class.c: Removed calls to mono_assembly_load_references, since it was
19141         a source of deadlocks.
19142
19143         * loader.h loader.c class.h class.c: Protect data structures using a 
19144         new lock, the loader lock.
19145
19146         * class.c (mono_class_setup_vtable): Create temporary hash tables and
19147         GPtrArrays only when needed.
19148
19149         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
19150         into empty structures by mcs. Fixes pinvoke7.cs.
19151         
19152         * domain.c (mono_init): Call a new initialization function.
19153
19154         * appdomain.c (mono_runtime_init): Call the new initializer function
19155         of the marshal module.
19156
19157         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
19158         inserted into empty structures by mcs. Fixes pinvoke7.cs.
19159
19160         * marshal.h marshal.c: Added locks around the wrapper caches to make
19161         this module thread safe.
19162
19163         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
19164         this argument. Fixes pinvoke1.exe.
19165
19166 2003-08-25  Lluis Sanchez <lluis@ximian.com>
19167
19168         * object.h: Added call_type field to MonoMethodMessage and the corresponding
19169         enumeration of values. Removed fields to store remote call output values in
19170         MonoAsyncResult. Not needed any more.
19171         * object.c: Initialize call_type and async_result fields in mono_message_init.
19172         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
19173         dispatching the message.
19174         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
19175         async call to finish. To do it use a message with EndInvoke call type.
19176
19177 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
19178
19179         * loader.h loader.c (mono_method_hash_marhal_info): New function which
19180         determines whenever a method has marshalling info.
19181
19182 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19183
19184         * assembly.c: fix the build on windows.
19185
19186 2003-08-22 Lluis Sanchez <lluis@ximian.com>
19187
19188         * object.cs: Fixed bug #47785.
19189
19190 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
19191
19192         * string-icalls.c (StringReplace): If their are no occurances of
19193         the old string found return a reference to the supplied
19194         string. This saves some memory and matches MS behavoir.
19195         
19196 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19197
19198         * socket-io.c: fixed compilation for systems that define AF_INET6
19199         and don't define SOL_IP/SOL_IPV6.
19200
19201 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
19202
19203         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
19204         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
19205
19206         * rawbuffer.c rawbuffer.h: Make this module thread safe.
19207
19208         * domain.c: Make this module thread safe.
19209
19210         * domain.c (mono_init): Call new initialization function.
19211
19212         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
19213         reference types too. Fixes #38812.
19214
19215         * image.c (mono_image_init): Fixed warnings.
19216
19217         * class.c (mono_class_from_typeref): Handle assembly load failure
19218         correctly.
19219
19220         * appdomain.c (add_assemblies_to_domain): Handle the case when
19221         the references of an assembly are not yet loaded.
19222
19223         * metadata.c image.c assembly.c: Moved initialization of global
19224         variables to a separate function called at startup since lazy 
19225         initialization of these variables is not thread safe.
19226         
19227         * image.c assembly.c: Made this module thread safe by adding locks in 
19228         the appropriate places.
19229
19230         * domain.c (mono_init): Call the new initialization functions of the
19231         three modules.
19232
19233 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
19234
19235         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
19236           make a direct call. It is proxy's work to make the call asynchronous.
19237           mono_delegate_end_invoke(): If the targe is a proxy, just collect
19238           the return values.
19239         * object.cs: mono_method_call_message_new(): read AsyncResult and
19240           state object from parameters list, if this info is requested.
19241         * object.h: Added fields to store remote call output values in
19242           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
19243
19244 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19245
19246         * object.h: add needed fields to MonoThread.
19247         * threads.c, threads.h: allow registering a function to cleanup data
19248         allocated per thread by the JIT.
19249
19250 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19251
19252         * loader.h: portability fix by Bernie Solomon
19253         * <bernard@ugsolutions.com>.
19254
19255 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
19256
19257         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
19258         return a MonoArray. This simplifies the code and also ensures that
19259         the cache allways contains an object reference as a value.
19260
19261         * icall.c (ves_icall_get_parameter_info): Simplified using the new
19262         function.
19263
19264 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19265
19266         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
19267         fixes a problem with byte ordering when getting the address family for
19268         a socket.
19269
19270 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
19271
19272         * .cvsignore: Added monosn.
19273
19274         * reflection.h reflection.c loader.c: Added support for parameter
19275         marshalling to dynamically created types. Fixes #47295.
19276
19277 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19278
19279         * rand.c: remove useless warnings.
19280
19281 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19282
19283         * class.c: implemented ldtoken for methods and fieldrefs.
19284
19285 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19286
19287         * threadpool.c: when mono_async_invoke was called, no one took care of
19288         monitoring the queue. So if the method invoked took some time and we
19289         got new async invoke requests after 500 ms (the thread created waited
19290         that long in WaitForSingleObject), the new async invoke was not called
19291         until the previous one finished.
19292
19293         This is fixed now. Thanks to Totte for helping with it.
19294
19295 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19296
19297         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
19298
19299 2003-08-11  Martin Baulig  <martin@ximian.com>
19300
19301         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
19302
19303 2003-08-06  Martin Baulig  <martin@ximian.com>
19304
19305         * mono-debug-debugger.c: Added support for static fields,
19306         properties and methods.
19307
19308 2003-08-06  Martin Baulig  <martin@ximian.com>
19309
19310         * mono-debug-debugger.c: Don't store the MonoString's vtable to
19311         make this work for applications with multiple application domains.
19312
19313 2003-08-04  Martin Baulig  <martin@ximian.com>
19314
19315         * mono-debug-debugger.c: Completely reworked the type support; the
19316         most important thing is that we're now just using one single
19317         `MonoType' instance per type.
19318
19319 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
19320
19321         * mono-endian.h, mono-endian.c, icall.c: Added icall
19322         ves_icall_System_Double_AssertEndianity to assert double word endianity
19323         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
19324
19325 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19326
19327         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
19328         support, icalls and fixes.
19329
19330 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
19331
19332         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
19333         classes that are a punctuation character in .NET is not the same a
19334         g_unichar_ispunct.
19335
19336 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19337
19338         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
19339
19340 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
19341
19342         * icall.c: Add new MemCopy internalcall.
19343         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
19344         Simplified code; It is not necessary to handle all the cases here,
19345         as the C# code takes care of it.  Only handle the case of the name
19346         resource embedded into the assembly.
19347
19348         Changed signature to return the data pointer and the size of the
19349         data. 
19350
19351 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
19352
19353         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
19354         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
19355
19356 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
19357
19358         * socket-io.c: ignore EINTR error in select.
19359
19360 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
19361
19362         * class.h, class.c: removed unused subclasses field in MonoClass.
19363
19364 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
19365
19366         * icall.c: improve fix of get_base_definition(). If the parent class
19367           doesn't have the mehod, look at the parent of the parent.
19368         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
19369           to check if a parameter is an in or out parameter
19370           (PARAM_ATTRIBUTE_IN is not set by default).
19371           mono_method_return_message_restore(): Use mono_class_value_size to
19372           get the size of a value type. mono_type_stack_size (parameterType)
19373           does not return the correct value if parameterType is byRef.
19374           mono_load_remote_field(), mono_load_remote_field_new(),
19375           mono_store_remote_field(), mono_store_remote_field_new():
19376           raise exception if the remote call returns an exception.
19377
19378 2003-07-28  Martin Baulig  <martin@ximian.com>
19379
19380         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
19381         method.  This is a wrapper around mono_runtime_invoke() which
19382         boxes the instance object if neccessary.
19383
19384 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19385
19386         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
19387         metadata.h, row-indexes.h, verify.c: first cut of generics support.
19388
19389 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19390
19391         * icall.c: disable mcs bug workaround.
19392
19393 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
19394
19395         * object.c (mono_runtime_class_init): Take the metadata_section
19396         mutex before obtaining the domain mutex.
19397
19398         * appdomain.h: Added definition of metadata_section mutex here. 
19399
19400         * object.c: define metadata_mutex here.
19401
19402 2003-07-24  Ravi Pratap  <ravi@ximian.com>
19403
19404         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
19405         fixed.
19406
19407 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
19408
19409         * reflection.c: Fix bug #46669
19410
19411 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19412
19413         * exception.c:
19414         * exception.h:
19415         * icall.c:
19416         * object.h: fill in the type name for TypeLoadException.
19417
19418 2003-07-23  Ravi Pratap  <ravi@ximian.com>
19419
19420         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
19421         relationship between TypeBuilders while compiling corlib) and bug
19422         45993 (Array types returned from the runtime while compiling
19423         corlib were from the loaded corlib).
19424
19425 2003-07-22  Martin Baulig  <martin@ximian.com>
19426
19427         * mono-debug-debugger.c: Reworked the type support a bit more;
19428         distinguish between types and classes.
19429
19430 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
19431
19432         * icall.c: add IsArrayImpl icall.
19433
19434 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
19435
19436         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
19437         initializing real_size only once. Also fix bug #46602.
19438
19439 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
19440
19441         * object.c: Renamed mono_metadata_section to metadata_section.
19442
19443 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
19444
19445         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
19446           empty array if the type is an array. Fixed.
19447           ves_icall_MonoMethod_get_base_definition: if the base method
19448           is abstract, get the MethodInfo from the list of methods of
19449           the class.
19450         * reflection.c: ParameterInfo.PositionImpl should be zero-based
19451           and it was 1-based. Fixed in mono_param_get_objects.
19452
19453 2003-07-20  Martin Baulig  <martin@ximian.com>
19454
19455         * mono-debug.h: Set version number to 31.
19456         (mono_debug_init): Added `MonoDomain *' argument.
19457
19458         * mono-debug-debugger.c: Reworked the type support; explicitly
19459         tell the debugger about builtin types; pass the `klass' address to
19460         the debugger.
19461
19462 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
19463
19464         * image.c: Allow new metadata tables to be loaded without a
19465         warning. Also update the warning message to give the new constant value.
19466                 
19467 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19468
19469         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
19470         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
19471         array type representation changes.
19472
19473 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19474
19475         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
19476         on Environment.Exit () call.
19477
19478 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19479
19480         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
19481         requires a matching corlib.
19482
19483 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19484
19485         * Changelog: My editor decided to add a CR to each line. Sorry about that.
19486           Committed again without the CRs.
19487         
19488 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
19489
19490         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
19491           getting it from the "this" socket instance. Did not work
19492           if the socket is a subclass of Socket.
19493           Also fixed bug #35371.
19494
19495 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19496
19497         * metadata.c: fixed size for TypedByRef.
19498         * loader.c: when searching for a method, consider the vararg amrker.
19499         * unicode.c, decimal.c: constify some arrays.
19500
19501 2003-07-15  Dick Porter  <dick@ximian.com>
19502
19503         * socket-io.c: Fixed compilation for gcc < 3.2.
19504
19505         Fixed compilation for machines that don't have AF_INET6 (thanks to
19506         Bernie Solomon <bernard@ugsolutions.com> for that part.)
19507
19508         Fixed compile warnings.
19509         
19510         Fixed formatting and line endings.
19511
19512 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
19513
19514         * socket-io.h:
19515         * socket-io.c: Added IPv6 support.
19516
19517 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
19518
19519         * class.c (mono_class_is_assignable_from): New function to implement
19520         the is_assignable_from logic. Used by mono_object_isinst, 
19521         Type::IsAssignableFrom () and the interpreter.
19522
19523         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
19524         Object, even interfaces.
19525         
19526         * object.c (mono_object_isinst): Implement in terms of 
19527         is_assignable_from.
19528
19529         * icall.c (ves_icall_type_is_assignable_from): New icall.
19530
19531 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
19532
19533         * domain.c (foreach_domain): fix compiler warning.
19534
19535 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
19536
19537         * image.c (load_metadata_ptrs): use g_strndup because strndup is
19538         not available on all plattforms
19539
19540 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
19541
19542         * image.h image.c: Store the metadata version string in MonoImage.
19543         * icall.c: New icall to retrieve the image version.
19544         * reflection.c (create_dynamic_image): Fill in the image version field
19545         * reflection.c (build_compressed_metadata): Use the image version
19546         from the image structure.
19547
19548 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19549
19550         * appdomain.c: modified comment.
19551         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
19552         That will be its last iteration when mono_gc_cleanup is called from
19553         mono_runtime_cleanup and before the domain is unloaded.
19554
19555         Fixes bug #45962.
19556
19557 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
19558
19559         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
19560         attributes.
19561
19562 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19563
19564         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
19565         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
19566         Bernie Solomon <bernard@ugsolutions.com>.
19567
19568 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19569
19570         * object.c, object.h: provide mono_object_new_fast() for faster
19571         allocation in some special cases.
19572
19573 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19574
19575         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
19576         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
19577
19578 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19579
19580         * threadpool.c: fix leaks.
19581
19582 2003-07-01  Dick Porter  <dick@ximian.com>
19583
19584         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
19585         using MonoGHashTables.  Fixes threadpool bug posted to list.
19586
19587 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
19588
19589         * image.h, image.c: added support to load an assembly from a byte array.
19590         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
19591         assembly bundle support.
19592
19593 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
19594
19595         * threadpool.c (mono_thread_pool_add): keep a reference to the
19596         AsyncResult to prevent GC
19597
19598 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19599
19600         * class.c: leak fix.
19601
19602 2003-06-25  Dick Porter  <dick@ximian.com>
19603
19604         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
19605         for the async object, the WaitHandle object will close the handle.
19606         Fixes bug 45321.
19607
19608 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19609
19610         * class.c: in mono_array_class_get (), lookup from the hash with the
19611         same type we insert: this works around a bug in
19612         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
19613         lluis. The real fix will have to wait for after the release.
19614
19615 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19616
19617         * icall.c: fix memory leak when getting type members.
19618
19619 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19620
19621         * reflection.c: added more pubtoken special cases.
19622
19623 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19624
19625         * class.c: handle field offset correctly when class size
19626         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
19627
19628 2003-06-20  Martin Baulig  <martin@ximian.com>
19629
19630         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
19631         *image' field.
19632
19633 2003-06-20  Martin Baulig  <martin@ximian.com>
19634
19635         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
19636
19637 2003-06-20  Martin Baulig  <martin@ximian.com>
19638
19639         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
19640         just distinguish between variables in registers and variables at
19641         an offset relative to a register.
19642
19643 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19644
19645         * icall.c: #ifdef out latest changes until mcs is fixed.
19646
19647 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19648
19649         * icall.c: return members in metadata order.
19650
19651 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19652
19653         * icall.c: avoid infinite loop in GetTimeZoneData.
19654
19655 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19656
19657         * icall.c: added Marshal.Prelink/All icalls.
19658
19659 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
19660
19661         * object.c, object.h: fix warnings and do some overflow checking
19662         when creating arrays.
19663
19664 2003-06-17  Dick Porter  <dick@ximian.com>
19665
19666         * file-io.h:
19667         * file-io.c: File attributes need to be tweaked slightly when
19668         passed from the managed to the w32 world.
19669
19670 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19671         * profiler.h profiler-private.h profiler.c: Rework last patch
19672         based on suggestion by Paolo.
19673         
19674 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
19675
19676         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
19677         instruction level coverage data collection.
19678         * profiler.h profiler.c (: Added new callback function which can be
19679         used by the profiler to limit which functions should have coverage
19680         instrumentation.
19681         * profiler.c (mono_profiler_load): Call g_module_build_path to
19682         generate the file name of the profiler library.
19683
19684 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19685
19686         * profiler.c, profiler.h, profiler-private.h: added basic block 
19687         coverage profiling API.
19688
19689 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
19690
19691         * reflection.c (mono_reflection_create_runtime_class): Add support
19692         for events in dynamically generated code.
19693
19694         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
19695         not allocated.
19696
19697 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19698
19699         * icall.c: when getting timezone info, return reasonable values if we
19700         can't get the actual data.
19701
19702 2003-06-14  Dick Porter  <dick@ximian.com>
19703
19704         * threads.c (start_wrapper): Remove the reference to the thread
19705         object in the TLS data, so the thread object can be finalized.
19706         This won't be reached if the thread threw an uncaught exception,
19707         so those thread handles will stay referenced :-( (This is due to
19708         missing support for scanning thread-specific data in the Boehm GC
19709         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
19710
19711 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
19712
19713         * reflection.c: ensure streams and tables are first allocated with
19714         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
19715
19716 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
19717
19718         * icall.c: fixed GetElementType for byrefs (bug# 44792).
19719
19720 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
19721
19722         * reflection.c (mono_reflection_create_runtime_class): Add support for
19723         properties to dynamically created classes.
19724         * reflection.c: Fix a few places where non-MonoObjects were inserted
19725         into the tokens hashtable.
19726
19727 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19728
19729         * object.c: some support to handle out of memory exceptions.
19730
19731 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
19732
19733         * marshal.c (mono_marshal_get_native_wrapper): support reference
19734         return types
19735
19736 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19737
19738         * object.h, object.c: more portability stuff from Bernie Solomon.
19739         Unexport mono_object_allocate(). Added mono_object_unbox ().
19740         Set exitcode when an unhandled exception is thrown.
19741
19742 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
19743
19744         * marshal.c (mono_marshal_get_native_wrapper): use custom
19745         marshaler for return types.
19746
19747 2003-06-10  Dick Porter  <dick@ximian.com>
19748
19749         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
19750         ip_mreq is available
19751
19752 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19753
19754         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
19755         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
19756         by Bernie Solomon <bernard@ugsolutions.com>.
19757
19758 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
19759
19760         * gc.c (mono_gc_init): Avoid error message on shutdown when
19761         GC_DONT_GC=1 is used.
19762
19763         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
19764         New icall to return the GUID of a module.
19765
19766 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19767
19768         * class.c: ensure instance size always includes the parent's size
19769         even whem class size is set explicitly (fixes bug#44294).
19770
19771 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19772
19773         * profiler.h, profiler.c: made the simple profiler thread-safe,
19774         get more accurate timing info. Allow the loading of an
19775         externally-developed profiler module.
19776
19777 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
19778
19779         * marshal.c (mono_marshal_get_native_wrapper): improved
19780         class/byref arguments.
19781         (mono_marshal_get_native_wrapper): better string marshaling support.
19782
19783 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19784
19785         * class.c: ensure .pack and .size are handled correctly and
19786         simplified layout of static fields.
19787
19788 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
19789
19790         * appdomain.c
19791         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
19792
19793         * loader.c (mono_lookup_pinvoke_call): look for modules in the
19794         current directory (fix bug 44008)
19795
19796 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
19797
19798         * marshal.c (mono_marshal_get_native_wrapper): started support for
19799         custom marshalers.
19800         (mono_delegate_to_ftnptr): consider marshalling specifications
19801
19802 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19803
19804         * reflection.c, reflection.h: emit custom marshal info.
19805
19806 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19807
19808         * object.c: free the GError.
19809         * icall.c: added CloseEvent_internal.
19810         * threads.[ch]:
19811         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
19812         call.
19813
19814 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
19815
19816         * loader.c (mono_method_get_signature): Add support for dynamic
19817         assemblies.
19818
19819 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19820
19821         * reflection.c: fixed bug #43905.
19822
19823 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19824
19825         * class.c, domain.c, icall.c, metadata.h, object.h: support for
19826         handling TypedReference and ArgIterator.
19827         * loader.c, loader.h: added function to get signature at call site.
19828
19829 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19830
19831         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
19832         data readonly. Buglets and warning fixes. Some MethodSpec support.
19833
19834 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19835
19836         * class.h, class.c, object.c: remove relative numbering support.
19837
19838 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
19839
19840         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
19841         free the string, until we get a chance to fix Gtk#
19842
19843 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19844
19845         * marshal.c: revert last patch.
19846
19847 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19848
19849         * icall.c: updates for new mono_class_vtable() not calling
19850         the type constructor anymore.
19851
19852 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
19853
19854         * object.h, object.c: separate vtable creation from type
19855         initialization. Make running the .cctor thread safe.
19856
19857 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
19858
19859         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
19860
19861 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
19862
19863         * loader.c (mono_get_method): consider calling convention
19864
19865 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
19866
19867         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
19868         to return the invisible global type for a module.
19869
19870         * reflection.c (mono_image_build_metadata): Emit global fields too.
19871
19872 2003-05-20  Peter Williams  <peterw@ximian.com>
19873
19874         * loader.c (mono_lookup_internal_call): Add a few newlines.
19875
19876 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
19877
19878         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
19879         literal strings.
19880
19881         * appdomain.c (set_domain_search_path): Recalculate search path when
19882         AppDomainSetup.PrivateBinPath changes.
19883
19884         * object.c (mono_class_compute_gc_descriptor): It turns out some
19885         parts of the class libs (like System.Thread) holds pointers to
19886         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
19887         to treat native int a pointer type here.
19888         
19889 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
19890
19891         * appdomain.h, domain.c: add hashtable for jump target resolution.
19892
19893 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
19894
19895         * reflection.h reflection.c icall.c: Added new icalls 
19896         GetManifestResourceInfoInternal, GetModulesInternal and support
19897         infrastructure.
19898
19899 2003-05-16  Dick Porter  <dick@ximian.com>
19900
19901         * icall.c:
19902         * file-io.h:
19903         * file-io.c: Implement System.IO.MonoIO::GetTempPath
19904
19905 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
19906
19907         * object.c: mono_store_remote_field: little fix to previous patch.
19908
19909 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19910
19911         * class.c: add constructors to array classes.
19912         * icall.c: special case array construction for InternalInvoke (),
19913
19914 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
19915
19916         * class.h class.c reflection.c object.c: Added support for field
19917         defaults in dynamically generated classes.
19918
19919 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19920
19921         * reflection.c: properly encode charset for ddlimport.
19922
19923 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19924
19925         * threads.c: allow compiling without GC.
19926
19927 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19928
19929         * appdomain.h, object.c, object.h, threads.c, threads.h: added
19930         handling of thread static data.
19931
19932 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19933
19934         * reflection.h, reflection.c: added mono_custom_attrs_free ().
19935
19936 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
19937
19938         * class.c (mono_array_class_get): always set the serializable flags
19939         (mono_array_class_get): always set the SEALED attribute for array types
19940
19941 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
19942
19943         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
19944         attributes (fix for bug 42021).
19945
19946 2003-05-12  Dick Porter  <dick@ximian.com>
19947
19948         * gc.c: Don't run finalizers when the finalizer thread is
19949         finishing up, because the default domain has already been
19950         destroyed.
19951
19952 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
19953
19954         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
19955         value is null, we should throw an exception.   This is slightly
19956         different than the other conventions used for the constructor.
19957
19958 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19959
19960         * socket-io.c: fixed windows build.
19961
19962 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
19963
19964         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
19965
19966 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
19967
19968         * object.c (mono_string_new_wrapper): Compatibility fix for MS
19969         compilers.
19970
19971 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
19972
19973         * class.c (mono_class_layout_fields): Add experimental GC aware
19974         auto layout facility. Requires class library changes to work correctly.
19975
19976         (mono_class_setup_vtable): Avoid overriding explicit interface
19977         method implementations. Fixes iface3.exe test.
19978
19979         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
19980         object reference.
19981         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
19982         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
19983
19984         * metadata.h: Add new type classification macro which determines
19985         whenever the type holds an object reference.
19986
19987 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
19988
19989         * marshal.c (mono_marshal_get_native_wrapper): cleanups
19990
19991 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
19992
19993         * gc.c (finalizer_thread): Work around a GC bug.
19994
19995 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
19996
19997         * marshal.c (emit_struct_conv): allow unions
19998
19999         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
20000
20001 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
20002
20003         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
20004
20005 2003-05-06  Martin Baulig  <martin@ximian.com>
20006
20007         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
20008
20009 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20010
20011         * socket-io.c:
20012         (Select_internal): allow NULLs, don't create arrays if not needed.
20013         Coupled with Socket.cs changes.
20014
20015         * threadpool.c:
20016         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
20017         register a finalizer for it that will close the semaphore handle. This
20018         fixes the leak and make Lupus' test run with > 4080 loops.
20019
20020 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
20021
20022         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
20023         Jerome Laban (bug #42287)
20024
20025 2003-05-02  Martin Baulig  <martin@ximian.com>
20026
20027         * debug-mono-symfile.h
20028         (MonoSymbolFile): Moved declaration into mono-debug.h.
20029         (MonoDebugMethodJitInfo): Likewise.
20030         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
20031         argument.
20032         (_mono_debug_address_from_il_offset): Take a
20033         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
20034
20035         * mono-debug.h
20036         (MonoDebugDomainData): New struct.
20037         (mono_debug_get_domain_data): New function.
20038         (mono_debug_add_method): Take an additional `MonoDomain *'
20039         argument.
20040         (mono_debug_source_location_from_address): Likewise.
20041         (mono_debug_il_offset_from_address): Likewise.
20042         (mono_debug_address_from_il_offset): Likewise.
20043
20044 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
20045
20046         * reflection.c: one more check for null type in custom attrs.
20047
20048 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20049
20050         * reflection.c: avoid warning (comparison is always false due to limited
20051         range of data type).
20052
20053 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20054
20055         * icall.c: throw an exception in Type.GetField if the argument 'name'
20056         is NULL.
20057
20058 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
20059
20060         * reflection.c: fixed handling of enums in named arguments to custom
20061         attributes (bug #42123).
20062
20063 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
20064
20065         * reflection.c: use the right array element type and handle
20066         a null for a Type argument, too.
20067
20068 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
20069
20070         * reflection.c: handle arrays as arguments to custom attributes.
20071
20072 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
20073
20074         * reflection.c: handle a string value in a custom attr
20075         ctor that takes an object.
20076
20077 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
20078
20079         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
20080         (fix bug #42063)
20081
20082 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
20083
20084         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
20085
20086 2003-04-27  Martin Baulig  <martin@ximian.com>
20087
20088         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
20089         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
20090         MONO_DEBUGGER_EVENT_BREAKPOINT.
20091         (mono_breakpoint_trampoline_code): Removed.
20092         (mono_debugger_event_handler): The last argument is now a
20093         `guint32'.
20094         (mono_debugger_insert_breakpoint_full): Removed the
20095         `use_trampoline' argument.
20096         (mono_debugger_method_has_breakpoint): Likewise.
20097         (mono_debugger_trampoline_breakpoint_callback): Renamed to
20098         mono_debugger_breakpoint_callback(); take the method and
20099         breakpoint number as arguments.
20100
20101 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
20102
20103         * metadata.c: fix off by one when loading parameters attributes.
20104
20105 2003-04-24  Martin Baulig  <martin@ximian.com>
20106
20107         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
20108
20109 2003-04-24  Martin Baulig  <martin@ximian.com>
20110
20111         * mono-debug-debugger.c: Moved all code which interacts with the
20112         Mono Debugger here.
20113
20114         * debug-mono-symfile.c: This code now just deals with the symbol
20115         file itself, the debugger code is now in mono-debug-debugger.c.
20116
20117 2003-04-23  Martin Baulig  <martin@ximian.com>
20118
20119         * mono-debug.c (mono_debug_source_location_from_il_offset):
20120         New method; like mono_debug_source_location_from_address(), but
20121         takes an IL offset instead of a machine address.
20122
20123 2003-04-23  Martin Baulig  <martin@ximian.com>
20124
20125         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
20126         `line' field; this is now computed by the debugger.
20127
20128 2003-04-23  Martin Baulig  <martin@ximian.com>
20129
20130         * mono-debug.[ch]: New files.  This is the new debugging interface.
20131
20132         * mono-debug-debugger.[ch]: New files.  Moved all code which
20133         interacts with the Mono Debugger here.
20134
20135 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
20136
20137         * domain.c (mono_init): initialize mono_defaults.monitor_class
20138
20139 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
20140
20141         * reflection.c (method_encode_code): Add a spicy exception to help
20142         future compiler authors.
20143
20144 2003-04-21  Martin Baulig  <martin@ximian.com>
20145
20146         * icall.c
20147         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20148         Make this work with relative pathnames; g_filename_to_uri() needs
20149         an absolute filename.
20150
20151 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
20152
20153         * icall.c: Track name changes in Object and ValueType.
20154
20155 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
20156
20157         * metadata.c (mono_type_stack_size): size should be a multiple of
20158         sizeof (gpointer)
20159
20160 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20161
20162         * gc.c:
20163         (internal_domain_finalize): moved into mono_domain_finalize. No need
20164         to create another thread because the finalizers will be run in the
20165         finalizer thread.
20166         
20167         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
20168         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
20169         to be run (MS does this too).
20170
20171 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
20172
20173         * object.c (mono_class_compute_gc_descriptor): Update comment.
20174
20175         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
20176
20177         * image.h: Add synchronized wrapper cache.
20178
20179         * image.c (do_mono_image_open): Initialize cache.
20180
20181         * reflection.c (create_dynamic_mono_image): Initialize cache.
20182
20183 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20184
20185         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
20186         ves_icall_System_Buffer_ByteLengthInternal.
20187
20188 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
20189
20190         * reflection.c: setup klass->nested_in earlier. Allow
20191         a dash in the assembly name.
20192
20193 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
20194
20195         * metadata.c (mono_type_to_unmanaged): dont access
20196         type->data.klass for MONO_TYPE_OBJECT
20197         (mono_type_to_unmanaged): consider System.Delegate class
20198
20199 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
20200
20201         * class.c: just setup supertypes in the proper place instead of
20202         initializing the full element class for arrays.
20203
20204 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
20205
20206         * class.c: ensure the element class of arrays is initialized.
20207         Setup the supertype info for array classes, too.
20208
20209 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
20210
20211         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
20212
20213 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20214
20215         * Makefile.am: re-added -m option when running cygpath. This way,
20216         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
20217         separator.
20218         * mono-config.c: same codepath for locating mono config file for WIN32
20219         and the rest.
20220         * assembly.c: if mono_assembly_setrootdir is called, don't override
20221         the value set.
20222
20223 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20224
20225         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
20226         MONO_ASSEMBLIES variable.
20227
20228 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
20229
20230         * icall.c: added Assembly::GetNamespaces() icall.
20231
20232 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20233
20234         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
20235
20236 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
20237
20238         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
20239         * object.c: fixed bug in the construction of vtable for proxies
20240
20241 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
20242
20243         * object.c (mono_array_new): Mark mono_array_new as an icall.
20244
20245 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20246
20247         * class.c: fixed test for public method when overriding interfaces.
20248         Closes bug #40970.
20249
20250 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
20251
20252         * appdomain.h, domain.c: added mono_domain_foreach() to
20253         be able to access the currently loaded appdomains.
20254         * object.c: make string interning work across sppdomains.
20255         Mark some functions for use as icalls.
20256
20257 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
20258
20259         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
20260
20261         * reflection.h reflection.c: Allocate long living data using 
20262         GC_MALLOC_ATOMIC so the collector does not need to scan it.
20263
20264         * reflection.c: Double the allocation size in streams instead of
20265         increasing it, to prevent unneccesary copying on large assemblies.
20266         
20267         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
20268         creation if the assembly does not have the Run flag set.
20269
20270 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
20271
20272         * class.h: avoid the C++ keywords in header files (Jerome Laban
20273         spotted and fixed this).
20274
20275 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20276
20277         * object.c:
20278         (mono_unhandled_exception): fill in the arguments for the
20279         UnhandledException event. Only trigger that event for the default
20280         domain (as MS does).
20281
20282 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
20283
20284         * object.c: Improve typed allocation stuff based on suggestions from
20285         Paolo. Also turn it on if the GC library supports it.
20286
20287 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
20288
20289         * object.c object.h class.h: Added experimental typed allocation
20290         facility using the interfaces in gc_gcj.h.
20291
20292         * os/gc_wrapper.h: Added new include files.
20293         
20294 2003-04-03  Martin Baulig  <martin@ximian.com>
20295
20296         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
20297         which is not yet enabled by default.
20298
20299         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
20300         functions.
20301         (mono_gc_lock, mono_gc_unlock): New static functions.
20302
20303         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
20304         functions; stop/start the world for the garbage collector.  This
20305         is using the windows API; we need to complete the SuspendThread()/
20306         ResumeThread() implementation in the io-layer to make this work on Unix.
20307         (mono_gc_push_all_stacks): New public function; tells the garbage
20308         collector about the stack pointers from all managed threads.
20309
20310 2003-04-03  Martin Baulig  <martin@ximian.com>
20311
20312         * object.h (MonoThread): Added `gpointer stack_ptr'.
20313
20314         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
20315
20316 2003-04-03  Martin Baulig  <martin@ximian.com>
20317
20318         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
20319
20320 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
20321
20322         * reflection.c (typebuilder_setup_fields): Initialize field.first and
20323         field.last.
20324
20325 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
20326
20327         * loader.c (mono_lookup_internal_call): Report the corlib that is
20328         out of sync.
20329
20330 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
20331
20332         * icall.c (ves_icall_type_GetTypeCode): fixed check for
20333         System.DBNull (it's class not valuetype).
20334
20335 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
20336
20337         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
20338         if the array method was already assigned a token (fixes bug#40646).
20339
20340 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
20341
20342         * reflection.c (mono_reflection_get_type): Attempt type resolve even
20343         if no assembly is given.
20344
20345 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
20346
20347         * metadata.h: Added the new tables.
20348
20349         * row-indexes.h: Added definitions for new tables.
20350
20351         * metadata.c: Add schemas for new tables, and add support for
20352         computing the sizes of them.
20353
20354         * class.c: Update for handling the new type cases.
20355
20356 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
20357
20358         * metadata.h (MONO_TYPE_IS_VOID): new macro
20359
20360 2003-03-31  Martin Baulig  <martin@ximian.com>
20361
20362         * threads.h (MonoThreadCallbacks): Added `thread_created'.
20363
20364         * threads.c (mono_thread_new_init): Call `thread_created' in the
20365         mono_thread_callbacks.
20366
20367 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
20368
20369         * loader.h: added marshalbyrefobject_class to mono_defaults
20370         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
20371         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
20372           generation of output parameters.
20373           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
20374         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
20375           contextbound and the target object belongs to the context of the caller.
20376         * object.h: added context and unwrapped_server variables in MonoRealProxy.
20377         * object.c: Implemented support for interfaces and abstract classes
20378           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
20379           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
20380
20381 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
20382
20383         * class.h class.c (mono_class_is_subclass_of): New function.
20384         
20385         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
20386         routines for most common case (calls from ArrayList::ToArray).
20387
20388         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
20389         routine so programs which call Environment::Exit() can be profiled.
20390
20391         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
20392         Added MONO_ARCH_SAVE_REGS.
20393
20394         * icall.c (ves_icall_type_is_subtype_of): Use new function.
20395
20396 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
20397
20398         * blob.h: Add a couple of new MonoType types definitions.
20399
20400         * tabledefs.h: Add a couple of new call convs.
20401
20402 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
20403
20404         * reflection.h (MonoReflectionDynamicAssembly): track changes in
20405         the layout of the class.
20406
20407         * reflection.c (alloc_table): double the size on overflow to avoid
20408         unnecessary copying.
20409
20410         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
20411         avoid filling out metadata tables and blobs. Also set mb->ilgen to
20412         null so it can be garbage collected.
20413         
20414 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
20415
20416         * reflection.c (mono_reflection_get_type): Return the resolved type
20417         only if it is in the assembly we searched.
20418
20419         * reflection.c (ensure_runtime_vtable): Initialize method slots.
20420
20421         * class.c (mono_class_setup_vtable): Set the slot of the overriding
20422         method.
20423
20424 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20425
20426         * appdomain.c:
20427         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
20428         the right one is 'file:///blah', but MS allows it.
20429         * assembly.c:
20430         (mono_assembly_open): allow 'file://blah'
20431
20432         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
20433
20434 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
20435
20436         * socket-io.c: fixes bug #40310.
20437
20438 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
20439
20440         * reflection.c (mono_reflection_parse_type): handle deeply nested
20441         types correctly.
20442
20443         * reflection.c (mono_image_create_token): Use unique token values
20444         since they will be put into a hash table.
20445
20446         * class.c (mono_class_setup_vtable): If a method occurs in more than
20447         one place in the vtable, and it gets overriden, then change the
20448         other occurances too.
20449
20450         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
20451         object as return type.
20452
20453 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20454
20455         * icall.c: Deleted "ToString" implementation for double and float
20456         because they are full implemented in managed code.
20457
20458 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20459
20460         * reflection.c, reflection.h: implemented and exported functions
20461         to retrieve info about custom attributes.
20462
20463 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20464
20465         * appdomain.c: moved Uri handling to assembly.c
20466         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
20467         work when using a file Uri in *nix and windows.
20468
20469         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
20470         GetReferencedAssemblies.
20471
20472 2003-03-18  Dick Porter  <dick@ximian.com>
20473
20474         * icall.c: Rename a couple of internal calls
20475
20476         * threads.c: Set the thread state to Stopped when a thread exits.
20477         Fixes bug 39377.
20478
20479 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
20480
20481         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
20482         New icall.
20483
20484         * object.c (mono_class_vtable): fix warning.
20485
20486 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
20487
20488         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
20489
20490         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
20491         memory.
20492         (method_encode_clauses): Create exception info structures in the right
20493         order.
20494         (mono_reflection_setup_internal_class): Initialize supertypes field.
20495
20496         * class.c object.c: Handle interfaces which implement other interfaces 
20497         correctly.
20498
20499         * class.h class.c: Move the supertypes array initialization code into 
20500         a separate function so it can be used for dynamic types too. Also call
20501         it earlier, in mono_class_init(), since it can be used before the
20502         type is initialized.
20503
20504 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20505
20506         * Makefile.am:
20507         * assembly.c:
20508         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
20509
20510         * appdomain.c:
20511         * appdomain.h:
20512         * marshal.c:
20513         * object.c: remove warnings.
20514
20515 2003-03-13  Martin Baulig  <martin@ximian.com>
20516
20517         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
20518         (MonoDebugLexicalBlockEntry): New types.
20519
20520         * debug-mono-symfile.c
20521         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
20522
20523 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20524
20525         * process.c: ret can be any non-zero value accroding to MS doc.
20526
20527 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
20528
20529         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
20530         fixing a warning for a miss-used prototype, would have cause
20531         random memory corruption.
20532
20533 2003-03-07  Martin Baulig  <martin@ximian.com>
20534
20535         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
20536         getting really annoying ....
20537
20538 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
20539
20540         * reflection.c (fixup_method): added support for array methods.
20541
20542 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
20543
20544         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
20545         (pointed out by Michael Adams).
20546
20547 2003-03-04  Dick Porter  <dick@ximian.com>
20548
20549         * icall.c: Temporarily reverted the Double and Single ToString()
20550         change, because it broke nunit.
20551
20552 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
20553
20554         * object.h, threads.h: make include files compatible with C++
20555         (patch by Jerome Laban <jlaban@wanadoo.fr>).
20556
20557 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20558
20559         * icall.c: Erased ToString helper functions for Double and Single.
20560         Now, that implementations ar all in managed code (Double and Single
20561         Formatters).
20562
20563 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
20564
20565         * appdomain.c: Added method for initializing the default context of
20566         a domain. Added internal call for getting the default context.
20567         * appdomain.h: Added context variable in MonoDomain struct.
20568         * domain.c: mono_domain_set also sets the default context of the domain
20569         * icall.c: Mapped internal method InternalGetDefaultContext.
20570         * object.c: mono_object_get_virtual_method returns always a remoting
20571         wrapper if the object is a transparent proxy.
20572         mono_runtime_invoke_array: when creating an object by calling the
20573         constructor, if the created object is a proxy, then the constructor should
20574         be called using the a remoting wrapper.
20575
20576 2003-03-03  Dick Porter  <dick@ximian.com>
20577
20578         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
20579         variable so it compiles on solaris.  Problem spotted by
20580         Christopher Taylor <ct@cs.clemson.edu>
20581
20582 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20583
20584         * appdomain.c:
20585         (get_info_from_assembly_name): don't leak value.
20586
20587         * icall.c:
20588         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
20589         result.
20590
20591 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
20592
20593         * assembly.c: export mono_image_load_references ().
20594         * class.c: handle function pointers. mono_class_from_name() now
20595         supports nested type names directly.
20596
20597 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
20598
20599         * reflection.h reflection.c: Encode already created dynamic methods 
20600         and fields correctly as a DEF instead of a REF.
20601
20602         * reflection.c: Get rid of the force_ref argument to 
20603         mono_image_typedef_or_ref since it was wrong in the first place.
20604
20605         * string-icalls.c: add error checking to string constructors according
20606         to the MSDN docs.
20607
20608         * reflection.c: Emit types in the order their TypeBuilders were 
20609         created. Previously, a new table index was assigned to each type before
20610         the tables were emitted. This was wrong because the signature blob
20611         might already refer to a type by its original table index.
20612
20613 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
20614
20615         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
20616         change.
20617         
20618 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20619
20620         * Makefile.am: make assemblies dir have \ instead of / on windows.
20621
20622 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
20623
20624         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
20625         iterate over the NESTEDCLASS table using a linear search since the
20626         table is not guaranteed to be sorted by the secondary key.
20627
20628         * class.c (mono_class_create_from_typedef): fixed up call to
20629         mono_metadata_nesting_typedef.
20630         
20631 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
20632
20633         * marshal.c (mono_string_to_byvalstr): clear the memory as
20634         suggested by Jerome Laban <jlaban@wanadoo.fr>
20635
20636 2003-02-26  Dick Porter  <dick@ximian.com>
20637
20638         * process.c: Cope with padding in .rsrc blocks
20639
20640 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20641
20642         * metadata.h: reverted the filter_len change, it breaks reflection
20643         
20644 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
20645
20646         * metadata.h: added a new field to store the filter_len
20647         
20648
20649 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
20650
20651         * reflection.c: handle custom attributes for types and members
20652         created with Reflection.Emit (bug#38422).
20653
20654 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
20655
20656         * reflection.c: define RTSpecialName automatically for constructors for
20657         compatibility with MS.NET.
20658
20659         * reflection.c (mono_reflection_create_runtime_class): initialize
20660         nested_in field of dynamically created classes.
20661
20662 2003-02-22  Martin Baulig  <martin@ximian.com>
20663
20664         * debug-mono-symfile.h: Incremented version number.
20665
20666 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20667
20668         * object.h icall.c process.c: fix warnings.
20669
20670 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
20671
20672         * appdomain.h appdomain.c:
20673         (mono_domain_try_type_resolve): split the 
20674         name_or_tb argument into a name and a tb argument.
20675         (mono_domain_has_type_resolve): new function to check whenever the
20676         application has registered a TypeResolve event handler.
20677         
20678         * icall.c reflection.h reflection.c: move the type resolve logic into
20679         mono_reflection_get_type () so it will be invoked when 
20680         Assembly::GetType () is called.
20681
20682         * reflection.c:
20683         (mono_reflection_get_type): renamed to get_type_internal.
20684         (mono_reflection_get_type): fixed type name generation so it works 
20685         for nested types too.
20686         (mono_reflection_get_type): call has_type_resolve () to avoid the 
20687         costly type name generation if there is no resolve event handler.
20688
20689 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
20690
20691         * class.c, image.c: load exported types from file references.
20692
20693 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
20694
20695         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
20696           used to cache the managed methods used to create proxies and make 
20697           remote invocation of methods.
20698         * class.h: Added in MonoVTable a flag to indicate that a class needs 
20699           to be remotely created.
20700         * object.c: Modified the method mono_class_vtable(). It now initializes 
20701           the remote flag of the vtable. Modified mono_object_new_specific(), 
20702           so now it checks the remote flag.
20703         * icall.c: Added a couple of internal methods, one for enabling instance 
20704           creation interception for a type, and one for creating objects bypassing
20705           the remote check.
20706
20707 2003-02-18  Martin Baulig  <martin@ximian.com>
20708
20709         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
20710         New interncall to get a method's metadata token.
20711
20712         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
20713         New interncall for the debugger.
20714
20715 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
20716
20717         * class.c (mono_class_setup_vtable): allocate supertype array
20718
20719 2003-02-18  Martin Baulig  <martin@ximian.com>
20720
20721         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
20722
20723 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20724
20725         * reflection.c:
20726         (assembly_name_to_aname): jump over unknown properties (i've found
20727         something like: 'type, assembly, version=xxx, custom=null, public...',
20728         so now will ignore custom=null and still get the rest of the values).
20729
20730 2003-02-17  Dick Porter  <dick@ximian.com>
20731
20732         * threads.c: Have Thread.Start() wait for a semaphore to signal
20733         that the thread has set up all its local data.  This fixes bug
20734         34323, where Abort() raced the new thread's TLS data.
20735
20736         Also removes the handle_store() call from start_wrapper, because
20737         threads are now always created suspended and there is no longer a
20738         race between the parent and child threads to store the info.
20739
20740 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
20741
20742         * image.c: explain the #- heap issue in a message, hopefully
20743         avoiding FAQs on mono-list.
20744
20745 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20746
20747         * icall.c:
20748         (GetEntryAssembly): if the domain has not invoked
20749         AppDomain.ExecuteAssembly yet, return the assembly of the default
20750         AppDomain.
20751
20752 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
20753
20754         * class.c (mono_ldtoken): make it work in dynamic assemblies.
20755
20756 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
20757
20758         * metadata.c, reflection.c: simple speedup to type hash
20759         and equals code.
20760
20761 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
20762
20763         * image.c, image.h, class.c, assembly.c: move module loading
20764         to MonoImage. When loading metadata, consider alignemnet from
20765         the start of metadata, not from the metadata address in memory.
20766
20767 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
20768
20769         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
20770         AssemblyBuilder objects. Factored out custom attribute creation into
20771         a separate function.
20772         (create_custom_attr): new function to create custom attributes.
20773
20774 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
20775
20776         * Makefile.am: Got tired of typing the full pathname to pedump.
20777         Until there is another option, am installing this.
20778
20779 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
20780
20781         * class.c (class_compute_field_layout): always set field->parent 
20782         (mono_ldtoken): use mono_defaults.fieldhandle_class;
20783
20784 2003-02-11  Dick Porter  <dick@ximian.com>
20785
20786         * threads-types.h:
20787         * monitor.c: Rewrote Monitor, making lock much faster and
20788         Pulse/Wait work as specified.  Also uses much fewer handles, and only
20789         creates them as needed.
20790
20791         * exception.c: Added SynchronizationLockException
20792
20793         * threads.c: Deleted old Monitor implementation.  The new one is
20794         in a new file.
20795
20796 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
20797
20798         * class.c: handled TypedReference type code. Set the correct size for
20799         class data. Setup interface_offsets for interface classes, too.
20800
20801 2003-02-09  Martin Baulig  <martin@ximian.com>
20802
20803         * debug-mono-symfile.h: Reflect latest symbol writer changes.
20804
20805 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
20806
20807         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
20808         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
20809         * object.c: fixed mono_object_get_virtual_method () for interfaces.
20810         * verify.c: check for code that runs after the end of the method.
20811
20812 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
20813
20814         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
20815         "System.Math::Round2".
20816         * sysmath.h: Added Floor, Round and Round2 definitions.
20817         * sysmath.c: Modified certain functions that were not 100% compliant
20818         with MS.NET (math precision) and added the implementation of Floor,
20819         Round and Round2.
20820
20821 2003-02-07  Martin Baulig  <martin@ximian.com>
20822
20823         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
20824
20825 2003-02-07  Martin Baulig  <martin@ximian.com>
20826
20827         * debug-mono-symfile.c: Reflected latest symwriter changes.
20828         (mono_debug_create_mono_symbol_file): Removed.
20829         (mono_debug_open_mono_symbol_file): Take an argument which
20830         specifies whether to create a dynamic symbol file.
20831
20832 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
20833
20834         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
20835
20836 2003-02-05  Martin Baulig  <martin@ximian.com>
20837
20838         * reflection.c (mono_image_build_metadata): Make this public,
20839         protect it against being called multiple times, don't create
20840         resources and don't build the compressed metadata here.
20841         (mono_image_create_pefile): Do this here.
20842
20843         * icall.c
20844         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
20845
20846 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20847
20848         * socket-io.c: fixed bug #36322.
20849
20850 2003-02-06  Piers Haken <piersh@friskit.com>
20851
20852         * appdomain.[ch]:
20853         * class.h:
20854         * debug-mono-symfile.c:
20855         * icall.c:
20856         * loader.c:
20857         * mono-config.c:
20858         * monosn.c:
20859         * reflection.c:
20860         * socket-io.c: warning cleanups
20861
20862 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
20863
20864         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
20865         function. works like remoting invoke, but does a check for the Proxy first.
20866
20867 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
20868
20869         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
20870
20871 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
20872
20873         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
20874         array of pointers.
20875         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
20876         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
20877
20878         * object.c (mono_store_remote_field_new): used by the new jit
20879         instead of mono_store_remote_field
20880         (mono_load_remote_field_new): used by the new jit
20881         instead of mono_load_remote_field
20882
20883 2003-02-05  Patrik Torstensson
20884
20885         * appdomain.c: changed unload to take the domain id instead
20886         of domain
20887         
20888         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
20889
20890
20891 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20892
20893         * appdomain.c: don't look for assemblies in ApplicationBase if
20894         PrivateBinPathProbe is set.
20895
20896 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20897
20898         * object.c: make the first argument in main_args contain the absolute
20899         path to the assembly. Fixes bug #37511.
20900
20901 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20902
20903         * icall.c: get correct UTC offset for countries not using daylight
20904         time saving. Fixes bug #30030.
20905
20906 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20907
20908         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
20909         and 1 are the family).
20910
20911 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
20912
20913         * icall.c (ves_icall_InternalExecute): removed wrong assertion
20914
20915         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
20916
20917 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
20918
20919         * reflection.c: added support for SignatureHelper tokens, which is
20920         needed by the Calli opcode.
20921
20922         * reflection.h: track changes to SignatureHelper class.
20923
20924         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
20925
20926 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20927
20928         * appdomain.c: fixed loading assemblies from PrivateBinPath.
20929
20930 2003-02-03  Patrik Torstensson
20931         * appdomain.[c|h], domain.c : 
20932          - Added support for getting a domain via domain id
20933          - Support for setting and getting domain from System.AppDomain 
20934            (used in cross appdomain channel)
20935          - Added support for get/set for a MonoAppContext on a thread 
20936            (Context class in System.Runtime.Remoting.Contexts),
20937          - Removed hack in Get/SetData and ExecuteAssembly.
20938         
20939         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
20940         the managed world to get control when a proxy is created.
20941
20942         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
20943         
20944 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
20945
20946         * icall.c
20947         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
20948         Populate the codebase field as well.
20949
20950 2003-02-02  Martin Baulig  <martin@ximian.com>
20951
20952         * debug-mono-symfile.c
20953         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
20954         (mono_debug_symfile_add_method): Allow interncalls.
20955
20956 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20957
20958         * icall.c: throw parse exception if strtod fails or the string is empty.
20959
20960 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
20961
20962         * marshal.c: handle object type separately from defined
20963         class types.
20964
20965 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
20966
20967         * marshal.c: handle NATIVE_LPSTR for strings when it's
20968         explicitly specified.
20969
20970 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
20971
20972         * reflection.c, reflection.h, icall.c: setup the reflection
20973         handle cache for ModuleBuilders and AssemblyBuilders.
20974
20975 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
20976
20977         * reflection.c (reflection_methodbuilder_to_mono_method): set
20978         pinvoke flag
20979
20980 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
20981
20982         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
20983
20984 2003-01-29  Dick Porter  <dick@ximian.com>
20985
20986         * threads.c: No need for the fake_thread kludge now that Thread
20987         doesn't run a class constructor
20988         
20989 2003-01-29  Dick Porter  <dick@ximian.com>
20990
20991         * threads.c: Use g_direct_hash instead of the rather bogus
20992         g_int_hash
20993
20994 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
20995
20996         * marshal.c (mono_marshal_get_native_wrapper): add check for null
20997         (fix pinvoke12.exe)
20998         (mono_marshal_get_struct_to_ptr): generate valid IL code
20999         (mono_marshal_get_ptr_to_struct): generate valid IL code
21000         (*): correctly set sig->pinvoke, we need to memdup the signature
21001         to do that
21002
21003 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
21004
21005         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
21006         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
21007
21008 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
21009
21010         * profiler.c: provide more callers information.
21011
21012 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
21013
21014         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
21015
21016         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
21017
21018         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
21019
21020 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21021
21022         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
21023         exception instead of going into an infinite loop on dates which it 
21024         can't yet handle.
21025
21026         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
21027         out-of-range exception if needed.
21028
21029         * class.c (mono_class_setup_vtable): allow a virtual method to provide
21030         an implementation for an interface method and to override an inherited
21031         method at the same time. 
21032         Imagine a scenario when a virtual method is used to override a
21033         virtual abstract method in a parent class, and this same method 
21034         provides an implementation for an method inherited from an interface. 
21035         In this case, the interface resolution code will set im->slot, which 
21036         means that the virtual method override pass will skip this method 
21037         which means a pointer to the abstract method inherited from the parent
21038         will remain in the vtable of this non-abstract class.
21039
21040         * class.c: (mono_class_setup_vtable): continue search for a real 
21041         method if only an abstract method is found.     
21042
21043 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
21044
21045         * reflection.c: add size to encoding for ByValStr and ByValArray
21046         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
21047
21048 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21049
21050         * class.c (mono_class_setup_vtable): pass the override info as an
21051         argument.
21052
21053         * class.c (mono_class_setup_vtable): set the slot of overriding methods
21054         correctly.
21055         
21056         * reflection.c (ensure_runtime_vtable); add support for method 
21057         overrides.
21058         
21059 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21060
21061         * reflection.c (resolution_scope_from_image): Hack to work to work with
21062         dynamic assemblies.
21063
21064         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
21065         added a 'force_ref' argument to force this function to allways return 
21066         a TypeRef. This is needed by mono_image_get_memberref_token ().
21067         
21068 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21069
21070         * reflection.c (mono_image_get_type_info): interfaces really don't have
21071         a parent.
21072
21073         * reflection.c (mono_image_basic_init): fill out missing fields of
21074         image structure.
21075
21076         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
21077         dynamic assemblies. This is required so dynamic assemblies show up in
21078         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
21079         Type::GetType() etc. This is consistent with MS behaviour.
21080
21081         * image.c image.h reflection.c: add newly created classes to the name 
21082         cache so mono_class_get () will find them.      
21083
21084 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
21085
21086         First part of changes to get IKVM.NET running under mono.
21087         
21088         * appdomain.h, appdomain.c: added new function 
21089         mono_domain_try_type_resolve() which will emit TypeResolve events. 
21090         This function will call AppDomain::DoTypeResolve to do the actual work.
21091
21092         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
21093         moved existing code dealing with dynamic tokens to a new function 
21094         called mono_reflection_lookup_dynamic_token (). This function will 
21095         raise TypeResolve events when appropriate. Since reflection.c is not 
21096         part of libmetadata, a new hook function called 
21097         mono_lookup_dynamic_token() is added to class.c which will call this.
21098
21099         * assembly.h assembly.c: make the invoke_load_hook function public,
21100         so it can be called for dynamic assemblies.
21101
21102         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
21103
21104         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
21105         type isn't found.
21106
21107         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
21108         MonoGHashTable, since it contains pointers to objects which the GC 
21109         needs to track.
21110
21111         * assembly.c (search_loaded): remove unused variable.
21112         
21113 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
21114
21115         * object.c: fixed issue exposed by gcc-generated IL programs
21116         that use RVA data for pointers.
21117
21118 2003-01-25  Martin Baulig  <martin@ximian.com>
21119
21120         * threads.c (start_wrapper): Moved the initialization of
21121         `start_func' above the mono_new_thread_init() call to which we
21122         pass it as argument.
21123
21124 2003-01-24  Martin Baulig  <martin@ximian.com>
21125
21126         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
21127         the MonoThread pointer.
21128
21129 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
21130
21131         * icall.c: Rename `PowImpl' to Pow.
21132
21133 2003-01-23  Dick Porter  <dick@ximian.com>
21134
21135         * threads.c (start_wrapper): Create a Thread object if needed, so
21136         the Main() thread can do the class initialisation in a subthread
21137         that has been set up to allow managed code execution.
21138
21139         Pass the thread ID instead of the MonoThread pointer to the thread
21140         start and attach callbacks.  This change is required, because the
21141         jit thread start callback must be called _before_ the Thread
21142         object can be created.
21143         
21144         (mono_thread_init): Removed much object creation code that is no
21145         longer needed.  No managed code is called from here now.
21146
21147         * object.c (mono_runtime_exec_managed_code): Create a subthread
21148         for Main, and call back to the runtime to use it.
21149         Set the exit code when Main exits.
21150
21151         * gc.c: Make sure domain finalisation happens in a subthread.
21152         Re-enable threaded GC, fixing bug 31333 (again).
21153
21154         * environment.c: System.Environment internall calls (so far just
21155         ExitCode is here, the others are still in icall.c)
21156
21157         * appdomain.c (mono_runtime_cleanup): All threads running managed
21158         code should have finished before mono_runtime_cleanup() is
21159         reached, so no need to clean up threads.
21160
21161 2003-01-22  Martin Baulig  <martin@ximian.com>
21162
21163         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
21164         `gpointer func' arguments.      
21165         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
21166         but added `MonoThread *thread' argument.
21167         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
21168
21169         * threads.c (mono_new_thread_init): Added `gpointer func' argument
21170         and pass it to the mono_thread_start_cb callback.
21171         (mono_install_thread_callbacks): New public function to install a
21172         set of callbacks which are set by the debugger.
21173         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
21174
21175 2003-01-22  Martin Baulig  <martin@ximian.com>
21176
21177         * Makefile.am: Install debug-mono-symfile.h.
21178
21179 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
21180
21181         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
21182
21183 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
21184
21185         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
21186         * class.c (mono_ptr_class_get): correctly set access levels of pointers
21187         (mono_array_class_get): correctly set access levels of arrays
21188
21189 2003-01-20      Patrik Torstensson
21190         * image.h (MonoAssemblyName): changed major, minor, build, revision
21191         from signed to unsigned.
21192
21193 2003-01-20  sean kasun <skasun@azstarnet.com>
21194
21195         * reflection.c (load_cattr_value): Now this handles
21196         MONO_TYPE_SZARRAY.  Fixes bug #35629
21197
21198 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
21199
21200         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
21201         integer value
21202
21203 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21204
21205         * decimal.c: fixed bug #26056.
21206
21207 2003-01-17  Martin Baulig  <martin@ximian.com>
21208
21209         * gc.c: Raise an ExecutionEngineException instead of using g_error().
21210
21211 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21212
21213         * exception.[ch]:
21214         (mono_get_exception_type_initialization): new function.
21215
21216         * object.c: throw a TypeInitializationException when an exception is
21217         thrown invoking the class constructor.
21218
21219 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21220
21221         * reflection.c: fixed attribute reading.
21222
21223 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21224
21225         * icall.c:
21226         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
21227         provided, look for the type in the calling assembly and then in
21228         mscorlib; if the assembly name is provided, only try that one.
21229
21230 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
21231
21232         * object.c: register the vtable before there is a chance it's
21233         queried again recursively.
21234
21235 2003-01-13  Duncan Mak  <duncan@ximian.com>
21236
21237         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
21238         gc-internal.h. 
21239         
21240 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
21241
21242         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
21243
21244 2003-01-11  Martin Baulig  <martin@ximian.com>
21245
21246         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
21247         this to 20 for the release.
21248
21249 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
21250
21251         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
21252
21253         * loader.c (mono_method_get_marshal_info): bug fix
21254
21255         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
21256         structures with explicit layout
21257
21258 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
21259
21260         * profiler.c: made the output more readable (and sorted). 
21261         Added caller information for the allocation profiler.
21262
21263 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
21264
21265         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
21266
21267 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21268
21269         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
21270         to get value types.
21271         
21272 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
21273
21274         * object.c, profiler.h, profiler.c, profiler-private.h:
21275         Added object allocation profiler.
21276
21277 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
21278
21279         * reflection.h, reflection.c: handle global methods.
21280         Compress blob entries.
21281
21282 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
21283
21284         * marshal.c: fix compilation.
21285
21286 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
21287
21288         * loader.c (mono_method_get_marshal_info): impl.
21289
21290         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
21291
21292 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21293
21294         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
21295         for reference types.
21296
21297 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
21298
21299         * loader.c: fixed off by one error in loaded parameter names.
21300
21301 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
21302
21303         * marshal.c (mono_marshal_get_icall_wrapper): like
21304         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
21305         instead of a MonoMethod.
21306
21307 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21308
21309         * decimal.c: fixed bug #36537.
21310
21311 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
21312
21313         * marshal.c: throw a missing method exception if a
21314         P/Invoke method is not found.
21315
21316 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
21317
21318         * icall.c: allow a null this for constructors.
21319
21320 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
21321
21322         * icall.c: raise the proper exceptions if the arguments to the
21323         internal Invoke are incorrect.
21324
21325 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
21326
21327         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
21328
21329 2003-01-03  Martin Baulig  <martin@ximian.com>
21330
21331         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
21332
21333 2002-12-31  Martin Baulig  <martin@ximian.com>
21334
21335         * debug-mono-symfile.c: Completely rewrote the type section.
21336         Instead of using individual malloc()ed fields, we use one big
21337         continuous memory area and offsets into this area.
21338         See the comments in the source code for details.
21339
21340 2002-12-30  Martin Baulig  <martin@ximian.com>
21341
21342         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
21343
21344 2002-12-30  Martin Baulig  <martin@ximian.com>
21345
21346         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
21347         line number table in this data blob instead of using an external
21348         pointer.
21349
21350 2002-12-28  Martin Baulig  <martin@ximian.com>
21351
21352         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
21353
21354 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
21355
21356         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
21357         as a boxed return type.
21358
21359 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
21360
21361         * appdomain.c
21362         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
21363         g_build_filename to properly get separators on the filename created.
21364
21365         * object.h: Small change, introduce MonoMarshalByRefObject to
21366         track the layout of that structure in the C# universe as we make
21367         changes there.
21368
21369 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
21370
21371         * object.c: removed assert to allow static fields on interfaces.
21372         * loader.c: a TypeSpec may be used for any type, not just arrays.
21373
21374 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
21375
21376         * class.c, class.h: added mono_class_array_element_size ().
21377         Ignore static methods in interfaces.
21378
21379 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21380
21381         * threads.c: fixed the build under cygwin.
21382
21383 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
21384
21385         * reflection.c: handle nullref constants. Allocate keys for
21386         reflection handles with the GC.
21387
21388 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21389
21390         * threads.c, threads.h: added mono_thread_get_abort_signal()
21391         to get a suitable signal for thread abort.
21392
21393 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
21394
21395         * metadata.c: fix handling of ExportedType table.
21396
21397 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21398
21399         * icall.c: added WriteWindowsDebugString internal call.
21400
21401 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21402
21403         * reflection.h: added fields to match C# implementation.
21404
21405 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21406
21407         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
21408
21409 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
21410
21411         * gc.h, gc-internal.h: Rename header for GC internal calls to
21412         gc-internal.h from gc.h as to not clash with Boehm GC having its
21413         header installed as <gc.h> in outside include paths.
21414         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
21415         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
21416
21417 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21418
21419         * icall.c: assign minor, build and revision in FillName.
21420
21421 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
21422
21423         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
21424         Added support for running code generated by Reflection.Emit.
21425
21426 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21427
21428         * appdomain.c: check for NULL argument in LoadFrom.
21429
21430 2002-12-10  Dick Porter  <dick@ximian.com>
21431
21432         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
21433
21434 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21435
21436         * appdomain.c: fix buglet when building exe file name.  Handle full
21437         assembly name (needed after latest changes to AssemblyName).
21438         * image.c:
21439         (mono_image_close): free some hashtables.
21440
21441 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
21442
21443         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
21444         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
21445         on some systems (redhat 7.3) 
21446
21447 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
21448
21449         * threads.c: delete the critical section of a sync block,
21450         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
21451
21452 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
21453
21454         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
21455
21456 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21457
21458         * appdomain.[ch]: handle the assembly preload event to try loading the
21459         assemblies using the paths we have in the current domain.
21460
21461         * assembly.[ch]: created an assembly preload hook that is called to try
21462         loading the assembly by other means that the ones provided here.
21463
21464         * domain.c: initialize the domain search path.
21465
21466         From now on, assemblies (TODO: except corlib and System) are loaded
21467         according to these rules when using mono_assembly_load ():
21468
21469                 1. It tries to load the assembly from the ApplicationBase
21470                 of the current domain appending .dll and .exe (TODO: have to
21471                 try loading from name/name.dll and name/name.exe).
21472
21473                 2. It tries the search path specified in PrivateBinPath for the
21474                 current domain (if any).
21475
21476                 3. Previous behavior.
21477
21478 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
21479
21480         * icall.c: implemented GetInterfaceMap() related icall.
21481         * domain.c, loader.h: load MethodInfo in mono_defaults.
21482
21483 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
21484
21485         * gc.c: disable the finalizer thread for now, untill all the issues
21486         with it are resolved.
21487
21488 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
21489
21490         * string-icalls.c: handle embedded nulls in string ctor when the
21491         length is specified.
21492
21493 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
21494
21495         * class.c: look for explicit interface implementation in parent
21496         classes, too.
21497
21498 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
21499
21500         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
21501
21502 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
21503
21504         * gc.c: protect handles with a critical section.
21505
21506 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21507
21508         * icall.c:
21509         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
21510         parameters. If no assembly specified, try getting the type from all
21511         the assemblies in the current domain, else, load the assembly and get
21512         the type from it.
21513
21514 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21515
21516         * marshal.c: applied patch from Aleksey Demakov that fixes
21517         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
21518
21519 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21520
21521         * icall.c: fixed get_location.
21522
21523 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
21524
21525         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
21526         declarations to make it work with older gcc. 
21527
21528         * loader.c (mono_get_method): set signature->pinvoke for native calls
21529
21530 2002-11-20  Dick Porter  <dick@ximian.com>
21531
21532         * threads.c (mono_thread_init): Set the main thread's handle
21533
21534 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
21535
21536         * gc.c: allow compilation without GC support. Changed to match the
21537         mono coding style.
21538
21539 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
21540
21541         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
21542
21543 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
21544
21545         * reflection.c: set a public key token on the core assemblies.
21546
21547 2002-11-18  Dick Porter  <dick@ximian.com>
21548
21549         * threads.c: Split out some thread initialisation so that other
21550         files can set the start callback function.
21551
21552         * gc.c: Run finalisers in a separate thread, to avoid stack
21553         overflow.  Fixes bug 31333.
21554
21555         * appdomain.c: Set up GC finalisation thread.
21556
21557         * reflection.c: 
21558         * object.c: 
21559         * domain.c: Use gc.h macros for GC_malloc
21560         
21561 2002-11-15  Dick Porter  <dick@ximian.com>
21562
21563         * threadpool.c: 
21564         * threads.c:
21565         * appdomain.c: Removed mono_runtime_init_with_attach(),
21566         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
21567         merging the extra parameter with the existing function.  Removed
21568         unneeded code in mono_thread_attach().
21569
21570 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
21571
21572         * image.c (mono_image_loaded_by_guid): a method to get loaded
21573         images by guid. 
21574         (load_metadata_ptrs): we store the guid as string.
21575
21576 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
21577
21578         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
21579
21580         * metadata.c (mono_guid_to_string): imported method form Zoltan
21581         Varga (slightly modified)
21582
21583         * assembly.c (mono_assembly_open): load precompiled code
21584
21585         * loader.h (MonoMethod): we store the method token for use in the
21586         aot compiler. 
21587
21588 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21589
21590         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
21591         the hook function called when an assembly is loaded.
21592         
21593         * domain.c: Modified file.
21594         (mono_domain_assembly_load): removed hash table insertion of assemblies.
21595
21596         Fixes bug #33196.
21597
21598 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
21599
21600         * reflection.c: Map PEFileKind to the value expected by the WinNT
21601         image loader. 
21602
21603 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21604
21605         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
21606         Read until the buffer is filled completely.
21607
21608 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21609
21610         * icall.c: implemented MonoType.InternalGetEvent ().
21611
21612 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21613
21614         * appdomain.c: implemented InitAppDomainSetup. Delayed
21615         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
21616         the entry_assembly.
21617
21618         * assembly.c: base_dir is now an absolute path ending with
21619         G_DIR_SEPARATOR.
21620
21621         * icall.c: modified get_location according to the above changes.
21622
21623         * object.c: init AppDomain.SetupInformation for the default domain after
21624         we have the entry assembly.
21625
21626         * domain.c: when unloading a domain, setup = NULL.
21627
21628 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
21629
21630         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
21631
21632 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
21633
21634         * object.h, object.c: introduced mono_object_get_virtual_method ()
21635         to lookup the method invoked on an object when a callvirt is done on
21636         a method.
21637         * icall.c: make MethodInfo::Invoke() always do a virtual call.
21638
21639 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21640
21641         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
21642         current domain when loaded an assembly and failed to load it.
21643
21644         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
21645
21646 2002-10-31  Dick Porter  <dick@ximian.com>
21647
21648         * icall.c: 
21649         * file-io.h: 
21650         * file-io.c: Return the error status in a parameter, as the
21651         GetLastError() value has long since been blown away if we try and
21652         look it up in a subsequent internal call invocation.  Delete the
21653         GetLastError() internal call, because it's useless.
21654
21655 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
21656
21657         * class.[ch]: added cast_class to fix bug 29517
21658
21659 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
21660
21661         * marshal.c: create valid IL code in the filter clause:
21662         the new JIT is less forgiving:-)
21663
21664 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21665
21666         * icall.c: removed get_property internal call.
21667
21668 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
21669
21670         * appdomain.h domain.c: Added an ID to appdomains.
21671         
21672         * threads.c threads.h icall.c: Implement icall
21673         Thread:GetDomainID(), and remove unused icall 
21674         CurrentThreadDomain_internal.
21675
21676 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21677
21678         * icall.c: Don't recurse through the base types in GetConstructor.
21679         Fixes bug #32063. 
21680
21681 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
21682
21683         * mempool.h, mempool.c: added mono_mempool_empty() and
21684         mono_mempool_stats().
21685
21686 2002-10-23  Dick Porter  <dick@ximian.com>
21687
21688         * file-io.c: 
21689         * file-io.h: 
21690         * icall.c: Added MonoIO.GetFileType internal call
21691
21692 2002-10-17  Dick Porter  <dick@ximian.com>
21693
21694         * appdomain.c (mono_runtime_cleanup): Don't signal the async
21695         delegate semaphore before waiting for all threads to finish,
21696         because new threads can also call async delegates.  Fixes bug
21697         32004.
21698
21699         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
21700         of 3 seconds, in case another async job is queued.  (This part is
21701         needed because the bug fix reintroduced the 3s exit lag.)  This
21702         makes the mono_runtime_shutdown flag superfluous.
21703
21704 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
21705
21706         * reflection.c: include ehader size in method section headers.
21707         Really check for suplicated modules entries.
21708
21709 2002-10-17  Martin Baulig  <martin@gnome.org>
21710
21711         * debug-mono-symfile.c: Added back support for locals.
21712
21713 2002-10-14  Martin Baulig  <martin@gnome.org>
21714
21715         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
21716         MONO_TYPE_VOID.
21717
21718 2002-10-14  Martin Baulig  <martin@gnome.org>
21719
21720         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
21721         mono_class_get() instead of looking in the class cache. 
21722
21723 2002-10-13  Martin Baulig  <martin@gnome.org>
21724
21725         * debug-mono-symfile.c: Set version number to 28, include the
21726         signature in method names.
21727
21728 2002-10-13  Martin Baulig  <martin@gnome.org>
21729
21730         * debug-mono-symfile.h: Set version number to 27.
21731
21732 2002-10-11  Martin Baulig  <martin@gnome.org>
21733
21734         * gc.c: Don't register/unregister NULL pointers as disappearing links.
21735
21736 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
21737
21738         * metadata.c, metadata.h: added helper function to allocate signatures.
21739
21740 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21741
21742         * icall.c: added internal call to get the location of machine.config.
21743
21744 2002-10-08  Martin Baulig  <martin@gnome.org>
21745
21746         * debug-mono-symfile.c: Ignore classes with a pending init for the
21747         moment.
21748
21749 2002-10-03  Dick Porter  <dick@ximian.com>
21750
21751         * threads.c: Freebsd pthread_t is a pointer
21752
21753 2002-10-03  Dick Porter  <dick@ximian.com>
21754
21755         * socket-io.c: Implemented GetHostName_internal
21756
21757 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21758
21759         * mono-config.c:
21760         (mono_config_parse_file): don't leak the text.
21761
21762 2002-10-02  Martin Baulig  <martin@gnome.org>
21763
21764         * debug-mono-symfile.c: Added support for methods.
21765
21766 2002-10-01  Martin Baulig  <martin@gnome.org>
21767
21768         * debug-mono-symfile.c: Don't emit methods and line numbers for
21769         the dynamic symbol file, just write the type table.  We can easily
21770         have an external helper program which creates a symbol file for an
21771         IL file.        
21772
21773 2002-10-01  Dick Porter  <dick@ximian.com>
21774
21775         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
21776         Only add the handle to the cleanup array when we're about to
21777         launch the thread.  Bug 31425 deadlocked when the test was run on
21778         mono under w32.
21779
21780 2002-10-01  Martin Baulig  <martin@gnome.org>
21781
21782         * debug-mono-symfile.c: Added support for properties.
21783
21784 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
21785
21786         * reflection.c: unaligned store fix from Mark Crichton
21787         <crichton@gimp.org>.
21788
21789 2002-09-27  Martin Baulig  <martin@gnome.org>
21790
21791         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
21792         New interncall.
21793
21794 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
21795
21796         * assembly.h, assembly.c: use a sane API to hook into the assembly
21797         loading process instead of a useless special-purpouse hack
21798         (ngen needs a hook, too, for example).
21799
21800 2002-09-27  Dick Porter  <dick@ximian.com>
21801
21802         * threads.c (mono_thread_init): Call GetCurrentProcess() so
21803         io-layer can set up some process handle info.  Not needed on w32,
21804         but doesn't hurt either.
21805
21806         * process.c: Pass the program name in the second parameter to
21807         CreateProcess, so the path is searched.  Include the working
21808         directory. Implemented process name, process enumeration, and some
21809         process detail internal calls.
21810         
21811         * icall.c: Added internal calls for process lookup, and some
21812         process details
21813
21814 2002-09-26  Martin Baulig  <martin@gnome.org>
21815
21816         * assembly.c (mono_install_open_assembly_hook): New global
21817         function to install a function to be invoked each time a new
21818         assembly is loaded.
21819         (mono_assembly_open): Run this callback function if set.
21820
21821         * debug-mono-symfile.c: Put back line numbers for the dynamic
21822         symbol file and also record the .il file as source file.  This
21823         allows us to install the temporary symbol file as `file.dbg' just
21824         like a compiler-generated one.
21825
21826 2002-09-26  Nick Zigarovich <nick@chemlab.org>
21827
21828         * Corrected typo in gc.c (BOHEM vs BOEHM).
21829
21830 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21831
21832         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
21833         GetProperties. Also avoid calling g_slist_length in GetProperties and
21834         GetMethods.
21835
21836 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
21837
21838         * reflection.c: avoid unaligned stores (bug spotted by
21839         Mark Crichton  <crichton@gimp.org>).
21840
21841 2002-09-25  Martin Baulig  <martin@gnome.org>
21842
21843         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
21844         instead of guint64 for addresses and added prologue/epilogue info.
21845
21846 2002-09-25  Martin Baulig  <martin@gnome.org>
21847
21848         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
21849         store line number info.  For the dynamic symbol file, we only need
21850         to provide the JIT generated dynamic line number info for the dynamic
21851         symbol file.
21852
21853 2002-09-25  Martin Baulig  <martin@gnome.org>
21854
21855         * debug-mono-symfile.h: Incremented version number.
21856
21857 2002-09-24  Martin Baulig  <martin@gnome.org>
21858
21859         * class.c (mono_debugger_class_init_func): New global function
21860         pointer variable.
21861         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
21862         call it.
21863
21864         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
21865         function.  This is called via the mono_debugger_class_init_func
21866         hook to add all types to the dynamic type table.
21867         (ves_icall_MonoDebugger_GetType): New interncall to get a class
21868         from its metadata token.
21869
21870         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
21871         New interncall for the debugger.
21872
21873 2002-09-24  Nick Drochak <ndrochak@gol.com>
21874
21875         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
21876         before using it in case it is null.
21877         
21878 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
21879
21880         * metadata.c: allow custom modifiers in local var signatures
21881         (bug spotted by Zoltan Varga).
21882
21883 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
21884
21885         * class.c: deal with the <Module> class that may have a NULL vtable.
21886         Eliminate warnings.
21887
21888 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
21889
21890         * image.c, image.h: more strong name helpers.
21891         * monosn.c: more work: convert pem keys to cryptoapi format.
21892
21893 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
21894
21895         * string-icalls.c: speedup IndexOf.
21896
21897 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21898
21899         * icall.c: updates from Zoltan.2.Varga@nokia.com.
21900
21901 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
21902
21903         * icall.c: cleanup: use mono_object_domain ().
21904
21905 2002-09-23  Martin Baulig  <martin@gnome.org>
21906
21907         * debug-mono-symfile.c: Improved type support.
21908
21909 2002-09-22  Martin Baulig  <martin@gnome.org>
21910
21911         * debug-mono-symfile.c: Added support for reference types and strings.
21912
21913 2002-09-22  Martin Baulig  <martin@gnome.org>
21914
21915         * debug-mono-symfile.c: Started to work on the type table.
21916
21917 2002-09-21  Martin Baulig  <martin@gnome.org>
21918
21919         * debug-mono-symfile.c: Largely reworked the symbol table format.
21920         The symbol table is now incrementally updated each time a new
21921         method is added.  We're now also using our own magic and version
21922         so that you don't need to recompile all your classes if the
21923         dynamic table changes.
21924         (mono_debug_update_mono_symbol_file): Removed.
21925         (mono_debug_symfile_add_method): New function to add a method.
21926
21927 2002-09-21  Martin Baulig  <martin@gnome.org>
21928
21929         * icall.c
21930         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
21931         New interncall.
21932
21933         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
21934         New interncall to get a method from its metadata token.
21935
21936 2002-09-21  Martin Baulig  <martin@gnome.org>
21937
21938         * debug-mono-symfile.c: Create type table.
21939
21940 2002-09-20  Martin Baulig  <martin@gnome.org>
21941
21942         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
21943
21944 2002-09-20  Martin Baulig  <martin@gnome.org>
21945
21946         * debug-mono-symfile.c: Provide information about params and locals.
21947
21948 2002-09-20  Martin Baulig  <martin@gnome.org>
21949
21950         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
21951         New interncall.
21952
21953         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
21954         interncall to get a method from its metadata token.
21955
21956 2002-09-20  Martin Baulig  <martin@gnome.org>
21957
21958         * debug-mono-symfile.c: Added a few checks for method->header
21959         being non-NULL.  This should never happen, but for the moment
21960         let's use a g_warning() rather than a g_assert().
21961
21962 2002-09-19  Mark Crichton  <crichton@gimp.org>
21963
21964         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
21965         even if support for it isn't present.  Added an #ifdef to fix this.
21966
21967         * socket-io.c: Added checks back for Solaris support.
21968
21969 2002-09-19  Martin Baulig  <martin@gnome.org>
21970
21971         * debug-mono-symfile.c (read_string, write_string): Reflect latest
21972         changes in the symbol file format.
21973
21974 2002-09-18  Martin Baulig  <martin@gnome.org>
21975
21976         * debug-mono-symfile.c: Set version number to 21.
21977
21978 2002-09-18  Dick Porter  <dick@ximian.com>
21979
21980         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
21981         on netbsd.  Fixes bug 30051.
21982
21983 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
21984
21985         * reflection.c:
21986         (set_version_from_string): little fix.
21987
21988 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
21989
21990         * monosn.c, Makefile.am: added strong name utility.
21991         * reflection.h, reflection.c: implemented delayed signing,
21992         locale, version and hash id assembly attributes.
21993
21994 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
21995
21996         * loader.c, metadata.c: load param attributes in signatures.
21997
21998 2002-09-16  Martin Baulig  <martin@gnome.org>
21999
22000         * debug-mono-symfile.c: Added string table with all method names.
22001
22002 2002-09-14  Martin Baulig  <martin@gnome.org>
22003
22004         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
22005         fast method lookup.
22006
22007 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22008
22009         * reflection.c: record the public key token of referenced assemblies.
22010
22011 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22012
22013         * image.c, image.h: added functions to get the strong name and the
22014         public key of an assembly.
22015         * pedump.c: use them.
22016
22017 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
22018
22019         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
22020
22021 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
22022
22023         * marshal.c (mono_marshal_get_managed_wrapper): Added
22024         MONO_TYPE_BOOLEAN 
22025
22026 2002-09-11  Martin Baulig  <martin@gnome.org>
22027
22028         * gc.c: Call GC_unregister_disappearing_link() on all links when
22029         finalizing them, this is necessary to aviod a crash in boehm's
22030         finalize handler.
22031
22032 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22033
22034         * gc.c: handle GetTarget for finalized objects spotted and fixed by
22035         nick@chemlab.org.
22036
22037 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22038
22039         * icall.c: implemented MonoType::Module.
22040         * reflection.c, reflection.h: mono_module_get_object () from
22041         Tomi Pakarinen <tomi.pakarinen@welho.com>.
22042
22043 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
22044
22045         * icall.c: ignore overridden methods in GetMethods ().
22046         Fix for FieldInfo::SetValue().
22047         * object.c: handle float/double in runtime invoke.
22048
22049 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
22050
22051         * object.c: allow a constructor to be called again on an object.
22052
22053 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22054
22055         * class.h, class.c: move field layout code to it's own function and
22056         export it. Get an interface id earlier. Move fields in MonoClass
22057         so they are more cache friendly and align the bitfields.
22058         * loader.c: temporary handle get_param_names() for a runtime method.
22059         * reflection.c, reflection.h: more code to handle runtime creation of
22060         types.
22061
22062 2002-09-09  Martin Baulig  <martin@gnome.org>
22063
22064         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
22065         signature with the pinvoke field being set for the actual call.
22066
22067 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22068
22069         * icall.c: removed some unused icalls. Start of map of glib charsets
22070         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
22071
22072 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22073
22074         * debug-helpers.c: break infinite loop (found and fixed by
22075         Holger Arnold <harnold@gmx.de>).
22076
22077 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
22078
22079         * icall.c: target may be null in create_delegate.
22080
22081 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22082
22083         * marshal.c: handle a boolean return type.
22084
22085 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
22086
22087         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
22088
22089 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
22090
22091         * gc.c: fix weakreferences.
22092
22093 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
22094
22095         * icall.c: added icall to get default codepage.
22096
22097 2002-09-03  Dick Porter  <dick@ximian.com>
22098
22099         * threads.h: 
22100         * threads.c: Use MonoThread instead of MonoObject where
22101         apropriate.
22102
22103         Store running thread objects in a hash table, so that we have all
22104         the info to hand when waiting for them to finish
22105         (means we don't need OpenThread() any more, so mingw builds should
22106         be fully functional again.)
22107
22108         * verify.c:
22109         * object.h: Added thread ID to MonoThread
22110
22111 2002-09-03  Martin Baulig  <martin@gnome.org>
22112
22113         * icall.c (System.Reflection.Assembly::get_location): New interncall.
22114
22115 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22116
22117         * icall.c: fixed leak in get_temp_path. Thanks lupus.
22118
22119 2002-09-03  Martin Baulig  <martin@gnome.org>
22120
22121         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
22122         argument to store the end address of the disassembled instruction.
22123
22124         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
22125         here from debug-symfile.h.
22126         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
22127         JIT into this struct.
22128         (MonoSymbolFile): Added `char *image_file' field.
22129         (MonoDebugGetMethodFunc): Removed.
22130         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
22131         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
22132         (mono_debug_find_method): New method.
22133
22134         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
22135         create a full symbol file.
22136         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
22137         and static symbol files.
22138         (mono_debug_find_method): The symbol file keeps an internal method hash,
22139         call this to get a MonoDebugMethodInfo from a MonoMethod.
22140
22141         * debug-symfile.[ch]: Removed.
22142
22143 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
22144
22145         * image.c (do_mono_image_open): Remove linker version check.
22146
22147 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
22148
22149         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
22150         wrappers for instance methods.
22151         
22152 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22153
22154         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
22155
22156 2002-08-28  Dick Porter  <dick@ximian.com>
22157
22158         * Makefile.am: Export HOST_CC for w32 builds
22159
22160 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22161
22162         * file-io.c process.c: MonoString are null terminated, no
22163         need for mono_string_to_utf16() anymore.
22164
22165 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22166
22167         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
22168
22169 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
22170
22171         * icall.c, reflection.h: speedup System.MonoType.
22172
22173 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
22174
22175         * reflection.c: allow null as the value of a string argument in
22176         custom attributes constructors.
22177
22178 2002-08-27  Martin Baulig  <martin@gnome.org>
22179
22180         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
22181         `trampoline_address' field.
22182
22183 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
22184
22185         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
22186         check (fixes bug #29486) 
22187
22188 2002-08-27  Martin Baulig  <martin@gnome.org>
22189
22190         * debug-mono-symfile.c: Changed the file format in a way that allows us
22191         open it read-only and to use a specially malloced area for all the
22192         dynamic data.  We can now also generate a symbol file on-the-fly if we're
22193         debugging IL code and there is no MCS generated symbol file for it.
22194
22195 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
22196
22197         * object.c: added a define for a good string and array
22198         creation speedup (not enabled by default because we need to deal with
22199         the synch stuff).
22200
22201 2002-08-26  Martin Baulig  <martin@gnome.org>
22202
22203         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
22204         function to create a dynamic symbol file.  This is used by the
22205         debugger to create a symbol file for IL code on-the-fly.
22206
22207 2002-08-26  Martin Baulig  <martin@gnome.org>
22208
22209         * loader.c (mono_lookup_pinvoke_call): Include the error message
22210         from g_module_error() in the error message.
22211
22212 2002-08-24  Martin Baulig  <martin@gnome.org>
22213
22214         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
22215         function to update the symbol file.  The symbol file is mmap()ed
22216         writable, but private.  This allows us to install the symbol file
22217         together with the assembly.
22218
22219 2002-08-24  Martin Baulig  <martin@gnome.org>
22220
22221         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
22222         but they can read the new symbol file format which mcs is now creating.
22223
22224         * debug-symfile.c (mono_debug_find_source_location): Moved to
22225         debug-mono-symfile.c; this is now operating on the new symbol file.
22226
22227 2002-08-23  Martin Baulig  <martin@gnome.org>
22228
22229         * debug-helpers.c (mono_method_desc_from_method): New function to get
22230         a MonoMethodDesc from a MonoMethod.
22231
22232 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
22233
22234         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
22235         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
22236
22237 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
22238
22239         * string-icalls.[ch]: make helper methods static.
22240
22241 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22242
22243         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
22244         types to it and to SetValueInternal.
22245
22246         * object.c: Moved handle_enum label to its proper place. This was the
22247         f... bug! ;-)
22248
22249         This time i compiled mcs and gtk-sharp and they both work.
22250
22251 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22252
22253         * icall.c: reverted partially my previous patch until 
22254         object.c:set_value handles enums correcly.
22255
22256 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22257
22258         * icall.c:
22259         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
22260         (ves_icall_System_Environment_get_MachineName): removed warning when
22261         compiling under cygwin.
22262
22263 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22264
22265         * object.c: fixed field_get_value() for reference types.
22266
22267 2002-08-22  Dick Porter  <dick@ximian.com>
22268
22269         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
22270         Don't free a buffer while it's still needed.  Patch from Jonathan
22271         Liger <Jonathan.liger@wanadoo.fr>
22272
22273 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
22274
22275         * icall.c (ves_icall_System_Environment_get_Platform): Add new
22276         internal call.
22277
22278 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
22279
22280         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
22281         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
22282
22283         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
22284         we call unmanaged code which throws exceptions.
22285
22286 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22287
22288         * appdomain.h: added per-domain entry_assembly.
22289         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
22290         arguments.
22291         * icall.c: Assembly::GetEntryAssembly icall.
22292         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
22293         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
22294
22295 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22296
22297         * appdomain.h, gc.c: added mono_domain_finalize ().
22298
22299 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22300
22301         * object.c:
22302         (mono_print_unhandled_exception): changed g_warning by g_printerr
22303         because g_log has a 1024 characters limit (yeah, i got a big stack
22304         trace). Don't print exception name, that should be in ToString 
22305         returned string.
22306
22307 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22308
22309         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
22310         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
22311
22312 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22313
22314         * object.c:
22315         (mono_print_unhandled_exception): after previous commit, i realized
22316         that MS calls ToString on the exception. I changed this function to
22317         do that. This way we get stack_trace for free.
22318
22319 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22320
22321         * object.c:
22322         (mono_print_unhandled_exception): invoke Message property instead of
22323         getting 'message' field from Exception. Don't allocate memory for
22324         'trace' and 'message' if not needed.
22325
22326 2002-08-18  Dick Porter  <dick@ximian.com>
22327
22328         * unicode.c: Fix asserts to match Encoder.cs checks
22329
22330 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22331
22332         * marshal.c: fix unaligned store issue and a few wrong
22333         opcode argument types.
22334
22335 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22336
22337         * icall.c: added GetUninitializedObjectInternal internal call.
22338
22339 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
22340
22341         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
22342         to the right domain.
22343
22344 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
22345
22346         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
22347
22348         * class.c (class_compute_field_layout): set blittable to false for Strings
22349
22350         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
22351
22352 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22353
22354         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
22355         first chunk of code to create types at runtime. Code to
22356         handle ReflectedType/DeclaringType. Make reflection handles
22357         domain specific.
22358
22359 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
22360
22361         * class.c: set correct name in arrays.
22362
22363 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
22364
22365         * appdomain.c (mono_domain_transfer_object): make it work with
22366         valuetypes. bug fixes.
22367
22368 2002-08-12  Dick Porter  <dick@ximian.com>
22369
22370         * object.h: Rename some parameters to avoid c++ keywords (Patch
22371         from Joseph Wenninger <kde@jowenn.at>)
22372
22373 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
22374
22375         * icall.c: added icall to implement Assembly.GetFile*.
22376
22377 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
22378
22379         * reflection.h, reflection.c: code to embed managed resources.
22380
22381 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
22382
22383         * class.c: move all the type size stuff into
22384         class_compute_field_layout().
22385
22386 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
22387
22388         * class.c: ensure enums have always the correct instance size.
22389         * unicode.c: remove wrong assert.
22390
22391 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
22392
22393         * assembly.c: fix mem corruption issue.
22394         * image.h, image.c: added mono_image_get_resource () to access
22395         managed resources.
22396         * icall.c: implemented Assembly.EntryPoint property and some
22397         Managed Resources related internalcalls.
22398
22399
22400 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22401
22402         * image.c, image.h: impemented mono_image_get_entry_point ().
22403         * appdomain.c: use mono_image_get_entry_point.
22404
22405 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22406
22407         * reflection.c: support the object type argument when loading
22408         custom attributes.
22409
22410 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
22411
22412         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
22413         String as return type.
22414
22415 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
22416
22417         * reflection.c: fix encoding of named args for custom attrs to match
22418         the ms implementation. Read them back when instantiating custom
22419         attributes.
22420
22421 2002-08-02  Radek Doulik  <rodo@ximian.com>
22422
22423         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
22424         by Dietmar as quick fix
22425         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
22426         16 as stack size, used on more places as quick fix before Dietmar
22427         will fix it properly
22428
22429 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
22430
22431         * object.h, object.c: added accessors for fields and properties.
22432
22433 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
22434
22435         * class.c, class.h: made mono_class_get_field_from_name ()
22436         loop on parent types.
22437         Added mono_class_get_property_from_name ().
22438
22439 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22440
22441         * class.c, class.h: move the code to setup the type vtable in its own
22442         function so that it can be reused also for types created at runtime.
22443         Eliminate the "class" identifier from the header file.
22444         * reflection.c: setup the vtable for enums so that we can create
22445         objects for use in SetConstant ().
22446
22447 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
22448
22449         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
22450         instead of the delegate itself as this pointer (bug #28383)
22451
22452 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
22453
22454         * marshal.c (mono_marshal_get_managed_wrapper): added return type
22455         conversions.
22456
22457 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22458
22459         * loader.c: don't set the pinvoke bit on icalls.
22460
22461 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
22462
22463         * debug-helpers.c (mono_method_full_name): only print a number to
22464         indicate wrapper type (so that the output is more readable in traces).
22465
22466 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
22467
22468         * class.c (mono_class_init): include method override patch from Paolo
22469
22470 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
22471
22472         * icall.c: fixed GetTypeCode().
22473
22474 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
22475
22476         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
22477         use real delegate invoke function to make it work with multicast
22478         delegates (fix bug# 28291).
22479
22480 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
22481
22482         * object.c: load constant strings.
22483
22484 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22485
22486         * reflection.c: no magic numbers.
22487         * tabledefs.h: security action enum.
22488
22489 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22490
22491         * assembly.c: fix possible memory corruption.
22492
22493 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
22494
22495         * reflection.h, reflection.c: added support for linking resources.
22496         * verify.c: check we have an updated corlib.
22497
22498 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
22499
22500         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
22501         string arrays.
22502         (mono_marshal_string_array): null terminate unmanaged string arrays.
22503         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
22504
22505 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
22506
22507         * icall.c: Type.GetType () can now return also types from the
22508         calling assembly.
22509
22510 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22511
22512         * loader.h, loader.c: stack walking support.
22513         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
22514         GetCallingAssembly.
22515
22516 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
22517
22518         * marshal.c: added optimisations for blittable types 
22519
22520         * class.c (mono_array_class_get): do not set blittable attribute on arrays
22521         (mono_class_setup_mono_type): set blittable attribute for single
22522         and double.
22523
22524         * marshal.c (mono_string_utf8_to_builder): impl.
22525         (mono_string_builder_to_utf8): impl.
22526         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
22527
22528 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
22529
22530         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
22531         (mono_marshal_get_managed_wrapper): impl. byref types
22532
22533 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22534
22535         * icall.c:
22536         (search_method): don't display debug message. 
22537
22538 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22539
22540         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
22541
22542 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
22543
22544         * appdomain.c: set the missing filename when throwing exception.
22545
22546 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
22547
22548         * metadata.c (mono_type_size): code cleanup
22549         (mono_type_stack_size): removed some test code
22550
22551 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
22552
22553         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
22554         mono_get_exception_file_not_found now.
22555
22556         * exception.c (mono_exception_from_name_two_strings): New version
22557         that will call a constructor with two string arguments. 
22558         (mono_get_exception_file_not_found): New helper routine, used to
22559         report file-not-found errors.
22560
22561 2002-07-20  Dick Porter  <dick@ximian.com>
22562
22563         * process.h:
22564         * process.c: Pass file handles to CreateProcess
22565         
22566         * icall.c:
22567         * file-io.h:
22568         * file-io.c: Implemented CreatePipe
22569
22570 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22571
22572         * metadata.c (mono_get_param_info): set alignment for value types
22573
22574 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
22575
22576         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
22577         Constify mono_domain_assembly_open().
22578         * loader.c: handle null namespace in icalls.
22579
22580 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
22581
22582         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
22583         (emit_str_to_ptr_conv): marshal object as structs
22584
22585         * metadata.c (mono_type_to_unmanaged): marshal object as structs
22586
22587         * marshal.c (mono_marshal_get_runtime_invoke): support value types
22588
22589 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
22590
22591         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
22592         (mono_marshal_get_native_wrapper): we an now return value types
22593
22594 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22595
22596         * verify.c: more checks implemented.
22597
22598 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
22599
22600         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
22601         (fix bug #27695)
22602         (mono_marshal_get_native_wrapper): allow byref arguments
22603         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
22604         impl. PtrToStringXXX methods
22605         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
22606         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
22607         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
22608         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
22609         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
22610
22611 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22612
22613         * reflection.c: fix buglet in parsing an assembly name.
22614
22615 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22616
22617         * marshal.c (emit_ptr_to_str_conv): first impl.
22618
22619 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22620
22621         * object.c, class.h: cache the vtable in the class as suggested by
22622         vargaz@freemail.hu (Zoltan Varga).
22623
22624 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22625
22626         * class.h, loader.c: added mono_field_from_token().
22627         * verify.c: first cut of type checking code.
22628
22629 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
22630
22631         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
22632
22633 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
22634
22635         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
22636         (fix bug #27782)
22637         (mono_marshal_get_remoting_invoke): impl.
22638         (mono_delegate_begin_invoke): impl.
22639         (mono_mb_emit_save_args): impl.
22640         (mono_delegate_end_invoke): impl.
22641         (mono_marshal_get_delegate_begin_invoke):
22642         (mono_marshal_get_delegate_end_invoke):
22643         (mono_marshal_get_delegate_invoke): generate a special name for
22644         those methods (including the signature) and associate them whith
22645         the delegate class. 
22646
22647 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
22648
22649         * reflection.[ch]: 
22650         (mono_reflection_type_from_name): now it has a MonoImage parameter
22651         which is used as the default image to search the type in. If the image
22652         is NULL or getting the type from it fails, it defaults to corlib.
22653
22654         * icall.c: changed 1 call to mono_reflection_type_from_name to match
22655         new parameter.
22656
22657 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22658
22659         * reflection.c: update the parameter table index.
22660
22661 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22662
22663         * domain.c: don't include the mark byte in the string hash.
22664
22665 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22666
22667         * icall.cs: icall for Type.GetTypeCode ().
22668         * verify: a couple of fixes and disabled local initialization checks.
22669
22670 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
22671
22672         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
22673
22674         * debug-helpers.c (mono_method_full_name): print the type of the
22675         runtime wrapper
22676
22677         * metadata.c (mono_signature_hash): a hash function for signatures
22678         (mono_signature_hash): better hash algorithm
22679
22680         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
22681
22682         * debug-helpers.c (mono_method_full_name): this can now generate
22683         method names with signatures
22684
22685         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
22686         method dont have this pointers.
22687
22688 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
22689
22690         * reflection.c: fixup typebuilder tokens.
22691         * image.c: fix buglet.
22692         * marshal.h: remove whitespace.
22693         * metadata.h, metadata.c: reinstate code that was removed.
22694         * verify.c: handle catch directives and fix another couple of bugs.
22695
22696 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
22697
22698         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
22699         (mono_marshal_get_native_wrapper): make it comp. with the old code
22700         (mono_marshal_get_native_wrapper): support boolean
22701         (mono_marshal_get_managed_wrapper): support more types
22702
22703 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
22704
22705         * class.c (class_compute_field_layout): compute class->blittable attribute.
22706
22707 2002-07-09  Dick Porter  <dick@ximian.com>
22708
22709         * threads.c: Make the thread cleaning up cope with threads that
22710         call ExitThread()
22711
22712 2002-07-08  Radek Doulik  <rodo@ximian.com>
22713
22714         * reflection.c (method_encode_code): use non-translated values to
22715         compute finally_start, this fixes exception handling on ppc, yay!
22716
22717         * decimal.h (struct signscale): fix endianess
22718
22719 2002-07-07  Radek Doulik  <rodo@ximian.com>
22720
22721         * reflection.c: swap box_val and not val
22722
22723 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
22724
22725         * reflection.c, reflection.h: handle full assembly info in type name.
22726         Handle Type arguments when loading custom attributes.
22727         * icall.c: updated to use new mono_reflection_type_from_name () method.
22728
22729 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22730
22731         * loader.c:
22732         (method_from_memberref): also print assembly name when method not found.
22733
22734 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22735
22736         * icall.c:
22737         (ves_icall_TypeGetProperties): fixed bug #27473. 
22738
22739 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
22740
22741         * reflection.c: display image name and token when cannot find the
22742         .ctor for an attribute.
22743
22744 2002-07-05  Martin Baulig  <martin@gnome.org>
22745
22746         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22747
22748 2002-07-04  Dick Porter  <dick@ximian.com>
22749
22750         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
22751         compile on mingw.  This will cause mingw builds to not wait for
22752         subthreads to terminate after the main thread does.  I've lodged a
22753         bug with the mingw developers for them to wrap OpenThread().
22754
22755 2002-07-03  Dick Porter  <dick@ximian.com>
22756
22757         * threads.c: Store thread IDs instead of handles, because
22758         GetCurrentThread() returns a pseudohandle and therefore stores
22759         useless values.  mono_thread_cleanup() continues checking the
22760         array of threads until it is empty, to cope with subthreads
22761         spawning new threads after the main thread has finished.
22762
22763         * profiler.h:
22764         * profiler.c:
22765         * profiler-private.h: Pass the thread ID to thread profiler
22766         functions, instead of a handle
22767
22768 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
22769
22770         * verify.c: fixes to make it more usable.
22771         * pedump.c: added --verify code to verify IL code in an assembly.
22772
22773 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22774
22775         * reflection.c: turn errors into warnings to allow compiling corlib.
22776
22777 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
22778
22779         * reflection.c: add special cases to compile corlib.
22780
22781 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22782
22783         * reflection.c: handle properties with only a set method.
22784
22785 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
22786
22787         * opcodes.h: add enum with opcodes in opval order.
22788
22789 2002-07-01  Dick Porter  <dick@ximian.com>
22790         
22791         * object.h:
22792         * object.c (mono_runtime_run_main): Removed unneeded argument
22793
22794 2002-06-28  Martin Baulig  <martin@gnome.org>
22795
22796         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
22797
22798 2002-06-27  Dick Porter  <dick@ximian.com>
22799
22800         * threads.c: Store the handle in both the parent thread and in the
22801         subthread, to minimise the time between starting a new thread and
22802         storing its ID.
22803
22804 2002-06-26  Dick Porter  <dick@ximian.com>
22805
22806         * appdomain.c (mono_runtime_cleanup): Close the socket library
22807         after all the threads have finished, not before
22808
22809 2002-06-26  Martin Baulig  <martin@gnome.org>
22810
22811         * debug-symfile.c (mono_debug_find_source_location): Added
22812         `guint32 *line_number' argument.  If it's not NULL, store the line number
22813         there and return the file name without the line number.
22814
22815 2002-06-25  Dick Porter  <dick@ximian.com>
22816
22817         * icall.c:
22818         * process.h:
22819         * process.c: Process forking and other support functions
22820
22821 2002-06-25  Dick Porter  <dick@ximian.com>
22822
22823         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
22824         things dont happen when the image is closed.
22825         (mono_image_lookup_resource): Walk the resource section looking
22826         for a particular entry
22827
22828         * cil-coff.h: PE resource section decoding
22829
22830 2002-06-25  Dick Porter  <dick@ximian.com>
22831         
22832         * assembly.h:
22833         * assembly.c: 
22834         (mono_assembly_foreach): Accessor functions to walk the list of
22835         loaded assemblies
22836         (mono_assembly_set_main):
22837         (mono_assembly_get_main): Process methods need to know which
22838         assembly is the "main" one
22839
22840         * object.c (mono_runtime_run_main): Record the main assembly
22841
22842         * debug-helpers.c: Fix typo
22843
22844 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
22845
22846         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
22847         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
22848
22849 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22850
22851         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
22852
22853 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
22854
22855         * image.c (do_mono_image_open): Initialize reference count,
22856         otherwise we leak the MonoImage.
22857
22858 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22859
22860         * reflection.c: small tweak to handle self-hosting.
22861
22862 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
22863
22864         * reflection.c: fix type name parse code.
22865
22866 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22867
22868         * reflection.c: break out of the loop.
22869         * image.c: special case corlib.
22870
22871 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
22872
22873         * reflection.c: add all the custom attrs at the end to ensure the
22874         ctors have been properly initialized when the attributes are defined
22875         in the current assembly.
22876
22877 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22878
22879         * reflection.c: handle correctly multiple-nested types.
22880
22881 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
22882
22883         * row-indexes.h: fix typos.
22884         * reflection.c: adjust for typos and fix method_def_or_ref
22885         encoding in MethodImpl table.
22886
22887 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22888
22889         * reflection.c: fix entry point patching (thanks Serge!).
22890
22891 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
22892
22893         * verify.c: add check for System.Exception
22894
22895 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
22896
22897         * image.c, class.c: minifix for code just c&p'ed.
22898         * reflection.c: warning fix.
22899         * object.h, loader.h, domain.c: load also StringBuilder.
22900
22901 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
22902
22903         * marshal.h, marshal.c: some support code to handle complex marshaling.
22904
22905 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22906
22907         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
22908         Better signatures with vtable error dump.
22909
22910 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
22911
22912         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
22913
22914 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
22915
22916         * icall.c (ves_icall_Type_GetField): impl.
22917
22918 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22919
22920         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
22921         to retrieve a marshal description blob for a field or param.
22922
22923 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
22924
22925         * reflection.h, reflection.c: change order of nested type emission
22926         to avoid table corruption. The NestedTypes table is sorted.
22927         * icall.c: change order of GetConstructor results to workaround mcs bug.
22928
22929 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
22930
22931         * reflection.h, reflection.c: handle field and param marshal
22932         information.
22933
22934 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
22935
22936         * icall.c, marshal.c marshal.h: more Marshal class implementation.
22937
22938 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22939
22940         * reflection.c: fix call convention.
22941
22942 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22943
22944         * reflection.h, reflection.c: mono_image_get_memberref_token()
22945         takes a type instead of a class, now. Added
22946         mono_image_get_array_token() to create tokens for the special
22947         multi-dim array methods.
22948
22949 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
22950
22951         * assembly.c: handle modules (no assembly table). Split
22952         loading references in its own function.
22953         * class.c: handle moduleref resolution scope.
22954         * image.c, image.h: cache module name in image.
22955
22956 2002-06-07  Martin Baulig  <martin@gnome.org>
22957
22958         * reflection.c (mono_image_get_type_info): Only add a class layout entry
22959         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
22960
22961 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
22962
22963         * icall.c: more signature fixes that used uint instead of int.
22964
22965 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
22966
22967         * reflection.c: fixed signature of field refs.
22968
22969 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
22970
22971         * class.c, reflection.c: handle typerefs of nested types
22972         (both on read and when writing files).
22973
22974 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
22975
22976         * icall.c: fix method signatures that tried to workaround the previous
22977         typo, d'oh!
22978
22979 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
22980
22981         * debug-helpers.c: fix typo.
22982
22983 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
22984
22985         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
22986         rewrote the PE/COFF writing code (our programs are understood by the
22987         ms runtime, now).
22988
22989 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
22990
22991         * gc.c, gc.h, icall.c: weakreference support.
22992
22993 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
22994
22995         * Makefile.am, mono-config.c: use $(sysconfdir).
22996
22997 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
22998
22999         * icall.c: changed default precision of Double.ToString() to 15.
23000         Fixed memory leak. Unified with Single.ToString.
23001
23002 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
23003
23004         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
23005
23006 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
23007
23008         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
23009         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
23010         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
23011         and myself.
23012
23013 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23014
23015         * debug-symfile.c, sysmath.c: yet more compilation fixes.
23016
23017 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23018
23019         * reflection.c, socket-io.c: more compilation fixes.
23020
23021 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23022
23023         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
23024         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
23025         unicode.c: warning and compiler compatibility fixes.
23026
23027 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23028
23029         * class.h, metadata.c: fixed warnings/compilation errors.
23030
23031 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
23032
23033         * Makefile.am, mono-config.c, mono-config.h: configuration file
23034         support routines.
23035         * loader.c, loader.h: make Dll mapping configurable at runtime in the
23036         config file. Export methods to insert and lookup mappings.
23037
23038 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
23039
23040         * reflection.c: handle types and boxed objects in custom attr
23041         constructors.
23042
23043 2002-05-30  Martin Baulig  <martin@gnome.org>
23044
23045         * debug-symfile.c
23046         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
23047
23048 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
23049
23050         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
23051         to lookup the implmap row for a P/Invoke method.
23052         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
23053         P/Invoke method from the runtime on an as needed basis.
23054
23055 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
23056
23057         * metadata.c (mono_metadata_parse_signature): impl.
23058
23059 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23060
23061         * class.c: handle .pack directive.
23062
23063 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
23064
23065         * object.c: initialize static fields with RVA data.
23066
23067 2002-05-25  Martin Baulig  <martin@gnome.org>
23068
23069         * debug-symfile.c
23070         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
23071
23072 2002-05-24  Martin Baulig  <martin@gnome.org>
23073
23074         * debug-symfile.c
23075         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
23076         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
23077         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
23078
23079 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23080
23081         * object.c: special case string ctros in invoke.
23082         * gc.c: silly whitespace changes.
23083
23084 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
23085
23086         * threadpool.[ch]: impl. a threadpool that can
23087         be used by mint and mono.
23088
23089 2002-05-22  Martin Baulig  <martin@gnome.org>
23090
23091         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
23092         The first argument is now a `MonoReflectionModuleBuilder *', the return
23093         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
23094         `methods' field to get the method builder.  The `token' argument is the
23095         unfixed token.
23096
23097         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
23098         invalid characters instead of g_assert_not_reached()ing.  This seems
23099         to be the behaviour of mscorlib.
23100
23101 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
23102
23103         * object.c (mono_runtime_invoke_array): applied patch from Rachel
23104         Hestilow to fix bug #25104
23105
23106 2002-05-21  Martin Baulig  <martin@gnome.org>
23107
23108         * debug-symfile.c (mono_debug_find_source_location): New function.
23109         Looks up an IL offset in the line number table and returns the source
23110         location as a string.
23111
23112 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23113
23114         * icall.c:
23115         (mono_double_ToStringImpl): changed %f by %g until we have something
23116         better.
23117
23118 2002-05-21  Nick Drochak  <ndrochak@gol.com>
23119
23120         * icall.c : Use different name for Math.Pow's icall.  Needed to check
23121         parameters first in C#.
23122
23123 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23124
23125         * icall.c, reflection.h: added icall to get info about an event.
23126
23127 2002-05-20  Radek Doulik  <rodo@ximian.com>
23128
23129         * object.c (mono_value_box): don't use memcpy for boxing on BIG
23130         endian
23131         (mono_value_box): don't use memcpy for small sizes on
23132         architectures with unaligned access
23133
23134 2002-05-20  Martin Baulig  <martin@gnome.org>
23135
23136         * reflection.c (mono_reflection_setup_internal_class): Don't crash
23137         if `tb->parent == NULL'.
23138         (mono_reflection_create_internal_class): New function.  This is
23139         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
23140         for enum types.
23141
23142         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
23143         New interncall.
23144
23145 2002-05-19  Martin Baulig  <martin@gnome.org>
23146
23147         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
23148         argument to get the length, don't default to the array length.
23149
23150 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
23151
23152         * assembly.c (mono_assembly_setrootdir): New function used to
23153         override the MONO_ASSEMBLIES directory.
23154
23155 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23156
23157         * icall.c: ValueType_GetHashCode() initialize local var.
23158
23159 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23160
23161         * reflection.c: sort custom attributes table.
23162
23163 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23164
23165         * reflection.c: support named args in custom attributes (write support).
23166
23167 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
23168
23169         * reflection.c: fix finally position calculation.
23170
23171 2002-05-15  Radek Doulik  <rodo@ximian.com>
23172
23173         * reflection.c: fixed endianess at many places
23174
23175         * icall.c (ves_icall_InitializeArray): comment out debug msg
23176
23177 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
23178
23179         * object.c (mono_unhandled_exception): new function to handle
23180         unhandled exceptions.
23181         (mono_unhandled_exception): call the UnhandledException event.
23182         (mono_runtime_delegate_invoke): impl.
23183
23184 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
23185
23186         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
23187         returns the RVA, not the direct pointer to the data. Handle the case
23188         when the class size is fixed.
23189
23190 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
23191
23192         * reflection.c: fix some endianess issues.
23193
23194 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
23195
23196         * object.c (mono_runtime_invoke): is now able to catch exceptions.
23197
23198         * threads.c (mono_thread_init): added a callback which is invoked
23199         at thread start.
23200
23201 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
23202         
23203         * icall.c: make GetHashCode return non-negative values.
23204
23205 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
23206
23207         * object.c, icall.c, gc.c: revert to address-based hashcode.
23208
23209 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
23210
23211         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
23212
23213 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23214
23215         * icall.c, class.c: special case <Module>.
23216
23217 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
23218
23219         * icall.c: fix bug in GetNow().
23220
23221 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
23222
23223         * object.c (mono_runtime_class_init): make sure that we call all
23224         static class constructors.
23225
23226 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
23227
23228         * reflection.c: sort methodsemantics table.
23229
23230 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
23231
23232         * reflection.h, reflection.c: honour init locals setting.
23233
23234 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
23235
23236         * icall.c: copied Double ToStringImpl for Single ToStringImpl
23237
23238 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23239
23240         * reflection.c: support ContructorBuilders in attribute blob creation.
23241
23242 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23243
23244         * reflection.c: some changes to build a binary that can be run
23245         directly in windows.
23246
23247 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23248
23249         * loader.c: print a big message when an icall can't be found.
23250
23251 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23252
23253         * string-icalls.c: fix bug 24248.
23254
23255 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
23256
23257         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
23258         icall.c, reflection.h: separate assembly loading by pathname and by
23259         assembly name. Use the MONO_PATH env var to search for assemblies.
23260
23261 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23262
23263         * assembly.c, image.h: add some support for assemblies
23264         with multiple modules.
23265         * class.c, class.h: export mono_class_from_typeref().
23266         * loader.c: remove duplicated code and use mono_class_from_typeref(),
23267         instead.
23268
23269 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
23270
23271         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
23272         documentation says (the ECMA one is correct).
23273
23274 2002-05-02  Dick Porter  <dick@ximian.com>
23275
23276         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
23277         Don't name the synchronisation mutex.
23278
23279 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
23280
23281         * rand.c
23282         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
23283         Make the prototypes match.
23284         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
23285         Same.
23286
23287         * icall.c
23288         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
23289         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
23290         all systems have tm.tm_zone, so use strftime() with %Z to print
23291         the timezone abreviation into a temp string.
23292
23293         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
23294         rather than mono_array_addr() on a MonoString on Big Endian
23295         machines.
23296
23297 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
23298
23299         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
23300         fix bug 24041
23301
23302 2002-04-30  Dick Porter  <dick@ximian.com>
23303
23304         * socket-io.c: Cope with SOCKET being an integer rather than a
23305         pointer now.
23306
23307         * threads.c: Added Thread_free_internal, to deal with thread
23308         handle cleanup.  Moved calls to handle_store() and handle_remove()
23309         to start_wrapper(), so each can only be called once.  Allocate
23310         synchronisation blocks with GC_malloc(), and use GC finalisation
23311         to close the handles.
23312
23313         * icall.c: added System.Threading.Thread::Thread_free_internal
23314
23315 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
23316
23317         * icall.c: support Environment.Exit, CommandLineArgs().
23318
23319 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
23320
23321         * object.c, object.h: added mono_runtime_run_main () and
23322         mono_runtime_get_main_args () for use in System.Environment.
23323
23324 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
23325
23326         * gc.c: fix thinko, enable actual finalization since the jit is now
23327         fixed.
23328
23329 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23330
23331         * gc.c, object.c: take into account that an object may be offset wrt the address
23332         returned by GC_malloc().
23333
23334 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
23335
23336         * image.c: handle files without entries in the assembly table (modules).
23337
23338 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
23339
23340         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
23341         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
23342         allowed to be null when it's System.Object class setup.
23343
23344 2002-04-27  Martin Baulig  <martin@gnome.org>
23345
23346         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
23347         if `tb->parent == NULL' rather than crashing.
23348
23349 2002-04-28  Nick Drochak  <ndrochak@gol.com>
23350
23351         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
23352         calling acos() where asin() should have been called.
23353
23354 2002-04-26  Martin Baulig  <martin@gnome.org>
23355
23356         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
23357         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
23358         there's a subdirectory called `System', but we don't want to read that
23359         subdirectory as an assembly.
23360
23361 2002-04-25  Martin Baulig  <martin@gnome.org>
23362
23363         * debug-symfile.c: Reflect latest MonoString changes.
23364
23365 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
23366
23367         * rand.c, rand.h: instance method icalls need to have an explicit
23368         this pointer as first argument in the C implementation.
23369
23370 2002-04-25  Nick Drochak <ndrochak@gol.com>
23371
23372         * icall.c: Fix typo in map for GetNonZeroBytes
23373
23374 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23375
23376         * string-icalls.c : String does now passes unit tests without any 
23377         errors, the following changes has been made:
23378         
23379         Implemented replace methods.
23380         Renaming of methods to (try) follow the standard.
23381         Fixed compare ordinal
23382         Made all memory allocated directly to function instead of via icall function.
23383         Small performance fix in is_in_array function
23384                         
23385  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
23386
23387         c (mono_string_Internal_ctor_charp_int_int):
23388         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
23389         sindex < 0, throw ArgumentOutOfRangeException instead of
23390         ArgumentNullException.
23391
23392         Added new check for length == 0, however
23393         I need to make it return String.Empty from the C code.
23394         
23395         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
23396         that calculate the length for us here.
23397         
23398         (mono_string_Internal_ctor_sbytep_int_int): Replaced
23399         mono_string_new_utf16 with mono_string_new, since value is utf8.
23400
23401 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23402
23403         * object.c: register the object for finalization if needed.
23404         Allocate one more char in the string for the terminating 0 char.
23405
23406 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
23407
23408         * class.c, class.h, image.c: check if a type implemenst a destructor.
23409         Use the proper key for array class lookups.
23410         * icall.c: register the icalls in the System.GC class.
23411         * gc.c, gc.h: GC-related functions and icalls.
23412
23413 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23414
23415         * icall.c:
23416         * socket-io.c:
23417         * unicode.c: free some strings gotten from mono_string_to_utf8 and
23418         changed a couple of free () by g_free ().
23419
23420         * decimal.c: one-liner in the comments for decimal2string ().
23421
23422 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23423
23424         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
23425
23426 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
23427
23428         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
23429         * object.c (mono_runtime_invoke_array) : handle null in params
23430
23431 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23432
23433         * string-icalls.c: fixed bug in split (one off bug)
23434
23435 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23436
23437         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
23438         * icalls.c: added String::Equals as internal method
23439
23440 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
23441
23442         * threads.c: fixed bug in the double interlocked functions
23443
23444 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
23445
23446         * threads.c: implemented all of the new interlocked icalls.
23447         * string-icalls.c: fix a bug in insert.
23448         * icalls.c: added the icalls for interlocked, removed old string functions.
23449         
23450 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23451
23452         * loader.c: fix off-by-one error when reading argument names.
23453
23454 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23455
23456         * profiler.c: win32 counter implementation (untested).
23457         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
23458         (the latter needs testing and more complete impl. from win32 folks).
23459
23460 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
23461
23462         * object.c: mono_array_new_full workaround mono_array_class_get
23463         problem.
23464
23465 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23466
23467         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
23468         * object.h (mono_string_chars): Changed casting type.
23469
23470 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23471
23472         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
23473                            method signatures to use gunichar2 instead of gint16.
23474
23475 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
23476
23477         * object.h, object.c: domain-specific versions of mono_object_new and
23478         mono_array_new.
23479
23480 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
23481
23482         * object.c: changed String layout
23483
23484         * string-icalls.c (mono_string_Internal_ctor_chara): added
23485         internal string constructors.
23486
23487 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
23488
23489         * threads.c: pass 'this' to the thread start routine.
23490
23491 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23492
23493         * string-icalls.c: fix IndexOf and LastIndexOf. Now
23494         InternalCompareStr don't call twice mono_string_cmp_char for the last
23495         character. Improved performance in mono_string_cmp_char.
23496
23497 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
23498
23499         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
23500         code into its own library: libmonoruntime.
23501
23502 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
23503
23504         * object.h, object.c: changed array format so that szarrays do not
23505         require a bounds structure.
23506         * icall.c, appdomain.c: support for new szarray format.
23507
23508 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
23509
23510         * metadata.c: compare also the retuns type when comparing signatures:
23511         we didn't do this as an optimization since really overloaded methods
23512         must differ also in the arguments, but this doesn't work with
23513         low-level IL code (or when using explicit conversion operators: see
23514         bug#23498 for an example).
23515
23516 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
23517
23518         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
23519
23520 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
23521
23522         * icall.c: make MonoType::GetElementType its own icall.
23523
23524 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
23525
23526         * icall.c: remove MonoMethod_get_Name().
23527         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
23528         object.
23529
23530 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23531
23532         * string-icalls.c: optimized a few methods.
23533
23534 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
23535
23536         * icall.c: added all new string internal calls
23537         * string-icalls.c: added, new string internal call implementation.
23538         * object.c: added mono_string_new_size for allocating a string a size
23539
23540 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
23541
23542         * object.c (mono_object_isinst): use the same code as in the
23543         optimized x86 version.
23544
23545 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
23546
23547         * profiler.c: TSC-based timer code (faster and more accurate).
23548         Not hooked up in configure, yet (set USE_X86TSC to 1).
23549
23550 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
23551
23552         * profiler.c, profiler.h: track time spent compiling methods.
23553         * threads.c: track thread creation/destruction.
23554
23555 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
23556
23557         * profiler.c, profiler.h, profiler-private.h: profiling interface
23558         and sample implementation. Moved here so that it can be used also by
23559         the jit.
23560
23561 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
23562
23563         * reflection.c, reflection.h: keep types and other handles separate in
23564         the hash tables for referred tokens. Add guid for modules.
23565
23566 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
23567
23568         * assembly.c: fix bugs found with valgrind.
23569         * metadata.h, metadata.c: added mono_metadata_guid_heap().
23570
23571 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
23572
23573         * threads: added icall support for getting current domain for
23574                    the thread.
23575  
23576 2002-04-13  Martin Baulig  <martin@gnome.org>
23577
23578         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
23579         (MonoDebugVarInfo): Added `index' field for register based addresses.
23580         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
23581         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
23582         `MonoDebugVarInfo *params' and `guint32 this_offset' with
23583         `MonoDebugVarInfo *this_var'.
23584
23585         * debug-symfile.c (relocate_variable): New static function to write
23586         a location description for a local variable or method parameter.
23587
23588 2002-04-12  Martin Baulig  <martin@gnome.org>
23589
23590         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
23591         stack offset and begin/end scope address of a local variable.
23592         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
23593         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
23594         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
23595
23596         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
23597         Added new relocation types for start/end scope of a local variable.
23598
23599 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
23600
23601         * object.h: add mono_object_domain() macro.
23602         * reflection.c: handle typespecs.
23603         * icall.c: MonoMethod::get_Name() implementation.
23604
23605 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23606
23607         * icall.c: String::GetHashCode() icall implementation.
23608
23609 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23610
23611         * icall.c: String::IndexOfAny icall.
23612         * object.c, object.h: make array->max_length more useful.
23613         Intrduced mono_object_class() and mono_string_length() macros.
23614
23615 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
23616
23617         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
23618         instead of g_unichar_isdigit.
23619
23620 2002-04-11  Nick Drochak  <ndrochak@gol.com>
23621
23622         * icall.c: Implement a simple Double.ToString().
23623
23624 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
23625
23626         * appdomain.h: only io-layer.h is supposed to be included.
23627         * icall.c: explicitly import environ. Fix warning.
23628
23629 2002-04-10  Nick Drochak  <ndrochak@gol.com>
23630
23631         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
23632                 return true even if it's not Daylight Savings time.
23633                 Only return false for the case where the function isn't
23634                 implemented for a plaform (read Windows).
23635
23636 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
23637
23638         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
23639         data with a mutex.
23640
23641 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
23642
23643         * mempool.c (mono_mempool_alloc): only use g_malloc when
23644         absolutely necessary.
23645
23646 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23647
23648         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
23649
23650         * class.c (mono_class_vtable): use domain mempool to allocate vtable
23651         (mono_class_proxy_vtable): use domain mempool
23652
23653 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
23654
23655         * appdomain.h, appdomain.c: split initialization that requires the
23656         execution engine support into mono_runtime_init().
23657
23658 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
23659
23660         * class.c (mono_class_init): don't include vtable inside MonoClass
23661         to save some memory, gather some statistics.
23662         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
23663
23664 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23665
23666         * icall.c: internalcall implementation for ValueType.Equals().
23667
23668 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
23669
23670         * object.c (mono_message_init): moved 
23671         (mono_runtime_exec_main): new arch. independent impl.
23672         (mono_runtime_invoke_array): new method - like
23673         mono_runtime_invoke, but you can pass an array of objects.
23674         (mono_remoting_invoke): new arch. independent impl.
23675         (mono_message_invoke): new arch. independent impl.
23676         (mono_runtime_class_init): new arch. independent impl.
23677         (mono_runtime_object_init): new arch. independent impl.
23678
23679 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
23680
23681         * metadata.c, object.c, reflection.c: documented the exported
23682         functions.
23683
23684 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
23685
23686         * icall.c: simpler code to pass the assembly builder data to corlib.
23687         Implement GetNestedTypes() internalcall.
23688
23689 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
23690
23691         * class.c: warn if a type can't be loaded.
23692
23693 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
23694
23695         * image.h: typedef MonoImageOpenStatus
23696         * types.h: removed unused file
23697         
23698 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
23699
23700         * icall.c: Enum_ToObject accepts enum value arguments.
23701
23702 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
23703
23704         * class.c: move initialization of properties, events and nested
23705         classes, so that they happen for interfaces, too.
23706
23707 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
23708
23709         * icall.c: cleanup some ugly casts in Array_SetValue*.
23710
23711 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
23712
23713         * icall.c: the values array fro enums is of the correct type, now.
23714         Implement (correctly) getFullName instead of assQualifiedName for
23715         MonoType.
23716         * reflection.h, reflection.c: added mono_type_get_name ().
23717
23718 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
23719
23720         * assembly.c, image.h: for each MonoImage, record from wich assembly
23721         it was loaded.
23722         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
23723         Make Type.Assembly work.
23724
23725 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
23726
23727         * debug-symfile.h: use char* instead of gpointer to avoid
23728         unnecessary casts.
23729
23730         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
23731
23732         * icall.c (ves_icall_InternalExecute): impl. FielSetter
23733         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
23734
23735 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
23736
23737         * icall.c (mono_message_init): impl. (code cleanup)
23738         (ves_icall_InternalExecute): impl. FieldGetter
23739
23740         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
23741         defined we call all (non-static)methods through the vtable. 
23742
23743 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
23744
23745         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
23746         finalizer even though the memory is still referenced (and the chunk of
23747         memory is not freed).
23748
23749 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
23750
23751         * assembly.c: fix brokeness.
23752
23753 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
23754
23755         * class.c: kill some warnings. Check explicit interface method
23756         implementation also without considering the namespace.
23757         Load also literal strings in static class data.
23758
23759 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
23760
23761         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
23762         (default_assembly_name_resolver): Make the resolver take the
23763         "base" directory where the assembly was originally defined, so we
23764         can load DLLs that are in the same directory as the assembly that
23765         is being referenced.
23766
23767 2002-03-28  Dick Porter  <dick@ximian.com>
23768
23769         * file-io.h: 
23770         * file-io.c:
23771         * socket-io.c: 
23772         * unicode.h: 
23773         * unicode.c: Warning cleanups
23774
23775 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
23776
23777         * object.h, reflection.h: use the correct type instead of MonoObject.
23778
23779 2002-03-28  Martin Baulig  <martin@gnome.org>
23780
23781         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
23782         (mono_debug_update_symbol_file): Initialize classes if necessary.
23783
23784 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
23785
23786         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
23787         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
23788
23789 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
23790
23791         * assembly.h: fix function prototype.
23792         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
23793         * mono-endian.h: use const cast.
23794
23795 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23796
23797         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
23798
23799 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
23800
23801         * loader.c: don't assert when a typeref can't be loaded, give
23802         a chance to the runtime to trow an exception instead.
23803         * loader.h: fix warning.
23804
23805 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
23806
23807         * class.c (mono_class_proxy_vtable): added proxy support
23808
23809 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
23810
23811         * icall.c: removed last of PAL calls, added System.Environment
23812         * file-io.h, file-io.c: MonoIO implementation
23813         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
23814
23815 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
23816
23817         * appdomain.c: do not use the byte marker in ldstr table lookup.
23818         * debug-helpers.c: allow two ':' to separate class and method name.
23819         * object.c: allocate arrays bounds with the GC, too.
23820         * verify: add a few more checks.
23821
23822 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
23823
23824         * reflection.c: output also literal strings. Allocate parameter data
23825         with GC_malloc() (thanks, Martin, for catching this!).
23826
23827 2002-03-26  Martin Baulig  <martin@gnome.org>
23828
23829         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
23830         include the `this' offset in the `param_offsets'.
23831
23832 2002-03-25  Martin Baulig  <martin@gnome.org>
23833
23834         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
23835         mono_debug_get_class() function to get the classes. Added new
23836         relocation types for arrays and strings.
23837         (mono_debug_get_class): New static function to search in all
23838         referenced assemblies for a metadata token.
23839
23840         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
23841
23842 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
23843
23844         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
23845         hold gc-allocated objects. Make the string heap a stream like the
23846         others. Removed duplicated code when writing stream info.
23847         Added asserts to catch possible buffer overflows. Set the sorted map
23848         for tables that need sorting. Added some documentation.
23849
23850 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
23851
23852         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
23853         for interned strings and vtables.
23854
23855 2002-03-24  Martin Baulig  <martin@gnome.org>
23856
23857         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
23858         it in the array since it was created with g_slist_prepend().
23859
23860 2002-03-24  Martin Baulig  <martin@gnome.org>
23861
23862         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
23863         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
23864         (mono_debug_method_from_token): Renamed to
23865         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
23866         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
23867
23868         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
23869         relocation types.
23870
23871         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
23872
23873 2002-03-24  Martin Baulig  <martin@gnome.org>
23874
23875         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
23876         (mono_debug_method_from_token): New func.
23877
23878         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
23879         New interncall, calls mono_debug_local_type_from_signature().
23880         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
23881         calls mono_debug_method_from_token().
23882
23883 2002-03-23  Martin Baulig  <martin@gnome.org>
23884
23885         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
23886         specifies the number of bytes to be converted, not the array size.
23887         Return the number of chars, not the number of bytes.
23888         (ves_icall_iconv_get_chars): The `byteCount' argument
23889         specifies the number of bytes to be converted, not the array size.
23890
23891 2002-03-23  Martin Baulig  <martin@gnome.org>
23892
23893         * reflection.h (MonoReflectionSigHelper): New type.
23894
23895         * reflection.c (mono_reflection_sighelper_get_signature_local),
23896         (mono_reflection_sighelper_get_signature_local): New functions.
23897
23898         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
23899         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
23900         interncalls.
23901
23902 2002-03-23  Martin Baulig  <martin@gnome.org>
23903
23904         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
23905         is_writeable is set.
23906         (mono_raw_buffer_update): New function to write the modified map
23907         back to disk.
23908
23909         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
23910
23911         * debug-symfile.c (mono_debug_update_symbol_file): Call
23912         mono_raw_buffer_update() when done writing.
23913
23914 2002-03-23  Martin Baulig  <martin@gnome.org>
23915
23916         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
23917
23918         * debug-symfile.c: Added support for arguments and local variables.
23919
23920 2002-03-23  Dick Porter  <dick@ximian.com>
23921
23922         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
23923         protected by ifdefs, hence breaking the w32 build.
23924
23925 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
23926
23927         * object.c: implement is_interned() the right way.
23928
23929 2002-03-21  Martin Baulig  <martin@gnome.org>
23930
23931         * debug-symfile.[ch]: New files to handle debugging information
23932         files. There's also support to dynamically update these symbol
23933         files to include machine dependent information.
23934
23935 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
23936
23937         * threads.c (mono_thread_create): new function to create thread
23938         from C
23939
23940 2002-03-20  Martin Baulig  <martin@gnome.org>
23941
23942         * icall.c (ves_icall_InternalInvoke): Create a new object if the
23943         method is a constructor.
23944         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
23945         points to ves_icall_InternalInvoke().
23946
23947 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
23948
23949         * file-io.c: Flush shouldn't throw exceptions.
23950
23951 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
23952
23953         * file-io.c: FileStream flush support; FileSetLength now
23954         restores file pointer.
23955
23956 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
23957
23958         * class.c: set image for pointer classes.
23959
23960 2002/03/19  Nick Drochak <ndrochak@gol.com>
23961
23962         * sysmath.c: Forgot one.
23963
23964 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
23965
23966         * sysmath.c: Avoid redefining existing names.
23967
23968 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
23969
23970         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
23971         handled by runtime as icall rather than dllimport from libm.so
23972         * file-io.c, file-io.h: fixed handle argument type.
23973
23974 2002-03-18  Dick Porter  <dick@ximian.com>
23975
23976         * reflection.c (mono_image_get_type_info): rename interface to
23977         iface, because of "#define interface struct" on windows.
23978
23979 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
23980
23981         * class.c, class.h: rename and export mono_ptr_class_get().
23982         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
23983         * reflection.c, reflection.h, icall.c: better/saner type name
23984         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
23985         method signatures.
23986
23987 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
23988
23989         * class.c (mono_class_init): removed hardcoded GHC_SLOT
23990
23991         * icall.c (ves_icall_InternalInvoke): impl.
23992
23993 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
23994
23995         * reflection.c: output the interface map table, too.
23996
23997 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
23998
23999         * class.c (class_compute_field_layout): separate computation of 
24000         static field layout
24001
24002 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
24003
24004         * icall.c: added System.Buffer support.
24005         * file-io.c: moved file icalls from PAL to FileStream.
24006
24007 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
24008
24009         * icall.c (ves_icall_System_Object_GetHashCode): impl.
24010
24011 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
24012
24013         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
24014
24015 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24016
24017         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
24018
24019 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24020
24021         * debug-helpers.{c,h}: moved here from monograph some useful functions
24022         to locate a method by name/signature in a class or image. Included
24023         also a small and flexible IL disassembler.
24024
24025 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24026
24027         * reflection.c: fixup tokens in methods with small header size, too.
24028
24029 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
24030
24031         * object.c (mono_string_to_utf8): remove assert(!error), instead
24032         print a warning. 
24033
24034 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
24035
24036         * icall.c: update to the new mono_Array_class_get interface.
24037
24038 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
24039
24040         * appdomain.c, object.c: Boehm-GC enable.
24041         * icall.c: make get_data_chunk() support split data requests.
24042         Ensure a class is initialized in more cases. Return only the first
24043         property found in GetProperties() or the compiler gets confused. 
24044         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
24045         * reflection.h, reflection.c: add fixup mechanism for field and method
24046         tokens. Initialize assembly->typeref in a single place. Output
24047         properties after events. Support custom attributes for events, too.
24048         Typo fix for paramter custom attrs.
24049
24050 2002-03-07  Martin Baulig  <martin@gnome.org>
24051
24052         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
24053
24054 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
24055
24056         * class.c (mono_array_class_get): fix. for multi. dim. arrays
24057
24058 2002-03-06  Martin Baulig  <martin@gnome.org>
24059
24060         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
24061         non-zero lower bounds. See testcases #F10-#F13.
24062
24063 2002-03-05  Martin Baulig  <martin@gnome.org>
24064
24065         * exception.c (mono_get_exception_argument_out_of_range): New exception.
24066
24067         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
24068         ves_icall_System_Array_GetValue(), only calculate the absolute array position
24069         here.
24070         (ves_icall_System_Array_SetValue): Likewise.
24071         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
24072         as argument and does the actual work. This function is used when copying a
24073         multi-dimensional array.
24074         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
24075         now do all the widening conversions of value types.
24076         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
24077
24078 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24079
24080         * class.c: remove some magic numbers and use the smbolic names,
24081         instead. Added init_events() to load event info at class init time.
24082         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
24083         and mono_metadata_methods_from_event().
24084         * reflection.h, reflection.c: added support for writing out the evnets
24085         related information.
24086
24087 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
24088
24089         * reflection.h, icall.c: use a different method (GetInterfaces)
24090         to gather interface info and add isbyref, isprimitive and
24091         ispointer to the ves_icall_get_type_info() return value.
24092
24093 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
24094
24095         * class.h: stared adding support for events.
24096         * icall.c: split find_members implementation. Added debug icall to get
24097         the address of an object.
24098         * reflection.c: handle TypeBuilders in mono_type_get_object().
24099
24100 2002-03-01  Martin Baulig  <martin@gnome.org>
24101
24102         * icall.c (ves_icall_System_Array_GetLength): This must throw an
24103         ArgumentOutOfRangeException(), not an ArgumentException().
24104         (ves_icall_System_Array_GetLowerBound): Likewise.
24105         (ves_icall_System_Array_GetValue): Improved argument checking.
24106         (ves_icall_System_Array_SetValue): Improved argument checking.
24107
24108 2002-03-01  Martin Baulig  <martin@gnome.org>
24109
24110         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
24111         called with invalid arguments rather than just dying with g_assert().
24112         (ves_icall_System_Array_SetValue): Likewise.
24113         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
24114         raise a NotImplementedException instead.
24115         (ves_icall_System_Array_GetLength): Added argument checking.
24116         (ves_icall_System_Array_GetLowerBound): Added argument checking.
24117
24118 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
24119
24120         * object.h (mono_assert): new macros mono_assert and
24121         mono_assert_not_reached
24122
24123 2002-02-28  Martin Baulig  <martin@gnome.org>
24124
24125         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
24126         and "System::String::IsInterned" to "System::String::_IsInterned".
24127
24128 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
24129
24130         * icall.c: remove hacks for typebuilder. Added icall to create a
24131         modified type from a tybebuilder.
24132         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
24133         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
24134         to create a backing MonoClass for a TypeBuilder.
24135
24136 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24137
24138         * class.c, class.h: more refactoring of class init.
24139         Export mono_class_setup_mono_type() and mono_class_setup_parent().
24140
24141 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
24142
24143         * marshal.c, marshal.h: start of marshaling interface.
24144
24145 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24146
24147         * icall.c: fix order in assembly qualified name icall.
24148
24149 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24150
24151         * class.c: do not free str, since we store it in the hash table.
24152         * reflection.h: add label field to MonoILExceptionInfo.
24153         * reflection.c: handle references to more than one assembly. Handle
24154         case when there isn't a module created in the assembly.
24155
24156 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
24157
24158         * class.c: Fix typo. Start refactoring of class init code.
24159
24160 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
24161
24162         * appdomain.c: exit with 1 on error.
24163         * class.c: we already have the name in MonoClassField.
24164         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
24165         MonoStreamHeader instead of an offset of image->raw_metadata.
24166
24167 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
24168
24169         * appdomain.c (mono_init): Be even more descriptive about the error.
24170
24171 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
24172
24173         * appdomain.c: give the user an informative message when corlib can't
24174         be loaded.
24175
24176 2002-02-26  Martin Baulig  <martin@gnome.org>
24177
24178         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
24179         New icall to get the time zone data.
24180
24181 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24182
24183         * reflection.c: set virtual and raw size of section correctly.
24184         * threads.c: transfer domain information to newly created threads.
24185
24186 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24187
24188         * class.c: when instancing a class in a domain, load the default
24189         vaules for static fields from the constant table. Fix System.Enum to
24190         not be an enum.
24191         * icall.c: implement Object::GetType() internalcall. Implemented
24192         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
24193         Fixed checking of binding flags in find_members().
24194         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
24195         * reflection.c: handle enumerations when writing to the constant
24196         table. Use a different object cache for types.
24197
24198
24199 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
24200
24201         * object.c (mono_object_isinst): fix for arrays
24202
24203         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
24204
24205 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24206
24207         * object.c: don't use mprotect ()  and fix intern pool hash table
24208         lookup for big endian systems.
24209
24210 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24211
24212         * icall.c: change type_is_subtype_of () signature.
24213
24214 2002-02-21  Mark Crichton  <crichton@gimp.org>
24215
24216         * rand.c, rand.h: Added random number generator for
24217         System.Security.Cryptography classes.
24218
24219         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
24220
24221         * icall.c: Added System.Security.Cryptography calls.
24222
24223 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
24224
24225         * class.c, icall.c, metadata.c: better support for pointer types.
24226         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
24227         * reflection.c: Add support for getting custom attrs for properties
24228         and simplify some code.
24229
24230 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
24231
24232         * icall.c: change getToken () and add custom attribute GetBlob()helper
24233         method.
24234         * reflection.h: add custom attrs array to the reflection builder structures.
24235         * reflection.c: encode and emit custom attributes for all the relevant
24236         reflection objects. Cache fieldref and methodref tokens. Change
24237         mono_image_create_token() interface to take a MonoDynamicAssembly.
24238         More complete custom attributes decoder. Load custom attributes for
24239         Assembly, Field, Method and Constructor objects, too. Make the
24240         returned array an Attribute[] one, not object[]. Added
24241         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
24242         custom attribute constructor.
24243
24244 2002-02-20  Dick Porter  <dick@ximian.com>
24245
24246         * icall.c:
24247         * rawbuffer.c:
24248         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
24249         problem code out for now).
24250
24251 2002-02-19  Radek Doulik  <rodo@ximian.com>
24252
24253         * object.c (mono_ldstr): use hash table to avoid multiple swapping
24254
24255 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
24256
24257         * icall.c: register the GetCustomAttributes method.
24258         * object.c, object.h: add mono_string_new_len ().
24259         * reflection.h, reflection.c: added mono_runtime_invoke(),
24260         mono_install_runtime_invoke(). Added
24261         mono_reflection_get_custom_attrs () to load custom attributes and
24262         create the attribute objects.
24263
24264 2002-02-19  Dick Porter  <dick@ximian.com>
24265         * threads-dummy-types.c:
24266         * threads-dummy-types.h:
24267         * threads-dummy.c:
24268         * threads-dummy.h:
24269         * threads-pthread-types.c:
24270         * threads-pthread-types.h:
24271         * threads-pthread.c:
24272         * threads-pthread.h:  Deleted obsolete files
24273
24274 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
24275
24276         * class.c (mono_class_vtable): runtime init the class when we
24277         allocate static class data.
24278
24279         * icall.c (ves_icall_System_Array_SetValue): check for null values.
24280
24281         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
24282         and String - but we will need generic marshalling support in the
24283         future. 
24284         (mono_init): set the domain name in a ms compatible way
24285
24286         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
24287         String[].
24288
24289 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
24290
24291         * object.c (mono_array_clone): use alloca() instead of g_malloc  
24292         for sizes
24293
24294         * appdomain.c (mono_domain_unload): impl.
24295
24296 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24297
24298         * appdomain.c, object.c: fix intern pool implementation.
24299         * class.c: fix alignment code.
24300
24301 2002-02-16  Radek Doulik  <rodo@ximian.com>
24302
24303         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
24304         and s2 > s1, just copy lower bytes to be compatible with little
24305         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
24306         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
24307
24308         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
24309         force big_endian to be 1 for big endian machines 
24310         (ves_icall_iconv_new_decoder): ditto
24311
24312 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
24313
24314         * socket-io.c (convert_sockopt_level_and_name): If the system
24315         doesn't define SOL_IP or SOL_TCP, get them by hand using
24316         getprotobyname() and caching the values (because this could be a
24317         slow operation).
24318         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
24319         Use the appropriate struct when the system does support it. Ie,
24320         not all systems have struct ip_mreqn so use struct ip_mreq when
24321         appropriate.
24322
24323 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
24324
24325         * reflection.c: handle finally clauses.
24326
24327 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
24328
24329         * socket-io.c: use g_snprintf() instead of snprintf.
24330
24331 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
24332
24333         * reflection.c (mono_param_get_objects): Cast second argument to
24334         mono_method_get_param_names to a const char** to silence the
24335         compiler warning.
24336
24337         * appdomain.c (mono_domain_assembly_open): Put parens around the
24338         truth statement in the for-loop.
24339
24340         * unicode.c (iconv_convert): Got rid of a compiler warning about
24341         int i being unused when the system has a new iconv.
24342         (iconv_get_length): Same.
24343
24344         * image.c (load_class_names): Cast the second argument to
24345         g_hash_table_insert() to char* to hush compiler warnings about the
24346         arg being a const.
24347         (mono_image_open): Same here.
24348
24349         * socket-io.c: Don't conditionally include sys/filio.h or
24350         sys/sockio.h here anymore since we now get them from
24351         io-layer/io-layer.h
24352         (inet_pton): If the system doesn't support inet_aton, implement
24353         using inet_addr and also #define INADDR_NONE if it isn't defined
24354         by the system.
24355
24356 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
24357
24358         * metadata.c, metadata.h: added function to get packing and size info
24359         of a typedef.
24360         * reflection.h, reflection.c: handle field RVA data. Save info about
24361         the table layout if needed. Assign typedef indexes to all the types
24362         before dumping the info about them to avoid forward reference problems.
24363
24364 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
24365
24366         * socket-io.c (convert_sockopt_level_and_name): ifdef
24367         SO_ACCEPTCONN because it is not defined on my system (old debian)
24368
24369 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
24370
24371         * opcode.c: use stddef.h to get NULL.
24372
24373 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
24374
24375         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
24376         for FIONBIO, FIONREAD and SIOCATMARK.
24377         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
24378         define INADDR_NONE and besides, inet_addr() is deprecated and
24379         should not be used. Use inet_pton() instead - it also has the
24380         added bonus that it can easily handle IPv6 addresses as well.
24381         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
24382
24383 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
24384
24385         * decimal.c: remove _MSC_VER conditional.
24386
24387 2002-02-13  Dick Porter  <dick@ximian.com>
24388
24389         * socket-io.c: 
24390         * icall.c: Internal calls for Blocking, Select, Shutdown,
24391         GetSocketOption and SetSocketOption
24392
24393 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24394
24395         * assembly.cs: better resolver: use it instead of some kludgy
24396         code.
24397
24398 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
24399
24400         * reflection.c: the best way to speed-up the compiler is to avoid
24401         infinite loops.
24402
24403 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
24404
24405         * class.c (mono_class_vtable): changed the object layout
24406         (obj->vtable->class). 
24407         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
24408
24409 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
24410
24411         * assembly.c: look for assemblies in the assembly dir, too.
24412
24413 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24414
24415         * class.c: fix thinko in mono_class_from_type().
24416
24417 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
24418
24419         * exception.h, exception.c: added TypeLoadException.
24420         * object.h, object.c: added mono_array_clone ().
24421         * icall.c: handle throwOnError in AssemblyGetType().
24422         Added Array.Clone().
24423         * opcode.h, opcode.c: use a single value for the opcode val.
24424         Compile fix for non-gcc compilers.
24425
24426 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
24427
24428         * opcodes.c, opcodes.h: export interesting info about opcodes.
24429
24430 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
24431
24432         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
24433         icalls. 
24434
24435         * class.c (class_compute_field_layout): set element_class for enums
24436         (mono_class_create_from_typedef): set element_class for normal classes
24437
24438         * icall.c (ves_icall_System_Enum_get_value): impl.
24439
24440         * class.c (mono_class_create_from_typedef): do not set valuetype
24441         flag for System.ValueType and System.Enum
24442
24443 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
24444
24445         * unicode.c (iconv_convert): fix big endian problem.
24446
24447 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
24448
24449         * class.c: add asserts if we are ever going to scribble over memory.
24450         * socket-io.c: not all systems have AF_IRDA defined.
24451
24452 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
24453
24454         * class.c (class_compute_field_layout): do not consider static
24455         fields to compute alignment
24456
24457 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
24458
24459         * appdomain.c (mono_appdomain_get): impl.
24460         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
24461
24462 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
24463
24464         * icall.c: ignore "file://" prefix when loading an assembly.
24465
24466 2002-01-23  Dick Porter  <dick@ximian.com>
24467
24468         * socket-io.c:
24469         * icall.c:
24470         * Makefile.am: Added socket support
24471
24472 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24473
24474         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
24475         code back.  This should return the assemblies that are loaded by
24476         the runtime on behalf of an application domain. 
24477
24478         The current implementation is still broken, it just returns every
24479         assembly loaded, but until we get real applications domain this
24480         will do.
24481
24482 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
24483
24484         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
24485         AppDomain object.
24486
24487 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
24488
24489         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
24490         the mono_class_from_name lookup.
24491         (ves_icall_get_parameter_info): ditto.
24492         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
24493         method.
24494         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
24495
24496 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
24497
24498         * class.c: load also nested classes on class init.
24499         System.ValueType instance methods gets passed boxed
24500         values, unless methods in derived classed that get a pointer to the
24501         data.
24502         * icall.c: use better name parsing code in GetType().
24503         * image.c, image.h: add mono_image_loaded ().
24504         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
24505         * reflection.c, reflection.h: added mono_reflection_parse_type().
24506
24507 2002-01-22  Veronica De Santis <veron78@interfree.it>
24508
24509         * icall.c : Added mapping of internal calls for Manual and Auto reset events
24510         * threads.c : Added the implementation of internal calls for events
24511         * threads.h : Added prototypes of internal calls for events
24512         
24513 2002-01-21  Radek Doulik  <rodo@ximian.com>
24514
24515         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
24516
24517 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
24518
24519         * class.c (mono_class_init): set min_align to 1 (instead of 0)
24520         (mono_class_value_size): use min_align
24521
24522 2002-01-20  Dick Porter  <dick@ximian.com>
24523
24524         * threads.h:
24525         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
24526         so it compiles on w32.
24527
24528 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
24529
24530         * metadata.c (mono_type_stack_size): impl.
24531
24532         * class.c (mono_class_get_field): impl. memberref token
24533
24534 2002-01-16 Veronica De Santis <veron78@@interfree.it>
24535
24536         * icall.h : Added the internal calls mapping for CreateMutex_internal
24537                     and ReleaseMutex_internal.
24538         * threads.h : Added the prototype of mutexes internal calls.
24539         * threads.c : Added the implementations of mutexes internal calls.
24540
24541 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
24542
24543         * metaparse.h: removed unused file.
24544         * reflection.c, reflection.h: added stream_data_align () function 
24545         to align data in streams and keep stream aligned. Add support for
24546         exception support in method headers.
24547
24548 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
24549
24550         * unicode.c: make iconv_convert () return the number of bytess written
24551         in the output buffer.
24552
24553 2002-01-15  Dick Porter  <dick@ximian.com>
24554         * threads.c: Make the runtime's idea of infinite timeouts coincide
24555         with the class library's
24556
24557         Fix a particularly egregious bug in mono_thread_cleanup(). That
24558         code was so utterly bogus it must have been written on a Monday.
24559
24560 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
24561
24562         * reflection.h: add subtypes field to TypeBuilder.
24563         * reflection.c: encode constants for literal fields.
24564         Handle subtypes. Fix user string token (and add a zero byte)
24565         at the end.
24566         
24567 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
24568
24569         * class.c (mono_class_init): bug fix: assign slot numbers for
24570         abstract methods.
24571
24572 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
24573
24574         * reflection.c: don't try to output a code RVA for abstract methods.
24575         Small fixes for method header format. Output parameter info to the
24576         ParamDef table. Save method overriding info to MethodImpl table.
24577         Fix property support. Allow typedef.extends to be a type in the
24578         building assembly.
24579         * verify.c: fix off-by-one error.
24580
24581 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
24582
24583         * class.c: fix mono_class_from_mono_type () for szarray types.
24584         Remove unused cache check in mono_class_from_type_spec().
24585         * icall.c: *type_from_name () functions handle simple arrays and byref.
24586         * reflection.c: handle byref and szarray types. Handle methods without
24587         body (gets P/Invoke compilation working). Handle types and fields in
24588         get_token ().
24589         * reflection.h: add rank to MonoTypeInfo.
24590
24591 2002-01-10  Dick Porter  <dick@ximian.com>
24592
24593         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
24594         internal calls
24595
24596 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
24597
24598         * icall.c: initialize class in type_from_handle ().
24599         Loop also in parent classes for get_method ().
24600         * reflection.c: properly encode class and valuetype types.
24601         Start on encoding TypeBuilder types. Handle fieldrefs.
24602         Use correct length when registering a user string.
24603         Handle ConstructorBuilder and MonoMethod in get_token ().
24604         Make mono_type_get_object () aware of cached types.
24605         * object.c: back out change to mono_string_new ().
24606
24607 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
24608         * object.c: mono_string_new should return a NULL when the string 
24609         passed in is NULL -- not try to deference it.
24610         
24611 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
24612
24613         * icall.c: hack to make IsSubType work for TypeBuilders.
24614         * reflection.c: emit constructors before methods.
24615         Retrieve param names in mono_param_get_objects().
24616
24617 2002/01/05  Nick Drochak  <ndrochak@gol.com>
24618
24619         * Makefile.am: fix list of headers and sources so automake 1.5
24620         doesn't complain. Removed \# at end of list.
24621
24622 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
24623
24624         * reflection.c: get token for a method ref. Set return type of
24625         constructor to void.
24626         * loader.c: debug message.
24627         * class.c: typo fix.
24628
24629 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
24630
24631         * icall.c: fix array init with rank > 1. FindMembers
24632         loops in parent class as well.
24633         * image.c: do not insert nested types in name cache.
24634         * reflection.c: warning fix.
24635         * reflection.h: add override method (for interface impl).
24636
24637 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
24638
24639         * metadata.c: fix customattr decoding.
24640
24641 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
24642
24643         * rawbuffer.cs: Added native Win32 implementation, avoids using
24644         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
24645
24646 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
24647
24648         * class.c: make the low-level routines handle the cache.
24649
24650 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
24651
24652         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
24653
24654 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
24655
24656         * class.c: fix mono_array_element_size() for objects.
24657         * class.h, class.c: add properties to MonoClass and load them
24658         at init time.
24659         * icall.c: check with isinst() when assigning a value to an array
24660         instead of requiring the classes to match exactly.
24661         Implemented icall for System.Type::GetType().
24662         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
24663         enums. Handle bindingflags when looking for methods and fields.
24664         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
24665         and mono_metadata_methods_from_property().
24666         * reflection.h, reflection.c: added structures for propreties,
24667         parameters and enums. Implemented mono_property_get_object() and
24668         mono_param_get_objects().
24669
24670 2001-12-18  Dick Porter  <dick@ximian.com>
24671
24672         * file-io.c: Use mono_string_to_utf16() instead of
24673         mono_string_chars()
24674
24675         * object.c: Added mono_string_to_utf16(), which copies the non
24676         NULL-terminated MonoString into a new double-null-terminated
24677         buffer.
24678
24679 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
24680
24681         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
24682
24683 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
24684
24685         * file-io.c: raise exceptions if handle is invalid.
24686
24687 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
24688
24689         * assembly.c: yet another check for mscorlib.
24690         * class.c, class.h: load nesting info for classes.
24691         * icall.c: many new functions to support the Reflection classes.
24692         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
24693         * reflection.h, reflection.c: mono_image_create_token(),
24694         mono_assembly_get_object(), mono_type_get_object(),
24695         mono_method_get_object(), mono_field_get_object(): methods to return
24696         objects that parallel the C representation of assemblies, types,
24697         methods, fields.
24698
24699 2001-12-11  Dick Porter  <dick@ximian.com>
24700
24701         * icall.c:
24702         * file-io.c: Internal calls for file IO.
24703
24704 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
24705
24706         * tabledefs.h: missing FileAttributes.
24707         * verify.h, verify.c: use is_valid_string () to simplify and check for
24708         valid strings more correctly. Fix warnings and speeling.
24709         Check more tables: Filed, File, ModuleRef, StandAloneSig.
24710         Check code: branches, maxstack, method calls.
24711
24712 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
24713
24714         * object.c (mono_object_allocate): removed static, so that the jit
24715         can allocate value types.
24716
24717         * icall.c (ves_icall_System_DateTime_GetNow): impl.
24718
24719 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24720
24721         * class.c: init enum types right away and register the
24722         token->MonoClass map in mono_class_create_from_typedef ().
24723         * verify.h, verify.c: first cut of the verifier.
24724         * pedump.c: add --verify switch to verify metadata tables.
24725         * tabledefs.h: add some missing enums.
24726
24727 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
24728
24729         * class.c (mono_install_runtime_class_init): impl.
24730         (mono_class_init): renamed mono_class_metadata_init to
24731         mono_class_init, also removed the metadata_inited flag
24732
24733         * object.c (mono_object_isinst): use faster algorithm
24734
24735 2001-11-30  Radek Doulik  <rodo@ximian.com>
24736
24737         * mono-endian.h: reverted last change
24738         added function prototypes
24739
24740         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
24741         add mono-endian.c back
24742
24743         * mono-endian.c: returned back, as Paolo pointed out, it's needed
24744         for unaligned access, I've mistaked it with endianess. I am
24745         sorry.
24746         (mono_read16): fix reverted endianess
24747         (mono_read64): ditto
24748         (mono_read32): ditto
24749
24750 2001-11-30  Dick Porter  <dick@ximian.com>
24751
24752         * exception.c: Implement mono_exception_from_name()
24753
24754 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24755
24756         * metadata.h, metadata.c: remove params_size and locals_size and their
24757         calculation from the metadata code: they are only usefult to the
24758         interp.
24759
24760 2001-11-29  Radek Doulik  <rodo@ximian.com>
24761
24762         * object.c (mono_ldstr): swap bytes here, it's probably not the
24763         best place, but works for me now, I'll redo it once I know mono
24764         better, also note that I add PROT_WRITE and don't reset back, also
24765         note that it's only affects big endians, so x86 should be OK
24766
24767         * mono-endian.h (read16): use just glib macros for both endians
24768
24769         * mono-endian.c: removed as glib macros are used in in
24770         mono-endian.h so we don't need to care about endianess for read
24771         macros as glib does that for us already
24772
24773 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
24774
24775         * class.h, class.h: take minimum alignment into consideration so
24776         that the fields of a class remain aligned also when in an array.
24777
24778 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24779
24780         * loader.h, loader.c: add mono_method_get_param_names().
24781         * class.c: 0-init class fields.
24782
24783 2001-11-26  Dick Porter  <dick@ximian.com>
24784
24785         * icall.c:
24786         * threads-types.h:
24787         * threads.c: New file that handles System.Threading on all platforms
24788
24789         * object.c: 
24790         * object.h: Remove the synchronisation struct from MonoObject,
24791         replace it with a pointer that gets initialised on demand
24792
24793         * Makefile.am: Replace all the system-specific threading code with
24794         a single file that uses the new wrapper library
24795
24796 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
24797
24798         * class.c, class.h: add mono_install_trampoline() so that the runtime
24799         can register a function to create a trampoline: removes the ugly
24800         requirement that a runtime needed to export arch_create_jit_trampoline.
24801         * object.h, object.c: added mono_install_handler() so that the runtime
24802         can install an handler for exceptions generated in C code (with
24803         mono_raise_exception()). Added C struct for System.Delegate.
24804         * pedump.c: removed arch_create_jit_trampoline.
24805         * reflection.c: some cleanups to allow registering user strings and
24806         later getting a token for methodrefs and fieldrefs before the assembly
24807         is built.
24808         * row-indexes.h: updates and fixes from the new ECMA specs.
24809
24810 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
24811
24812         * class.h, class.c: add enum_basetype field to MonoClass.
24813         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
24814         to get index in the constant table reated to a field, param or
24815         property.
24816         * reflection.h, reflection.c: handle constructors. Set public-key and
24817         version number of the built assembly to 0.
24818         * row-indexes.h: update from new ECMA spec.
24819
24820 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24821
24822         * class.h, class.c: add a max_interface_id to MonoClass.
24823         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
24824         since it's used to do that. Added mono_type_type_from_obj().
24825         Make GetType() return NULL instead of segfaulting if the type was not
24826         found. Handle simple arrays in assQualifiedName.
24827         * object.h: add a struct to represent an Exception.
24828         * reflection.c: output call convention in method signature.
24829         Add code to support P/Invoke methods and fixed offsets for fields.
24830
24831 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
24832
24833         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
24834         the value.
24835         * icall.c: use mono_array_addr instead of array->vector: fixes the
24836         reflection image writing.
24837         * reflection.c: init call convention byte to 0 in method signature.
24838         Encode the property signature. Don't output property-related methods
24839         twice. Really process the properties for a type (don't cast a field to
24840         a property, my mom always told me that).
24841         Fix 64 bit issues in pointer alignment in a different and more
24842         readable way.
24843
24844 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
24845
24846         * loader.h: Removed type class from MonoDefaults, added monotype
24847
24848         * loader.c: Loaded MonoType, removed loading of Type
24849
24850         * icall.c (my_mono_new_object): Now returns a System.MonoType,
24851         and fills in System.Type._impl with a RuntimeTypeHandle rather
24852         than the actual MonoClass *
24853
24854         (ves_icall_type_from_handle): change from type_class to
24855         monotype_class
24856
24857         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
24858         implemented
24859
24860         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
24861         implemented
24862
24863         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
24864
24865         (ves_icall_System_Reflection_Assembly_GetType): implemented
24866
24867         (ves_icall_System_MonoType_assQualifiedName): implemented
24868
24869         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
24870
24871 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
24872
24873         * assembly.c (mono_assembly_open): Implement a cache for the
24874         assemblies. 
24875
24876         (mono_assembly_close): only destroy the assembly when the last
24877         reference is gone.
24878         
24879 2001-11-09  Dick Porter  <dick@ximian.com>
24880
24881         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
24882
24883 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
24884
24885         * class.c (mono_class_metadata_init): bug fix: compute the right slot
24886
24887 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
24888
24889         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
24890         from Martin Weindel.
24891         * object.h: add mono_string_chars ().
24892
24893 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
24894
24895         * reflection.c (build_compressed_metadata): Eliminates warnings
24896         and uses 64-bit clean code.
24897
24898         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
24899         (mono_type_equal): Change signature to eliminate warnings.
24900
24901 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
24902
24903         * icall.c, loader.c: remove the internalcall array constructors.
24904         Changes to match the new MonoArray structure.
24905         * object.h, object.c: an array object doesn't allocate an extra
24906         vector. Add mono_array_new_full () to create jagged arrays easily.
24907
24908 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
24909
24910         * metadata.h, metadata.c: add mono_metadata_field_info () to
24911         retreive all the info about a field from vairous tables.
24912         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
24913         * class.h, class.c: augment MonoClassField with more info.
24914         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
24915         policy and load a field's RVA if needed.
24916
24917 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
24918
24919         * class.c (mono_class_metadata_init): create a trampoline for all
24920         virtual functions instead of actually compiling them.
24921
24922 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
24923
24924         * class.h, class.c: include name in MonoClassField.
24925         * class.c: fix fundamental type of System.Object and System.String.
24926         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
24927         tokens in ldtoken.
24928         * icall.c: remove internalcalls for the Reflection stuff that is now
24929         done in C# code.
24930         * loader.c: mono_field_from_memberref () implementation.
24931         * mono-endian.c: thinko (s/struct/union/g).
24932         * object.c, object.h: make the mono_string_* prototypes actually use
24933         MonoString instead of MonoObject.
24934         * reflection.c, reflection.h: updates for changes in the reflection
24935         code in corlib: we use C structures that map to the actual C# classes.
24936         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
24937         fat method header if needed and use the info from the ILGenerator for
24938         methods. Handle fields in types. Misc fixes.
24939
24940 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
24941
24942         * class.c (mono_class_metadata_init): bug fix: always allocate
24943         space for static class data
24944
24945 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
24946
24947         * class.c (mono_compute_relative_numbering): use relative
24948         numbering to support fast runtime type checks.
24949
24950 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
24951
24952         * class.c (mono_class_create_from_typeref): added debugging output
24953         to print class name when MonoDummy is returned instead of real class
24954
24955 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
24956
24957         * class.c (mono_class_metadata_init): interface offset table now
24958         contains pointers into the vtable - this is more efficient for the jit
24959
24960 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
24961
24962         * class.c (mono_class_metadata_init): use a temporary vtable (the
24963         old algorithm only worked for the interpreter, but not for the jit)
24964
24965 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
24966
24967         * loader.c (method_from_memberref): use mono_class_get to get the
24968         class of an array instead of using System.Array directly.
24969         (mono_get_method): also add MEMBERREF methods to the method cache
24970         which usefull for arrays.
24971
24972 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
24973
24974         * pedump.c (arch_compile_method): added to compute vtable entry
24975
24976         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
24977         number of interfaces.
24978         
24979         * class.h: merged MonoArrayClass into MonoClass
24980
24981         * class.c (mono_class_create_from_typedef): compute the vtable size and
24982         allocate space to include the vtable inside MonoClass
24983         (mono_class_metadata_init): initialize the vtable
24984
24985 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
24986
24987         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
24988         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
24989         * image.c: endian fixes by Laurent Rioux.
24990         * object.h, object.c: rename MonoStringObject to MonoString and
24991         MonoArrayObject to MonoArray. Change some function names to conform to
24992         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
24993         guint16* as first argument, so don't use char*.
24994         Provide macros to do the interesting things on arrays in a portable way.
24995         * threads-pthread.c: updates for the API changes and #include <sched.h>
24996         (required for sched_yield()).
24997         * icall.c: updates for the API changes above.
24998         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
24999         platforms that need them.
25000
25001 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
25002
25003         * class.c: set the correct type for all the fundamental
25004         type when loading the class.
25005
25006 2001-10-05  Dick Porter  <dick@ximian.com>
25007
25008         * threads-pthread.c (pthread_mutex_timedlock): Simple
25009         compatibility version for C libraries that lack this call.
25010
25011 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25012
25013         * class.c: MonoTypes stored in MonoClass are stored as
25014         fundamental MonoTypes when the class represents a
25015         fundamental type (System.Int32, ...).
25016         The TypeHandle return by ldtoken is a MonoType*.
25017         * icall.c: ves_icall_get_data_chunk () write out all the
25018         PE/COFF stuff. Implement ves_icall_define_method (),
25019         ves_icall_set_method_body (), ves_icall_type_from_handle ().
25020         * image.c: properly skip unknown streams.
25021         * loader.h, loader.c: add type_class to mono_defaults.
25022         * metadata.c, metadata.h: export compute_size () as
25023         mono_metadata_compute_size () with a better interface.
25024         Typo and C&P fixes.
25025         * pedump.c: don't try to print the entry point RVA if there is no entry point.
25026         * reflection.c, reflection.h: many cleanups, fixes, output method
25027         signatures and headers, typedef and typeref info, compress the metadata
25028         tables, output all the heap streams, cli header etc.
25029         * row-indexes.h: typo fixes.
25030
25031 2001-10-04  Dick Porter  <dick@ximian.com>
25032
25033         * object.h: Add a synchronisation mutex struct to MonoObject
25034
25035         * object.c (mono_new_object): Initialise the object
25036         synchronisation mutexes
25037
25038         * icall.c: System.Threading.Monitor internal calls
25039         
25040         * threads-pthread.h:
25041         * threads-pthread.c: System.Threading.Monitor internal calls
25042
25043         * threads-types.h: New file, includes the system-specific thread
25044         structures
25045         
25046         * threads-pthread-types.h:
25047         * threads-pthread-types.c: New files, handle pthread-specific
25048         synchronisation types
25049
25050         * threads-dummy-types.h: 
25051         * threads-dummy-types.c: New files of dummy support for
25052         thread-specific types
25053
25054         * metadata.c:
25055         * image.c:
25056         * pedump.c: include mono-endian.h not endian.h
25057         
25058         * Makefile.am: More threads files.
25059         Name mono-endian.h not endian.h
25060
25061 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
25062
25063         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
25064         stuff and implement a few more bits.
25065         * icall.c: a field needs to be dereferenced twice. Do not use the same
25066         name for two variables in the same scope.
25067         * image.c, image.h: cleanups.
25068
25069 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
25070
25071         * class.c (mono_class_metadata_init): bug fix: compute the right size
25072
25073 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
25074
25075         * icall.c: implemented some of the Reflection internalcalls.
25076         * image.c, image.h: start writing out the PE/COFF image.
25077         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
25078         that does the reverse than decode_blob_size ().
25079         * object.c: use mono_metadata_encode_value (). Move here
25080         temporary implementation of mono_string_to_utf8 ().
25081         * rawbuffer.c: make malloc_map static.
25082
25083 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25084
25085         * metadata.c: fix type comparison for arrays.
25086         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
25087         Added a couple of new classes to monodefaults.
25088         * icall.c: added a couple of Reflection-related internalcalls.
25089         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
25090         Added a byval_arg MonoType to MonoClass.
25091
25092 2001-09-28  Dick Porter  <dick@ximian.com>
25093
25094         * icall.c:
25095         * threads-pthread.h: 
25096         * threads-pthread.c: Implemented internal calls for
25097         LocalDataStoreSlot operations.  Applied mutexes around all shared
25098         data.  Reworked the thread creation and Start() operations to
25099         avoid a race condition.
25100         
25101         * threads-dummy.h:
25102         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
25103
25104 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
25105
25106         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
25107
25108 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
25109
25110         * class.c, loader.c: warn and return NULL instead of erroring out.
25111         * icall.c: added System.AppDomain::getCurDomain().
25112         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
25113
25114 2001-09-25  Dick Porter  <dick@ximian.com>
25115
25116         * threads-pthread.h:
25117         * threads-pthread.c: Implemented timed thread joining and added
25118         System.Threading.Thread::Join_internal internal call
25119
25120         * icall.c: Added System.Threading.Thread::Join_internal internal call
25121
25122         * threads-dummy.h:
25123         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
25124
25125 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
25126
25127         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
25128         mono_string_intern () to implement the semantics of the ldstr opcode
25129         and the interning of System.Strings.
25130         * icall.c: provide hooks to make String::IsIntern and String::Intern
25131         internalcalls.
25132
25133 2001-09-23  Dick Porter  <dick@ximian.com>
25134
25135         * threads-dummy.c: 
25136         * threads-dummy.h: New files of dummy threading routines
25137
25138         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
25139         support code based on system specifics
25140
25141         Rename PTHREAD_LIBS to THREAD_LIBS
25142         
25143 2001-09-23  Dick Porter  <dick@ximian.com>
25144
25145         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
25146         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
25147         internal calls.
25148         (mono_thread_init): Set up a Thread object instance to return when
25149         the main thread calls Thread.CurrentThread
25150         (mono_thread_cleanup): Wait for all subthreads to exit
25151
25152         * icall.c: New internal calls for System.Threading.Thread::Sleep
25153         (including Schedule) and CurrentThread
25154
25155         * threads.h: New file, to insulate thread-specific stuff from the
25156         rest of the code
25157
25158 2001-09-21  Dick Porter  <dick@ximian.com>
25159
25160         * threads-pthread.h: 
25161         * threads-pthread.c: New file, for handling pthreads-style
25162         threading support.  Start() now starts a new thread and executes
25163         the ThreadStart delegate instance.
25164
25165         * icall.c: Added the internalcall for
25166         System.Threading.Thread::Start_internal
25167
25168         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
25169
25170 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
25171
25172         * loader.c: work around the different signatures for delegates
25173         constructors csc generates in compiled code vs the ones compiled in mscorlib.
25174
25175 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25176
25177         * class.h, class.c: add mono_class_get_field_from_name ().
25178         * *: Fix C comments and other ANSI C issues.
25179
25180 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
25181
25182         * endian.h, assembly.c: fix some endianness issues.
25183
25184 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
25185
25186         * loader.h, load.c: add delegate_class to mono_defaults.
25187         Handle runtime provided methods in mono_get_method ().
25188
25189 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
25190
25191         * loader.c (mono_get_method): use pinvoke for internal call
25192
25193         * icall.c: use pinvoke for internal call
25194
25195         * loader.c (method_from_memberref): set the method name
25196
25197 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
25198
25199         * metadata.c: help the compiler generate better code for
25200         mono_class_from_mono_type ().
25201
25202 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
25203
25204         * class.c (mono_class_metadata_init): delayed computing of the
25205         class size to mono_class_metadata_init ()
25206
25207 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
25208
25209         * class.c, class.h: add an interfaces member to MonoClass.
25210         * image.c, image.h: add assembly_name field to MonoImage
25211         from the assembly table.
25212         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
25213
25214 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
25215
25216         * class.c: Handle Array in mono_class_from_mono_type ().
25217         * metadata.c, pedump.c: some endian fixes.
25218
25219 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
25220
25221         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
25222         * metadata.c: fix small problem introduced with the latest commit.
25223
25224 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
25225
25226         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
25227         We don't need a MonoMetadata pointer anymore to compare signatures in
25228         mono_metadata_signature_equal (), update callers.
25229         Reduced memory usage an number of allocations for MonoMethodHeader and
25230         MonoMethodSignature.
25231
25232 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
25233
25234         * metadata.c: added compare for szarray.
25235
25236 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
25237
25238         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
25239         and add a couple more types to it and mono_defaults. Give an hint on
25240         classes that need implementing in our corlib and are referenced
25241         in mscorlib.
25242
25243 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
25244
25245         * class.h, class.c: keep track if a class is also an Enum.
25246         * loader.c: Implement a couple more types for use in libffi
25247         marshalling. Gives better diagnostics when failing to dlopen
25248         a library. Set method->klass for P/Invoke methods, too.
25249
25250 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
25251
25252         * class.c, class.h: add a MonoType this_arg to MonoClass that
25253         represents a pointer to an object of the class' type that
25254         can be used by the interpreter and later the type cache.
25255         Add best guess alignment info for valuetype objects.
25256
25257 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
25258
25259         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
25260         into MonoType: one less level of indirection and allocation and
25261         simplifies quite a bit of code. Added cache for MonoTypes that are
25262         used frequently, so that we don't need to allocate them all the time.
25263
25264 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
25265
25266         * class.c (mono_class_create_from_typedef): System.Enum is also a
25267         value type, although it does not derive from System.ValueType
25268         (maybe a bug in the ms compiler?)
25269
25270         * metadata.c (mono_type_size): return the right size for value types
25271
25272         * loader.c (mono_get_method): only initialize method header if not abstract
25273
25274         * class.c (mono_class_from_mono_type): use mono_default values. 
25275
25276 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
25277
25278         * *: use MonoClass pointers instead of <type_tokens>
25279         
25280         * class.h: new flag: metadata_inited.
25281
25282         * class.c (mono_class_metadata_init): impl.
25283         (mono_class_instance_size): impl.
25284         (mono_class_data_size): impl.
25285
25286 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
25287
25288         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
25289         MonoClass now has the name and name_space fields. 
25290         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
25291         mono_get_method () takes and optional MonoClass as argument.
25292         Removed mono_typedef_from_name() and added mono_class_token_from_name()
25293         instead that takes advantage of a map from class names to typedef
25294         tokens in MonoImage.
25295
25296 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
25297
25298         * metadata.c: zero is not a valid alignment boundary.
25299         Merge MONO_TYPE_VOID in default decoding code.
25300
25301 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
25302
25303         * image.h: merged MonoMetadata into MonoImage
25304
25305         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
25306         identify the type of elements.
25307
25308 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
25309
25310         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
25311         * cil-coff.h: split MonoMSDOSHeader and add size info.
25312         * image.c: add some consistency checks.
25313         * metadata.c: fix row size computation: one programmer
25314         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
25315         add explanation for the locator routine.
25316         Fix decoding of size in method header.
25317         
25318 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
25319
25320         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
25321         (g_concat_dir_and_file): Bring g_concat_dir_and_file
25322         function from gnome-libs.  This uses the right path separator
25323         based on the OS, and also works around a bug in some systems where
25324         a double slash is not allowed. 
25325         (default_assembly_name_resolver): Use g_concat_dir_and_file
25326         (mono_assembly_open): ditto.
25327
25328 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
25329
25330         * metadata.c (mono_metadata_signature_equal): impl.
25331
25332         * *: void is now a realy MonoType (instead of using NULL)
25333         
25334         * metadata.c (do_mono_metadata_parse_type): use
25335         mono_metadata_parse_type to parse void value.
25336
25337 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
25338
25339         * metadata.c, metadata.h: in the signature and method header store
25340         only the space required for holding the loca vars and incoming arguments.
25341
25342 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
25343
25344         * metadata.c (do_mono_metadata_parse_type): treat void like any
25345         other type (instead of assigning NULL);
25346
25347 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
25348
25349         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
25350
25351 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
25352
25353         * image.c (do_mono_image_open): added a cache for arrays.
25354
25355 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
25356
25357         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
25358         decode a single column from a row in a metadata table and changes
25359         to take advantage of it in the typedef locator (gives a nice speed up).
25360         Store offset info for function params.
25361
25362 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
25363
25364         * image.h (MONO_IMAGE_IS_CORLIB): removed 
25365
25366 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
25367
25368         * assembly.c: how could mono_assembly_close () had ever worked?
25369         * metadata.c, metadata.h: provide offset info for local vars.
25370         Implement mono_type_size () to take care of alignment as well
25371         as size (it was mono_field_type_size in cli/class.c before).
25372
25373 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
25374
25375         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
25376
25377         * assembly.h (CORLIB_NAME): set to corlib.dll
25378
25379         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
25380
25381 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
25382
25383         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
25384         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
25385         tokentype.h: massive namespace cleanup.
25386
25387 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
25388
25389         * metadata.h, metadata.c: decode exception clauses when parsing method header.
25390
25391 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
25392
25393         * metadata.c (mono_metadata_free_type): added check for type !=
25394         NULL (void) before calling mono_metadata_free_type()
25395
25396 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
25397
25398         * metadata.h, row_indexes.h: added header with enumerations to use
25399         to index in the columns from tables in metadata and to decode coded
25400         tokens: we should start using this instead of embedding magic numbers
25401         all over the code.
25402
25403 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
25404
25405         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
25406         Move metadata_t info from cli_image_info_t to MonoImage, where
25407         it's easily accessible. Changed all the uses accordingly.
25408         Added the method and class caches to MonoImage.
25409         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
25410         and mono_metadata_decode_value () signature to be more consistent
25411         with the other parse functions (and simplify code). Taken advantage
25412         of zero-length array allocation with GCC. Removed reduntant (and
25413         wrong) MonoFieldType struct and use MonoParam instead. Changed
25414         mono_metadata_parse_field_type () to use common code for parsing.
25415         Added mono_metadata_typedef_from_field () and
25416         mono_metadata_typedef_from_method () to lookup a typedef index from a
25417         field or method token.
25418         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
25419
25420 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
25421
25422         * metadata.c (mono_metadata_parse_field_type): Implement. 
25423         (do_mono_metadata_parse_type): Split engine from
25424         mono_metadata_parse_type, so that we can create smaller structures
25425         for things that just have one pointer to the MonoType (look at
25426         the MonoFieldType)
25427
25428 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
25429
25430         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
25431         as Jan Gray found out, it is incorrect. 
25432
25433 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
25434
25435         * assembly.c: Implement asssembly loading.  This loads an image
25436         and loads all the referenced assemblies.  Come to think of it, we
25437         could always do lazy loading of the assemblies. 
25438
25439         * image.c (mono_image_open): Keep loaded images in a hashtable.
25440
25441         * image.h (MonoImage): Add reference count.
25442
25443 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
25444
25445         * assembly.c (mono_assembly_open): Keep track of the file name in
25446         case the assembly has no ASSEMBLY table.
25447
25448         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
25449         from get.c here.
25450
25451 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
25452
25453         * metadata.c, metadata.h: decode local vars in method header
25454         parse function. Change callers accordingly.
25455
25456 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
25457
25458         * metadata.h, cil-coff.h: protect against multiple inclusion.
25459         Added some new structures to hold information decoded from metadata:
25460         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
25461         and relevant decoding/free functions.
25462         * metadata.c: implement decoding functions. Add warning for out of bounds
25463         index in mono_metadata_locate(). Implement mono_get_method () to retreive
25464         all the info about a method signature and invocation. Remove check on
25465         uninitialized local var in parse_mh() and fix memory leak.
25466
25467 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
25468
25469         * metadata.h: More macros.
25470
25471         * tokentype.h: New file.
25472
25473 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
25474
25475         * assembly.c: added a consistency check and initialize
25476         some structures with g_new0().
25477         * metadata.c: fixed a couple more bugs in table size computation
25478         and add other checks for out-of bound access to metadata.
25479
25480 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
25481
25482         * metatada.c: fix bugs computing table sizes. Spew a
25483         warning when index in string heap is out of bounds.
25484
25485 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
25486
25487         * metadata.h: Add a couple of macros to manipulate tokens. 
25488
25489 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
25490
25491         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
25492         cli_section_tables).
25493
25494 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
25495
25496         * metadata.c (mono_metadata_user_string): New function, provides
25497         access to the UserString heap. 
25498
25499 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
25500
25501         * metadata.c: Add inline documentation.
25502
25503 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
25504
25505         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
25506         files. 
25507
25508 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
25509
25510         * typeattr.h: New file, TypeAttribute flags. 
25511
25512 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
25513
25514         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
25515         mono_assembly_ensure_section): Section loading code.
25516         (load_section_tables): Load the sections.
25517
25518         * mono/metadata/metadata.c (mono_metadata_locate_token,
25519         mono_metadata_locate): Functions to locate the information
25520         definition given a token or a table and an index.
25521         (mono_metadata_compute_table_bases): New.
25522         (compute_size): New function to compute the sizes of the various
25523         tables.
25524
25525         * mono/metadata/metadata.h: Finish listing the different index
25526         types. 
25527
25528         * mono/metadata/pedump.c: Improve to dump new information.
25529
25530 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
25531
25532         * mono/metadata/metadata.c: Entered all the tables matching
25533         Beta2. 
25534
25535         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2
25536
25537
25538